.btn {
  border-width: 2px;
}
body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Oswald', sans-serif;
  font-size: 5.4rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 6.75rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Bebas Neue', display;
  font-size: 2.4rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 3rem;
}
.display-7 {
  font-family: 'Abel', sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 2rem;
}
/* ---- 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: 4.32rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.78rem;
    font-size: calc( 2.54rem + (5.4 - 2.54) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.54rem + (5.4 - 2.54) * ((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.92rem;
    font-size: calc( 1.49rem + (2.4 - 1.49) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.49rem + (2.4 - 1.49) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 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: #485806 !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: #485806 !important;
  border-color: #485806 !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: #060700 !important;
  border-color: #060700 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #060700 !important;
  border-color: #060700 !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: #6592e6;
  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: #2260d2 !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: #ff6666;
  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: #ff0f0f !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: #485806;
  color: #485806;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #060700 !important;
  background-color: transparent!important;
  border-color: #060700 !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #485806 !important;
  border-color: #485806 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #40b0bf;
  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: #2a747e !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: #ffe161;
  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: #ffd10a !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: #ff9966;
  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: #ff5f0f !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: #232323;
  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: #000000 !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: #fafafa;
  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: #cfcfcf !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: #485806 !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: #000000 !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: #485806;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #6592e6;
  border-color: #6592e6;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
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: #aacf0e;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Jost', 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: 'Jost', 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 */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.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-sDOUU44RIQ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sDOUU44RIQ nav.navbar {
  position: fixed;
}
.cid-sDOUU44RIQ .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-sDOUU44RIQ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sDOUU44RIQ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sDOUU44RIQ .dropdown-item:hover,
.cid-sDOUU44RIQ .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sDOUU44RIQ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sDOUU44RIQ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sDOUU44RIQ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sDOUU44RIQ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sDOUU44RIQ .nav-link {
  position: relative;
}
.cid-sDOUU44RIQ .container {
  display: flex;
  margin: auto;
}
.cid-sDOUU44RIQ .iconfont-wrapper {
  color: #7b960c !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sDOUU44RIQ .dropdown-menu,
.cid-sDOUU44RIQ .navbar.opened {
  background: #ffffff !important;
}
.cid-sDOUU44RIQ .nav-item:focus,
.cid-sDOUU44RIQ .nav-link:focus {
  outline: none;
}
.cid-sDOUU44RIQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sDOUU44RIQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sDOUU44RIQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sDOUU44RIQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sDOUU44RIQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sDOUU44RIQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sDOUU44RIQ .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: #ffffff;
}
.cid-sDOUU44RIQ .navbar.opened {
  transition: all 0.3s;
}
.cid-sDOUU44RIQ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sDOUU44RIQ .navbar .navbar-logo img {
  width: auto;
}
.cid-sDOUU44RIQ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sDOUU44RIQ .navbar.collapsed {
  justify-content: center;
}
.cid-sDOUU44RIQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sDOUU44RIQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sDOUU44RIQ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-sDOUU44RIQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sDOUU44RIQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sDOUU44RIQ .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-sDOUU44RIQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sDOUU44RIQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sDOUU44RIQ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sDOUU44RIQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sDOUU44RIQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sDOUU44RIQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sDOUU44RIQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sDOUU44RIQ .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-sDOUU44RIQ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sDOUU44RIQ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sDOUU44RIQ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sDOUU44RIQ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sDOUU44RIQ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sDOUU44RIQ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sDOUU44RIQ .navbar.navbar-short {
  min-height: 60px;
}
.cid-sDOUU44RIQ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sDOUU44RIQ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sDOUU44RIQ .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sDOUU44RIQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sDOUU44RIQ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sDOUU44RIQ .dropdown-item.active,
.cid-sDOUU44RIQ .dropdown-item:active {
  background-color: transparent;
}
.cid-sDOUU44RIQ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sDOUU44RIQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sDOUU44RIQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sDOUU44RIQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sDOUU44RIQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sDOUU44RIQ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sDOUU44RIQ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sDOUU44RIQ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sDOUU44RIQ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sDOUU44RIQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sDOUU44RIQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sDOUU44RIQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sDOUU44RIQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sDOUU44RIQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sDOUU44RIQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sDOUU44RIQ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sDOUU44RIQ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sDOUU44RIQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sDOUU44RIQ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sDOUU44RIQ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sDOUU44RIQ .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-sDOUU44RIQ .navbar {
    height: 70px;
  }
  .cid-sDOUU44RIQ .navbar.opened {
    height: auto;
  }
  .cid-sDOUU44RIQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sDOMcKYs9h {
  background-image: url("../../../assets/images/mbr-1920x1220.jpeg");
}
.cid-sDOMcKYs9h .mbr-section-title {
  color: #ffffff;
}
.cid-sDOMcKYs9h .mbr-text,
.cid-sDOMcKYs9h .mbr-section-btn {
  color: #ffe885;
}
.cid-sDOMlC2aBD {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sDOMlC2aBD p {
  line-height: 1.6;
}
.cid-sDOMlC2aBD .card-box {
  width: -webkit-fill-available;
}
.cid-sDOMlC2aBD .card-img {
  width: auto;
}
.cid-sDOMlC2aBD .card-img span {
  font-size: 96px;
  padding: 0.6rem;
  margin: 0 1rem;
  border-radius: 8px;
}
.cid-sDOMlC2aBD .mbr-iconfont {
  font-size: 3rem !important;
}
.cid-sDOMlC2aBD .card-wrapper {
  display: flex;
  flex-direction: row;
}
.cid-sDOMlC2aBD .card {
  height: 100%;
  margin: auto;
}
.cid-sDOMlC2aBD img {
  width: 100%;
  heigth: auto;
}
.cid-sDOMlC2aBD .card-title1 {
  color: #073b4c;
}
.cid-sDOMlC2aBD .mbr-text1 {
  color: #767676;
}
.cid-sDOMlC2aBD .card-title2 {
  color: #7f1933;
}
.cid-sDOMlC2aBD .mbr-text2 {
  color: #767676;
}
@media (max-width: 576px) {
  .cid-sDOMlC2aBD .card-wrapper {
    flex-direction: column;
    align-items: center;
    padding: 1rem 0 0 0!important;
  }
  .cid-sDOMlC2aBD .card-img {
    order: 1;
  }
  .cid-sDOMlC2aBD .card-box {
    order: 2;
  }
}
.cid-sDOSOI2kff {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sDOSOI2kff img,
.cid-sDOSOI2kff .item-img {
  width: 100%;
}
.cid-sDOSOI2kff .item:focus,
.cid-sDOSOI2kff span:focus {
  outline: none;
}
.cid-sDOSOI2kff .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sDOSOI2kff .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sDOSOI2kff .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-sDOSOI2kff .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sDOSOI2kff .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-sDOSOI2kff .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-sDOSOI2kff .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sDOSOI2kff .mbr-section-title {
  color: #485806;
}
.cid-sDOSOI2kff .mbr-text,
.cid-sDOSOI2kff .mbr-section-btn {
  text-align: left;
}
.cid-sDOSOI2kff .item-title {
  text-align: center;
  color: #485806;
}
.cid-sDOSOI2kff .item-subtitle {
  text-align: center;
}
.cid-sGit1jPavn {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sGit1jPavn img,
.cid-sGit1jPavn .item-img {
  width: 100%;
}
.cid-sGit1jPavn .item:focus,
.cid-sGit1jPavn span:focus {
  outline: none;
}
.cid-sGit1jPavn .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sGit1jPavn .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sGit1jPavn .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-sGit1jPavn .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sGit1jPavn .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-sGit1jPavn .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-sGit1jPavn .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sGit1jPavn .mbr-section-title {
  color: #485806;
}
.cid-sGit1jPavn .mbr-text,
.cid-sGit1jPavn .mbr-section-btn {
  text-align: left;
}
.cid-sGit1jPavn .item-title {
  text-align: center;
  color: #485806;
}
.cid-sGit1jPavn .item-subtitle {
  text-align: center;
}
.cid-sGiq3c1Fd3 {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sGiq3c1Fd3 .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-sGiq3c1Fd3 .currentcost {
  color: #232323;
}
.cid-sGiq3c1Fd3 .card-wrapper {
  border-radius: 4px;
  background: #e4f9be;
}
@media (min-width: 992px) {
  .cid-sGiq3c1Fd3 .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sGiq3c1Fd3 .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sGiq3c1Fd3 .text-box {
    padding: 1rem;
  }
}
.cid-sGiq3c1Fd3 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sDOS4BSmDZ {
  background-image: url("../../../assets/images/background10.jpeg");
}
.cid-sDOS4BSmDZ .mbr-section-title {
  color: #e43f3f;
}
.cid-sriH4WcAHi {
  overflow: hidden !important;
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-sriH4WcAHi .mbr-section-subtitle {
  font-weight: 400;
}
.cid-sriH4WcAHi .mbr-section-title {
  padding-bottom: 2rem;
  color: #857014;
}
.cid-sriH4WcAHi .img-block {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sriH4WcAHi .mbr-figure {
  border-radius: .25rem;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-sriH4WcAHi .mbr-figure {
    margin-bottom: 3rem;
  }
}
.cid-sriH4WcAHi .form-control {
  width: 100%;
}
@media (max-width: 350px) {
  .cid-sriH4WcAHi .input-group-btn {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-sriH4WcAHi .form-control {
    margin-bottom: 10px;
  }
  .cid-sriH4WcAHi .form-group {
    max-width: 300px;
  }
  .cid-sriH4WcAHi .mbr-form .row {
    -webkit-flex-direction: column;
    flex-direction: column;
    align-items: center;
  }
}
.cid-sriH4WcAHi .form-group,
.cid-sriH4WcAHi .input-group-btn {
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 768px) {
  .cid-sriH4WcAHi .mbr-form > * {
    margin: 0 0rem;
    align-items: stretch;
  }
  .cid-sriH4WcAHi .col + .input-group-btn .btn,
  .cid-sriH4WcAHi .col-auto + .input-group-btn .btn {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    height: 100%;
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    padding-top: 0;
    padding-bottom: 0;
  }
  .cid-sriH4WcAHi .dragArea > *:nth-last-child(2).col,
  .cid-sriH4WcAHi .dragArea > *:nth-last-child(2).col-auto,
  .cid-sriH4WcAHi .col + .input-group-btn,
  .cid-sriH4WcAHi .col-auto + .input-group-btn {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .cid-sriH4WcAHi .dragArea > *:nth-last-child(2).col input,
  .cid-sriH4WcAHi .dragArea > *:nth-last-child(2).col-auto input {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
}
.cid-sriH4WcAHi .mbr-section-subtitle,
.cid-sriH4WcAHi .mbr-section-btn {
  color: #7b960c;
}
.cid-sGt6QKnozQ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #05303b;
}
.cid-sGt6QKnozQ .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sGt6QKnozQ .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sGt6QKnozQ .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sGt6QKnozQ .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sGt6QKnozQ .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sGt6QKnozQ .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sGt6QKnozQ .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sGt6QKnozQ .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sGt6QKnozQ .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sGt6QKnozQ .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sGt6QKnozQ .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sGt6QKnozQ .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sGt6QKnozQ .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sGt6QKnozQ .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sDOUU44RIQ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sDOUU44RIQ nav.navbar {
  position: fixed;
}
.cid-sDOUU44RIQ .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-sDOUU44RIQ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sDOUU44RIQ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sDOUU44RIQ .dropdown-item:hover,
.cid-sDOUU44RIQ .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sDOUU44RIQ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sDOUU44RIQ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sDOUU44RIQ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sDOUU44RIQ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sDOUU44RIQ .nav-link {
  position: relative;
}
.cid-sDOUU44RIQ .container {
  display: flex;
  margin: auto;
}
.cid-sDOUU44RIQ .iconfont-wrapper {
  color: #7b960c !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sDOUU44RIQ .dropdown-menu,
.cid-sDOUU44RIQ .navbar.opened {
  background: #ffffff !important;
}
.cid-sDOUU44RIQ .nav-item:focus,
.cid-sDOUU44RIQ .nav-link:focus {
  outline: none;
}
.cid-sDOUU44RIQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sDOUU44RIQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sDOUU44RIQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sDOUU44RIQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sDOUU44RIQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sDOUU44RIQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sDOUU44RIQ .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: #ffffff;
}
.cid-sDOUU44RIQ .navbar.opened {
  transition: all 0.3s;
}
.cid-sDOUU44RIQ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sDOUU44RIQ .navbar .navbar-logo img {
  width: auto;
}
.cid-sDOUU44RIQ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sDOUU44RIQ .navbar.collapsed {
  justify-content: center;
}
.cid-sDOUU44RIQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sDOUU44RIQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sDOUU44RIQ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-sDOUU44RIQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sDOUU44RIQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sDOUU44RIQ .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-sDOUU44RIQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sDOUU44RIQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sDOUU44RIQ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sDOUU44RIQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sDOUU44RIQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sDOUU44RIQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sDOUU44RIQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sDOUU44RIQ .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-sDOUU44RIQ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sDOUU44RIQ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sDOUU44RIQ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sDOUU44RIQ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sDOUU44RIQ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sDOUU44RIQ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sDOUU44RIQ .navbar.navbar-short {
  min-height: 60px;
}
.cid-sDOUU44RIQ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sDOUU44RIQ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sDOUU44RIQ .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sDOUU44RIQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sDOUU44RIQ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sDOUU44RIQ .dropdown-item.active,
.cid-sDOUU44RIQ .dropdown-item:active {
  background-color: transparent;
}
.cid-sDOUU44RIQ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sDOUU44RIQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sDOUU44RIQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sDOUU44RIQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sDOUU44RIQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sDOUU44RIQ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sDOUU44RIQ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sDOUU44RIQ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sDOUU44RIQ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sDOUU44RIQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sDOUU44RIQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sDOUU44RIQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sDOUU44RIQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sDOUU44RIQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sDOUU44RIQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sDOUU44RIQ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sDOUU44RIQ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sDOUU44RIQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sDOUU44RIQ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sDOUU44RIQ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sDOUU44RIQ .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-sDOUU44RIQ .navbar {
    height: 70px;
  }
  .cid-sDOUU44RIQ .navbar.opened {
    height: auto;
  }
  .cid-sDOUU44RIQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sEB6hGbbtD {
  background-image: url("../../../assets/images/mbr-1920x1516.png");
}
.cid-sEB6hGbbtD .mbr-section-subtitle {
  color: #ffe161;
}
.cid-sEB9pDdlqe {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sEB9pDdlqe .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sEB9pDdlqe .row {
  flex-direction: row-reverse;
}
.cid-sEB9pDdlqe img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sEB9pDdlqe .text-wrapper {
    padding: 2rem;
  }
}
.cid-sEB9pDdlqe .mbr-section-title {
  color: #485806;
}
.cid-sELIcs0NF9 {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sELIcs0NF9 .mbr-section-title {
  color: #7b960c;
}
.cid-sKg7WA8kRL {
  overflow: hidden;
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d3f5a7;
}
.cid-sKg7WA8kRL .mbr-section-title {
  margin-bottom: 26px;
  color: #ff6666;
}
.cid-sKg7WA8kRL .mbr-text {
  margin-bottom: 30px;
}
.cid-sKg7WA8kRL .card-title {
  color: #ff6666;
}
.cid-sKg7WA8kRL .icon_block .iconfont-wrapper {
  display: inline-block;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
.cid-sKg7WA8kRL .icon_block .iconfont-wrapper:before {
  content: "";
  top: 0;
  left: 50%;
  bottom: 0;
  z-index: -1;
  width: 60px;
  position: absolute;
  background-color: rgba(97, 159, 13, 0.07);
  -webkit-clip-path: polygon(0 0, 100% 0%, 100% 95%, 0% 100%);
  clip-path: polygon(0 0, 100% 0%, 100% 95%, 0% 100%);
}
.cid-sKg7WA8kRL .icon_block .iconfont-wrapper .mbr-iconfont {
  color: #619f0d;
  height: 75px;
  line-height: 75px;
  font-size: 46px;
  text-align: center;
}
.cid-sKg7WA8kRL .btn_link {
  display: block;
  margin-bottom: 0;
  position: relative;
  font-weight: 700;
}
.cid-sKg7WA8kRL .btn_link span {
  display: inline-block;
  margin-left: .25rem;
  font-size: 16px;
  vertical-align: middle;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-sKg7WA8kRL .btn_link:hover {
  cursor: pointer;
}
.cid-sKg7WA8kRL .btn_link:hover a {
  color: #6592e6 !important;
}
.cid-sKg7WA8kRL .btn_link:hover span {
  transform: translatex(5px);
}
.cid-sKg7WA8kRL .card_wrapper {
  margin-bottom: 20px;
}
.cid-sKg7WA8kRL .card_icon {
  display: block;
  margin-bottom: 25px;
}
.cid-sKg7WA8kRL .card_icon .mbr-iconfont {
  font-size: 48px;
  color: #ffffff;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  text-shadow: 0 14px 30px rgba(97, 159, 13, 0.4);
  background: -webkit-linear-gradient(40deg, #619f0d 0%, rgba(97, 159, 13, 0.3) 100%);
}
@media (min-width: 992px) {
  .cid-sKg7WA8kRL .title_block {
    padding-right: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sKg7WA8kRL .title_block,
  .cid-sKg7WA8kRL .card_wrapper {
    text-align: center;
    margin-bottom: 30px;
  }
  .cid-sKg7WA8kRL .mbr-text {
    margin-bottom: 20px;
  }
  .cid-sKg7WA8kRL .icon_block .iconfont-wrapper {
    margin-bottom: 20px;
  }
}
.cid-sKg7WA8kRL .card-title,
.cid-sKg7WA8kRL .card_icon {
  color: #445d08;
}
.cid-sKg7WA8kRL .mbr-section-title,
.cid-sKg7WA8kRL .icon_block {
  color: #445d08;
}
.cid-sEN5qkmh1i {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sEN5qkmh1i .timeline-element {
  position: relative;
}
.cid-sEN5qkmh1i .timelines-container {
  display: flex;
  flex-wrap: wrap;
}
.cid-sEN5qkmh1i .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sEN5qkmh1i .mbr-section-title,
.cid-sEN5qkmh1i .mbr-section-subtitle,
.cid-sEN5qkmh1i .timeline-date {
  text-align: center;
}
.cid-sEN5qkmh1i .iconBackground {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #6592e6;
  margin-left: -9px;
}
@media (max-width: 767px) {
  .cid-sEN5qkmh1i .iconBackground {
    left: 15px;
    top: 30px;
  }
}
@media (min-width: 768px) {
  .cid-sEN5qkmh1i .iconBackground {
    top: 70px;
    left: 50%;
  }
}
.cid-sEN5qkmh1i .row:after {
  content: "";
  position: absolute;
  background-color: #6592e6;
  width: 2px;
}
@media (max-width: 767px) {
  .cid-sEN5qkmh1i .row:after {
    height: calc(100% + 30px);
    top: 50px;
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-sEN5qkmh1i .row:after {
    height: calc(100% + 28px);
    top: 90px;
    left: 50%;
  }
}
@media (max-width: 767px) {
  .cid-sEN5qkmh1i .timeline-date-wrapper,
  .cid-sEN5qkmh1i .timeline-text-wrapper,
  .cid-sEN5qkmh1i .image-wrapper {
    padding: 0rem;
    padding-left: 2rem;
  }
  .cid-sEN5qkmh1i .mbr-timeline-date {
    text-align: center !important;
  }
  .cid-sEN5qkmh1i .mbr-timeline-title {
    text-align: center;
    margin-top: 1rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-sEN5qkmh1i .timeline-date-wrapper,
  .cid-sEN5qkmh1i .timeline-text-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sEN5qkmh1i .timeline-date-wrapper,
  .cid-sEN5qkmh1i .timeline-text-wrapper,
  .cid-sEN5qkmh1i .image-wrapper {
    padding: 2rem;
  }
}
.cid-sEN5qkmh1i .mbr-section-title {
  color: #7b960c;
}
.cid-sEN5qkmh1i .mbr-timeline-title {
  color: #2299aa;
}
.cid-sEWZA3D3sP {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sEWZA3D3sP .video-wrapper iframe {
  width: 100%;
}
.cid-sEWZA3D3sP .mbr-section-title,
.cid-sEWZA3D3sP .mbr-section-subtitle,
.cid-sEWZA3D3sP .mbr-text {
  text-align: center;
}
.cid-sEWZA3D3sP .mbr-section-title {
  color: #485806;
}
.cid-sELIAe0IiG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sELIAe0IiG .card-wrapper {
  background: #485806;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-sELIAe0IiG .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sELIAe0IiG .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sELIAe0IiG .card-wrapper {
    padding: 4rem;
  }
}
.cid-sELIAe0IiG .mbr-text,
.cid-sELIAe0IiG .mbr-section-btn {
  color: #ffffff;
}
.cid-sELIAe0IiG .card-title,
.cid-sELIAe0IiG .card-box {
  text-align: left;
}
.cid-sKrHDjDn4v {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sKrHDjDn4v .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sKrHDjDn4v .image-wrap img {
    display: block;
    margin: auto;
    width: 70%;
  }
}
.cid-sENmZvWIBu {
  overflow: hidden !important;
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-sENmZvWIBu .mbr-section-subtitle {
  font-weight: 400;
}
.cid-sENmZvWIBu .mbr-section-title {
  padding-bottom: 2rem;
  color: #857014;
}
.cid-sENmZvWIBu .img-block {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sENmZvWIBu .mbr-figure {
  border-radius: .25rem;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-sENmZvWIBu .mbr-figure {
    margin-bottom: 3rem;
  }
}
.cid-sENmZvWIBu .form-control {
  width: 100%;
}
@media (max-width: 350px) {
  .cid-sENmZvWIBu .input-group-btn {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-sENmZvWIBu .form-control {
    margin-bottom: 10px;
  }
  .cid-sENmZvWIBu .form-group {
    max-width: 300px;
  }
  .cid-sENmZvWIBu .mbr-form .row {
    -webkit-flex-direction: column;
    flex-direction: column;
    align-items: center;
  }
}
.cid-sENmZvWIBu .form-group,
.cid-sENmZvWIBu .input-group-btn {
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 768px) {
  .cid-sENmZvWIBu .mbr-form > * {
    margin: 0 0rem;
    align-items: stretch;
  }
  .cid-sENmZvWIBu .col + .input-group-btn .btn,
  .cid-sENmZvWIBu .col-auto + .input-group-btn .btn {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    height: 100%;
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    padding-top: 0;
    padding-bottom: 0;
  }
  .cid-sENmZvWIBu .dragArea > *:nth-last-child(2).col,
  .cid-sENmZvWIBu .dragArea > *:nth-last-child(2).col-auto,
  .cid-sENmZvWIBu .col + .input-group-btn,
  .cid-sENmZvWIBu .col-auto + .input-group-btn {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .cid-sENmZvWIBu .dragArea > *:nth-last-child(2).col input,
  .cid-sENmZvWIBu .dragArea > *:nth-last-child(2).col-auto input {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
}
.cid-sENmZvWIBu .mbr-section-subtitle,
.cid-sENmZvWIBu .mbr-section-btn {
  color: #7b960c;
}
.cid-sGt6QKnozQ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #05303b;
}
.cid-sGt6QKnozQ .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sGt6QKnozQ .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sGt6QKnozQ .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sGt6QKnozQ .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sGt6QKnozQ .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sGt6QKnozQ .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sGt6QKnozQ .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sGt6QKnozQ .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sGt6QKnozQ .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sGt6QKnozQ .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sGt6QKnozQ .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sGt6QKnozQ .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sGt6QKnozQ .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sGt6QKnozQ .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sFDdpGOOcE {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sFDdpGOOcE nav.navbar {
  position: fixed;
}
.cid-sFDdpGOOcE .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-sFDdpGOOcE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sFDdpGOOcE .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sFDdpGOOcE .dropdown-item:hover,
.cid-sFDdpGOOcE .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sFDdpGOOcE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sFDdpGOOcE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sFDdpGOOcE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sFDdpGOOcE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sFDdpGOOcE .nav-link {
  position: relative;
}
.cid-sFDdpGOOcE .container {
  display: flex;
  margin: auto;
}
.cid-sFDdpGOOcE .iconfont-wrapper {
  color: #7b960c !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sFDdpGOOcE .dropdown-menu,
.cid-sFDdpGOOcE .navbar.opened {
  background: #ffffff !important;
}
.cid-sFDdpGOOcE .nav-item:focus,
.cid-sFDdpGOOcE .nav-link:focus {
  outline: none;
}
.cid-sFDdpGOOcE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sFDdpGOOcE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sFDdpGOOcE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sFDdpGOOcE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sFDdpGOOcE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sFDdpGOOcE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sFDdpGOOcE .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: #ffffff;
}
.cid-sFDdpGOOcE .navbar.opened {
  transition: all 0.3s;
}
.cid-sFDdpGOOcE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sFDdpGOOcE .navbar .navbar-logo img {
  width: auto;
}
.cid-sFDdpGOOcE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sFDdpGOOcE .navbar.collapsed {
  justify-content: center;
}
.cid-sFDdpGOOcE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sFDdpGOOcE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sFDdpGOOcE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-sFDdpGOOcE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sFDdpGOOcE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sFDdpGOOcE .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-sFDdpGOOcE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sFDdpGOOcE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sFDdpGOOcE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sFDdpGOOcE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sFDdpGOOcE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sFDdpGOOcE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sFDdpGOOcE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sFDdpGOOcE .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-sFDdpGOOcE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sFDdpGOOcE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sFDdpGOOcE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sFDdpGOOcE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sFDdpGOOcE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sFDdpGOOcE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sFDdpGOOcE .navbar.navbar-short {
  min-height: 60px;
}
.cid-sFDdpGOOcE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sFDdpGOOcE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sFDdpGOOcE .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sFDdpGOOcE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sFDdpGOOcE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sFDdpGOOcE .dropdown-item.active,
.cid-sFDdpGOOcE .dropdown-item:active {
  background-color: transparent;
}
.cid-sFDdpGOOcE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sFDdpGOOcE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sFDdpGOOcE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sFDdpGOOcE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sFDdpGOOcE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sFDdpGOOcE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sFDdpGOOcE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sFDdpGOOcE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sFDdpGOOcE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sFDdpGOOcE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sFDdpGOOcE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sFDdpGOOcE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFDdpGOOcE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFDdpGOOcE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sFDdpGOOcE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFDdpGOOcE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sFDdpGOOcE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sFDdpGOOcE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFDdpGOOcE .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sFDdpGOOcE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sFDdpGOOcE .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-sFDdpGOOcE .navbar {
    height: 70px;
  }
  .cid-sFDdpGOOcE .navbar.opened {
    height: auto;
  }
  .cid-sFDdpGOOcE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sFDdpHqKYY {
  background-image: url("../../../assets/images/mbr-1920x1280.jpeg");
}
.cid-sFDdpHqKYY .mbr-section-subtitle {
  color: #ffe161;
}
.cid-sFDdpHJJuu {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sFDdpHJJuu .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sFDdpHJJuu .row {
  flex-direction: row-reverse;
}
.cid-sFDdpHJJuu img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sFDdpHJJuu .text-wrapper {
    padding: 2rem;
  }
}
.cid-sFDdpHJJuu .mbr-section-title {
  color: #485806;
}
.cid-sFDdpI4eIA {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sFDdpI4eIA .mbr-section-title {
  color: #7b960c;
}
.cid-sKrEU9eS5i {
  overflow: hidden;
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d3f5a7;
}
.cid-sKrEU9eS5i .mbr-section-title {
  margin-bottom: 26px;
  color: #ff6666;
}
.cid-sKrEU9eS5i .mbr-text {
  margin-bottom: 30px;
}
.cid-sKrEU9eS5i .card-title {
  color: #ff6666;
}
.cid-sKrEU9eS5i .icon_block .iconfont-wrapper {
  display: inline-block;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
.cid-sKrEU9eS5i .icon_block .iconfont-wrapper:before {
  content: "";
  top: 0;
  left: 50%;
  bottom: 0;
  z-index: -1;
  width: 60px;
  position: absolute;
  background-color: rgba(97, 159, 13, 0.07);
  -webkit-clip-path: polygon(0 0, 100% 0%, 100% 95%, 0% 100%);
  clip-path: polygon(0 0, 100% 0%, 100% 95%, 0% 100%);
}
.cid-sKrEU9eS5i .icon_block .iconfont-wrapper .mbr-iconfont {
  color: #619f0d;
  height: 75px;
  line-height: 75px;
  font-size: 46px;
  text-align: center;
}
.cid-sKrEU9eS5i .btn_link {
  display: block;
  margin-bottom: 0;
  position: relative;
  font-weight: 700;
}
.cid-sKrEU9eS5i .btn_link span {
  display: inline-block;
  margin-left: .25rem;
  font-size: 16px;
  vertical-align: middle;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-sKrEU9eS5i .btn_link:hover {
  cursor: pointer;
}
.cid-sKrEU9eS5i .btn_link:hover a {
  color: #6592e6 !important;
}
.cid-sKrEU9eS5i .btn_link:hover span {
  transform: translatex(5px);
}
.cid-sKrEU9eS5i .card_wrapper {
  margin-bottom: 20px;
}
.cid-sKrEU9eS5i .card_icon {
  display: block;
  margin-bottom: 25px;
}
.cid-sKrEU9eS5i .card_icon .mbr-iconfont {
  font-size: 48px;
  color: #ffffff;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  text-shadow: 0 14px 30px rgba(97, 159, 13, 0.4);
  background: -webkit-linear-gradient(40deg, #619f0d 0%, rgba(97, 159, 13, 0.3) 100%);
}
@media (min-width: 992px) {
  .cid-sKrEU9eS5i .title_block {
    padding-right: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sKrEU9eS5i .title_block,
  .cid-sKrEU9eS5i .card_wrapper {
    text-align: center;
    margin-bottom: 30px;
  }
  .cid-sKrEU9eS5i .mbr-text {
    margin-bottom: 20px;
  }
  .cid-sKrEU9eS5i .icon_block .iconfont-wrapper {
    margin-bottom: 20px;
  }
}
.cid-sKrEU9eS5i .card-title,
.cid-sKrEU9eS5i .card_icon {
  color: #445d08;
}
.cid-sKrEU9eS5i .mbr-section-title,
.cid-sKrEU9eS5i .icon_block {
  color: #445d08;
}
.cid-sFDdpIQB18 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sFDdpIQB18 .timeline-element {
  position: relative;
}
.cid-sFDdpIQB18 .timelines-container {
  display: flex;
  flex-wrap: wrap;
}
.cid-sFDdpIQB18 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sFDdpIQB18 .mbr-section-title,
.cid-sFDdpIQB18 .mbr-section-subtitle,
.cid-sFDdpIQB18 .timeline-date {
  text-align: center;
}
.cid-sFDdpIQB18 .iconBackground {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #6592e6;
  margin-left: -9px;
}
@media (max-width: 767px) {
  .cid-sFDdpIQB18 .iconBackground {
    left: 15px;
    top: 30px;
  }
}
@media (min-width: 768px) {
  .cid-sFDdpIQB18 .iconBackground {
    top: 70px;
    left: 50%;
  }
}
.cid-sFDdpIQB18 .row:after {
  content: "";
  position: absolute;
  background-color: #6592e6;
  width: 2px;
}
@media (max-width: 767px) {
  .cid-sFDdpIQB18 .row:after {
    height: calc(100% + 30px);
    top: 50px;
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-sFDdpIQB18 .row:after {
    height: calc(100% + 28px);
    top: 90px;
    left: 50%;
  }
}
@media (max-width: 767px) {
  .cid-sFDdpIQB18 .timeline-date-wrapper,
  .cid-sFDdpIQB18 .timeline-text-wrapper,
  .cid-sFDdpIQB18 .image-wrapper {
    padding: 0rem;
    padding-left: 2rem;
  }
  .cid-sFDdpIQB18 .mbr-timeline-date {
    text-align: center !important;
  }
  .cid-sFDdpIQB18 .mbr-timeline-title {
    text-align: center;
    margin-top: 1rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-sFDdpIQB18 .timeline-date-wrapper,
  .cid-sFDdpIQB18 .timeline-text-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sFDdpIQB18 .timeline-date-wrapper,
  .cid-sFDdpIQB18 .timeline-text-wrapper,
  .cid-sFDdpIQB18 .image-wrapper {
    padding: 2rem;
  }
}
.cid-sFDdpIQB18 .mbr-section-title {
  color: #7b960c;
}
.cid-sFDdpIQB18 .mbr-timeline-title {
  color: #2299aa;
}
.cid-sFDdpKJtGJ {
  overflow: hidden !important;
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-sFDdpKJtGJ .mbr-section-subtitle {
  font-weight: 400;
}
.cid-sFDdpKJtGJ .mbr-section-title {
  padding-bottom: 2rem;
  color: #857014;
}
.cid-sFDdpKJtGJ .img-block {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sFDdpKJtGJ .mbr-figure {
  border-radius: .25rem;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-sFDdpKJtGJ .mbr-figure {
    margin-bottom: 3rem;
  }
}
.cid-sFDdpKJtGJ .form-control {
  width: 100%;
}
@media (max-width: 350px) {
  .cid-sFDdpKJtGJ .input-group-btn {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-sFDdpKJtGJ .form-control {
    margin-bottom: 10px;
  }
  .cid-sFDdpKJtGJ .form-group {
    max-width: 300px;
  }
  .cid-sFDdpKJtGJ .mbr-form .row {
    -webkit-flex-direction: column;
    flex-direction: column;
    align-items: center;
  }
}
.cid-sFDdpKJtGJ .form-group,
.cid-sFDdpKJtGJ .input-group-btn {
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 768px) {
  .cid-sFDdpKJtGJ .mbr-form > * {
    margin: 0 0rem;
    align-items: stretch;
  }
  .cid-sFDdpKJtGJ .col + .input-group-btn .btn,
  .cid-sFDdpKJtGJ .col-auto + .input-group-btn .btn {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    height: 100%;
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    padding-top: 0;
    padding-bottom: 0;
  }
  .cid-sFDdpKJtGJ .dragArea > *:nth-last-child(2).col,
  .cid-sFDdpKJtGJ .dragArea > *:nth-last-child(2).col-auto,
  .cid-sFDdpKJtGJ .col + .input-group-btn,
  .cid-sFDdpKJtGJ .col-auto + .input-group-btn {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .cid-sFDdpKJtGJ .dragArea > *:nth-last-child(2).col input,
  .cid-sFDdpKJtGJ .dragArea > *:nth-last-child(2).col-auto input {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
}
.cid-sFDdpKJtGJ .mbr-section-subtitle,
.cid-sFDdpKJtGJ .mbr-section-btn {
  color: #7b960c;
}
.cid-sGt6QKnozQ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #05303b;
}
.cid-sGt6QKnozQ .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sGt6QKnozQ .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sGt6QKnozQ .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sGt6QKnozQ .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sGt6QKnozQ .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sGt6QKnozQ .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sGt6QKnozQ .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sGt6QKnozQ .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sGt6QKnozQ .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sGt6QKnozQ .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sGt6QKnozQ .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sGt6QKnozQ .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sGt6QKnozQ .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sGt6QKnozQ .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sGnW9CzjP8 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sGnW9CzjP8 nav.navbar {
  position: fixed;
}
.cid-sGnW9CzjP8 .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-sGnW9CzjP8 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sGnW9CzjP8 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sGnW9CzjP8 .dropdown-item:hover,
.cid-sGnW9CzjP8 .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sGnW9CzjP8 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sGnW9CzjP8 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sGnW9CzjP8 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sGnW9CzjP8 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sGnW9CzjP8 .nav-link {
  position: relative;
}
.cid-sGnW9CzjP8 .container {
  display: flex;
  margin: auto;
}
.cid-sGnW9CzjP8 .iconfont-wrapper {
  color: #7b960c !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sGnW9CzjP8 .dropdown-menu,
.cid-sGnW9CzjP8 .navbar.opened {
  background: #ffffff !important;
}
.cid-sGnW9CzjP8 .nav-item:focus,
.cid-sGnW9CzjP8 .nav-link:focus {
  outline: none;
}
.cid-sGnW9CzjP8 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sGnW9CzjP8 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sGnW9CzjP8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sGnW9CzjP8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sGnW9CzjP8 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sGnW9CzjP8 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sGnW9CzjP8 .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: #ffffff;
}
.cid-sGnW9CzjP8 .navbar.opened {
  transition: all 0.3s;
}
.cid-sGnW9CzjP8 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sGnW9CzjP8 .navbar .navbar-logo img {
  width: auto;
}
.cid-sGnW9CzjP8 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sGnW9CzjP8 .navbar.collapsed {
  justify-content: center;
}
.cid-sGnW9CzjP8 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sGnW9CzjP8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sGnW9CzjP8 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-sGnW9CzjP8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sGnW9CzjP8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sGnW9CzjP8 .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-sGnW9CzjP8 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sGnW9CzjP8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sGnW9CzjP8 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sGnW9CzjP8 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sGnW9CzjP8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sGnW9CzjP8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sGnW9CzjP8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sGnW9CzjP8 .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-sGnW9CzjP8 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sGnW9CzjP8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sGnW9CzjP8 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sGnW9CzjP8 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sGnW9CzjP8 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sGnW9CzjP8 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sGnW9CzjP8 .navbar.navbar-short {
  min-height: 60px;
}
.cid-sGnW9CzjP8 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sGnW9CzjP8 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sGnW9CzjP8 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sGnW9CzjP8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sGnW9CzjP8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sGnW9CzjP8 .dropdown-item.active,
.cid-sGnW9CzjP8 .dropdown-item:active {
  background-color: transparent;
}
.cid-sGnW9CzjP8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sGnW9CzjP8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sGnW9CzjP8 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sGnW9CzjP8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sGnW9CzjP8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sGnW9CzjP8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sGnW9CzjP8 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sGnW9CzjP8 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sGnW9CzjP8 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sGnW9CzjP8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sGnW9CzjP8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sGnW9CzjP8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sGnW9CzjP8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sGnW9CzjP8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sGnW9CzjP8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sGnW9CzjP8 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sGnW9CzjP8 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sGnW9CzjP8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sGnW9CzjP8 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sGnW9CzjP8 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sGnW9CzjP8 .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-sGnW9CzjP8 .navbar {
    height: 70px;
  }
  .cid-sGnW9CzjP8 .navbar.opened {
    height: auto;
  }
  .cid-sGnW9CzjP8 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sGnW9DbxJY {
  background-image: url("../../../assets/images/mbr-1920x1282.jpg");
}
.cid-sGnW9DbxJY .mbr-section-subtitle {
  color: #ffe161;
}
.cid-sGnW9DtS4i {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sGnW9DtS4i .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sGnW9DtS4i .row {
  flex-direction: row-reverse;
}
.cid-sGnW9DtS4i img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sGnW9DtS4i .text-wrapper {
    padding: 2rem;
  }
}
.cid-sGnW9DtS4i .mbr-section-title {
  color: #485806;
}
.cid-sGnW9DU4Rp {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sGnW9DU4Rp .mbr-section-title {
  color: #7b960c;
}
.cid-sKrRNviuVq {
  overflow: hidden;
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d3f5a7;
}
.cid-sKrRNviuVq .mbr-section-title {
  margin-bottom: 26px;
  color: #ff6666;
}
.cid-sKrRNviuVq .mbr-text {
  margin-bottom: 30px;
}
.cid-sKrRNviuVq .card-title {
  color: #ff6666;
}
.cid-sKrRNviuVq .icon_block .iconfont-wrapper {
  display: inline-block;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
.cid-sKrRNviuVq .icon_block .iconfont-wrapper:before {
  content: "";
  top: 0;
  left: 50%;
  bottom: 0;
  z-index: -1;
  width: 60px;
  position: absolute;
  background-color: rgba(97, 159, 13, 0.07);
  -webkit-clip-path: polygon(0 0, 100% 0%, 100% 95%, 0% 100%);
  clip-path: polygon(0 0, 100% 0%, 100% 95%, 0% 100%);
}
.cid-sKrRNviuVq .icon_block .iconfont-wrapper .mbr-iconfont {
  color: #619f0d;
  height: 75px;
  line-height: 75px;
  font-size: 46px;
  text-align: center;
}
.cid-sKrRNviuVq .btn_link {
  display: block;
  margin-bottom: 0;
  position: relative;
  font-weight: 700;
}
.cid-sKrRNviuVq .btn_link span {
  display: inline-block;
  margin-left: .25rem;
  font-size: 16px;
  vertical-align: middle;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-sKrRNviuVq .btn_link:hover {
  cursor: pointer;
}
.cid-sKrRNviuVq .btn_link:hover a {
  color: #6592e6 !important;
}
.cid-sKrRNviuVq .btn_link:hover span {
  transform: translatex(5px);
}
.cid-sKrRNviuVq .card_wrapper {
  margin-bottom: 20px;
}
.cid-sKrRNviuVq .card_icon {
  display: block;
  margin-bottom: 25px;
}
.cid-sKrRNviuVq .card_icon .mbr-iconfont {
  font-size: 48px;
  color: #ffffff;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  text-shadow: 0 14px 30px rgba(97, 159, 13, 0.4);
  background: -webkit-linear-gradient(40deg, #619f0d 0%, rgba(97, 159, 13, 0.3) 100%);
}
@media (min-width: 992px) {
  .cid-sKrRNviuVq .title_block {
    padding-right: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sKrRNviuVq .title_block,
  .cid-sKrRNviuVq .card_wrapper {
    text-align: center;
    margin-bottom: 30px;
  }
  .cid-sKrRNviuVq .mbr-text {
    margin-bottom: 20px;
  }
  .cid-sKrRNviuVq .icon_block .iconfont-wrapper {
    margin-bottom: 20px;
  }
}
.cid-sKrRNviuVq .card-title,
.cid-sKrRNviuVq .card_icon {
  color: #445d08;
}
.cid-sKrRNviuVq .mbr-section-title,
.cid-sKrRNviuVq .icon_block {
  color: #445d08;
}
.cid-sGnW9EK7GF {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sGnW9EK7GF .timeline-element {
  position: relative;
}
.cid-sGnW9EK7GF .timelines-container {
  display: flex;
  flex-wrap: wrap;
}
.cid-sGnW9EK7GF .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sGnW9EK7GF .mbr-section-title,
.cid-sGnW9EK7GF .mbr-section-subtitle,
.cid-sGnW9EK7GF .timeline-date {
  text-align: center;
}
.cid-sGnW9EK7GF .iconBackground {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #6592e6;
  margin-left: -9px;
}
@media (max-width: 767px) {
  .cid-sGnW9EK7GF .iconBackground {
    left: 15px;
    top: 30px;
  }
}
@media (min-width: 768px) {
  .cid-sGnW9EK7GF .iconBackground {
    top: 70px;
    left: 50%;
  }
}
.cid-sGnW9EK7GF .row:after {
  content: "";
  position: absolute;
  background-color: #6592e6;
  width: 2px;
}
@media (max-width: 767px) {
  .cid-sGnW9EK7GF .row:after {
    height: calc(100% + 30px);
    top: 50px;
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-sGnW9EK7GF .row:after {
    height: calc(100% + 28px);
    top: 90px;
    left: 50%;
  }
}
@media (max-width: 767px) {
  .cid-sGnW9EK7GF .timeline-date-wrapper,
  .cid-sGnW9EK7GF .timeline-text-wrapper,
  .cid-sGnW9EK7GF .image-wrapper {
    padding: 0rem;
    padding-left: 2rem;
  }
  .cid-sGnW9EK7GF .mbr-timeline-date {
    text-align: center !important;
  }
  .cid-sGnW9EK7GF .mbr-timeline-title {
    text-align: center;
    margin-top: 1rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-sGnW9EK7GF .timeline-date-wrapper,
  .cid-sGnW9EK7GF .timeline-text-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sGnW9EK7GF .timeline-date-wrapper,
  .cid-sGnW9EK7GF .timeline-text-wrapper,
  .cid-sGnW9EK7GF .image-wrapper {
    padding: 2rem;
  }
}
.cid-sGnW9EK7GF .mbr-section-title {
  color: #7b960c;
}
.cid-sGnW9EK7GF .mbr-timeline-title {
  color: #2299aa;
}
.cid-sGnW9Ghfoj {
  overflow: hidden !important;
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-sGnW9Ghfoj .mbr-section-subtitle {
  font-weight: 400;
}
.cid-sGnW9Ghfoj .mbr-section-title {
  padding-bottom: 2rem;
  color: #857014;
}
.cid-sGnW9Ghfoj .img-block {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sGnW9Ghfoj .mbr-figure {
  border-radius: .25rem;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-sGnW9Ghfoj .mbr-figure {
    margin-bottom: 3rem;
  }
}
.cid-sGnW9Ghfoj .form-control {
  width: 100%;
}
@media (max-width: 350px) {
  .cid-sGnW9Ghfoj .input-group-btn {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-sGnW9Ghfoj .form-control {
    margin-bottom: 10px;
  }
  .cid-sGnW9Ghfoj .form-group {
    max-width: 300px;
  }
  .cid-sGnW9Ghfoj .mbr-form .row {
    -webkit-flex-direction: column;
    flex-direction: column;
    align-items: center;
  }
}
.cid-sGnW9Ghfoj .form-group,
.cid-sGnW9Ghfoj .input-group-btn {
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 768px) {
  .cid-sGnW9Ghfoj .mbr-form > * {
    margin: 0 0rem;
    align-items: stretch;
  }
  .cid-sGnW9Ghfoj .col + .input-group-btn .btn,
  .cid-sGnW9Ghfoj .col-auto + .input-group-btn .btn {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    height: 100%;
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    padding-top: 0;
    padding-bottom: 0;
  }
  .cid-sGnW9Ghfoj .dragArea > *:nth-last-child(2).col,
  .cid-sGnW9Ghfoj .dragArea > *:nth-last-child(2).col-auto,
  .cid-sGnW9Ghfoj .col + .input-group-btn,
  .cid-sGnW9Ghfoj .col-auto + .input-group-btn {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .cid-sGnW9Ghfoj .dragArea > *:nth-last-child(2).col input,
  .cid-sGnW9Ghfoj .dragArea > *:nth-last-child(2).col-auto input {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
}
.cid-sGnW9Ghfoj .mbr-section-subtitle,
.cid-sGnW9Ghfoj .mbr-section-btn {
  color: #7b960c;
}
.cid-sGt6QKnozQ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #05303b;
}
.cid-sGt6QKnozQ .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sGt6QKnozQ .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sGt6QKnozQ .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sGt6QKnozQ .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sGt6QKnozQ .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sGt6QKnozQ .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sGt6QKnozQ .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sGt6QKnozQ .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sGt6QKnozQ .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sGt6QKnozQ .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sGt6QKnozQ .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sGt6QKnozQ .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sGt6QKnozQ .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sGt6QKnozQ .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sGo9YjSjhS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sGo9YjSjhS nav.navbar {
  position: fixed;
}
.cid-sGo9YjSjhS .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-sGo9YjSjhS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sGo9YjSjhS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sGo9YjSjhS .dropdown-item:hover,
.cid-sGo9YjSjhS .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sGo9YjSjhS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sGo9YjSjhS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sGo9YjSjhS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sGo9YjSjhS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sGo9YjSjhS .nav-link {
  position: relative;
}
.cid-sGo9YjSjhS .container {
  display: flex;
  margin: auto;
}
.cid-sGo9YjSjhS .iconfont-wrapper {
  color: #7b960c !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sGo9YjSjhS .dropdown-menu,
.cid-sGo9YjSjhS .navbar.opened {
  background: #ffffff !important;
}
.cid-sGo9YjSjhS .nav-item:focus,
.cid-sGo9YjSjhS .nav-link:focus {
  outline: none;
}
.cid-sGo9YjSjhS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sGo9YjSjhS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sGo9YjSjhS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sGo9YjSjhS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sGo9YjSjhS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sGo9YjSjhS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sGo9YjSjhS .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: #ffffff;
}
.cid-sGo9YjSjhS .navbar.opened {
  transition: all 0.3s;
}
.cid-sGo9YjSjhS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sGo9YjSjhS .navbar .navbar-logo img {
  width: auto;
}
.cid-sGo9YjSjhS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sGo9YjSjhS .navbar.collapsed {
  justify-content: center;
}
.cid-sGo9YjSjhS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sGo9YjSjhS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sGo9YjSjhS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-sGo9YjSjhS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sGo9YjSjhS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sGo9YjSjhS .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-sGo9YjSjhS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sGo9YjSjhS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sGo9YjSjhS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sGo9YjSjhS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sGo9YjSjhS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sGo9YjSjhS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sGo9YjSjhS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sGo9YjSjhS .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-sGo9YjSjhS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sGo9YjSjhS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sGo9YjSjhS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sGo9YjSjhS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sGo9YjSjhS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sGo9YjSjhS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sGo9YjSjhS .navbar.navbar-short {
  min-height: 60px;
}
.cid-sGo9YjSjhS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sGo9YjSjhS .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sGo9YjSjhS .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sGo9YjSjhS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sGo9YjSjhS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sGo9YjSjhS .dropdown-item.active,
.cid-sGo9YjSjhS .dropdown-item:active {
  background-color: transparent;
}
.cid-sGo9YjSjhS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sGo9YjSjhS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sGo9YjSjhS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sGo9YjSjhS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sGo9YjSjhS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sGo9YjSjhS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sGo9YjSjhS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sGo9YjSjhS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sGo9YjSjhS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sGo9YjSjhS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sGo9YjSjhS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sGo9YjSjhS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sGo9YjSjhS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sGo9YjSjhS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sGo9YjSjhS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sGo9YjSjhS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sGo9YjSjhS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sGo9YjSjhS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sGo9YjSjhS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sGo9YjSjhS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sGo9YjSjhS .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-sGo9YjSjhS .navbar {
    height: 70px;
  }
  .cid-sGo9YjSjhS .navbar.opened {
    height: auto;
  }
  .cid-sGo9YjSjhS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sGo9YkRXlu {
  background-image: url("../../../assets/images/mbr-1-1920x1280.jpeg");
}
.cid-sGo9YkRXlu .mbr-section-subtitle {
  color: #ffe161;
}
.cid-sGocOFBgAp {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #c6e68c;
}
.cid-sGocOFBgAp .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
@media (min-width: 992px) {
  .cid-sGocOFBgAp form {
    width: 50%;
  }
}
.cid-sGocOFBgAp form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-sGocOFBgAp form .mbr-section-btn .btn {
  width: 100%;
}
.cid-sGocOFBgAp .mbr-section-title {
  color: #485806;
}
.cid-sGo9YoqfGE {
  overflow: hidden !important;
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-sGo9YoqfGE .mbr-section-subtitle {
  font-weight: 400;
}
.cid-sGo9YoqfGE .mbr-section-title {
  padding-bottom: 2rem;
  color: #857014;
}
.cid-sGo9YoqfGE .img-block {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sGo9YoqfGE .mbr-figure {
  border-radius: .25rem;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-sGo9YoqfGE .mbr-figure {
    margin-bottom: 3rem;
  }
}
.cid-sGo9YoqfGE .form-control {
  width: 100%;
}
@media (max-width: 350px) {
  .cid-sGo9YoqfGE .input-group-btn {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-sGo9YoqfGE .form-control {
    margin-bottom: 10px;
  }
  .cid-sGo9YoqfGE .form-group {
    max-width: 300px;
  }
  .cid-sGo9YoqfGE .mbr-form .row {
    -webkit-flex-direction: column;
    flex-direction: column;
    align-items: center;
  }
}
.cid-sGo9YoqfGE .form-group,
.cid-sGo9YoqfGE .input-group-btn {
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 768px) {
  .cid-sGo9YoqfGE .mbr-form > * {
    margin: 0 0rem;
    align-items: stretch;
  }
  .cid-sGo9YoqfGE .col + .input-group-btn .btn,
  .cid-sGo9YoqfGE .col-auto + .input-group-btn .btn {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    height: 100%;
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    padding-top: 0;
    padding-bottom: 0;
  }
  .cid-sGo9YoqfGE .dragArea > *:nth-last-child(2).col,
  .cid-sGo9YoqfGE .dragArea > *:nth-last-child(2).col-auto,
  .cid-sGo9YoqfGE .col + .input-group-btn,
  .cid-sGo9YoqfGE .col-auto + .input-group-btn {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .cid-sGo9YoqfGE .dragArea > *:nth-last-child(2).col input,
  .cid-sGo9YoqfGE .dragArea > *:nth-last-child(2).col-auto input {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
}
.cid-sGo9YoqfGE .mbr-section-subtitle,
.cid-sGo9YoqfGE .mbr-section-btn {
  color: #7b960c;
}
.cid-sGt6QKnozQ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #05303b;
}
.cid-sGt6QKnozQ .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sGt6QKnozQ .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sGt6QKnozQ .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sGt6QKnozQ .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sGt6QKnozQ .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sGt6QKnozQ .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sGt6QKnozQ .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sGt6QKnozQ .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sGt6QKnozQ .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sGt6QKnozQ .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sGt6QKnozQ .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sGt6QKnozQ .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sGt6QKnozQ .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sGt6QKnozQ .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sGoiIFjYHA {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sGoiIFjYHA nav.navbar {
  position: fixed;
}
.cid-sGoiIFjYHA .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-sGoiIFjYHA .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sGoiIFjYHA .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sGoiIFjYHA .dropdown-item:hover,
.cid-sGoiIFjYHA .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sGoiIFjYHA .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sGoiIFjYHA .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sGoiIFjYHA .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sGoiIFjYHA .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sGoiIFjYHA .nav-link {
  position: relative;
}
.cid-sGoiIFjYHA .container {
  display: flex;
  margin: auto;
}
.cid-sGoiIFjYHA .iconfont-wrapper {
  color: #7b960c !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sGoiIFjYHA .dropdown-menu,
.cid-sGoiIFjYHA .navbar.opened {
  background: #ffffff !important;
}
.cid-sGoiIFjYHA .nav-item:focus,
.cid-sGoiIFjYHA .nav-link:focus {
  outline: none;
}
.cid-sGoiIFjYHA .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sGoiIFjYHA .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sGoiIFjYHA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sGoiIFjYHA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sGoiIFjYHA .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sGoiIFjYHA .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sGoiIFjYHA .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: #ffffff;
}
.cid-sGoiIFjYHA .navbar.opened {
  transition: all 0.3s;
}
.cid-sGoiIFjYHA .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sGoiIFjYHA .navbar .navbar-logo img {
  width: auto;
}
.cid-sGoiIFjYHA .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sGoiIFjYHA .navbar.collapsed {
  justify-content: center;
}
.cid-sGoiIFjYHA .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sGoiIFjYHA .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sGoiIFjYHA .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-sGoiIFjYHA .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sGoiIFjYHA .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sGoiIFjYHA .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-sGoiIFjYHA .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sGoiIFjYHA .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sGoiIFjYHA .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sGoiIFjYHA .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sGoiIFjYHA .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sGoiIFjYHA .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sGoiIFjYHA .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sGoiIFjYHA .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-sGoiIFjYHA .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sGoiIFjYHA .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sGoiIFjYHA .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sGoiIFjYHA .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sGoiIFjYHA .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sGoiIFjYHA .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sGoiIFjYHA .navbar.navbar-short {
  min-height: 60px;
}
.cid-sGoiIFjYHA .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sGoiIFjYHA .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sGoiIFjYHA .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sGoiIFjYHA .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sGoiIFjYHA .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sGoiIFjYHA .dropdown-item.active,
.cid-sGoiIFjYHA .dropdown-item:active {
  background-color: transparent;
}
.cid-sGoiIFjYHA .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sGoiIFjYHA .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sGoiIFjYHA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sGoiIFjYHA .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sGoiIFjYHA .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sGoiIFjYHA .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sGoiIFjYHA ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sGoiIFjYHA .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sGoiIFjYHA button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sGoiIFjYHA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sGoiIFjYHA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sGoiIFjYHA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sGoiIFjYHA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sGoiIFjYHA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sGoiIFjYHA nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sGoiIFjYHA nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sGoiIFjYHA nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sGoiIFjYHA nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sGoiIFjYHA .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sGoiIFjYHA a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sGoiIFjYHA .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-sGoiIFjYHA .navbar {
    height: 70px;
  }
  .cid-sGoiIFjYHA .navbar.opened {
    height: auto;
  }
  .cid-sGoiIFjYHA .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sGoiIGiBpA {
  background-image: url("../../../assets/images/mbr-5-1920x1280.jpg");
}
.cid-sGoiIGiBpA .mbr-section-subtitle {
  color: #ffe161;
}
.cid-sGol2V78vK {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #ebf9fa;
}
.cid-sGol2V78vK .timeline-element {
  position: relative;
}
.cid-sGol2V78vK .timelines-container {
  display: flex;
  flex-wrap: wrap;
}
.cid-sGol2V78vK .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sGol2V78vK .mbr-section-title,
.cid-sGol2V78vK .mbr-section-subtitle,
.cid-sGol2V78vK .timeline-date {
  text-align: center;
}
.cid-sGol2V78vK .iconBackground {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #6592e6;
  margin-left: -9px;
}
@media (max-width: 767px) {
  .cid-sGol2V78vK .iconBackground {
    left: 15px;
    top: 30px;
  }
}
@media (min-width: 768px) {
  .cid-sGol2V78vK .iconBackground {
    top: 70px;
    left: 50%;
  }
}
.cid-sGol2V78vK .row:after {
  content: "";
  position: absolute;
  background-color: #6592e6;
  width: 2px;
}
@media (max-width: 767px) {
  .cid-sGol2V78vK .row:after {
    height: calc(100% + 30px);
    top: 50px;
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-sGol2V78vK .row:after {
    height: calc(100% - 20px);
    top: 90px;
    left: 50%;
  }
}
@media (max-width: 767px) {
  .cid-sGol2V78vK .timeline-date-wrapper,
  .cid-sGol2V78vK .timeline-text-wrapper,
  .cid-sGol2V78vK .image-wrapper {
    padding: 0rem;
    padding-left: 2rem;
  }
  .cid-sGol2V78vK .mbr-timeline-date {
    text-align: center !important;
  }
  .cid-sGol2V78vK .mbr-timeline-title {
    text-align: center;
    margin-top: 1rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-sGol2V78vK .timeline-date-wrapper,
  .cid-sGol2V78vK .timeline-text-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sGol2V78vK .timeline-date-wrapper,
  .cid-sGol2V78vK .timeline-text-wrapper,
  .cid-sGol2V78vK .image-wrapper {
    padding: 2rem;
  }
}
.cid-sGoiIHyFHd {
  overflow: hidden !important;
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-sGoiIHyFHd .mbr-section-subtitle {
  font-weight: 400;
}
.cid-sGoiIHyFHd .mbr-section-title {
  padding-bottom: 2rem;
  color: #857014;
}
.cid-sGoiIHyFHd .img-block {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sGoiIHyFHd .mbr-figure {
  border-radius: .25rem;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-sGoiIHyFHd .mbr-figure {
    margin-bottom: 3rem;
  }
}
.cid-sGoiIHyFHd .form-control {
  width: 100%;
}
@media (max-width: 350px) {
  .cid-sGoiIHyFHd .input-group-btn {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-sGoiIHyFHd .form-control {
    margin-bottom: 10px;
  }
  .cid-sGoiIHyFHd .form-group {
    max-width: 300px;
  }
  .cid-sGoiIHyFHd .mbr-form .row {
    -webkit-flex-direction: column;
    flex-direction: column;
    align-items: center;
  }
}
.cid-sGoiIHyFHd .form-group,
.cid-sGoiIHyFHd .input-group-btn {
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 768px) {
  .cid-sGoiIHyFHd .mbr-form > * {
    margin: 0 0rem;
    align-items: stretch;
  }
  .cid-sGoiIHyFHd .col + .input-group-btn .btn,
  .cid-sGoiIHyFHd .col-auto + .input-group-btn .btn {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    height: 100%;
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    padding-top: 0;
    padding-bottom: 0;
  }
  .cid-sGoiIHyFHd .dragArea > *:nth-last-child(2).col,
  .cid-sGoiIHyFHd .dragArea > *:nth-last-child(2).col-auto,
  .cid-sGoiIHyFHd .col + .input-group-btn,
  .cid-sGoiIHyFHd .col-auto + .input-group-btn {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .cid-sGoiIHyFHd .dragArea > *:nth-last-child(2).col input,
  .cid-sGoiIHyFHd .dragArea > *:nth-last-child(2).col-auto input {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
}
.cid-sGoiIHyFHd .mbr-section-subtitle,
.cid-sGoiIHyFHd .mbr-section-btn {
  color: #7b960c;
}
.cid-sGt6QKnozQ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #05303b;
}
.cid-sGt6QKnozQ .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sGt6QKnozQ .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sGt6QKnozQ .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sGt6QKnozQ .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sGt6QKnozQ .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sGt6QKnozQ .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sGt6QKnozQ .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sGt6QKnozQ .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sGt6QKnozQ .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sGt6QKnozQ .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sGt6QKnozQ .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sGt6QKnozQ .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sGt6QKnozQ .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sGt6QKnozQ .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sHMiJYiE19 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sHMiJYiE19 nav.navbar {
  position: fixed;
}
.cid-sHMiJYiE19 .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-sHMiJYiE19 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sHMiJYiE19 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sHMiJYiE19 .dropdown-item:hover,
.cid-sHMiJYiE19 .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sHMiJYiE19 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sHMiJYiE19 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sHMiJYiE19 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sHMiJYiE19 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sHMiJYiE19 .nav-link {
  position: relative;
}
.cid-sHMiJYiE19 .container {
  display: flex;
  margin: auto;
}
.cid-sHMiJYiE19 .iconfont-wrapper {
  color: #7b960c !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sHMiJYiE19 .dropdown-menu,
.cid-sHMiJYiE19 .navbar.opened {
  background: #ffffff !important;
}
.cid-sHMiJYiE19 .nav-item:focus,
.cid-sHMiJYiE19 .nav-link:focus {
  outline: none;
}
.cid-sHMiJYiE19 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sHMiJYiE19 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sHMiJYiE19 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sHMiJYiE19 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sHMiJYiE19 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sHMiJYiE19 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sHMiJYiE19 .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: #ffffff;
}
.cid-sHMiJYiE19 .navbar.opened {
  transition: all 0.3s;
}
.cid-sHMiJYiE19 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sHMiJYiE19 .navbar .navbar-logo img {
  width: auto;
}
.cid-sHMiJYiE19 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sHMiJYiE19 .navbar.collapsed {
  justify-content: center;
}
.cid-sHMiJYiE19 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sHMiJYiE19 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sHMiJYiE19 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-sHMiJYiE19 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sHMiJYiE19 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sHMiJYiE19 .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-sHMiJYiE19 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sHMiJYiE19 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sHMiJYiE19 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sHMiJYiE19 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sHMiJYiE19 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sHMiJYiE19 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sHMiJYiE19 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sHMiJYiE19 .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-sHMiJYiE19 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sHMiJYiE19 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sHMiJYiE19 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sHMiJYiE19 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sHMiJYiE19 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sHMiJYiE19 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sHMiJYiE19 .navbar.navbar-short {
  min-height: 60px;
}
.cid-sHMiJYiE19 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sHMiJYiE19 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sHMiJYiE19 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sHMiJYiE19 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sHMiJYiE19 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sHMiJYiE19 .dropdown-item.active,
.cid-sHMiJYiE19 .dropdown-item:active {
  background-color: transparent;
}
.cid-sHMiJYiE19 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sHMiJYiE19 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sHMiJYiE19 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sHMiJYiE19 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sHMiJYiE19 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sHMiJYiE19 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sHMiJYiE19 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sHMiJYiE19 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sHMiJYiE19 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sHMiJYiE19 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sHMiJYiE19 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sHMiJYiE19 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHMiJYiE19 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHMiJYiE19 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sHMiJYiE19 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHMiJYiE19 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sHMiJYiE19 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sHMiJYiE19 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHMiJYiE19 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sHMiJYiE19 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sHMiJYiE19 .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-sHMiJYiE19 .navbar {
    height: 70px;
  }
  .cid-sHMiJYiE19 .navbar.opened {
    height: auto;
  }
  .cid-sHMiJYiE19 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sHMiJYXaxs {
  background-image: url("../../../assets/images/mbr-1920x1281.jpg");
}
.cid-sHMiJYXaxs .mbr-section-subtitle {
  color: #ffe161;
}
.cid-sHMiJZsRS9 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sHMiJZsRS9 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sHMiJZsRS9 .row {
  flex-direction: row-reverse;
}
.cid-sHMiJZsRS9 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sHMiJZsRS9 .text-wrapper {
    padding: 2rem;
  }
}
.cid-sHMiJZsRS9 .mbr-section-title {
  color: #619f0d;
}
.cid-sHMiK12nWc {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sHMiK12nWc .timeline-element {
  position: relative;
}
.cid-sHMiK12nWc .timelines-container {
  display: flex;
  flex-wrap: wrap;
}
.cid-sHMiK12nWc .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sHMiK12nWc .mbr-section-title,
.cid-sHMiK12nWc .mbr-section-subtitle,
.cid-sHMiK12nWc .timeline-date {
  text-align: center;
}
.cid-sHMiK12nWc .iconBackground {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #619f0d;
  margin-left: -9px;
}
@media (max-width: 767px) {
  .cid-sHMiK12nWc .iconBackground {
    left: 15px;
    top: 30px;
  }
}
@media (min-width: 768px) {
  .cid-sHMiK12nWc .iconBackground {
    top: 70px;
    left: 50%;
  }
}
.cid-sHMiK12nWc .row:after {
  content: "";
  position: absolute;
  background-color: #619f0d;
  width: 2px;
}
@media (max-width: 767px) {
  .cid-sHMiK12nWc .row:after {
    height: calc(100% + 30px);
    top: 50px;
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-sHMiK12nWc .row:after {
    height: calc(100% + 28px);
    top: 90px;
    left: 50%;
  }
}
@media (max-width: 767px) {
  .cid-sHMiK12nWc .timeline-date-wrapper,
  .cid-sHMiK12nWc .timeline-text-wrapper,
  .cid-sHMiK12nWc .image-wrapper {
    padding: 0rem;
    padding-left: 2rem;
  }
  .cid-sHMiK12nWc .mbr-timeline-date {
    text-align: center !important;
  }
  .cid-sHMiK12nWc .mbr-timeline-title {
    text-align: center;
    margin-top: 1rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-sHMiK12nWc .timeline-date-wrapper,
  .cid-sHMiK12nWc .timeline-text-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sHMiK12nWc .timeline-date-wrapper,
  .cid-sHMiK12nWc .timeline-text-wrapper,
  .cid-sHMiK12nWc .image-wrapper {
    padding: 2rem;
  }
}
.cid-sHMiK12nWc .mbr-section-title {
  color: #7b960c;
}
.cid-sHMiK12nWc .mbr-timeline-title {
  color: #619f0d;
}
.cid-sHMnt9El3g {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sHMnt9El3g .card-wrapper {
  background: #426907;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-sHMnt9El3g .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sHMnt9El3g .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sHMnt9El3g .card-wrapper {
    padding: 4rem;
  }
}
.cid-sHMnt9El3g .mbr-text,
.cid-sHMnt9El3g .mbr-section-btn {
  color: #ffffff;
}
.cid-sHMnt9El3g .card-title,
.cid-sHMnt9El3g .card-box {
  text-align: left;
  color: #ffe161;
}
.cid-sHMvSUWdZv {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sHMvSUWdZv .mbr-section-subtitle {
  color: #e6c63b;
}
.cid-sHMvSUWdZv .mbr-section-title {
  color: #619f0d;
}
.cid-sHMsKhDbjf {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #bef677;
}
@media (min-width: 768px) {
  .cid-sHMsKhDbjf .no-gutters {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .cid-sHMsKhDbjf .no-gutters > [class*="col"] {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
.cid-sHMsKhDbjf .border_line {
  border-top: 1px dotted rgba(0, 0, 0, 0.5);
}
.cid-sHMsKhDbjf .card_wrap {
  padding: 5rem;
}
@media (max-width: 1199px) {
  .cid-sHMsKhDbjf .card_wrap {
    padding: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sHMsKhDbjf .card_wrap {
    padding: 3rem;
  }
}
.cid-sHMsKhDbjf .column .card_wrap {
  border-bottom: 1px dotted rgba(0, 0, 0, 0.5);
}
.cid-sHMsKhDbjf .border_right {
  border-right: 1px dotted rgba(0, 0, 0, 0.5);
}
.cid-sHMsKhDbjf .header_box {
  margin-bottom: 2rem;
  display: inline-flex;
  align-items: center;
}
.cid-sHMsKhDbjf .header_wrap {
  width: 100%;
}
.cid-sHMsKhDbjf .number_wrap {
  background-color: #619f0d;
  width: 4rem;
  height: 5rem;
  transform: rotateY(35deg) rotateX(-35deg);
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: .5rem;
}
.cid-sHMsKhDbjf .card_number {
  color: #eae8e4;
}
@media (max-width: 767px) {
  .cid-sHMsKhDbjf .card_wrap {
    padding: 2.5rem .75rem;
  }
  .cid-sHMsKhDbjf .header_box {
    margin-bottom: 1.5rem;
  }
  .cid-sHMsKhDbjf .border_right {
    border-right: none;
  }
  .cid-sHMsKhDbjf .number_wrap {
    width: 2.5rem;
    height: 3.5rem;
  }
}
.cid-sHMsKhDbjf .card_title,
.cid-sHMsKhDbjf .header_wrap {
  color: #619f0d;
}
.cid-sHMiK27IZc {
  overflow: hidden !important;
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-sHMiK27IZc .mbr-section-subtitle {
  font-weight: 400;
}
.cid-sHMiK27IZc .mbr-section-title {
  padding-bottom: 2rem;
  color: #857014;
}
.cid-sHMiK27IZc .img-block {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sHMiK27IZc .mbr-figure {
  border-radius: .25rem;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-sHMiK27IZc .mbr-figure {
    margin-bottom: 3rem;
  }
}
.cid-sHMiK27IZc .form-control {
  width: 100%;
}
@media (max-width: 350px) {
  .cid-sHMiK27IZc .input-group-btn {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-sHMiK27IZc .form-control {
    margin-bottom: 10px;
  }
  .cid-sHMiK27IZc .form-group {
    max-width: 300px;
  }
  .cid-sHMiK27IZc .mbr-form .row {
    -webkit-flex-direction: column;
    flex-direction: column;
    align-items: center;
  }
}
.cid-sHMiK27IZc .form-group,
.cid-sHMiK27IZc .input-group-btn {
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 768px) {
  .cid-sHMiK27IZc .mbr-form > * {
    margin: 0 0rem;
    align-items: stretch;
  }
  .cid-sHMiK27IZc .col + .input-group-btn .btn,
  .cid-sHMiK27IZc .col-auto + .input-group-btn .btn {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    height: 100%;
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    padding-top: 0;
    padding-bottom: 0;
  }
  .cid-sHMiK27IZc .dragArea > *:nth-last-child(2).col,
  .cid-sHMiK27IZc .dragArea > *:nth-last-child(2).col-auto,
  .cid-sHMiK27IZc .col + .input-group-btn,
  .cid-sHMiK27IZc .col-auto + .input-group-btn {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .cid-sHMiK27IZc .dragArea > *:nth-last-child(2).col input,
  .cid-sHMiK27IZc .dragArea > *:nth-last-child(2).col-auto input {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
}
.cid-sHMiK27IZc .mbr-section-subtitle,
.cid-sHMiK27IZc .mbr-section-btn {
  color: #7b960c;
}
.cid-sHMiK2C1gw {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #05303b;
}
.cid-sHMiK2C1gw .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sHMiK2C1gw .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sHMiK2C1gw .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sHMiK2C1gw .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sHMiK2C1gw .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sHMiK2C1gw .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sHMiK2C1gw .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sHMiK2C1gw .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sHMiK2C1gw .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sHMiK2C1gw .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sHMiK2C1gw .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sHMiK2C1gw .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sHMiK2C1gw .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sHMiK2C1gw .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tyC3bb83tl {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tyC3bb83tl nav.navbar {
  position: fixed;
}
.cid-tyC3bb83tl .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-tyC3bb83tl .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tyC3bb83tl .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tyC3bb83tl .dropdown-item:hover,
.cid-tyC3bb83tl .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tyC3bb83tl .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tyC3bb83tl .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tyC3bb83tl .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tyC3bb83tl .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tyC3bb83tl .nav-link {
  position: relative;
}
.cid-tyC3bb83tl .container {
  display: flex;
  margin: auto;
}
.cid-tyC3bb83tl .iconfont-wrapper {
  color: #7b960c !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tyC3bb83tl .dropdown-menu,
.cid-tyC3bb83tl .navbar.opened {
  background: #ffffff !important;
}
.cid-tyC3bb83tl .nav-item:focus,
.cid-tyC3bb83tl .nav-link:focus {
  outline: none;
}
.cid-tyC3bb83tl .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tyC3bb83tl .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tyC3bb83tl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tyC3bb83tl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tyC3bb83tl .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tyC3bb83tl .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tyC3bb83tl .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: #ffffff;
}
.cid-tyC3bb83tl .navbar.opened {
  transition: all 0.3s;
}
.cid-tyC3bb83tl .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tyC3bb83tl .navbar .navbar-logo img {
  width: auto;
}
.cid-tyC3bb83tl .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tyC3bb83tl .navbar.collapsed {
  justify-content: center;
}
.cid-tyC3bb83tl .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tyC3bb83tl .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tyC3bb83tl .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-tyC3bb83tl .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tyC3bb83tl .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tyC3bb83tl .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-tyC3bb83tl .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tyC3bb83tl .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tyC3bb83tl .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tyC3bb83tl .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tyC3bb83tl .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tyC3bb83tl .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tyC3bb83tl .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tyC3bb83tl .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-tyC3bb83tl .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tyC3bb83tl .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tyC3bb83tl .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tyC3bb83tl .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tyC3bb83tl .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tyC3bb83tl .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tyC3bb83tl .navbar.navbar-short {
  min-height: 60px;
}
.cid-tyC3bb83tl .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tyC3bb83tl .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tyC3bb83tl .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tyC3bb83tl .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tyC3bb83tl .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tyC3bb83tl .dropdown-item.active,
.cid-tyC3bb83tl .dropdown-item:active {
  background-color: transparent;
}
.cid-tyC3bb83tl .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tyC3bb83tl .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tyC3bb83tl .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tyC3bb83tl .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tyC3bb83tl .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tyC3bb83tl .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tyC3bb83tl ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tyC3bb83tl .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tyC3bb83tl button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tyC3bb83tl button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tyC3bb83tl button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tyC3bb83tl button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tyC3bb83tl button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tyC3bb83tl button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tyC3bb83tl nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tyC3bb83tl nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tyC3bb83tl nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tyC3bb83tl nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tyC3bb83tl .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tyC3bb83tl a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tyC3bb83tl .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-tyC3bb83tl .navbar {
    height: 70px;
  }
  .cid-tyC3bb83tl .navbar.opened {
    height: auto;
  }
  .cid-tyC3bb83tl .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tyC3bbz8qh {
  background-image: url("../../../assets/images/mbr-1920x1756.jpeg");
}
.cid-tyC3bbz8qh .mbr-section-subtitle {
  color: #ffe161;
}
.cid-tyC3bbQY30 {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tyC3bbQY30 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tyC3bbQY30 .row {
  flex-direction: row-reverse;
}
.cid-tyC3bbQY30 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tyC3bbQY30 .text-wrapper {
    padding: 2rem;
  }
}
.cid-tyC3bbQY30 .mbr-section-title {
  color: #485806;
}
.cid-tyC3bc6qk0 {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tyC3bc6qk0 .mbr-section-title {
  color: #7b960c;
}
.cid-tyCozp3Blf {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tyC3bdLsGf {
  overflow: hidden !important;
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tyC3bdLsGf .mbr-section-subtitle {
  font-weight: 400;
}
.cid-tyC3bdLsGf .mbr-section-title {
  padding-bottom: 2rem;
  color: #857014;
}
.cid-tyC3bdLsGf .img-block {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tyC3bdLsGf .mbr-figure {
  border-radius: .25rem;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-tyC3bdLsGf .mbr-figure {
    margin-bottom: 3rem;
  }
}
.cid-tyC3bdLsGf .form-control {
  width: 100%;
}
@media (max-width: 350px) {
  .cid-tyC3bdLsGf .input-group-btn {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-tyC3bdLsGf .form-control {
    margin-bottom: 10px;
  }
  .cid-tyC3bdLsGf .form-group {
    max-width: 300px;
  }
  .cid-tyC3bdLsGf .mbr-form .row {
    -webkit-flex-direction: column;
    flex-direction: column;
    align-items: center;
  }
}
.cid-tyC3bdLsGf .form-group,
.cid-tyC3bdLsGf .input-group-btn {
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 768px) {
  .cid-tyC3bdLsGf .mbr-form > * {
    margin: 0 0rem;
    align-items: stretch;
  }
  .cid-tyC3bdLsGf .col + .input-group-btn .btn,
  .cid-tyC3bdLsGf .col-auto + .input-group-btn .btn {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    height: 100%;
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    padding-top: 0;
    padding-bottom: 0;
  }
  .cid-tyC3bdLsGf .dragArea > *:nth-last-child(2).col,
  .cid-tyC3bdLsGf .dragArea > *:nth-last-child(2).col-auto,
  .cid-tyC3bdLsGf .col + .input-group-btn,
  .cid-tyC3bdLsGf .col-auto + .input-group-btn {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .cid-tyC3bdLsGf .dragArea > *:nth-last-child(2).col input,
  .cid-tyC3bdLsGf .dragArea > *:nth-last-child(2).col-auto input {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
}
.cid-tyC3bdLsGf .mbr-section-subtitle,
.cid-tyC3bdLsGf .mbr-section-btn {
  color: #7b960c;
}
.cid-tyC3be9EUj {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #05303b;
}
.cid-tyC3be9EUj .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tyC3be9EUj .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tyC3be9EUj .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tyC3be9EUj .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tyC3be9EUj .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tyC3be9EUj .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tyC3be9EUj .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tyC3be9EUj .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tyC3be9EUj .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tyC3be9EUj .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tyC3be9EUj .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tyC3be9EUj .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tyC3be9EUj .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tyC3be9EUj .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tyCoyH7MhW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sIltAmgLla {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sIltAmgLla nav.navbar {
  position: fixed;
}
.cid-sIltAmgLla .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-sIltAmgLla .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sIltAmgLla .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sIltAmgLla .dropdown-item:hover,
.cid-sIltAmgLla .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sIltAmgLla .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sIltAmgLla .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sIltAmgLla .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sIltAmgLla .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sIltAmgLla .nav-link {
  position: relative;
}
.cid-sIltAmgLla .container {
  display: flex;
  margin: auto;
}
.cid-sIltAmgLla .iconfont-wrapper {
  color: #7b960c !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sIltAmgLla .dropdown-menu,
.cid-sIltAmgLla .navbar.opened {
  background: #ffffff !important;
}
.cid-sIltAmgLla .nav-item:focus,
.cid-sIltAmgLla .nav-link:focus {
  outline: none;
}
.cid-sIltAmgLla .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sIltAmgLla .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sIltAmgLla .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sIltAmgLla .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sIltAmgLla .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sIltAmgLla .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sIltAmgLla .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: #ffffff;
}
.cid-sIltAmgLla .navbar.opened {
  transition: all 0.3s;
}
.cid-sIltAmgLla .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sIltAmgLla .navbar .navbar-logo img {
  width: auto;
}
.cid-sIltAmgLla .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sIltAmgLla .navbar.collapsed {
  justify-content: center;
}
.cid-sIltAmgLla .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sIltAmgLla .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sIltAmgLla .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-sIltAmgLla .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sIltAmgLla .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sIltAmgLla .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-sIltAmgLla .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sIltAmgLla .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sIltAmgLla .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sIltAmgLla .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sIltAmgLla .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sIltAmgLla .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sIltAmgLla .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sIltAmgLla .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-sIltAmgLla .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sIltAmgLla .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sIltAmgLla .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sIltAmgLla .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sIltAmgLla .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sIltAmgLla .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sIltAmgLla .navbar.navbar-short {
  min-height: 60px;
}
.cid-sIltAmgLla .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sIltAmgLla .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sIltAmgLla .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sIltAmgLla .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sIltAmgLla .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sIltAmgLla .dropdown-item.active,
.cid-sIltAmgLla .dropdown-item:active {
  background-color: transparent;
}
.cid-sIltAmgLla .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sIltAmgLla .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sIltAmgLla .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sIltAmgLla .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sIltAmgLla .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sIltAmgLla .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sIltAmgLla ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sIltAmgLla .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sIltAmgLla button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sIltAmgLla button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sIltAmgLla button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sIltAmgLla button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sIltAmgLla button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sIltAmgLla button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sIltAmgLla nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sIltAmgLla nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sIltAmgLla nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sIltAmgLla nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sIltAmgLla .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sIltAmgLla a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sIltAmgLla .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-sIltAmgLla .navbar {
    height: 70px;
  }
  .cid-sIltAmgLla .navbar.opened {
    height: auto;
  }
  .cid-sIltAmgLla .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sIltAmT6j8 {
  background-image: url("../../../assets/images/mbr-6-1920x1280.jpg");
}
.cid-sIltAmT6j8 .mbr-section-subtitle {
  color: #ffe161;
}
.cid-sIltAniSBe {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sIltAniSBe .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sIltAniSBe .row {
  flex-direction: row-reverse;
}
.cid-sIltAniSBe img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sIltAniSBe .text-wrapper {
    padding: 2rem;
  }
}
.cid-sIltAniSBe .mbr-section-title {
  color: #4a6eaf;
}
.cid-sIlDLkhcCJ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sIlDLkhcCJ .card-wrapper {
  background: #05303b;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-sIlDLkhcCJ .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sIlDLkhcCJ .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sIlDLkhcCJ .card-wrapper {
    padding: 4rem;
  }
}
.cid-sIlDLkhcCJ .mbr-text,
.cid-sIlDLkhcCJ .mbr-section-btn {
  color: #ffffff;
}
.cid-sIlDLkhcCJ .card-title,
.cid-sIlDLkhcCJ .card-box {
  text-align: left;
  color: #6ec7f2;
}
.cid-sIlwP1gluu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/motion1.jpg");
}
.cid-sIlwP1gluu .mbr-section-title {
  margin-bottom: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sIlwP1gluu .mbr-section-title {
    margin-bottom: 1.25rem;
  }
}
.cid-sIlwP1gluu .date_wrap {
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .cid-sIlwP1gluu .date_wrap {
    margin-bottom: 1.25rem;
  }
}
.cid-sIlwP1gluu .circle_animation {
  display: inline-flex;
  position: relative;
  margin-bottom: .5rem;
}
.cid-sIlwP1gluu .circle_animation .circle {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
}
.cid-sIlwP1gluu .circle_animation .circle_fill {
  -webkit-animation: circleFill 2.25s infinite;
  animation: circleFill 2.25s infinite;
  background-color: #6592e6;
}
.cid-sIlwP1gluu .circle_animation .circle_null {
  margin-left: -0.5rem;
  border: 1px solid #6592e6;
  -webkit-animation: circleNull 2.25s infinite;
  animation: circleNull 2.25s infinite;
}
.cid-sIlwP1gluu .date {
  margin-bottom: 0.25rem;
}
@keyframes circleFill {
  0%,
  100% {
    transform: translateX(75%);
    animationTimingFunction: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    transform: translateX(0);
    animationTimingFunction: cubic-bezier(0, 0, 0.2, 1);
  }
}
@keyframes circleNull {
  0%,
  100% {
    transform: translateX(-50%);
    animationTimingFunction: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    transform: translateX(0);
    animationTimingFunction: cubic-bezier(0, 0, 0.2, 1);
  }
}
.cid-uqCW9pU8iH {
  padding-top: 7rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #bed2f5;
}
.cid-uqCW9pU8iH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqCW9pU8iH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqCW9pU8iH .container-fluid {
  margin: 0;
  padding: 0 72px;
}
@media (max-width: 992px) {
  .cid-uqCW9pU8iH .container-fluid {
    padding: 0 20px;
  }
}
.cid-uqCW9pU8iH .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uqCW9pU8iH .container {
    padding: 0 20px;
  }
  .cid-uqCW9pU8iH .container .row {
    padding: 0;
  }
}
.cid-uqCW9pU8iH .title-wrapper {
  position: relative;
}
@media (max-width: 992px) {
  .cid-uqCW9pU8iH .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uqCW9pU8iH .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-uqCW9pU8iH .title-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-uqCW9pU8iH .title-wrapper .mbr-section-btn .btn .mbr-iconfont {
  color: #c6a38f;
}
.cid-uqCW9pU8iH .video-block .video-wrapper .app-video-wrapper img {
  height: 500px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-uqCW9pU8iH .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-uqCW9pU8iH .video-block .video-wrapper .app-video-wrapper:before {
  color: #222222;
  text-shadow: none;
}
.cid-uqCW9pU8iH .mbr-section-title {
  color: #222222;
}
.cid-uqCW9pU8iH .mbr-text {
  color: #222222;
}
.cid-uqCW9pU8iH .mbr-section-title,
.cid-uqCW9pU8iH .mbr-section-btn {
  color: #0c2c68;
}
.cid-uqDcwi3Sd1 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uqDcwi3Sd1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqDcwi3Sd1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqDcwi3Sd1 .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uqDcwi3Sd1 .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uqDcwi3Sd1 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uqDd73EKIT {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uqDd73EKIT .item-wrapper {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uqDd73EKIT .smallImage {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .cid-uqDd73EKIT .largeImage {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .cid-uqDd73EKIT .largeImage .item {
    margin-bottom: 2rem;
  }
  .cid-uqDd73EKIT .item-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .cid-uqDd73EKIT .largeImage .item {
    margin-bottom: 1rem;
  }
}
.cid-uqDd73EKIT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqDd73EKIT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqDd73EKIT .mbr-description {
  text-align: left;
}
.cid-uqDd73EKIT .card-title,
.cid-uqDd73EKIT .iconfont-wrapper {
  color: #000000;
}
.cid-uqDd73EKIT .card-text {
  color: #000000;
}
.cid-uqDd73EKIT .mbr-section-title {
  color: #0c2c68;
  text-align: center;
}
.cid-uqDd73EKIT .mbr-number {
  color: #9fe870;
}
.cid-uqDd73EKIT .mbr-text,
.cid-uqDd73EKIT .mbr-section-btn {
  text-align: center;
}
.cid-uqDd73EKIT .card-text,
.cid-uqDd73EKIT .item .mbr-section-btn {
  text-align: left;
}
.cid-uqDd73EKIT .smallImage {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uqDd73EKIT .smallImage {
    height: 100%;
    object-fit: cover;
  }
}
.cid-uqDd73EKIT .largeImage {
  width: 100%;
  height: 632px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uqDd73EKIT .largeImage {
    height: 100%;
    object-fit: cover;
  }
}
.cid-uqDd73EKIT .row {
  flex-direction: row-reverse;
}
.cid-sIltAqCEEn {
  overflow: hidden !important;
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-sIltAqCEEn .mbr-section-subtitle {
  font-weight: 400;
}
.cid-sIltAqCEEn .mbr-section-title {
  padding-bottom: 2rem;
  color: #857014;
}
.cid-sIltAqCEEn .img-block {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sIltAqCEEn .mbr-figure {
  border-radius: .25rem;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-sIltAqCEEn .mbr-figure {
    margin-bottom: 3rem;
  }
}
.cid-sIltAqCEEn .form-control {
  width: 100%;
}
@media (max-width: 350px) {
  .cid-sIltAqCEEn .input-group-btn {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-sIltAqCEEn .form-control {
    margin-bottom: 10px;
  }
  .cid-sIltAqCEEn .form-group {
    max-width: 300px;
  }
  .cid-sIltAqCEEn .mbr-form .row {
    -webkit-flex-direction: column;
    flex-direction: column;
    align-items: center;
  }
}
.cid-sIltAqCEEn .form-group,
.cid-sIltAqCEEn .input-group-btn {
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 768px) {
  .cid-sIltAqCEEn .mbr-form > * {
    margin: 0 0rem;
    align-items: stretch;
  }
  .cid-sIltAqCEEn .col + .input-group-btn .btn,
  .cid-sIltAqCEEn .col-auto + .input-group-btn .btn {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    height: 100%;
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    padding-top: 0;
    padding-bottom: 0;
  }
  .cid-sIltAqCEEn .dragArea > *:nth-last-child(2).col,
  .cid-sIltAqCEEn .dragArea > *:nth-last-child(2).col-auto,
  .cid-sIltAqCEEn .col + .input-group-btn,
  .cid-sIltAqCEEn .col-auto + .input-group-btn {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .cid-sIltAqCEEn .dragArea > *:nth-last-child(2).col input,
  .cid-sIltAqCEEn .dragArea > *:nth-last-child(2).col-auto input {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
}
.cid-sIltAqCEEn .mbr-section-subtitle,
.cid-sIltAqCEEn .mbr-section-btn {
  color: #7b960c;
}
.cid-sIltArjowC {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #05303b;
}
.cid-sIltArjowC .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sIltArjowC .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sIltArjowC .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sIltArjowC .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sIltArjowC .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sIltArjowC .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sIltArjowC .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sIltArjowC .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sIltArjowC .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sIltArjowC .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sIltArjowC .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sIltArjowC .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sIltArjowC .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sIltArjowC .media-container-row .row-copirayt p {
  width: 100%;
}
