body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Open Sans', sans-serif;
  font-size: 4rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5rem;
}
.display-2 {
  font-family: 'Open Sans', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Open Sans', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.2rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.8rem;
    font-size: calc( 2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.05rem + (4 - 2.05) * ((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.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.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-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #6592e6 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #6592e6 !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #6592e6;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #2260d2 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #6592e6;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #2260d2 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #6592e6 !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #6592e6 !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #205ac5 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #205ac5 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #6592e6;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #6592e6;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #6592e6;
  border-color: #6592e6;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #6592e6;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.form-control {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #6592e6 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #6592e6;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #6592e6;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #6592e6;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #6592e6;
  border-bottom-color: #6592e6;
}
.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: #6592e6 !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: #ff6666 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%236592e6' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-sRPQlSG1HP {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sRPQlSG1HP nav.navbar {
  position: fixed;
}
.cid-sRPQlSG1HP .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sRPQlSG1HP .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sRPQlSG1HP .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sRPQlSG1HP .dropdown-item:hover,
.cid-sRPQlSG1HP .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sRPQlSG1HP .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sRPQlSG1HP .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sRPQlSG1HP .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sRPQlSG1HP .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sRPQlSG1HP .nav-link {
  position: relative;
}
.cid-sRPQlSG1HP .container {
  display: flex;
  margin: auto;
}
.cid-sRPQlSG1HP .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sRPQlSG1HP .dropdown-menu,
.cid-sRPQlSG1HP .navbar.opened {
  background: #2b9c38 !important;
}
.cid-sRPQlSG1HP .nav-item:focus,
.cid-sRPQlSG1HP .nav-link:focus {
  outline: none;
}
.cid-sRPQlSG1HP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sRPQlSG1HP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sRPQlSG1HP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sRPQlSG1HP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sRPQlSG1HP .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sRPQlSG1HP .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sRPQlSG1HP .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #2b9c38;
}
.cid-sRPQlSG1HP .navbar.opened {
  transition: all 0.3s;
}
.cid-sRPQlSG1HP .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sRPQlSG1HP .navbar .navbar-logo img {
  width: auto;
}
.cid-sRPQlSG1HP .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sRPQlSG1HP .navbar.collapsed {
  justify-content: center;
}
.cid-sRPQlSG1HP .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sRPQlSG1HP .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sRPQlSG1HP .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sRPQlSG1HP .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sRPQlSG1HP .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sRPQlSG1HP .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sRPQlSG1HP .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sRPQlSG1HP .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sRPQlSG1HP .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sRPQlSG1HP .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sRPQlSG1HP .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sRPQlSG1HP .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sRPQlSG1HP .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sRPQlSG1HP .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sRPQlSG1HP .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sRPQlSG1HP .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sRPQlSG1HP .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sRPQlSG1HP .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sRPQlSG1HP .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sRPQlSG1HP .navbar.navbar-short {
  min-height: 60px;
}
.cid-sRPQlSG1HP .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sRPQlSG1HP .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sRPQlSG1HP .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sRPQlSG1HP .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sRPQlSG1HP .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sRPQlSG1HP .dropdown-item.active,
.cid-sRPQlSG1HP .dropdown-item:active {
  background-color: transparent;
}
.cid-sRPQlSG1HP .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sRPQlSG1HP .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sRPQlSG1HP .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sRPQlSG1HP .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #2b9c38;
}
.cid-sRPQlSG1HP .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sRPQlSG1HP .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sRPQlSG1HP ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sRPQlSG1HP .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sRPQlSG1HP button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sRPQlSG1HP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sRPQlSG1HP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sRPQlSG1HP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRPQlSG1HP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRPQlSG1HP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sRPQlSG1HP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRPQlSG1HP nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sRPQlSG1HP nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sRPQlSG1HP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRPQlSG1HP .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sRPQlSG1HP a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sRPQlSG1HP .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sRPQlSG1HP .navbar {
    height: 70px;
  }
  .cid-sRPQlSG1HP .navbar.opened {
    height: auto;
  }
  .cid-sRPQlSG1HP .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sRPQlSG1HP a {
  color: #fff !important;
}
.cid-sRPQlSG1HP a.dropdown-item:hover {
  color: #1B3775 !important;
  background-color: #F29200 !important;
}
.cid-sXrAJWfsCX {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-sXrAJWfsCX .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-sXrAJWfsCX .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sXrAJWfsCX .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sXrAJWfsCX .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sXrAJWfsCX .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-sXrAJWfsCX .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-sXrAJWfsCX .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sXrAJWfsCX div#logo {
  padding: 0px !important;
}
.cid-tcTS2lwlRY {
  padding-top: 45px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/leuchtturmard-2000x745.jpg");
}
.cid-tcTS2lwlRY .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-tcTS2lwlRY .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-tcTS2lwlRY .card .wrapper .mbr-section-title span:first-child {
  color: #ff5f3a;
}
.cid-tcTS2lwlRY .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #ff5f3a;
  background: linear-gradient(#ff5f3a 0%, #f35733 69%, #ff5f3a 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-tcTS2lwlRY .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tcTS2lwlRY .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-tcTS2lwlRY .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-tcTS2lwlRY .card .wrapper .mbr-list {
  margin-top: 20px;
  color: #ffffff;
}
.cid-tcTS2lwlRY .card .wrapper .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-tcTS2lwlRY .card .wrapper .mbr-list .list li {
  line-height: 1.75;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-tcTS2lwlRY .card .wrapper .mbr-list .list li:before {
  font-weight: 900;
  color: #ff4e3c;
  display: inline-block;
  content: "\e97c";
  font-family: "Moririse2" !important;
  text-align: center;
  line-height: 1.5em;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
  margin-right: 15px;
}
.cid-tcTS2lwlRY .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 12px 35px;
  line-height: 1.0625;
}
.cid-tcTS2lwlRY .card .wrapper .mbr-section-title,
.cid-tcTS2lwlRY .mbr-section-btn,
.cid-tcTS2lwlRY .mbr-list .list {
  text-align: left;
  color: #ffffff;
}
.cid-tcTS2lwlRY .overlay {
  display: block;
  background-color: rgba(43, 156, 56, 0.7);
  width: 700px;
  padding: 10px;
  border-radius: 7px;
  line-height: 1.6em;
}
.cid-t6GEMBaHf7 {
  background-color: #edeff3;
}
.cid-t6GEMBaHf7 .text-wrapper {
  padding: 1rem;
}
@media (max-width: 991px) {
  .cid-t6GEMBaHf7 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t6GEMBaHf7 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-t6GEMBaHf7 .text-wrapper {
    padding: 2rem;
  }
}
.cid-sXrrO0mig0 {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sXrrO0mig0 img {
  width: 30px;
  height: auto;
  display: inline;
}
#custom-html-6j {
  /* Type valid CSS here */
}
#custom-html-6j div.iframe {
  min-width: 400px;
  width: 95vw;
  min-height: 400px;
  height: 800px;
  margin: 50px auto;
}
#custom-html-6j iframe {
  height: 100%;
  Width: 100%;
}
.cid-sSfsx1rX0Q {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sSfiLuYj89 {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sSfiLuYj89 #freiheit {
  background-color: #2b9c38;
  color: white;
}
.cid-sSfiLuYj89 #machtbegrenzung {
  background-color: #233c7a;
  color: white;
}
.cid-sSfiLuYj89 #achtsamkeit {
  background-color: #dc0c22;
  color: white;
}
.cid-sSfiLuYj89 #schwarmintelligenz {
  background-color: #f29200;
  color: white;
}
.cid-sSfiLuYj89 #freiheit,
.cid-sSfiLuYj89 #achtsamkeit,
.cid-sSfiLuYj89 #schwarmintelligenz,
.cid-sSfiLuYj89 #machtbegrenzung {
  color: white;
  padding: 15px;
  border: white solid 1px;
}
.cid-sSfiLuYj89 a {
  display: contents;
}
.cid-sSfiLuYj89 .link {
  text-align: left;
}
.cid-sSmdm9YRLP {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #36404c;
}
.cid-sSmdm9YRLP section {
  position: relative;
}
.cid-sSmdm9YRLP h4 {
  margin: 0;
}
.cid-sSmdm9YRLP img {
  height: 100px;
  padding-rigth: 8px;
}
.cid-sSmdm9YRLP a {
  font-weight: 300;
}
.cid-sSmdm9YRLP .img1 {
  color: #00bea3;
}
.cid-sSmdm9YRLP .img2 {
  color: #f1894c;
}
.cid-sSmdm9YRLP .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #f1894c;
  transition: background 0.3s;
  margin-bottom: 2rem;
}
.cid-sSmdm9YRLP .media-wrap {
  display: flex;
  margin-bottom: 1rem;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-sSmdm9YRLP .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-sSmdm9YRLP .item,
.cid-sSmdm9YRLP .link {
  display: flex;
  align-items: center;
  padding-bottom: 0.5rem;
  margin-bottom: 0.6rem;
}
.cid-sSmdm9YRLP .item h4,
.cid-sSmdm9YRLP .link h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-sSmdm9YRLP .link {
  border-bottom: 1px solid #4a535e;
}
@media (max-width: 767px) {
  .cid-sSmdm9YRLP .item {
    justify-content: center;
  }
}
.cid-sSmdm9YRLP .item-title {
  color: #c1c1c1;
}
.cid-sSmlYNUNDt {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #36404c;
}
.cid-sSmlYNUNDt .mbr-flex {
  display: flex;
  justify-content: flex-end;
}
.cid-sSmlYNUNDt section {
  position: relative;
}
.cid-sSmlYNUNDt h4 {
  margin: 0;
}
.cid-sSmlYNUNDt a {
  font-weight: 300;
}
.cid-sSmlYNUNDt .row {
  align-items: center;
}
.cid-sSmlYNUNDt .item {
  margin: 0 1.5rem;
  display: flex;
  align-items: center;
}
.cid-sSmlYNUNDt .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-sSmlYNUNDt .img1 {
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-sSmlYNUNDt .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-sSmlYNUNDt .align-left {
    text-align: center;
  }
  .cid-sSmlYNUNDt .mbr-flex {
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .cid-sSmlYNUNDt .mbr-flex {
    flex-direction: column;
    align-items: center;
  }
  .cid-sSmlYNUNDt .item {
    padding-bottom: 0.5rem;
  }
}
.cid-sSmlYNUNDt .item-title {
  color: #c1c1c1;
}
.cid-sSmlYNUNDt H4 {
  color: #c1c1c1;
}
.cid-sRPQlSG1HP {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sRPQlSG1HP nav.navbar {
  position: fixed;
}
.cid-sRPQlSG1HP .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sRPQlSG1HP .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sRPQlSG1HP .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sRPQlSG1HP .dropdown-item:hover,
.cid-sRPQlSG1HP .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sRPQlSG1HP .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sRPQlSG1HP .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sRPQlSG1HP .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sRPQlSG1HP .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sRPQlSG1HP .nav-link {
  position: relative;
}
.cid-sRPQlSG1HP .container {
  display: flex;
  margin: auto;
}
.cid-sRPQlSG1HP .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sRPQlSG1HP .dropdown-menu,
.cid-sRPQlSG1HP .navbar.opened {
  background: #2b9c38 !important;
}
.cid-sRPQlSG1HP .nav-item:focus,
.cid-sRPQlSG1HP .nav-link:focus {
  outline: none;
}
.cid-sRPQlSG1HP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sRPQlSG1HP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sRPQlSG1HP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sRPQlSG1HP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sRPQlSG1HP .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sRPQlSG1HP .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sRPQlSG1HP .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #2b9c38;
}
.cid-sRPQlSG1HP .navbar.opened {
  transition: all 0.3s;
}
.cid-sRPQlSG1HP .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sRPQlSG1HP .navbar .navbar-logo img {
  width: auto;
}
.cid-sRPQlSG1HP .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sRPQlSG1HP .navbar.collapsed {
  justify-content: center;
}
.cid-sRPQlSG1HP .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sRPQlSG1HP .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sRPQlSG1HP .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sRPQlSG1HP .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sRPQlSG1HP .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sRPQlSG1HP .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sRPQlSG1HP .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sRPQlSG1HP .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sRPQlSG1HP .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sRPQlSG1HP .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sRPQlSG1HP .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sRPQlSG1HP .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sRPQlSG1HP .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sRPQlSG1HP .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sRPQlSG1HP .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sRPQlSG1HP .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sRPQlSG1HP .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sRPQlSG1HP .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sRPQlSG1HP .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sRPQlSG1HP .navbar.navbar-short {
  min-height: 60px;
}
.cid-sRPQlSG1HP .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sRPQlSG1HP .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sRPQlSG1HP .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sRPQlSG1HP .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sRPQlSG1HP .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sRPQlSG1HP .dropdown-item.active,
.cid-sRPQlSG1HP .dropdown-item:active {
  background-color: transparent;
}
.cid-sRPQlSG1HP .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sRPQlSG1HP .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sRPQlSG1HP .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sRPQlSG1HP .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #2b9c38;
}
.cid-sRPQlSG1HP .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sRPQlSG1HP .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sRPQlSG1HP ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sRPQlSG1HP .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sRPQlSG1HP button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sRPQlSG1HP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sRPQlSG1HP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sRPQlSG1HP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRPQlSG1HP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRPQlSG1HP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sRPQlSG1HP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRPQlSG1HP nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sRPQlSG1HP nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sRPQlSG1HP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRPQlSG1HP .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sRPQlSG1HP a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sRPQlSG1HP .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sRPQlSG1HP .navbar {
    height: 70px;
  }
  .cid-sRPQlSG1HP .navbar.opened {
    height: auto;
  }
  .cid-sRPQlSG1HP .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sRPQlSG1HP a {
  color: #fff !important;
}
.cid-sRPQlSG1HP a.dropdown-item:hover {
  color: #1B3775 !important;
  background-color: #F29200 !important;
}
.cid-sXrByDlFMK {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-sXrByDlFMK .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-sXrByDlFMK .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sXrByDlFMK .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sXrByDlFMK .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sXrByDlFMK .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-sXrByDlFMK .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-sXrByDlFMK .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sXrByDlFMK div#logo {
  padding: 0px !important;
}
.cid-sSpYgAVgP1 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/mbr-1920x1165.jpg");
}
.cid-sSpYgAVgP1 .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-sSpYgAVgP1 .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-sSpYgAVgP1 .card .wrapper .mbr-section-title span:first-child {
  color: #ff5f3a;
}
.cid-sSpYgAVgP1 .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #188324;
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-sSpYgAVgP1 .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sSpYgAVgP1 .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-sSpYgAVgP1 .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-sSpYgAVgP1 .card .wrapper .mbr-list {
  margin-top: 20px;
  color: #ffffff;
}
.cid-sSpYgAVgP1 .card .wrapper .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-sSpYgAVgP1 .card .wrapper .mbr-list .list li {
  line-height: 1.75;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-sSpYgAVgP1 .card .wrapper .mbr-list .list li:before {
  font-weight: 900;
  color: #ff4e3c;
  display: inline-block;
  content: "\e97c";
  font-family: "Moririse2" !important;
  text-align: center;
  line-height: 1.5em;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
  margin-right: 15px;
}
.cid-sSpYgAVgP1 .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 12px 35px;
  line-height: 1.0625;
}
.cid-sSpYgAVgP1 .card .wrapper .mbr-section-title,
.cid-sSpYgAVgP1 .mbr-section-btn,
.cid-sSpYgAVgP1 .mbr-list .list {
  text-align: left;
  color: #ffffff;
}
.cid-sT5dtJqa11 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-sT5dtJqa11 .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sT5dtJqa11 p i {
  font-size: 0.6em;
}
.cid-sT5dtJqa11 p em {
  font-size: 0.6em;
}
.cid-sSpVmVUXoj {
  padding-top: 10rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sSpVmVUXoj .mbr-section-title {
  text-align: left;
}
.cid-sSazdh8Q8q {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sSazdh8Q8q .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-sSazdh8Q8q .card-wrapper {
  background-color: #fafafa;
  border-radius: 4px;
}
.cid-sSazdh8Q8q .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sSazdh8Q8q .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-sSazdh8Q8q .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-sSazdh8Q8q .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-sSazdh8Q8q .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sSazdh8Q8q .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-sSazdh8Q8q .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sSazdh8Q8q .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-sSazym0FmN {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sSazym0FmN .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-sSazym0FmN .card-wrapper {
  background-color: #fafafa;
  border-radius: 4px;
}
.cid-sSazym0FmN .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sSazym0FmN .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-sSazym0FmN .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-sSazym0FmN .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-sSazym0FmN .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sSazym0FmN .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-sSazym0FmN .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sSazym0FmN .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-sSazym0FmN .card-subtitle {
  color: #000000;
}
.cid-sSazym0FmN div.delete {
  visibility: hidden;
}
.cid-sSmlYNUNDt {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #36404c;
}
.cid-sSmlYNUNDt .mbr-flex {
  display: flex;
  justify-content: flex-end;
}
.cid-sSmlYNUNDt section {
  position: relative;
}
.cid-sSmlYNUNDt h4 {
  margin: 0;
}
.cid-sSmlYNUNDt a {
  font-weight: 300;
}
.cid-sSmlYNUNDt .row {
  align-items: center;
}
.cid-sSmlYNUNDt .item {
  margin: 0 1.5rem;
  display: flex;
  align-items: center;
}
.cid-sSmlYNUNDt .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-sSmlYNUNDt .img1 {
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-sSmlYNUNDt .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-sSmlYNUNDt .align-left {
    text-align: center;
  }
  .cid-sSmlYNUNDt .mbr-flex {
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .cid-sSmlYNUNDt .mbr-flex {
    flex-direction: column;
    align-items: center;
  }
  .cid-sSmlYNUNDt .item {
    padding-bottom: 0.5rem;
  }
}
.cid-sSmlYNUNDt .item-title {
  color: #c1c1c1;
}
.cid-sSmlYNUNDt H4 {
  color: #c1c1c1;
}
.cid-sRPQlSG1HP {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sRPQlSG1HP nav.navbar {
  position: fixed;
}
.cid-sRPQlSG1HP .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sRPQlSG1HP .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sRPQlSG1HP .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sRPQlSG1HP .dropdown-item:hover,
.cid-sRPQlSG1HP .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sRPQlSG1HP .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sRPQlSG1HP .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sRPQlSG1HP .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sRPQlSG1HP .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sRPQlSG1HP .nav-link {
  position: relative;
}
.cid-sRPQlSG1HP .container {
  display: flex;
  margin: auto;
}
.cid-sRPQlSG1HP .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sRPQlSG1HP .dropdown-menu,
.cid-sRPQlSG1HP .navbar.opened {
  background: #2b9c38 !important;
}
.cid-sRPQlSG1HP .nav-item:focus,
.cid-sRPQlSG1HP .nav-link:focus {
  outline: none;
}
.cid-sRPQlSG1HP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sRPQlSG1HP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sRPQlSG1HP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sRPQlSG1HP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sRPQlSG1HP .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sRPQlSG1HP .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sRPQlSG1HP .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #2b9c38;
}
.cid-sRPQlSG1HP .navbar.opened {
  transition: all 0.3s;
}
.cid-sRPQlSG1HP .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sRPQlSG1HP .navbar .navbar-logo img {
  width: auto;
}
.cid-sRPQlSG1HP .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sRPQlSG1HP .navbar.collapsed {
  justify-content: center;
}
.cid-sRPQlSG1HP .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sRPQlSG1HP .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sRPQlSG1HP .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sRPQlSG1HP .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sRPQlSG1HP .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sRPQlSG1HP .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sRPQlSG1HP .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sRPQlSG1HP .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sRPQlSG1HP .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sRPQlSG1HP .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sRPQlSG1HP .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sRPQlSG1HP .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sRPQlSG1HP .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sRPQlSG1HP .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sRPQlSG1HP .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sRPQlSG1HP .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sRPQlSG1HP .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sRPQlSG1HP .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sRPQlSG1HP .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sRPQlSG1HP .navbar.navbar-short {
  min-height: 60px;
}
.cid-sRPQlSG1HP .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sRPQlSG1HP .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sRPQlSG1HP .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sRPQlSG1HP .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sRPQlSG1HP .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sRPQlSG1HP .dropdown-item.active,
.cid-sRPQlSG1HP .dropdown-item:active {
  background-color: transparent;
}
.cid-sRPQlSG1HP .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sRPQlSG1HP .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sRPQlSG1HP .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sRPQlSG1HP .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #2b9c38;
}
.cid-sRPQlSG1HP .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sRPQlSG1HP .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sRPQlSG1HP ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sRPQlSG1HP .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sRPQlSG1HP button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sRPQlSG1HP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sRPQlSG1HP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sRPQlSG1HP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRPQlSG1HP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRPQlSG1HP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sRPQlSG1HP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRPQlSG1HP nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sRPQlSG1HP nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sRPQlSG1HP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRPQlSG1HP .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sRPQlSG1HP a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sRPQlSG1HP .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sRPQlSG1HP .navbar {
    height: 70px;
  }
  .cid-sRPQlSG1HP .navbar.opened {
    height: auto;
  }
  .cid-sRPQlSG1HP .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sRPQlSG1HP a {
  color: #fff !important;
}
.cid-sRPQlSG1HP a.dropdown-item:hover {
  color: #1B3775 !important;
  background-color: #F29200 !important;
}
.cid-sXrBGkgL74 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-sXrBGkgL74 .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-sXrBGkgL74 .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sXrBGkgL74 .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sXrBGkgL74 .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sXrBGkgL74 .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-sXrBGkgL74 .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-sXrBGkgL74 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sXrBGkgL74 div#logo {
  padding: 0px !important;
}
.cid-sSpF1cdSbl {
  padding-top: 45px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/charity-23-2000x315.png");
}
.cid-sSpF1cdSbl .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-sSpF1cdSbl .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-sSpF1cdSbl .card .wrapper .mbr-section-title span:first-child {
  color: #e43f3f;
}
.cid-sSpF1cdSbl .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #e43f3f;
  background: linear-gradient(#e43f3f 0%, #e43f3f 69%, #e43f3f 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-sSpF1cdSbl .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sSpF1cdSbl .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-sSpF1cdSbl .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-sSpF1cdSbl .card .wrapper .mbr-list {
  margin-top: 20px;
  color: #ffffff;
}
.cid-sSpF1cdSbl .card .wrapper .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-sSpF1cdSbl .card .wrapper .mbr-list .list li {
  line-height: 1.75;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-sSpF1cdSbl .card .wrapper .mbr-list .list li:before {
  font-weight: 900;
  color: #ff4e3c;
  display: inline-block;
  content: "\e97c";
  font-family: "Moririse2" !important;
  text-align: center;
  line-height: 1.5em;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
  margin-right: 15px;
}
.cid-sSpF1cdSbl .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 12px 35px;
  line-height: 1.0625;
}
.cid-sSpF1cdSbl .card .wrapper .mbr-section-title,
.cid-sSpF1cdSbl .mbr-section-btn,
.cid-sSpF1cdSbl .mbr-list .list {
  text-align: left;
  color: #ffffff;
}
.cid-sVnr99BBs7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sVnr99BBs7 .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sVnr99BBs7 p i {
  font-size: 0.6em;
}
.cid-sVnr99BBs7 p em {
  font-size: 0.6em;
}
.cid-sVnuEfkyAq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sVnv1OX6pQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sSmlYNUNDt {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #36404c;
}
.cid-sSmlYNUNDt .mbr-flex {
  display: flex;
  justify-content: flex-end;
}
.cid-sSmlYNUNDt section {
  position: relative;
}
.cid-sSmlYNUNDt h4 {
  margin: 0;
}
.cid-sSmlYNUNDt a {
  font-weight: 300;
}
.cid-sSmlYNUNDt .row {
  align-items: center;
}
.cid-sSmlYNUNDt .item {
  margin: 0 1.5rem;
  display: flex;
  align-items: center;
}
.cid-sSmlYNUNDt .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-sSmlYNUNDt .img1 {
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-sSmlYNUNDt .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-sSmlYNUNDt .align-left {
    text-align: center;
  }
  .cid-sSmlYNUNDt .mbr-flex {
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .cid-sSmlYNUNDt .mbr-flex {
    flex-direction: column;
    align-items: center;
  }
  .cid-sSmlYNUNDt .item {
    padding-bottom: 0.5rem;
  }
}
.cid-sSmlYNUNDt .item-title {
  color: #c1c1c1;
}
.cid-sSmlYNUNDt H4 {
  color: #c1c1c1;
}
.cid-sRPQlSG1HP {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sRPQlSG1HP nav.navbar {
  position: fixed;
}
.cid-sRPQlSG1HP .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sRPQlSG1HP .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sRPQlSG1HP .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sRPQlSG1HP .dropdown-item:hover,
.cid-sRPQlSG1HP .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sRPQlSG1HP .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sRPQlSG1HP .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sRPQlSG1HP .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sRPQlSG1HP .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sRPQlSG1HP .nav-link {
  position: relative;
}
.cid-sRPQlSG1HP .container {
  display: flex;
  margin: auto;
}
.cid-sRPQlSG1HP .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sRPQlSG1HP .dropdown-menu,
.cid-sRPQlSG1HP .navbar.opened {
  background: #2b9c38 !important;
}
.cid-sRPQlSG1HP .nav-item:focus,
.cid-sRPQlSG1HP .nav-link:focus {
  outline: none;
}
.cid-sRPQlSG1HP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sRPQlSG1HP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sRPQlSG1HP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sRPQlSG1HP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sRPQlSG1HP .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sRPQlSG1HP .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sRPQlSG1HP .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #2b9c38;
}
.cid-sRPQlSG1HP .navbar.opened {
  transition: all 0.3s;
}
.cid-sRPQlSG1HP .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sRPQlSG1HP .navbar .navbar-logo img {
  width: auto;
}
.cid-sRPQlSG1HP .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sRPQlSG1HP .navbar.collapsed {
  justify-content: center;
}
.cid-sRPQlSG1HP .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sRPQlSG1HP .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sRPQlSG1HP .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sRPQlSG1HP .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sRPQlSG1HP .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sRPQlSG1HP .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sRPQlSG1HP .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sRPQlSG1HP .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sRPQlSG1HP .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sRPQlSG1HP .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sRPQlSG1HP .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sRPQlSG1HP .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sRPQlSG1HP .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sRPQlSG1HP .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sRPQlSG1HP .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sRPQlSG1HP .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sRPQlSG1HP .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sRPQlSG1HP .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sRPQlSG1HP .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sRPQlSG1HP .navbar.navbar-short {
  min-height: 60px;
}
.cid-sRPQlSG1HP .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sRPQlSG1HP .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sRPQlSG1HP .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sRPQlSG1HP .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sRPQlSG1HP .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sRPQlSG1HP .dropdown-item.active,
.cid-sRPQlSG1HP .dropdown-item:active {
  background-color: transparent;
}
.cid-sRPQlSG1HP .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sRPQlSG1HP .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sRPQlSG1HP .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sRPQlSG1HP .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #2b9c38;
}
.cid-sRPQlSG1HP .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sRPQlSG1HP .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sRPQlSG1HP ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sRPQlSG1HP .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sRPQlSG1HP button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sRPQlSG1HP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sRPQlSG1HP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sRPQlSG1HP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRPQlSG1HP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRPQlSG1HP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sRPQlSG1HP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRPQlSG1HP nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sRPQlSG1HP nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sRPQlSG1HP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRPQlSG1HP .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sRPQlSG1HP a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sRPQlSG1HP .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sRPQlSG1HP .navbar {
    height: 70px;
  }
  .cid-sRPQlSG1HP .navbar.opened {
    height: auto;
  }
  .cid-sRPQlSG1HP .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sRPQlSG1HP a {
  color: #fff !important;
}
.cid-sRPQlSG1HP a.dropdown-item:hover {
  color: #1B3775 !important;
  background-color: #F29200 !important;
}
.cid-sXrBL6zhrU {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-sXrBL6zhrU .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-sXrBL6zhrU .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sXrBL6zhrU .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sXrBL6zhrU .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sXrBL6zhrU .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-sXrBL6zhrU .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-sXrBL6zhrU .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sXrBL6zhrU div#logo {
  padding: 0px !important;
}
.cid-sSpIvz8cNj {
  padding-top: 45px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/mbr-1-1920x1280.jpg");
}
.cid-sSpIvz8cNj .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-sSpIvz8cNj .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-sSpIvz8cNj .card .wrapper .mbr-section-title span:first-child {
  color: #2b9c38;
}
.cid-sSpIvz8cNj .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #2b9c38;
  background: linear-gradient(#2b9c38 0%, #188324 69%, #2b9c38 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-sSpIvz8cNj .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sSpIvz8cNj .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-sSpIvz8cNj .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-sSpIvz8cNj .card .wrapper .mbr-list {
  margin-top: 20px;
  color: #ffffff;
}
.cid-sSpIvz8cNj .card .wrapper .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-sSpIvz8cNj .card .wrapper .mbr-list .list li {
  line-height: 1.75;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-sSpIvz8cNj .card .wrapper .mbr-list .list li:before {
  font-weight: 900;
  color: #ff4e3c;
  display: inline-block;
  content: "\e97c";
  font-family: "Moririse2" !important;
  text-align: center;
  line-height: 1.5em;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
  margin-right: 15px;
}
.cid-sSpIvz8cNj .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 12px 35px;
  line-height: 1.0625;
}
.cid-sSpIvz8cNj .card .wrapper .mbr-section-title,
.cid-sSpIvz8cNj .mbr-section-btn,
.cid-sSpIvz8cNj .mbr-list .list {
  text-align: left;
  color: #ffffff;
}
.cid-sSpHLujS87 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sSpHLujS87 .timeline-element {
  position: relative;
}
.cid-sSpHLujS87 .timelines-container {
  display: flex;
  flex-wrap: wrap;
}
.cid-sSpHLujS87 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sSpHLujS87 .mbr-section-title,
.cid-sSpHLujS87 .mbr-section-subtitle,
.cid-sSpHLujS87 .timeline-date {
  text-align: center;
}
.cid-sSpHLujS87 .iconBackground {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #6592e6;
  margin-left: -9px;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-sSpHLujS87 .iconBackground {
    left: 15px;
    top: 30px;
  }
}
@media (min-width: 768px) {
  .cid-sSpHLujS87 .iconBackground {
    top: 70px;
    left: 50%;
  }
}
.cid-sSpHLujS87 .row:after {
  content: "";
  position: absolute;
  background-color: #6592e6;
  width: 2px;
}
@media (max-width: 767px) {
  .cid-sSpHLujS87 .row:after {
    height: calc(100% + 30px);
    top: 50px;
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-sSpHLujS87 .row:after {
    height: calc(100% - 20px);
    top: 90px;
    left: 50%;
  }
}
@media (max-width: 767px) {
  .cid-sSpHLujS87 .timeline-date-wrapper,
  .cid-sSpHLujS87 .timeline-text-wrapper,
  .cid-sSpHLujS87 .image-wrapper {
    padding: 0rem;
    padding-left: 2rem;
  }
  .cid-sSpHLujS87 .mbr-timeline-date {
    text-align: left !important;
  }
  .cid-sSpHLujS87 .mbr-timeline-title {
    text-align: left;
    margin-top: 1rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-sSpHLujS87 .timeline-date-wrapper,
  .cid-sSpHLujS87 .timeline-text-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sSpHLujS87 .timeline-date-wrapper,
  .cid-sSpHLujS87 .timeline-text-wrapper,
  .cid-sSpHLujS87 .image-wrapper {
    padding: 2rem;
  }
}
.cid-sSpHLujS87 .mbr-text {
  text-align: left;
}
.cid-sSmlYNUNDt {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #36404c;
}
.cid-sSmlYNUNDt .mbr-flex {
  display: flex;
  justify-content: flex-end;
}
.cid-sSmlYNUNDt section {
  position: relative;
}
.cid-sSmlYNUNDt h4 {
  margin: 0;
}
.cid-sSmlYNUNDt a {
  font-weight: 300;
}
.cid-sSmlYNUNDt .row {
  align-items: center;
}
.cid-sSmlYNUNDt .item {
  margin: 0 1.5rem;
  display: flex;
  align-items: center;
}
.cid-sSmlYNUNDt .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-sSmlYNUNDt .img1 {
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-sSmlYNUNDt .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-sSmlYNUNDt .align-left {
    text-align: center;
  }
  .cid-sSmlYNUNDt .mbr-flex {
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .cid-sSmlYNUNDt .mbr-flex {
    flex-direction: column;
    align-items: center;
  }
  .cid-sSmlYNUNDt .item {
    padding-bottom: 0.5rem;
  }
}
.cid-sSmlYNUNDt .item-title {
  color: #c1c1c1;
}
.cid-sSmlYNUNDt H4 {
  color: #c1c1c1;
}
.cid-sSxFT5XuFr {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sSxFT5XuFr nav.navbar {
  position: fixed;
}
.cid-sSxFT5XuFr .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sSxFT5XuFr .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sSxFT5XuFr .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sSxFT5XuFr .dropdown-item:hover,
.cid-sSxFT5XuFr .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sSxFT5XuFr .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sSxFT5XuFr .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sSxFT5XuFr .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sSxFT5XuFr .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sSxFT5XuFr .nav-link {
  position: relative;
}
.cid-sSxFT5XuFr .container {
  display: flex;
  margin: auto;
}
.cid-sSxFT5XuFr .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sSxFT5XuFr .dropdown-menu,
.cid-sSxFT5XuFr .navbar.opened {
  background: #2b9c38 !important;
}
.cid-sSxFT5XuFr .nav-item:focus,
.cid-sSxFT5XuFr .nav-link:focus {
  outline: none;
}
.cid-sSxFT5XuFr .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sSxFT5XuFr .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sSxFT5XuFr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sSxFT5XuFr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sSxFT5XuFr .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sSxFT5XuFr .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sSxFT5XuFr .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #2b9c38;
}
.cid-sSxFT5XuFr .navbar.opened {
  transition: all 0.3s;
}
.cid-sSxFT5XuFr .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sSxFT5XuFr .navbar .navbar-logo img {
  width: auto;
}
.cid-sSxFT5XuFr .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sSxFT5XuFr .navbar.collapsed {
  justify-content: center;
}
.cid-sSxFT5XuFr .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sSxFT5XuFr .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sSxFT5XuFr .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sSxFT5XuFr .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sSxFT5XuFr .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sSxFT5XuFr .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sSxFT5XuFr .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sSxFT5XuFr .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sSxFT5XuFr .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sSxFT5XuFr .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sSxFT5XuFr .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sSxFT5XuFr .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sSxFT5XuFr .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sSxFT5XuFr .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sSxFT5XuFr .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sSxFT5XuFr .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sSxFT5XuFr .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sSxFT5XuFr .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sSxFT5XuFr .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sSxFT5XuFr .navbar.navbar-short {
  min-height: 60px;
}
.cid-sSxFT5XuFr .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sSxFT5XuFr .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sSxFT5XuFr .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sSxFT5XuFr .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sSxFT5XuFr .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sSxFT5XuFr .dropdown-item.active,
.cid-sSxFT5XuFr .dropdown-item:active {
  background-color: transparent;
}
.cid-sSxFT5XuFr .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sSxFT5XuFr .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sSxFT5XuFr .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sSxFT5XuFr .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #2b9c38;
}
.cid-sSxFT5XuFr .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sSxFT5XuFr .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sSxFT5XuFr ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sSxFT5XuFr .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sSxFT5XuFr button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sSxFT5XuFr button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sSxFT5XuFr button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sSxFT5XuFr button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sSxFT5XuFr button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sSxFT5XuFr button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sSxFT5XuFr nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sSxFT5XuFr nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sSxFT5XuFr nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sSxFT5XuFr nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sSxFT5XuFr .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sSxFT5XuFr a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sSxFT5XuFr .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sSxFT5XuFr .navbar {
    height: 70px;
  }
  .cid-sSxFT5XuFr .navbar.opened {
    height: auto;
  }
  .cid-sSxFT5XuFr .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sSxFT5XuFr a {
  color: #fff !important;
}
.cid-sSxFT5XuFr a.dropdown-item:hover {
  color: #1B3775 !important;
  background-color: #F29200 !important;
}
.cid-sSxFT6vqr5 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-sSxFT6vqr5 .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-sSxFT6vqr5 .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sSxFT6vqr5 .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sSxFT6vqr5 .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sSxFT6vqr5 .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-sSxFT6vqr5 .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-sSxFT6vqr5 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sSxFT6vqr5 div#logo {
  padding: 0px !important;
}
.cid-sWAPmXQenr {
  padding-top: 45px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/mbr-1920x884.jpg");
}
.cid-sWAPmXQenr .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-sWAPmXQenr .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-sWAPmXQenr .card .wrapper .mbr-section-title span:first-child {
  color: #ff5f3a;
}
.cid-sWAPmXQenr .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #ff5f3a;
  background: linear-gradient(#ff5f3a 0%, #f35733 69%, #ff5f3a 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-sWAPmXQenr .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sWAPmXQenr .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-sWAPmXQenr .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-sWAPmXQenr .card .wrapper .mbr-list {
  margin-top: 20px;
  color: #ffffff;
}
.cid-sWAPmXQenr .card .wrapper .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-sWAPmXQenr .card .wrapper .mbr-list .list li {
  line-height: 1.75;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-sWAPmXQenr .card .wrapper .mbr-list .list li:before {
  font-weight: 900;
  color: #ff4e3c;
  display: inline-block;
  content: "\e97c";
  font-family: "Moririse2" !important;
  text-align: center;
  line-height: 1.5em;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
  margin-right: 15px;
}
.cid-sWAPmXQenr .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 12px 35px;
  line-height: 1.0625;
}
.cid-sWAPmXQenr .card .wrapper .mbr-section-title,
.cid-sWAPmXQenr .mbr-section-btn,
.cid-sWAPmXQenr .mbr-list .list {
  text-align: left;
  color: #ffffff;
}
.cid-sVHlqC104S {
  padding-top: 135px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-sVHlqC104S .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-sVHlqC104S input::-webkit-clear-button {
  display: none;
}
.cid-sVHlqC104S input::-webkit-inner-spin-button {
  display: none;
}
.cid-sVHlqC104S input::-webkit-outer-spin-button {
  display: none;
}
.cid-sVHlqC104S input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-sVHlqC104S div.form-group {
  font-size: 0.6em;
}
.cid-sVHlqC104S .margin50 {
  margin: 50px 0;
}
.cid-sVHlqC104S textarea {
  height: 250px;
}
.cid-sVHlqC104S h4 {
  margin-bottom: 3rem;
}
.cid-sYRw5bHZaV {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sSxFT8yJx3 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #36404c;
}
.cid-sSxFT8yJx3 .mbr-flex {
  display: flex;
  justify-content: flex-end;
}
.cid-sSxFT8yJx3 section {
  position: relative;
}
.cid-sSxFT8yJx3 h4 {
  margin: 0;
}
.cid-sSxFT8yJx3 a {
  font-weight: 300;
}
.cid-sSxFT8yJx3 .row {
  align-items: center;
}
.cid-sSxFT8yJx3 .item {
  margin: 0 1.5rem;
  display: flex;
  align-items: center;
}
.cid-sSxFT8yJx3 .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-sSxFT8yJx3 .img1 {
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-sSxFT8yJx3 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-sSxFT8yJx3 .align-left {
    text-align: center;
  }
  .cid-sSxFT8yJx3 .mbr-flex {
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .cid-sSxFT8yJx3 .mbr-flex {
    flex-direction: column;
    align-items: center;
  }
  .cid-sSxFT8yJx3 .item {
    padding-bottom: 0.5rem;
  }
}
.cid-sSxFT8yJx3 .item-title {
  color: #c1c1c1;
}
.cid-sSxFT8yJx3 H4 {
  color: #c1c1c1;
}
.cid-sSs5PZbBHz {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sSs5PZbBHz nav.navbar {
  position: fixed;
}
.cid-sSs5PZbBHz .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sSs5PZbBHz .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sSs5PZbBHz .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sSs5PZbBHz .dropdown-item:hover,
.cid-sSs5PZbBHz .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sSs5PZbBHz .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sSs5PZbBHz .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sSs5PZbBHz .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sSs5PZbBHz .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sSs5PZbBHz .nav-link {
  position: relative;
}
.cid-sSs5PZbBHz .container {
  display: flex;
  margin: auto;
}
.cid-sSs5PZbBHz .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sSs5PZbBHz .dropdown-menu,
.cid-sSs5PZbBHz .navbar.opened {
  background: #2b9c38 !important;
}
.cid-sSs5PZbBHz .nav-item:focus,
.cid-sSs5PZbBHz .nav-link:focus {
  outline: none;
}
.cid-sSs5PZbBHz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sSs5PZbBHz .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sSs5PZbBHz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sSs5PZbBHz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sSs5PZbBHz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sSs5PZbBHz .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sSs5PZbBHz .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #2b9c38;
}
.cid-sSs5PZbBHz .navbar.opened {
  transition: all 0.3s;
}
.cid-sSs5PZbBHz .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sSs5PZbBHz .navbar .navbar-logo img {
  width: auto;
}
.cid-sSs5PZbBHz .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sSs5PZbBHz .navbar.collapsed {
  justify-content: center;
}
.cid-sSs5PZbBHz .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sSs5PZbBHz .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sSs5PZbBHz .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sSs5PZbBHz .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sSs5PZbBHz .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sSs5PZbBHz .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sSs5PZbBHz .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sSs5PZbBHz .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sSs5PZbBHz .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sSs5PZbBHz .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sSs5PZbBHz .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sSs5PZbBHz .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sSs5PZbBHz .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sSs5PZbBHz .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sSs5PZbBHz .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sSs5PZbBHz .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sSs5PZbBHz .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sSs5PZbBHz .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sSs5PZbBHz .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sSs5PZbBHz .navbar.navbar-short {
  min-height: 60px;
}
.cid-sSs5PZbBHz .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sSs5PZbBHz .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sSs5PZbBHz .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sSs5PZbBHz .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sSs5PZbBHz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sSs5PZbBHz .dropdown-item.active,
.cid-sSs5PZbBHz .dropdown-item:active {
  background-color: transparent;
}
.cid-sSs5PZbBHz .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sSs5PZbBHz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sSs5PZbBHz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sSs5PZbBHz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #2b9c38;
}
.cid-sSs5PZbBHz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sSs5PZbBHz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sSs5PZbBHz ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sSs5PZbBHz .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sSs5PZbBHz button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sSs5PZbBHz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sSs5PZbBHz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sSs5PZbBHz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sSs5PZbBHz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sSs5PZbBHz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sSs5PZbBHz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sSs5PZbBHz nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sSs5PZbBHz nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sSs5PZbBHz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sSs5PZbBHz .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sSs5PZbBHz a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sSs5PZbBHz .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sSs5PZbBHz .navbar {
    height: 70px;
  }
  .cid-sSs5PZbBHz .navbar.opened {
    height: auto;
  }
  .cid-sSs5PZbBHz .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sSs5PZbBHz a {
  color: #fff !important;
}
.cid-sSs5PZbBHz a.dropdown-item:hover {
  color: #1B3775 !important;
  background-color: #F29200 !important;
}
.cid-sXrBnCdP3k {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-sXrBnCdP3k .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-sXrBnCdP3k .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sXrBnCdP3k .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sXrBnCdP3k .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sXrBnCdP3k .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-sXrBnCdP3k .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-sXrBnCdP3k .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sXrBnCdP3k div#logo {
  padding: 0px !important;
}
.cid-sSOxszjwFM {
  padding-top: 45px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/mbr-1920x960.jpg");
}
.cid-sSOxszjwFM .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-sSOxszjwFM .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-sSOxszjwFM .card .wrapper .mbr-section-title span:first-child {
  color: #ff5f3a;
}
.cid-sSOxszjwFM .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #ff5f3a;
  background: linear-gradient(#ff5f3a 0%, #f35733 69%, #ff5f3a 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-sSOxszjwFM .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sSOxszjwFM .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-sSOxszjwFM .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-sSOxszjwFM .card .wrapper .mbr-list {
  margin-top: 20px;
  color: #ffffff;
}
.cid-sSOxszjwFM .card .wrapper .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-sSOxszjwFM .card .wrapper .mbr-list .list li {
  line-height: 1.75;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-sSOxszjwFM .card .wrapper .mbr-list .list li:before {
  font-weight: 900;
  color: #ff4e3c;
  display: inline-block;
  content: "\e97c";
  font-family: "Moririse2" !important;
  text-align: center;
  line-height: 1.5em;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
  margin-right: 15px;
}
.cid-sSOxszjwFM .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 12px 35px;
  line-height: 1.0625;
}
.cid-sSOxszjwFM .card .wrapper .mbr-section-title,
.cid-sSOxszjwFM .mbr-section-btn,
.cid-sSOxszjwFM .mbr-list .list {
  text-align: left;
  color: #ffffff;
}
.cid-sSIZ0J6o7q {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sSIZuNDLLk {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sSIZIbhOeq {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sSIZFCB3o9 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sSIZHyPZui {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sSIZGniwnC {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sSIZH1mIDq {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sSJ48RJAlt {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sSJ48furH1 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sSJ47xCmDX {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sSJ6y971lU {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sSJ6L4uVJm {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sSJ6LPOxIu {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sSJ6JzuYc2 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sSJ77XOGbx {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sSJ7bW3UpB {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sSJ7IIY6pD {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sSJ7Klpfco {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sSJ8f9CrvA {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sSJ8dtT8bE {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sSJ8QEFSqm {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sSJ8Rj8tSs {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sSJ8RTAtKu {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sSJ8Q1SgKB {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sSJ8MAySE4 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sSJ9AEgJAL {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sSJ9IiIOX1 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sSJ9J9lZhM {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sSJ9K2yNlY {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sSJ9KIvawz {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sSJa6rXIOf {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sSJa82QLTt {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sSJa9xhbNh {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sSJaqUEe63 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sSJatQO7w8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sSJauD89GI {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sSJat8MWMS {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sSJasvl4b3 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sSJaWOFwrV {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sSJaYgzzBu {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sSJboMPZUG {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sSJbxa8YWS {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sSJbAA4TPu {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sSJbCDkIfI {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sSJbDFzVgp {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sSJbEc2oNk {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sSJbBYSQYX {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sSJbBq5fHa {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sSJbD5T9l1 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sSJcbeqrBc {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sSJcd0keRW {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sSJcdCsxN0 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sSJccgUoqC {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sSJccgUoqC img#dsgvo {
  width: 250px;
  height: 250px;
}
.cid-sSs5Q2xHAY {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #36404c;
}
.cid-sSs5Q2xHAY .mbr-flex {
  display: flex;
  justify-content: flex-end;
}
.cid-sSs5Q2xHAY section {
  position: relative;
}
.cid-sSs5Q2xHAY h4 {
  margin: 0;
}
.cid-sSs5Q2xHAY a {
  font-weight: 300;
}
.cid-sSs5Q2xHAY .row {
  align-items: center;
}
.cid-sSs5Q2xHAY .item {
  margin: 0 1.5rem;
  display: flex;
  align-items: center;
}
.cid-sSs5Q2xHAY .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-sSs5Q2xHAY .img1 {
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-sSs5Q2xHAY .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-sSs5Q2xHAY .align-left {
    text-align: center;
  }
  .cid-sSs5Q2xHAY .mbr-flex {
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .cid-sSs5Q2xHAY .mbr-flex {
    flex-direction: column;
    align-items: center;
  }
  .cid-sSs5Q2xHAY .item {
    padding-bottom: 0.5rem;
  }
}
.cid-sSs5Q2xHAY .item-title {
  color: #c1c1c1;
}
.cid-sSs5Q2xHAY H4 {
  color: #c1c1c1;
}
.cid-sRPQlSG1HP {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sRPQlSG1HP nav.navbar {
  position: fixed;
}
.cid-sRPQlSG1HP .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sRPQlSG1HP .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sRPQlSG1HP .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sRPQlSG1HP .dropdown-item:hover,
.cid-sRPQlSG1HP .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sRPQlSG1HP .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sRPQlSG1HP .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sRPQlSG1HP .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sRPQlSG1HP .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sRPQlSG1HP .nav-link {
  position: relative;
}
.cid-sRPQlSG1HP .container {
  display: flex;
  margin: auto;
}
.cid-sRPQlSG1HP .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sRPQlSG1HP .dropdown-menu,
.cid-sRPQlSG1HP .navbar.opened {
  background: #2b9c38 !important;
}
.cid-sRPQlSG1HP .nav-item:focus,
.cid-sRPQlSG1HP .nav-link:focus {
  outline: none;
}
.cid-sRPQlSG1HP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sRPQlSG1HP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sRPQlSG1HP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sRPQlSG1HP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sRPQlSG1HP .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sRPQlSG1HP .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sRPQlSG1HP .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #2b9c38;
}
.cid-sRPQlSG1HP .navbar.opened {
  transition: all 0.3s;
}
.cid-sRPQlSG1HP .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sRPQlSG1HP .navbar .navbar-logo img {
  width: auto;
}
.cid-sRPQlSG1HP .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sRPQlSG1HP .navbar.collapsed {
  justify-content: center;
}
.cid-sRPQlSG1HP .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sRPQlSG1HP .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sRPQlSG1HP .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sRPQlSG1HP .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sRPQlSG1HP .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sRPQlSG1HP .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sRPQlSG1HP .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sRPQlSG1HP .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sRPQlSG1HP .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sRPQlSG1HP .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sRPQlSG1HP .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sRPQlSG1HP .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sRPQlSG1HP .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sRPQlSG1HP .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sRPQlSG1HP .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sRPQlSG1HP .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sRPQlSG1HP .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sRPQlSG1HP .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sRPQlSG1HP .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sRPQlSG1HP .navbar.navbar-short {
  min-height: 60px;
}
.cid-sRPQlSG1HP .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sRPQlSG1HP .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sRPQlSG1HP .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sRPQlSG1HP .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sRPQlSG1HP .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sRPQlSG1HP .dropdown-item.active,
.cid-sRPQlSG1HP .dropdown-item:active {
  background-color: transparent;
}
.cid-sRPQlSG1HP .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sRPQlSG1HP .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sRPQlSG1HP .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sRPQlSG1HP .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #2b9c38;
}
.cid-sRPQlSG1HP .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sRPQlSG1HP .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sRPQlSG1HP ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sRPQlSG1HP .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sRPQlSG1HP button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sRPQlSG1HP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sRPQlSG1HP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sRPQlSG1HP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRPQlSG1HP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRPQlSG1HP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sRPQlSG1HP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRPQlSG1HP nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sRPQlSG1HP nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sRPQlSG1HP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRPQlSG1HP .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sRPQlSG1HP a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sRPQlSG1HP .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sRPQlSG1HP .navbar {
    height: 70px;
  }
  .cid-sRPQlSG1HP .navbar.opened {
    height: auto;
  }
  .cid-sRPQlSG1HP .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sRPQlSG1HP a {
  color: #fff !important;
}
.cid-sRPQlSG1HP a.dropdown-item:hover {
  color: #1B3775 !important;
  background-color: #F29200 !important;
}
.cid-sXrB7mpECR {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-sXrB7mpECR .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-sXrB7mpECR .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sXrB7mpECR .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sXrB7mpECR .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sXrB7mpECR .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-sXrB7mpECR .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-sXrB7mpECR .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sXrB7mpECR div#logo {
  padding: 0px !important;
}
.cid-sSIVlQlEty {
  padding-top: 45px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/mbr-1920x1440.png");
}
.cid-sSIVlQlEty .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-sSIVlQlEty .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-sSIVlQlEty .card .wrapper .mbr-section-title span:first-child {
  color: #ff5f3a;
}
.cid-sSIVlQlEty .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #ff5f3a;
  background: linear-gradient(#ff5f3a 0%, #f35733 69%, #ff5f3a 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-sSIVlQlEty .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sSIVlQlEty .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-sSIVlQlEty .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-sSIVlQlEty .card .wrapper .mbr-list {
  margin-top: 20px;
  color: #ffffff;
}
.cid-sSIVlQlEty .card .wrapper .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-sSIVlQlEty .card .wrapper .mbr-list .list li {
  line-height: 1.75;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-sSIVlQlEty .card .wrapper .mbr-list .list li:before {
  font-weight: 900;
  color: #ff4e3c;
  display: inline-block;
  content: "\e97c";
  font-family: "Moririse2" !important;
  text-align: center;
  line-height: 1.5em;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
  margin-right: 15px;
}
.cid-sSIVlQlEty .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 12px 35px;
  line-height: 1.0625;
}
.cid-sSIVlQlEty .card .wrapper .mbr-section-title,
.cid-sSIVlQlEty .mbr-section-btn,
.cid-sSIVlQlEty .mbr-list .list {
  text-align: left;
  color: #ffffff;
}
.cid-sSIVo9L5eA {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sSOso8xmw4 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sSOspIfArS {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sSOuDt3VX2 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sSOuQ3YqHM {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sSmlYNUNDt {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #36404c;
}
.cid-sSmlYNUNDt .mbr-flex {
  display: flex;
  justify-content: flex-end;
}
.cid-sSmlYNUNDt section {
  position: relative;
}
.cid-sSmlYNUNDt h4 {
  margin: 0;
}
.cid-sSmlYNUNDt a {
  font-weight: 300;
}
.cid-sSmlYNUNDt .row {
  align-items: center;
}
.cid-sSmlYNUNDt .item {
  margin: 0 1.5rem;
  display: flex;
  align-items: center;
}
.cid-sSmlYNUNDt .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-sSmlYNUNDt .img1 {
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-sSmlYNUNDt .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-sSmlYNUNDt .align-left {
    text-align: center;
  }
  .cid-sSmlYNUNDt .mbr-flex {
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .cid-sSmlYNUNDt .mbr-flex {
    flex-direction: column;
    align-items: center;
  }
  .cid-sSmlYNUNDt .item {
    padding-bottom: 0.5rem;
  }
}
.cid-sSmlYNUNDt .item-title {
  color: #c1c1c1;
}
.cid-sSmlYNUNDt H4 {
  color: #c1c1c1;
}
.cid-sT1aptNTr2 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sT1aptNTr2 nav.navbar {
  position: fixed;
}
.cid-sT1aptNTr2 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sT1aptNTr2 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sT1aptNTr2 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sT1aptNTr2 .dropdown-item:hover,
.cid-sT1aptNTr2 .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sT1aptNTr2 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sT1aptNTr2 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sT1aptNTr2 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sT1aptNTr2 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sT1aptNTr2 .nav-link {
  position: relative;
}
.cid-sT1aptNTr2 .container {
  display: flex;
  margin: auto;
}
.cid-sT1aptNTr2 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sT1aptNTr2 .dropdown-menu,
.cid-sT1aptNTr2 .navbar.opened {
  background: #2b9c38 !important;
}
.cid-sT1aptNTr2 .nav-item:focus,
.cid-sT1aptNTr2 .nav-link:focus {
  outline: none;
}
.cid-sT1aptNTr2 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sT1aptNTr2 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sT1aptNTr2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sT1aptNTr2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sT1aptNTr2 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sT1aptNTr2 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sT1aptNTr2 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #2b9c38;
}
.cid-sT1aptNTr2 .navbar.opened {
  transition: all 0.3s;
}
.cid-sT1aptNTr2 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sT1aptNTr2 .navbar .navbar-logo img {
  width: auto;
}
.cid-sT1aptNTr2 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sT1aptNTr2 .navbar.collapsed {
  justify-content: center;
}
.cid-sT1aptNTr2 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sT1aptNTr2 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sT1aptNTr2 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sT1aptNTr2 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sT1aptNTr2 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sT1aptNTr2 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sT1aptNTr2 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sT1aptNTr2 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sT1aptNTr2 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sT1aptNTr2 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sT1aptNTr2 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sT1aptNTr2 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sT1aptNTr2 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sT1aptNTr2 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sT1aptNTr2 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sT1aptNTr2 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sT1aptNTr2 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sT1aptNTr2 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sT1aptNTr2 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sT1aptNTr2 .navbar.navbar-short {
  min-height: 60px;
}
.cid-sT1aptNTr2 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sT1aptNTr2 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sT1aptNTr2 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sT1aptNTr2 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sT1aptNTr2 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sT1aptNTr2 .dropdown-item.active,
.cid-sT1aptNTr2 .dropdown-item:active {
  background-color: transparent;
}
.cid-sT1aptNTr2 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sT1aptNTr2 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sT1aptNTr2 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sT1aptNTr2 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #2b9c38;
}
.cid-sT1aptNTr2 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sT1aptNTr2 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sT1aptNTr2 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sT1aptNTr2 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sT1aptNTr2 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sT1aptNTr2 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sT1aptNTr2 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sT1aptNTr2 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sT1aptNTr2 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sT1aptNTr2 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sT1aptNTr2 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sT1aptNTr2 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sT1aptNTr2 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sT1aptNTr2 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sT1aptNTr2 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sT1aptNTr2 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sT1aptNTr2 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sT1aptNTr2 .navbar {
    height: 70px;
  }
  .cid-sT1aptNTr2 .navbar.opened {
    height: auto;
  }
  .cid-sT1aptNTr2 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sT1aptNTr2 a {
  color: #fff !important;
}
.cid-sT1aptNTr2 a.dropdown-item:hover {
  color: #1B3775 !important;
  background-color: #F29200 !important;
}
.cid-sXrAZgv94M {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-sXrAZgv94M .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-sXrAZgv94M .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sXrAZgv94M .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sXrAZgv94M .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sXrAZgv94M .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-sXrAZgv94M .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-sXrAZgv94M .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sXrAZgv94M div#logo {
  padding: 0px !important;
}
.cid-sT1apuWGEQ {
  padding-top: 45px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/mbr-1920x1211.png");
}
.cid-sT1apuWGEQ .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-sT1apuWGEQ .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-sT1apuWGEQ .card .wrapper .mbr-section-title span:first-child {
  color: #ff5f3a;
}
.cid-sT1apuWGEQ .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #ff5f3a;
  background: linear-gradient(#ff5f3a 0%, #f35733 69%, #ff5f3a 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-sT1apuWGEQ .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sT1apuWGEQ .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-sT1apuWGEQ .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-sT1apuWGEQ .card .wrapper .mbr-list {
  margin-top: 20px;
  color: #ffffff;
}
.cid-sT1apuWGEQ .card .wrapper .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-sT1apuWGEQ .card .wrapper .mbr-list .list li {
  line-height: 1.75;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-sT1apuWGEQ .card .wrapper .mbr-list .list li:before {
  font-weight: 900;
  color: #ff4e3c;
  display: inline-block;
  content: "\e97c";
  font-family: "Moririse2" !important;
  text-align: center;
  line-height: 1.5em;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
  margin-right: 15px;
}
.cid-sT1apuWGEQ .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 12px 35px;
  line-height: 1.0625;
}
.cid-sT1apuWGEQ .card .wrapper .mbr-section-title,
.cid-sT1apuWGEQ .mbr-section-btn,
.cid-sT1apuWGEQ .mbr-list .list {
  text-align: left;
  color: #ffffff;
}
.cid-sT1apvo3IR {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sT1cO1KVEP {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sT1dv4uzGt {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sT1dLQfoCK {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sT1efOrcVX {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sT1efOrcVX ol {
  list-style-type: lower-alpha;
  margin-left: 20px;
  margin-bottom: 20px;
}
.cid-sT1efOrcVX ol li {
  padding-left: 10px;
}
.cid-sT1egyWFJq {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sWiV24Uvi6 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sWiV24Uvi6 ol {
  list-style-type: lower-alpha;
  margin-left: 20px;
  margin-bottom: 20px;
}
.cid-sWiV24Uvi6 ol li {
  padding-left: 10px;
}
.cid-sWiV1fPHDS {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sWiUVUid7X {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sWj2mB29Gp {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sWj1SxsX5Z {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sWj73U4WL7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sWj73U4WL7 .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-sWj73U4WL7 .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-sWj73U4WL7 .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sWj73U4WL7 .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-sWj73U4WL7 .mbr-iconfont {
  font-size: 3rem;
  padding-right: 1.5rem;
  color: #6592e6;
}
.cid-sWj73U4WL7 a.text-primary {
  position: relative;
  top: 10px;
  display: block;
  width: 100%;
  height: 30px;
}
.cid-sT1apwZwqO {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #36404c;
}
.cid-sT1apwZwqO .mbr-flex {
  display: flex;
  justify-content: flex-end;
}
.cid-sT1apwZwqO section {
  position: relative;
}
.cid-sT1apwZwqO h4 {
  margin: 0;
}
.cid-sT1apwZwqO a {
  font-weight: 300;
}
.cid-sT1apwZwqO .row {
  align-items: center;
}
.cid-sT1apwZwqO .item {
  margin: 0 1.5rem;
  display: flex;
  align-items: center;
}
.cid-sT1apwZwqO .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-sT1apwZwqO .img1 {
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-sT1apwZwqO .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-sT1apwZwqO .align-left {
    text-align: center;
  }
  .cid-sT1apwZwqO .mbr-flex {
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .cid-sT1apwZwqO .mbr-flex {
    flex-direction: column;
    align-items: center;
  }
  .cid-sT1apwZwqO .item {
    padding-bottom: 0.5rem;
  }
}
.cid-sT1apwZwqO .item-title {
  color: #c1c1c1;
}
.cid-sT1apwZwqO H4 {
  color: #c1c1c1;
}
.cid-sWAFq6D1jt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sWAFq6D1jt nav.navbar {
  position: fixed;
}
.cid-sWAFq6D1jt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sWAFq6D1jt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sWAFq6D1jt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sWAFq6D1jt .dropdown-item:hover,
.cid-sWAFq6D1jt .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sWAFq6D1jt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sWAFq6D1jt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sWAFq6D1jt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sWAFq6D1jt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sWAFq6D1jt .nav-link {
  position: relative;
}
.cid-sWAFq6D1jt .container {
  display: flex;
  margin: auto;
}
.cid-sWAFq6D1jt .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sWAFq6D1jt .dropdown-menu,
.cid-sWAFq6D1jt .navbar.opened {
  background: #2b9c38 !important;
}
.cid-sWAFq6D1jt .nav-item:focus,
.cid-sWAFq6D1jt .nav-link:focus {
  outline: none;
}
.cid-sWAFq6D1jt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sWAFq6D1jt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sWAFq6D1jt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sWAFq6D1jt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sWAFq6D1jt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sWAFq6D1jt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sWAFq6D1jt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #2b9c38;
}
.cid-sWAFq6D1jt .navbar.opened {
  transition: all 0.3s;
}
.cid-sWAFq6D1jt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sWAFq6D1jt .navbar .navbar-logo img {
  width: auto;
}
.cid-sWAFq6D1jt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sWAFq6D1jt .navbar.collapsed {
  justify-content: center;
}
.cid-sWAFq6D1jt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sWAFq6D1jt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sWAFq6D1jt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sWAFq6D1jt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sWAFq6D1jt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sWAFq6D1jt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sWAFq6D1jt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sWAFq6D1jt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sWAFq6D1jt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sWAFq6D1jt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sWAFq6D1jt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sWAFq6D1jt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sWAFq6D1jt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sWAFq6D1jt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sWAFq6D1jt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sWAFq6D1jt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sWAFq6D1jt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sWAFq6D1jt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sWAFq6D1jt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sWAFq6D1jt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sWAFq6D1jt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sWAFq6D1jt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sWAFq6D1jt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sWAFq6D1jt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sWAFq6D1jt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sWAFq6D1jt .dropdown-item.active,
.cid-sWAFq6D1jt .dropdown-item:active {
  background-color: transparent;
}
.cid-sWAFq6D1jt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sWAFq6D1jt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sWAFq6D1jt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sWAFq6D1jt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #2b9c38;
}
.cid-sWAFq6D1jt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sWAFq6D1jt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sWAFq6D1jt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sWAFq6D1jt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sWAFq6D1jt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sWAFq6D1jt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sWAFq6D1jt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sWAFq6D1jt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sWAFq6D1jt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sWAFq6D1jt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sWAFq6D1jt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sWAFq6D1jt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sWAFq6D1jt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sWAFq6D1jt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sWAFq6D1jt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sWAFq6D1jt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sWAFq6D1jt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sWAFq6D1jt .navbar {
    height: 70px;
  }
  .cid-sWAFq6D1jt .navbar.opened {
    height: auto;
  }
  .cid-sWAFq6D1jt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sWAFq6D1jt a {
  color: #fff !important;
}
.cid-sWAFq6D1jt a.dropdown-item:hover {
  color: #1B3775 !important;
  background-color: #F29200 !important;
}
.cid-sWAFq7s3mK {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-sWAFq7s3mK .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-sWAFq7s3mK .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sWAFq7s3mK .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sWAFq7s3mK .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sWAFq7s3mK .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-sWAFq7s3mK .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-sWAFq7s3mK .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sWAFq7s3mK div#logo {
  padding: 0px !important;
}
.cid-sWAFq8va3o {
  padding-top: 45px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/mbr-1920x884.jpg");
}
.cid-sWAFq8va3o .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-sWAFq8va3o .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-sWAFq8va3o .card .wrapper .mbr-section-title span:first-child {
  color: #ff5f3a;
}
.cid-sWAFq8va3o .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #ff5f3a;
  background: linear-gradient(#ff5f3a 0%, #f35733 69%, #ff5f3a 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-sWAFq8va3o .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sWAFq8va3o .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-sWAFq8va3o .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-sWAFq8va3o .card .wrapper .mbr-list {
  margin-top: 20px;
  color: #ffffff;
}
.cid-sWAFq8va3o .card .wrapper .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-sWAFq8va3o .card .wrapper .mbr-list .list li {
  line-height: 1.75;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-sWAFq8va3o .card .wrapper .mbr-list .list li:before {
  font-weight: 900;
  color: #ff4e3c;
  display: inline-block;
  content: "\e97c";
  font-family: "Moririse2" !important;
  text-align: center;
  line-height: 1.5em;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
  margin-right: 15px;
}
.cid-sWAFq8va3o .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 12px 35px;
  line-height: 1.0625;
}
.cid-sWAFq8va3o .card .wrapper .mbr-section-title,
.cid-sWAFq8va3o .mbr-section-btn,
.cid-sWAFq8va3o .mbr-list .list {
  text-align: left;
  color: #ffffff;
}
.cid-sWAGKHb54K {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sWAGKHb54K .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sWAGKHb54K img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sWAGKHb54K .text-wrapper {
    padding: 2rem;
  }
}
.cid-sWAGKHb54K div.image-wrapper img {
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border: solid 1px #C5C5C1;
}
.cid-sWAFq92UWj {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #36404c;
}
.cid-sWAFq92UWj .mbr-flex {
  display: flex;
  justify-content: flex-end;
}
.cid-sWAFq92UWj section {
  position: relative;
}
.cid-sWAFq92UWj h4 {
  margin: 0;
}
.cid-sWAFq92UWj a {
  font-weight: 300;
}
.cid-sWAFq92UWj .row {
  align-items: center;
}
.cid-sWAFq92UWj .item {
  margin: 0 1.5rem;
  display: flex;
  align-items: center;
}
.cid-sWAFq92UWj .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-sWAFq92UWj .img1 {
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-sWAFq92UWj .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-sWAFq92UWj .align-left {
    text-align: center;
  }
  .cid-sWAFq92UWj .mbr-flex {
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .cid-sWAFq92UWj .mbr-flex {
    flex-direction: column;
    align-items: center;
  }
  .cid-sWAFq92UWj .item {
    padding-bottom: 0.5rem;
  }
}
.cid-sWAFq92UWj .item-title {
  color: #c1c1c1;
}
.cid-sWAFq92UWj H4 {
  color: #c1c1c1;
}
.cid-sWXXUqU8pP {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sWXXUqU8pP nav.navbar {
  position: fixed;
}
.cid-sWXXUqU8pP .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sWXXUqU8pP .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sWXXUqU8pP .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sWXXUqU8pP .dropdown-item:hover,
.cid-sWXXUqU8pP .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sWXXUqU8pP .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sWXXUqU8pP .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sWXXUqU8pP .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sWXXUqU8pP .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sWXXUqU8pP .nav-link {
  position: relative;
}
.cid-sWXXUqU8pP .container {
  display: flex;
  margin: auto;
}
.cid-sWXXUqU8pP .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sWXXUqU8pP .dropdown-menu,
.cid-sWXXUqU8pP .navbar.opened {
  background: #2b9c38 !important;
}
.cid-sWXXUqU8pP .nav-item:focus,
.cid-sWXXUqU8pP .nav-link:focus {
  outline: none;
}
.cid-sWXXUqU8pP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sWXXUqU8pP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sWXXUqU8pP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sWXXUqU8pP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sWXXUqU8pP .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sWXXUqU8pP .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sWXXUqU8pP .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #2b9c38;
}
.cid-sWXXUqU8pP .navbar.opened {
  transition: all 0.3s;
}
.cid-sWXXUqU8pP .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sWXXUqU8pP .navbar .navbar-logo img {
  width: auto;
}
.cid-sWXXUqU8pP .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sWXXUqU8pP .navbar.collapsed {
  justify-content: center;
}
.cid-sWXXUqU8pP .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sWXXUqU8pP .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sWXXUqU8pP .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sWXXUqU8pP .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sWXXUqU8pP .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sWXXUqU8pP .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sWXXUqU8pP .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sWXXUqU8pP .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sWXXUqU8pP .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sWXXUqU8pP .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sWXXUqU8pP .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sWXXUqU8pP .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sWXXUqU8pP .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sWXXUqU8pP .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sWXXUqU8pP .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sWXXUqU8pP .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sWXXUqU8pP .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sWXXUqU8pP .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sWXXUqU8pP .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sWXXUqU8pP .navbar.navbar-short {
  min-height: 60px;
}
.cid-sWXXUqU8pP .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sWXXUqU8pP .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sWXXUqU8pP .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sWXXUqU8pP .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sWXXUqU8pP .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sWXXUqU8pP .dropdown-item.active,
.cid-sWXXUqU8pP .dropdown-item:active {
  background-color: transparent;
}
.cid-sWXXUqU8pP .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sWXXUqU8pP .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sWXXUqU8pP .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sWXXUqU8pP .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #2b9c38;
}
.cid-sWXXUqU8pP .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sWXXUqU8pP .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sWXXUqU8pP ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sWXXUqU8pP .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sWXXUqU8pP button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sWXXUqU8pP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sWXXUqU8pP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sWXXUqU8pP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sWXXUqU8pP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sWXXUqU8pP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sWXXUqU8pP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sWXXUqU8pP nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sWXXUqU8pP nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sWXXUqU8pP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sWXXUqU8pP .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sWXXUqU8pP a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sWXXUqU8pP .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sWXXUqU8pP .navbar {
    height: 70px;
  }
  .cid-sWXXUqU8pP .navbar.opened {
    height: auto;
  }
  .cid-sWXXUqU8pP .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sWXXUqU8pP a {
  color: #fff !important;
}
.cid-sWXXUqU8pP a.dropdown-item:hover {
  color: #1B3775 !important;
  background-color: #F29200 !important;
}
.cid-sXrAS7vwTU {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-sXrAS7vwTU .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-sXrAS7vwTU .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sXrAS7vwTU .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sXrAS7vwTU .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sXrAS7vwTU .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-sXrAS7vwTU .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-sXrAS7vwTU .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sXrAS7vwTU div#logo {
  padding: 0px !important;
}
.cid-sWXXUt4CUU {
  padding-top: 45px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
}
.cid-sWXXUt4CUU .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-sWXXUt4CUU .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-sWXXUt4CUU .card .wrapper .mbr-section-title span:first-child {
  color: #ff5f3a;
}
.cid-sWXXUt4CUU .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #ff0000;
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-sWXXUt4CUU .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sWXXUt4CUU .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-sWXXUt4CUU .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-sWXXUt4CUU .card .wrapper .mbr-list {
  margin-top: 20px;
  color: #ffffff;
}
.cid-sWXXUt4CUU .card .wrapper .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-sWXXUt4CUU .card .wrapper .mbr-list .list li {
  line-height: 1.75;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-sWXXUt4CUU .card .wrapper .mbr-list .list li:before {
  font-weight: 900;
  color: #ff4e3c;
  display: inline-block;
  content: "\e97c";
  font-family: "Moririse2" !important;
  text-align: center;
  line-height: 1.5em;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
  margin-right: 15px;
}
.cid-sWXXUt4CUU .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 12px 35px;
  line-height: 1.0625;
}
.cid-sWXXUt4CUU .card .wrapper .mbr-section-title,
.cid-sWXXUt4CUU .mbr-section-btn,
.cid-sWXXUt4CUU .mbr-list .list {
  text-align: left;
  color: #ffffff;
}
.cid-sYUqPX9PGC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-sYUqPX9PGC .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sYUqPX9PGC p i {
  font-size: 0.6em;
}
.cid-sYUqPX9PGC p em {
  font-size: 0.6em;
}
.cid-sXrty6vUdA {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
#custom-html-6i {
  /* Type valid CSS here */
}
#custom-html-6i div#calendar {
  padding: 80px 0;
  color: #777;
  text-align: center;
  margin: 30px auto;
  margin-top: 0px;
  width: 95vw;
}
#custom-html-6i p {
  font-size: 60px;
  color: #777;
}
.cid-sWXXUxKDlR {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #36404c;
}
.cid-sWXXUxKDlR .mbr-flex {
  display: flex;
  justify-content: flex-end;
}
.cid-sWXXUxKDlR section {
  position: relative;
}
.cid-sWXXUxKDlR h4 {
  margin: 0;
}
.cid-sWXXUxKDlR a {
  font-weight: 300;
}
.cid-sWXXUxKDlR .row {
  align-items: center;
}
.cid-sWXXUxKDlR .item {
  margin: 0 1.5rem;
  display: flex;
  align-items: center;
}
.cid-sWXXUxKDlR .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-sWXXUxKDlR .img1 {
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-sWXXUxKDlR .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-sWXXUxKDlR .align-left {
    text-align: center;
  }
  .cid-sWXXUxKDlR .mbr-flex {
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .cid-sWXXUxKDlR .mbr-flex {
    flex-direction: column;
    align-items: center;
  }
  .cid-sWXXUxKDlR .item {
    padding-bottom: 0.5rem;
  }
}
.cid-sWXXUxKDlR .item-title {
  color: #c1c1c1;
}
.cid-sWXXUxKDlR H4 {
  color: #c1c1c1;
}
.cid-sYbK5CfkwK {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sYbK5CfkwK nav.navbar {
  position: fixed;
}
.cid-sYbK5CfkwK .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sYbK5CfkwK .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sYbK5CfkwK .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sYbK5CfkwK .dropdown-item:hover,
.cid-sYbK5CfkwK .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sYbK5CfkwK .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sYbK5CfkwK .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sYbK5CfkwK .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sYbK5CfkwK .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sYbK5CfkwK .nav-link {
  position: relative;
}
.cid-sYbK5CfkwK .container {
  display: flex;
  margin: auto;
}
.cid-sYbK5CfkwK .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sYbK5CfkwK .dropdown-menu,
.cid-sYbK5CfkwK .navbar.opened {
  background: #2b9c38 !important;
}
.cid-sYbK5CfkwK .nav-item:focus,
.cid-sYbK5CfkwK .nav-link:focus {
  outline: none;
}
.cid-sYbK5CfkwK .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sYbK5CfkwK .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sYbK5CfkwK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sYbK5CfkwK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sYbK5CfkwK .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sYbK5CfkwK .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sYbK5CfkwK .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #2b9c38;
}
.cid-sYbK5CfkwK .navbar.opened {
  transition: all 0.3s;
}
.cid-sYbK5CfkwK .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sYbK5CfkwK .navbar .navbar-logo img {
  width: auto;
}
.cid-sYbK5CfkwK .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sYbK5CfkwK .navbar.collapsed {
  justify-content: center;
}
.cid-sYbK5CfkwK .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sYbK5CfkwK .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sYbK5CfkwK .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sYbK5CfkwK .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sYbK5CfkwK .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sYbK5CfkwK .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sYbK5CfkwK .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sYbK5CfkwK .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sYbK5CfkwK .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sYbK5CfkwK .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sYbK5CfkwK .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sYbK5CfkwK .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sYbK5CfkwK .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sYbK5CfkwK .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sYbK5CfkwK .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sYbK5CfkwK .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sYbK5CfkwK .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sYbK5CfkwK .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sYbK5CfkwK .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sYbK5CfkwK .navbar.navbar-short {
  min-height: 60px;
}
.cid-sYbK5CfkwK .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sYbK5CfkwK .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sYbK5CfkwK .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sYbK5CfkwK .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sYbK5CfkwK .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sYbK5CfkwK .dropdown-item.active,
.cid-sYbK5CfkwK .dropdown-item:active {
  background-color: transparent;
}
.cid-sYbK5CfkwK .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sYbK5CfkwK .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sYbK5CfkwK .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sYbK5CfkwK .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #2b9c38;
}
.cid-sYbK5CfkwK .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sYbK5CfkwK .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sYbK5CfkwK ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sYbK5CfkwK .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sYbK5CfkwK button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sYbK5CfkwK button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sYbK5CfkwK button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sYbK5CfkwK button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sYbK5CfkwK button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sYbK5CfkwK button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sYbK5CfkwK nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sYbK5CfkwK nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sYbK5CfkwK nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sYbK5CfkwK nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sYbK5CfkwK .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sYbK5CfkwK a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sYbK5CfkwK .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sYbK5CfkwK .navbar {
    height: 70px;
  }
  .cid-sYbK5CfkwK .navbar.opened {
    height: auto;
  }
  .cid-sYbK5CfkwK .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sYbK5CfkwK a {
  color: #fff !important;
}
.cid-sYbK5CfkwK a.dropdown-item:hover {
  color: #1B3775 !important;
  background-color: #F29200 !important;
}
.cid-sYbK5CK5lO {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-sYbK5CK5lO .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-sYbK5CK5lO .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sYbK5CK5lO .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sYbK5CK5lO .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sYbK5CK5lO .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-sYbK5CK5lO .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-sYbK5CK5lO .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sYbK5CK5lO div#logo {
  padding: 0px !important;
}
.cid-sYbK5D9kF6 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/mbr-1920x1280.png");
}
.cid-sYbK5D9kF6 .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-sYbK5D9kF6 .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-sYbK5D9kF6 .card .wrapper .mbr-section-title span:first-child {
  color: #ff5f3a;
}
.cid-sYbK5D9kF6 .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #ff5f3a;
  background: linear-gradient(#ff5f3a 0%, #f35733 69%, #ff5f3a 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-sYbK5D9kF6 .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sYbK5D9kF6 .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-sYbK5D9kF6 .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-sYbK5D9kF6 .card .wrapper .mbr-list {
  margin-top: 20px;
  color: #ffffff;
}
.cid-sYbK5D9kF6 .card .wrapper .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-sYbK5D9kF6 .card .wrapper .mbr-list .list li {
  line-height: 1.75;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-sYbK5D9kF6 .card .wrapper .mbr-list .list li:before {
  font-weight: 900;
  color: #ff4e3c;
  display: inline-block;
  content: "\e97c";
  font-family: "Moririse2" !important;
  text-align: center;
  line-height: 1.5em;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
  margin-right: 15px;
}
.cid-sYbK5D9kF6 .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 12px 35px;
  line-height: 1.0625;
}
.cid-sYbK5D9kF6 .card .wrapper .mbr-section-title,
.cid-sYbK5D9kF6 .mbr-section-btn,
.cid-sYbK5D9kF6 .mbr-list .list {
  text-align: left;
  color: #ffffff;
}
.cid-sYUq6Lksch {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-sYUq6Lksch .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sYUq6Lksch p i {
  font-size: 0.6em;
}
.cid-sYUq6Lksch p em {
  font-size: 0.6em;
}
.cid-sYbK5DSpZM {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sYbK5DSpZM .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-sYbK5DSpZM .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-sYbK5DSpZM .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #4479d9;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-sYbK5DSpZM ul li a {
  top: 10px;
}
.cid-sYbK5EeGTC {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sYbK5EzG8I {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sYbK5EzG8I .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-sYbK5EzG8I .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-sYbK5EzG8I .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #47b5ed;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-sYbK5EzG8I ul li a {
  top: 10px;
}
.cid-sYbK5FG22c {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #36404c;
}
.cid-sYbK5FG22c .mbr-flex {
  display: flex;
  justify-content: flex-end;
}
.cid-sYbK5FG22c section {
  position: relative;
}
.cid-sYbK5FG22c h4 {
  margin: 0;
}
.cid-sYbK5FG22c a {
  font-weight: 300;
}
.cid-sYbK5FG22c .row {
  align-items: center;
}
.cid-sYbK5FG22c .item {
  margin: 0 1.5rem;
  display: flex;
  align-items: center;
}
.cid-sYbK5FG22c .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-sYbK5FG22c .img1 {
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-sYbK5FG22c .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-sYbK5FG22c .align-left {
    text-align: center;
  }
  .cid-sYbK5FG22c .mbr-flex {
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .cid-sYbK5FG22c .mbr-flex {
    flex-direction: column;
    align-items: center;
  }
  .cid-sYbK5FG22c .item {
    padding-bottom: 0.5rem;
  }
}
.cid-sYbK5FG22c .item-title {
  color: #c1c1c1;
}
.cid-sYbK5FG22c H4 {
  color: #c1c1c1;
}
.cid-sYUq4BGBKE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sYUq4BGBKE .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sYUq4BGBKE p i {
  font-size: 0.6em;
}
.cid-sYUq4BGBKE p em {
  font-size: 0.6em;
}
.cid-sSs5PZbBHz {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sSs5PZbBHz nav.navbar {
  position: fixed;
}
.cid-sSs5PZbBHz .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sSs5PZbBHz .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sSs5PZbBHz .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sSs5PZbBHz .dropdown-item:hover,
.cid-sSs5PZbBHz .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sSs5PZbBHz .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sSs5PZbBHz .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sSs5PZbBHz .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sSs5PZbBHz .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sSs5PZbBHz .nav-link {
  position: relative;
}
.cid-sSs5PZbBHz .container {
  display: flex;
  margin: auto;
}
.cid-sSs5PZbBHz .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sSs5PZbBHz .dropdown-menu,
.cid-sSs5PZbBHz .navbar.opened {
  background: #2b9c38 !important;
}
.cid-sSs5PZbBHz .nav-item:focus,
.cid-sSs5PZbBHz .nav-link:focus {
  outline: none;
}
.cid-sSs5PZbBHz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sSs5PZbBHz .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sSs5PZbBHz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sSs5PZbBHz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sSs5PZbBHz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sSs5PZbBHz .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sSs5PZbBHz .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #2b9c38;
}
.cid-sSs5PZbBHz .navbar.opened {
  transition: all 0.3s;
}
.cid-sSs5PZbBHz .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sSs5PZbBHz .navbar .navbar-logo img {
  width: auto;
}
.cid-sSs5PZbBHz .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sSs5PZbBHz .navbar.collapsed {
  justify-content: center;
}
.cid-sSs5PZbBHz .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sSs5PZbBHz .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sSs5PZbBHz .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sSs5PZbBHz .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sSs5PZbBHz .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sSs5PZbBHz .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sSs5PZbBHz .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sSs5PZbBHz .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sSs5PZbBHz .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sSs5PZbBHz .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sSs5PZbBHz .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sSs5PZbBHz .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sSs5PZbBHz .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sSs5PZbBHz .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sSs5PZbBHz .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sSs5PZbBHz .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sSs5PZbBHz .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sSs5PZbBHz .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sSs5PZbBHz .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sSs5PZbBHz .navbar.navbar-short {
  min-height: 60px;
}
.cid-sSs5PZbBHz .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sSs5PZbBHz .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sSs5PZbBHz .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sSs5PZbBHz .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sSs5PZbBHz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sSs5PZbBHz .dropdown-item.active,
.cid-sSs5PZbBHz .dropdown-item:active {
  background-color: transparent;
}
.cid-sSs5PZbBHz .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sSs5PZbBHz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sSs5PZbBHz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sSs5PZbBHz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #2b9c38;
}
.cid-sSs5PZbBHz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sSs5PZbBHz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sSs5PZbBHz ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sSs5PZbBHz .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sSs5PZbBHz button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sSs5PZbBHz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sSs5PZbBHz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sSs5PZbBHz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sSs5PZbBHz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sSs5PZbBHz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sSs5PZbBHz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sSs5PZbBHz nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sSs5PZbBHz nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sSs5PZbBHz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sSs5PZbBHz .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sSs5PZbBHz a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sSs5PZbBHz .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sSs5PZbBHz .navbar {
    height: 70px;
  }
  .cid-sSs5PZbBHz .navbar.opened {
    height: auto;
  }
  .cid-sSs5PZbBHz .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sSs5PZbBHz a {
  color: #fff !important;
}
.cid-sSs5PZbBHz a.dropdown-item:hover {
  color: #1B3775 !important;
  background-color: #F29200 !important;
}
.cid-sXrBsisoa7 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-sXrBsisoa7 .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-sXrBsisoa7 .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sXrBsisoa7 .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sXrBsisoa7 .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sXrBsisoa7 .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-sXrBsisoa7 .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-sXrBsisoa7 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sXrBsisoa7 div#logo {
  padding: 0px !important;
}
.cid-tcU2Wpq0sD {
  padding-top: 45px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/diebasis-frieden-ukraine-russland-1700x1000.jpg");
}
.cid-tcU2Wpq0sD .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-tcU2Wpq0sD .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-tcU2Wpq0sD .card .wrapper .mbr-section-title span:first-child {
  color: #ff5f3a;
}
.cid-tcU2Wpq0sD .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #ff5f3a;
  background: linear-gradient(#ff5f3a 0%, #f35733 69%, #ff5f3a 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-tcU2Wpq0sD .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tcU2Wpq0sD .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-tcU2Wpq0sD .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-tcU2Wpq0sD .card .wrapper .mbr-list {
  margin-top: 20px;
  color: #ffffff;
}
.cid-tcU2Wpq0sD .card .wrapper .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-tcU2Wpq0sD .card .wrapper .mbr-list .list li {
  line-height: 1.75;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-tcU2Wpq0sD .card .wrapper .mbr-list .list li:before {
  font-weight: 900;
  color: #ff4e3c;
  display: inline-block;
  content: "\e97c";
  font-family: "Moririse2" !important;
  text-align: center;
  line-height: 1.5em;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
  margin-right: 15px;
}
.cid-tcU2Wpq0sD .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 12px 35px;
  line-height: 1.0625;
}
.cid-tcU2Wpq0sD .card .wrapper .mbr-section-title,
.cid-tcU2Wpq0sD .mbr-section-btn,
.cid-tcU2Wpq0sD .mbr-list .list {
  text-align: left;
  color: #ffffff;
}
.cid-tcU2Wpq0sD .overlay {
  display: block;
  background-color: rgba(43, 156, 56, 0.7);
  width: 700px;
  padding: 10px;
  border-radius: 7px;
  line-height: 1.6em;
}
.cid-sYUqeC6sWO {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-sYUqeC6sWO .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sYUqeC6sWO p i {
  font-size: 0.6em;
}
.cid-sYUqeC6sWO p em {
  font-size: 0.6em;
}
.cid-sYRyfE8Vt2 {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #edeff3;
}
.cid-t7dkU8BkuR {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-t7dkU8BkuR .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #6592e6;
  margin-left: 1rem;
}
.cid-t7dkU8BkuR .panel-group {
  border: none;
}
.cid-t7dkU8BkuR .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-t7dkU8BkuR .panel-body,
.cid-t7dkU8BkuR .card-header {
  padding: 1rem 0;
}
.cid-t7dkU8BkuR .panel-title-edit {
  color: #000000;
}
.cid-t7dkU8BkuR .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-t7dkU8BkuR a {
  font-size: 1.2em;
  display: block;
  position: relative;
  top: 8px;
}
.cid-t7leADDsUD {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-t7leADDsUD .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #6592e6;
  margin-left: 1rem;
}
.cid-t7leADDsUD .panel-group {
  border: none;
}
.cid-t7leADDsUD .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-t7leADDsUD .panel-body,
.cid-t7leADDsUD .card-header {
  padding: 1rem 0;
}
.cid-t7leADDsUD .panel-title-edit {
  color: #000000;
}
.cid-t7leADDsUD .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-t7leADDsUD a {
  font-size: 1.2em;
  display: block;
  position: relative;
  top: 8px;
}
.cid-t7d23YfBmt {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-t7d23YfBmt .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #6592e6;
  margin-left: 1rem;
}
.cid-t7d23YfBmt .panel-group {
  border: none;
}
.cid-t7d23YfBmt .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-t7d23YfBmt .panel-body,
.cid-t7d23YfBmt .card-header {
  padding: 1rem 0;
}
.cid-t7d23YfBmt .panel-title-edit {
  color: #000000;
}
.cid-t7d23YfBmt .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-t7d23YfBmt a {
  font-size: 1.2em;
  display: block;
  position: relative;
  top: 8px;
}
.cid-t7dfdqosAJ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-t7dfdqosAJ .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #6592e6;
  margin-left: 1rem;
}
.cid-t7dfdqosAJ .panel-group {
  border: none;
}
.cid-t7dfdqosAJ .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-t7dfdqosAJ .panel-body,
.cid-t7dfdqosAJ .card-header {
  padding: 1rem 0;
}
.cid-t7dfdqosAJ .panel-title-edit {
  color: #000000;
}
.cid-t7dfdqosAJ .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-t7dfdqosAJ a {
  font-size: 1.2em;
  display: block;
  position: relative;
  top: 8px;
}
.cid-t7kKjUQRDz {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-t7kKjUQRDz .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #6592e6;
  margin-left: 1rem;
}
.cid-t7kKjUQRDz .panel-group {
  border: none;
}
.cid-t7kKjUQRDz .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-t7kKjUQRDz .panel-body,
.cid-t7kKjUQRDz .card-header {
  padding: 1rem 0;
}
.cid-t7kKjUQRDz .panel-title-edit {
  color: #000000;
}
.cid-t7kKjUQRDz .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-t7kKjUQRDz a {
  font-size: 1.2em;
  display: block;
  position: relative;
  top: 8px;
}
.cid-sSs5Q2xHAY {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #36404c;
}
.cid-sSs5Q2xHAY .mbr-flex {
  display: flex;
  justify-content: flex-end;
}
.cid-sSs5Q2xHAY section {
  position: relative;
}
.cid-sSs5Q2xHAY h4 {
  margin: 0;
}
.cid-sSs5Q2xHAY a {
  font-weight: 300;
}
.cid-sSs5Q2xHAY .row {
  align-items: center;
}
.cid-sSs5Q2xHAY .item {
  margin: 0 1.5rem;
  display: flex;
  align-items: center;
}
.cid-sSs5Q2xHAY .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-sSs5Q2xHAY .img1 {
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-sSs5Q2xHAY .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-sSs5Q2xHAY .align-left {
    text-align: center;
  }
  .cid-sSs5Q2xHAY .mbr-flex {
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .cid-sSs5Q2xHAY .mbr-flex {
    flex-direction: column;
    align-items: center;
  }
  .cid-sSs5Q2xHAY .item {
    padding-bottom: 0.5rem;
  }
}
.cid-sSs5Q2xHAY .item-title {
  color: #c1c1c1;
}
.cid-sSs5Q2xHAY H4 {
  color: #c1c1c1;
}
.cid-sRPQlSG1HP {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sRPQlSG1HP nav.navbar {
  position: fixed;
}
.cid-sRPQlSG1HP .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sRPQlSG1HP .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sRPQlSG1HP .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sRPQlSG1HP .dropdown-item:hover,
.cid-sRPQlSG1HP .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sRPQlSG1HP .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sRPQlSG1HP .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sRPQlSG1HP .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sRPQlSG1HP .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sRPQlSG1HP .nav-link {
  position: relative;
}
.cid-sRPQlSG1HP .container {
  display: flex;
  margin: auto;
}
.cid-sRPQlSG1HP .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sRPQlSG1HP .dropdown-menu,
.cid-sRPQlSG1HP .navbar.opened {
  background: #2b9c38 !important;
}
.cid-sRPQlSG1HP .nav-item:focus,
.cid-sRPQlSG1HP .nav-link:focus {
  outline: none;
}
.cid-sRPQlSG1HP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sRPQlSG1HP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sRPQlSG1HP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sRPQlSG1HP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sRPQlSG1HP .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sRPQlSG1HP .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sRPQlSG1HP .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #2b9c38;
}
.cid-sRPQlSG1HP .navbar.opened {
  transition: all 0.3s;
}
.cid-sRPQlSG1HP .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sRPQlSG1HP .navbar .navbar-logo img {
  width: auto;
}
.cid-sRPQlSG1HP .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sRPQlSG1HP .navbar.collapsed {
  justify-content: center;
}
.cid-sRPQlSG1HP .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sRPQlSG1HP .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sRPQlSG1HP .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sRPQlSG1HP .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sRPQlSG1HP .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sRPQlSG1HP .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sRPQlSG1HP .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sRPQlSG1HP .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sRPQlSG1HP .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sRPQlSG1HP .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sRPQlSG1HP .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sRPQlSG1HP .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sRPQlSG1HP .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sRPQlSG1HP .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sRPQlSG1HP .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sRPQlSG1HP .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sRPQlSG1HP .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sRPQlSG1HP .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sRPQlSG1HP .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sRPQlSG1HP .navbar.navbar-short {
  min-height: 60px;
}
.cid-sRPQlSG1HP .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sRPQlSG1HP .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sRPQlSG1HP .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sRPQlSG1HP .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sRPQlSG1HP .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sRPQlSG1HP .dropdown-item.active,
.cid-sRPQlSG1HP .dropdown-item:active {
  background-color: transparent;
}
.cid-sRPQlSG1HP .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sRPQlSG1HP .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sRPQlSG1HP .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sRPQlSG1HP .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #2b9c38;
}
.cid-sRPQlSG1HP .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sRPQlSG1HP .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sRPQlSG1HP ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sRPQlSG1HP .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sRPQlSG1HP button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sRPQlSG1HP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sRPQlSG1HP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sRPQlSG1HP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRPQlSG1HP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRPQlSG1HP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sRPQlSG1HP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRPQlSG1HP nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sRPQlSG1HP nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sRPQlSG1HP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRPQlSG1HP .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sRPQlSG1HP a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sRPQlSG1HP .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sRPQlSG1HP .navbar {
    height: 70px;
  }
  .cid-sRPQlSG1HP .navbar.opened {
    height: auto;
  }
  .cid-sRPQlSG1HP .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sRPQlSG1HP a {
  color: #fff !important;
}
.cid-sRPQlSG1HP a.dropdown-item:hover {
  color: #1B3775 !important;
  background-color: #F29200 !important;
}
.cid-sYR7O7meGw {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sYR7O7meGw .item {
  padding-bottom: 2rem;
}
.cid-sYR7O7meGw .item-wrapper {
  position: relative;
}
.cid-sYR7O7meGw .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-sYR7O7meGw .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-sYR7O7meGw .carousel-control,
.cid-sYR7O7meGw .close {
  background: #1b1b1b;
}
.cid-sYR7O7meGw .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sYR7O7meGw .carousel-control-prev span {
  margin-right: 5px;
}
.cid-sYR7O7meGw .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sYR7O7meGw .carousel-control-next span {
  margin-left: 5px;
}
.cid-sYR7O7meGw .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-sYR7O7meGw .close::before {
  content: '\e91a';
}
.cid-sYR7O7meGw .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sYR7O7meGw .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sYR7O7meGw .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sYR7O7meGw .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sYR7O7meGw .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sYR7O7meGw .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-sYR7O7meGw .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-sYR7O7meGw .carousel-indicators li.active,
.cid-sYR7O7meGw .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sYR7O7meGw .carousel-indicators li::after,
.cid-sYR7O7meGw .carousel-indicators li::before {
  content: none;
}
.cid-sYR7O7meGw .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sYR7O7meGw .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-sYR7O7meGw .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-sYR7O7meGw .carousel-indicators {
    display: none;
  }
}
.cid-sYR7O7meGw .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sYR7O7meGw .carousel-inner > .active {
  display: block;
}
.cid-sYR7O7meGw .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sYR7O7meGw .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sYR7O7meGw .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-sYR7O7meGw .carousel-control,
  .cid-sYR7O7meGw .carousel-indicators,
  .cid-sYR7O7meGw .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-sYR7O7meGw .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-sYR7O7meGw .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sYR7O7meGw .carousel-indicators .active,
.cid-sYR7O7meGw .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-sYR7O7meGw .carousel-indicators .active {
  background: #fff;
}
.cid-sYR7O7meGw .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-sYR7O7meGw .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sYR7O7meGw .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sYR7O7meGw .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-sYR7O7meGw .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sYR7O7meGw .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-sYR7O7meGw .carousel {
  width: 100%;
}
.cid-sYR7O7meGw .modal-backdrop.in {
  opacity: 0.8;
}
.cid-sYR7O7meGw .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-sYR7O7meGw .modal.fade .modal-dialog,
.cid-sYR7O7meGw .modal.in .modal-dialog {
  transform: none;
}
.cid-sYR7O7meGw .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-sYR7O7meGw H6 {
  text-align: center;
}
.cid-t02hMcH1KN {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-t02hMcH1KN .mbr-text {
  text-align: left;
}
.cid-t02hMcH1KN .mbr-section-subtitle {
  text-align: center;
}
.cid-t02hMcH1KN .mbr-section-title {
  text-align: center;
}
.cid-t02hMcH1KN img.streifen {
  width: 80px;
  height: auto;
  display: inline;
}
.cid-t02hNtNZ53 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-t02hNtNZ53 .mbr-text {
  text-align: left;
}
.cid-t02hNtNZ53 .mbr-section-subtitle {
  text-align: center;
}
.cid-t02lzfv50V {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t02lzfv50V #step1 {
  background-color: #233c7a;
  color: white;
}
.cid-t02lzfv50V #step2 {
  background-color: #dc0c22;
  color: white;
}
.cid-t02lzfv50V #step3 {
  background-color: #f29200;
  color: white;
}
.cid-t02lzfv50V #step1,
.cid-t02lzfv50V #step2,
.cid-t02lzfv50V #step3 {
  color: white;
  padding: 15px;
  border: white solid 1px;
}
.cid-t02lzfv50V a {
  display: contents;
}
.cid-t02rEhWpMn {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-t02rEhWpMn #step1 {
  background-color: #ffffff;
  color: white;
}
.cid-t02rEhWpMn #step2 {
  background-color: #dc0c22;
  color: white;
}
.cid-t02rEhWpMn #step3 {
  background-color: #f29200;
  color: white;
}
.cid-t02rEhWpMn #step1,
.cid-t02rEhWpMn #step2,
.cid-t02rEhWpMn #step3 {
  background-color: #ffffff;
  color: black;
  padding: 15px;
  border: white solid 1px;
}
.cid-t02rEhWpMn a {
  display: contents;
}
.cid-t02rEhWpMn img.beispiel {
  width: 70%;
  height: auto;
  display: inline;
}
.cid-sSmlYNUNDt {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #36404c;
}
.cid-sSmlYNUNDt .mbr-flex {
  display: flex;
  justify-content: flex-end;
}
.cid-sSmlYNUNDt section {
  position: relative;
}
.cid-sSmlYNUNDt h4 {
  margin: 0;
}
.cid-sSmlYNUNDt a {
  font-weight: 300;
}
.cid-sSmlYNUNDt .row {
  align-items: center;
}
.cid-sSmlYNUNDt .item {
  margin: 0 1.5rem;
  display: flex;
  align-items: center;
}
.cid-sSmlYNUNDt .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-sSmlYNUNDt .img1 {
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-sSmlYNUNDt .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-sSmlYNUNDt .align-left {
    text-align: center;
  }
  .cid-sSmlYNUNDt .mbr-flex {
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .cid-sSmlYNUNDt .mbr-flex {
    flex-direction: column;
    align-items: center;
  }
  .cid-sSmlYNUNDt .item {
    padding-bottom: 0.5rem;
  }
}
.cid-sSmlYNUNDt .item-title {
  color: #c1c1c1;
}
.cid-sSmlYNUNDt H4 {
  color: #c1c1c1;
}
.cid-t6MltrF37I {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-t6MltrF37I nav.navbar {
  position: fixed;
}
.cid-t6MltrF37I .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t6MltrF37I .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-t6MltrF37I .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t6MltrF37I .dropdown-item:hover,
.cid-t6MltrF37I .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-t6MltrF37I .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-t6MltrF37I .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-t6MltrF37I .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-t6MltrF37I .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t6MltrF37I .nav-link {
  position: relative;
}
.cid-t6MltrF37I .container {
  display: flex;
  margin: auto;
}
.cid-t6MltrF37I .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t6MltrF37I .dropdown-menu,
.cid-t6MltrF37I .navbar.opened {
  background: #2b9c38 !important;
}
.cid-t6MltrF37I .nav-item:focus,
.cid-t6MltrF37I .nav-link:focus {
  outline: none;
}
.cid-t6MltrF37I .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t6MltrF37I .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t6MltrF37I .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t6MltrF37I .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t6MltrF37I .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t6MltrF37I .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t6MltrF37I .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #2b9c38;
}
.cid-t6MltrF37I .navbar.opened {
  transition: all 0.3s;
}
.cid-t6MltrF37I .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t6MltrF37I .navbar .navbar-logo img {
  width: auto;
}
.cid-t6MltrF37I .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t6MltrF37I .navbar.collapsed {
  justify-content: center;
}
.cid-t6MltrF37I .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t6MltrF37I .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-t6MltrF37I .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t6MltrF37I .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t6MltrF37I .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-t6MltrF37I .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t6MltrF37I .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t6MltrF37I .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t6MltrF37I .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t6MltrF37I .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t6MltrF37I .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t6MltrF37I .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t6MltrF37I .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-t6MltrF37I .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t6MltrF37I .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t6MltrF37I .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t6MltrF37I .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t6MltrF37I .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t6MltrF37I .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t6MltrF37I .navbar.navbar-short {
  min-height: 60px;
}
.cid-t6MltrF37I .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t6MltrF37I .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t6MltrF37I .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t6MltrF37I .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t6MltrF37I .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t6MltrF37I .dropdown-item.active,
.cid-t6MltrF37I .dropdown-item:active {
  background-color: transparent;
}
.cid-t6MltrF37I .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t6MltrF37I .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t6MltrF37I .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t6MltrF37I .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #2b9c38;
}
.cid-t6MltrF37I .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t6MltrF37I .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t6MltrF37I ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t6MltrF37I .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t6MltrF37I button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t6MltrF37I button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-t6MltrF37I button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t6MltrF37I button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t6MltrF37I button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t6MltrF37I button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t6MltrF37I nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t6MltrF37I nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t6MltrF37I nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t6MltrF37I nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t6MltrF37I .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t6MltrF37I a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t6MltrF37I .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t6MltrF37I .navbar {
    height: 70px;
  }
  .cid-t6MltrF37I .navbar.opened {
    height: auto;
  }
  .cid-t6MltrF37I .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t6MltrF37I a {
  color: #fff !important;
}
.cid-t6MltrF37I a.dropdown-item:hover {
  color: #1B3775 !important;
  background-color: #F29200 !important;
}
.cid-t6MltsEsyR {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-t6MltsEsyR .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-t6MltsEsyR .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-t6MltsEsyR .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-t6MltsEsyR .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-t6MltsEsyR .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-t6MltsEsyR .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-t6MltsEsyR .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-t6MltsEsyR div#logo {
  padding: 0px !important;
}
.cid-t6Mltt7zDa {
  padding-top: 45px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/mbr-1920x1280.png");
}
.cid-t6Mltt7zDa .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-t6Mltt7zDa .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-t6Mltt7zDa .card .wrapper .mbr-section-title span:first-child {
  color: #ff5f3a;
}
.cid-t6Mltt7zDa .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #ff5f3a;
  background: linear-gradient(#ff5f3a 0%, #f35733 69%, #ff5f3a 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-t6Mltt7zDa .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-t6Mltt7zDa .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-t6Mltt7zDa .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-t6Mltt7zDa .card .wrapper .mbr-list {
  margin-top: 20px;
  color: #ffffff;
}
.cid-t6Mltt7zDa .card .wrapper .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-t6Mltt7zDa .card .wrapper .mbr-list .list li {
  line-height: 1.75;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-t6Mltt7zDa .card .wrapper .mbr-list .list li:before {
  font-weight: 900;
  color: #ff4e3c;
  display: inline-block;
  content: "\e97c";
  font-family: "Moririse2" !important;
  text-align: center;
  line-height: 1.5em;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
  margin-right: 15px;
}
.cid-t6Mltt7zDa .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 12px 35px;
  line-height: 1.0625;
}
.cid-t6Mltt7zDa .card .wrapper .mbr-section-title,
.cid-t6Mltt7zDa .mbr-section-btn,
.cid-t6Mltt7zDa .mbr-list .list {
  text-align: left;
  color: #ffffff;
}
.cid-t6MlttYCq4 {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #edeff3;
}
.cid-t6MsnGv3Px {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #233c7a;
}
.cid-t6MsnGv3Px .mbr-section-title {
  color: #ffffff;
}
.cid-t6MlttFcBH {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-t6MlttFcBH .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-t6MlttFcBH p i {
  font-size: 0.6em;
}
.cid-t6MlttFcBH p em {
  font-size: 0.6em;
}
.cid-t6MpJfp1KM {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fcfcfc;
}
.cid-t6MpKotz1r {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-t6MpL216AF {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fcfcfc;
}
.cid-t6MpLY9J4k {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-t6MsRnUxNF {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fcfcfc;
}
.cid-t6MsTmC3iq {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-t6MsU22y8K {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fcfcfc;
}
.cid-t6MsUGxVYK {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-t6Mltv1wGH {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #36404c;
}
.cid-t6Mltv1wGH .mbr-flex {
  display: flex;
  justify-content: flex-end;
}
.cid-t6Mltv1wGH section {
  position: relative;
}
.cid-t6Mltv1wGH h4 {
  margin: 0;
}
.cid-t6Mltv1wGH a {
  font-weight: 300;
}
.cid-t6Mltv1wGH .row {
  align-items: center;
}
.cid-t6Mltv1wGH .item {
  margin: 0 1.5rem;
  display: flex;
  align-items: center;
}
.cid-t6Mltv1wGH .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-t6Mltv1wGH .img1 {
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-t6Mltv1wGH .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-t6Mltv1wGH .align-left {
    text-align: center;
  }
  .cid-t6Mltv1wGH .mbr-flex {
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .cid-t6Mltv1wGH .mbr-flex {
    flex-direction: column;
    align-items: center;
  }
  .cid-t6Mltv1wGH .item {
    padding-bottom: 0.5rem;
  }
}
.cid-t6Mltv1wGH .item-title {
  color: #c1c1c1;
}
.cid-t6Mltv1wGH H4 {
  color: #c1c1c1;
}
.cid-t6MvH3W7Lz {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-t6MvH3W7Lz nav.navbar {
  position: fixed;
}
.cid-t6MvH3W7Lz .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t6MvH3W7Lz .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-t6MvH3W7Lz .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t6MvH3W7Lz .dropdown-item:hover,
.cid-t6MvH3W7Lz .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-t6MvH3W7Lz .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-t6MvH3W7Lz .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-t6MvH3W7Lz .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-t6MvH3W7Lz .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t6MvH3W7Lz .nav-link {
  position: relative;
}
.cid-t6MvH3W7Lz .container {
  display: flex;
  margin: auto;
}
.cid-t6MvH3W7Lz .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t6MvH3W7Lz .dropdown-menu,
.cid-t6MvH3W7Lz .navbar.opened {
  background: #2b9c38 !important;
}
.cid-t6MvH3W7Lz .nav-item:focus,
.cid-t6MvH3W7Lz .nav-link:focus {
  outline: none;
}
.cid-t6MvH3W7Lz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t6MvH3W7Lz .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t6MvH3W7Lz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t6MvH3W7Lz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t6MvH3W7Lz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t6MvH3W7Lz .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t6MvH3W7Lz .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #2b9c38;
}
.cid-t6MvH3W7Lz .navbar.opened {
  transition: all 0.3s;
}
.cid-t6MvH3W7Lz .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t6MvH3W7Lz .navbar .navbar-logo img {
  width: auto;
}
.cid-t6MvH3W7Lz .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t6MvH3W7Lz .navbar.collapsed {
  justify-content: center;
}
.cid-t6MvH3W7Lz .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t6MvH3W7Lz .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-t6MvH3W7Lz .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t6MvH3W7Lz .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t6MvH3W7Lz .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-t6MvH3W7Lz .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t6MvH3W7Lz .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t6MvH3W7Lz .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t6MvH3W7Lz .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t6MvH3W7Lz .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t6MvH3W7Lz .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t6MvH3W7Lz .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t6MvH3W7Lz .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-t6MvH3W7Lz .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t6MvH3W7Lz .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t6MvH3W7Lz .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t6MvH3W7Lz .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t6MvH3W7Lz .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t6MvH3W7Lz .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t6MvH3W7Lz .navbar.navbar-short {
  min-height: 60px;
}
.cid-t6MvH3W7Lz .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t6MvH3W7Lz .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t6MvH3W7Lz .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t6MvH3W7Lz .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t6MvH3W7Lz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t6MvH3W7Lz .dropdown-item.active,
.cid-t6MvH3W7Lz .dropdown-item:active {
  background-color: transparent;
}
.cid-t6MvH3W7Lz .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t6MvH3W7Lz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t6MvH3W7Lz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t6MvH3W7Lz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #2b9c38;
}
.cid-t6MvH3W7Lz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t6MvH3W7Lz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t6MvH3W7Lz ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t6MvH3W7Lz .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t6MvH3W7Lz button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t6MvH3W7Lz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-t6MvH3W7Lz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t6MvH3W7Lz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t6MvH3W7Lz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t6MvH3W7Lz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t6MvH3W7Lz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t6MvH3W7Lz nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t6MvH3W7Lz nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t6MvH3W7Lz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t6MvH3W7Lz .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t6MvH3W7Lz a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t6MvH3W7Lz .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t6MvH3W7Lz .navbar {
    height: 70px;
  }
  .cid-t6MvH3W7Lz .navbar.opened {
    height: auto;
  }
  .cid-t6MvH3W7Lz .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t6MvH3W7Lz a {
  color: #fff !important;
}
.cid-t6MvH3W7Lz a.dropdown-item:hover {
  color: #1B3775 !important;
  background-color: #F29200 !important;
}
.cid-t6MvH4VcnL {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-t6MvH4VcnL .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-t6MvH4VcnL .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-t6MvH4VcnL .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-t6MvH4VcnL .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-t6MvH4VcnL .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-t6MvH4VcnL .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-t6MvH4VcnL .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-t6MvH4VcnL div#logo {
  padding: 0px !important;
}
.cid-t6MvH5E95t {
  padding-top: 45px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/mbr-1920x1280.png");
}
.cid-t6MvH5E95t .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-t6MvH5E95t .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-t6MvH5E95t .card .wrapper .mbr-section-title span:first-child {
  color: #ff5f3a;
}
.cid-t6MvH5E95t .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #ff5f3a;
  background: linear-gradient(#ff5f3a 0%, #f35733 69%, #ff5f3a 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-t6MvH5E95t .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-t6MvH5E95t .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-t6MvH5E95t .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-t6MvH5E95t .card .wrapper .mbr-list {
  margin-top: 20px;
  color: #ffffff;
}
.cid-t6MvH5E95t .card .wrapper .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-t6MvH5E95t .card .wrapper .mbr-list .list li {
  line-height: 1.75;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-t6MvH5E95t .card .wrapper .mbr-list .list li:before {
  font-weight: 900;
  color: #ff4e3c;
  display: inline-block;
  content: "\e97c";
  font-family: "Moririse2" !important;
  text-align: center;
  line-height: 1.5em;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
  margin-right: 15px;
}
.cid-t6MvH5E95t .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 12px 35px;
  line-height: 1.0625;
}
.cid-t6MvH5E95t .card .wrapper .mbr-section-title,
.cid-t6MvH5E95t .mbr-section-btn,
.cid-t6MvH5E95t .mbr-list .list {
  text-align: left;
  color: #ffffff;
}
.cid-t6MvH6ho7c {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #edeff3;
}
.cid-t6MvH6Ivso {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #2b9c38;
}
.cid-t6MvH6Ivso .mbr-section-title {
  color: #ffffff;
}
.cid-t6MvH7cIic {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-t6MvH7cIic .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-t6MvH7cIic p i {
  font-size: 0.6em;
}
.cid-t6MvH7cIic p em {
  font-size: 0.6em;
}
.cid-t6MxppmrD5 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #94da9c;
}
.cid-t6MxppmrD5 .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-t6MvH7BcsW {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fcfcfc;
}
.cid-t6MvH823Jg {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-t6MvH8p8Bo {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fcfcfc;
}
.cid-t6MDgzAX4x {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #94da9c;
}
.cid-t6MDgzAX4x .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-t6MvH8RBa9 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-t6MvH9hrzi {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fcfcfc;
}
.cid-t6MvH9GA2H {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-t6MDhy3FGH {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #94da9c;
}
.cid-t6MDhy3FGH .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-t6MvHa6Sab {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fcfcfc;
}
.cid-t6MvHavU6d {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-t6MvHaVdEr {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #36404c;
}
.cid-t6MvHaVdEr .mbr-flex {
  display: flex;
  justify-content: flex-end;
}
.cid-t6MvHaVdEr section {
  position: relative;
}
.cid-t6MvHaVdEr h4 {
  margin: 0;
}
.cid-t6MvHaVdEr a {
  font-weight: 300;
}
.cid-t6MvHaVdEr .row {
  align-items: center;
}
.cid-t6MvHaVdEr .item {
  margin: 0 1.5rem;
  display: flex;
  align-items: center;
}
.cid-t6MvHaVdEr .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-t6MvHaVdEr .img1 {
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-t6MvHaVdEr .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-t6MvHaVdEr .align-left {
    text-align: center;
  }
  .cid-t6MvHaVdEr .mbr-flex {
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .cid-t6MvHaVdEr .mbr-flex {
    flex-direction: column;
    align-items: center;
  }
  .cid-t6MvHaVdEr .item {
    padding-bottom: 0.5rem;
  }
}
.cid-t6MvHaVdEr .item-title {
  color: #c1c1c1;
}
.cid-t6MvHaVdEr H4 {
  color: #c1c1c1;
}
.cid-uP3j4sAbYZ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uP3j4sAbYZ nav.navbar {
  position: fixed;
}
.cid-uP3j4sAbYZ .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uP3j4sAbYZ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uP3j4sAbYZ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uP3j4sAbYZ .dropdown-item:hover,
.cid-uP3j4sAbYZ .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uP3j4sAbYZ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uP3j4sAbYZ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uP3j4sAbYZ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uP3j4sAbYZ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uP3j4sAbYZ .nav-link {
  position: relative;
}
.cid-uP3j4sAbYZ .container {
  display: flex;
  margin: auto;
}
.cid-uP3j4sAbYZ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uP3j4sAbYZ .dropdown-menu,
.cid-uP3j4sAbYZ .navbar.opened {
  background: #2b9c38 !important;
}
.cid-uP3j4sAbYZ .nav-item:focus,
.cid-uP3j4sAbYZ .nav-link:focus {
  outline: none;
}
.cid-uP3j4sAbYZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uP3j4sAbYZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uP3j4sAbYZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uP3j4sAbYZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uP3j4sAbYZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uP3j4sAbYZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uP3j4sAbYZ .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #2b9c38;
}
.cid-uP3j4sAbYZ .navbar.opened {
  transition: all 0.3s;
}
.cid-uP3j4sAbYZ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uP3j4sAbYZ .navbar .navbar-logo img {
  width: auto;
}
.cid-uP3j4sAbYZ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uP3j4sAbYZ .navbar.collapsed {
  justify-content: center;
}
.cid-uP3j4sAbYZ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uP3j4sAbYZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uP3j4sAbYZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uP3j4sAbYZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uP3j4sAbYZ .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uP3j4sAbYZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uP3j4sAbYZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uP3j4sAbYZ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uP3j4sAbYZ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uP3j4sAbYZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uP3j4sAbYZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uP3j4sAbYZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uP3j4sAbYZ .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uP3j4sAbYZ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uP3j4sAbYZ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uP3j4sAbYZ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uP3j4sAbYZ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uP3j4sAbYZ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uP3j4sAbYZ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uP3j4sAbYZ .navbar.navbar-short {
  min-height: 60px;
}
.cid-uP3j4sAbYZ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uP3j4sAbYZ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uP3j4sAbYZ .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uP3j4sAbYZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uP3j4sAbYZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uP3j4sAbYZ .dropdown-item.active,
.cid-uP3j4sAbYZ .dropdown-item:active {
  background-color: transparent;
}
.cid-uP3j4sAbYZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uP3j4sAbYZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uP3j4sAbYZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uP3j4sAbYZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #2b9c38;
}
.cid-uP3j4sAbYZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uP3j4sAbYZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uP3j4sAbYZ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uP3j4sAbYZ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uP3j4sAbYZ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uP3j4sAbYZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uP3j4sAbYZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uP3j4sAbYZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uP3j4sAbYZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uP3j4sAbYZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uP3j4sAbYZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uP3j4sAbYZ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uP3j4sAbYZ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uP3j4sAbYZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uP3j4sAbYZ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uP3j4sAbYZ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uP3j4sAbYZ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uP3j4sAbYZ .navbar {
    height: 70px;
  }
  .cid-uP3j4sAbYZ .navbar.opened {
    height: auto;
  }
  .cid-uP3j4sAbYZ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uP3j4sAbYZ a {
  color: #fff !important;
}
.cid-uP3j4sAbYZ a.dropdown-item:hover {
  color: #1B3775 !important;
  background-color: #F29200 !important;
}
.cid-uP3j4tbeCI {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uP3j4tbeCI .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-uP3j4tbeCI .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uP3j4tbeCI .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uP3j4tbeCI .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uP3j4tbeCI .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-uP3j4tbeCI .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-uP3j4tbeCI .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uP3j4tbeCI div#logo {
  padding: 0px !important;
}
.cid-uP3j4tKy99 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/diebasis-frieden-ukraine-russland-1700x1000.jpg");
}
.cid-uP3j4tKy99 .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-uP3j4tKy99 .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-uP3j4tKy99 .card .wrapper .mbr-section-title span:first-child {
  color: #ff5f3a;
}
.cid-uP3j4tKy99 .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #ff5f3a;
  background: linear-gradient(#ff5f3a 0%, #f35733 69%, #ff5f3a 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-uP3j4tKy99 .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uP3j4tKy99 .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-uP3j4tKy99 .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-uP3j4tKy99 .card .wrapper .mbr-list {
  margin-top: 20px;
  color: #ffffff;
}
.cid-uP3j4tKy99 .card .wrapper .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-uP3j4tKy99 .card .wrapper .mbr-list .list li {
  line-height: 1.75;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-uP3j4tKy99 .card .wrapper .mbr-list .list li:before {
  font-weight: 900;
  color: #ff4e3c;
  display: inline-block;
  content: "\e97c";
  font-family: "Moririse2" !important;
  text-align: center;
  line-height: 1.5em;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
  margin-right: 15px;
}
.cid-uP3j4tKy99 .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 12px 35px;
  line-height: 1.0625;
}
.cid-uP3j4tKy99 .card .wrapper .mbr-section-title,
.cid-uP3j4tKy99 .mbr-section-btn,
.cid-uP3j4tKy99 .mbr-list .list {
  text-align: left;
  color: #ffffff;
}
.cid-uP3j4tKy99 .overlay {
  display: block;
  background-color: rgba(43, 156, 56, 0.7);
  width: 700px;
  padding: 10px;
  border-radius: 7px;
  line-height: 1.6em;
}
.cid-uP3j4ujool {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-uP3j4ujool .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uP3j4ujool p i {
  font-size: 0.6em;
}
.cid-uP3j4ujool p em {
  font-size: 0.6em;
}
.cid-uP3j4uMXBa {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #edeff3;
}
.cid-uP3j4vh2D7 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uP3j4vh2D7 .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #6592e6;
  margin-left: 1rem;
}
.cid-uP3j4vh2D7 .panel-group {
  border: none;
}
.cid-uP3j4vh2D7 .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uP3j4vh2D7 .panel-body,
.cid-uP3j4vh2D7 .card-header {
  padding: 1rem 0;
}
.cid-uP3j4vh2D7 .panel-title-edit {
  color: #000000;
}
.cid-uP3j4vh2D7 .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uP3j4vh2D7 a {
  font-size: 1.2em;
  display: block;
  position: relative;
  top: 8px;
}
.cid-uP3j4vW72B {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uP3j4vW72B .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #6592e6;
  margin-left: 1rem;
}
.cid-uP3j4vW72B .panel-group {
  border: none;
}
.cid-uP3j4vW72B .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uP3j4vW72B .panel-body,
.cid-uP3j4vW72B .card-header {
  padding: 1rem 0;
}
.cid-uP3j4vW72B .panel-title-edit {
  color: #000000;
}
.cid-uP3j4vW72B .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uP3j4vW72B a {
  font-size: 1.2em;
  display: block;
  position: relative;
  top: 8px;
}
.cid-uP3j4wXeXJ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uP3j4wXeXJ .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #6592e6;
  margin-left: 1rem;
}
.cid-uP3j4wXeXJ .panel-group {
  border: none;
}
.cid-uP3j4wXeXJ .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uP3j4wXeXJ .panel-body,
.cid-uP3j4wXeXJ .card-header {
  padding: 1rem 0;
}
.cid-uP3j4wXeXJ .panel-title-edit {
  color: #000000;
}
.cid-uP3j4wXeXJ .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uP3j4wXeXJ a {
  font-size: 1.2em;
  display: block;
  position: relative;
  top: 8px;
}
.cid-uP3j4xXqDN {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uP3j4xXqDN .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #6592e6;
  margin-left: 1rem;
}
.cid-uP3j4xXqDN .panel-group {
  border: none;
}
.cid-uP3j4xXqDN .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uP3j4xXqDN .panel-body,
.cid-uP3j4xXqDN .card-header {
  padding: 1rem 0;
}
.cid-uP3j4xXqDN .panel-title-edit {
  color: #000000;
}
.cid-uP3j4xXqDN .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uP3j4xXqDN a {
  font-size: 1.2em;
  display: block;
  position: relative;
  top: 8px;
}
.cid-uP3j4yE0Xw {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uP3j4yE0Xw .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #6592e6;
  margin-left: 1rem;
}
.cid-uP3j4yE0Xw .panel-group {
  border: none;
}
.cid-uP3j4yE0Xw .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uP3j4yE0Xw .panel-body,
.cid-uP3j4yE0Xw .card-header {
  padding: 1rem 0;
}
.cid-uP3j4yE0Xw .panel-title-edit {
  color: #000000;
}
.cid-uP3j4yE0Xw .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uP3j4yE0Xw a {
  font-size: 1.2em;
  display: block;
  position: relative;
  top: 8px;
}
.cid-uP3j4zot5K {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #36404c;
}
.cid-uP3j4zot5K .mbr-flex {
  display: flex;
  justify-content: flex-end;
}
.cid-uP3j4zot5K section {
  position: relative;
}
.cid-uP3j4zot5K h4 {
  margin: 0;
}
.cid-uP3j4zot5K a {
  font-weight: 300;
}
.cid-uP3j4zot5K .row {
  align-items: center;
}
.cid-uP3j4zot5K .item {
  margin: 0 1.5rem;
  display: flex;
  align-items: center;
}
.cid-uP3j4zot5K .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-uP3j4zot5K .img1 {
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uP3j4zot5K .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-uP3j4zot5K .align-left {
    text-align: center;
  }
  .cid-uP3j4zot5K .mbr-flex {
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .cid-uP3j4zot5K .mbr-flex {
    flex-direction: column;
    align-items: center;
  }
  .cid-uP3j4zot5K .item {
    padding-bottom: 0.5rem;
  }
}
.cid-uP3j4zot5K .item-title {
  color: #c1c1c1;
}
.cid-uP3j4zot5K H4 {
  color: #c1c1c1;
}
