body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.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: 'Jost', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #6592e6 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !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: #47b5ed !important;
  border-color: #47b5ed !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: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #6592e6;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #2260d2 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #6592e6 !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !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: #1283bc !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: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #6592e6;
  border-color: #6592e6;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #6592e6;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.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 */
.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-syl09kOR7M {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-syl09kOR7M nav.navbar {
  position: fixed;
}
.cid-syl09kOR7M .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-syl09kOR7M .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-syl09kOR7M .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-syl09kOR7M .dropdown-item:hover,
.cid-syl09kOR7M .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-syl09kOR7M .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-syl09kOR7M .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-syl09kOR7M .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-syl09kOR7M .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-syl09kOR7M .nav-link {
  position: relative;
}
.cid-syl09kOR7M .container {
  display: flex;
  margin: auto;
}
.cid-syl09kOR7M .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-syl09kOR7M .dropdown-menu,
.cid-syl09kOR7M .navbar.opened {
  background: #ffffff !important;
}
.cid-syl09kOR7M .nav-item:focus,
.cid-syl09kOR7M .nav-link:focus {
  outline: none;
}
.cid-syl09kOR7M .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-syl09kOR7M .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-syl09kOR7M .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-syl09kOR7M .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-syl09kOR7M .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-syl09kOR7M .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-syl09kOR7M .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-syl09kOR7M .navbar.opened {
  transition: all 0.3s;
}
.cid-syl09kOR7M .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-syl09kOR7M .navbar .navbar-logo img {
  width: auto;
}
.cid-syl09kOR7M .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-syl09kOR7M .navbar.collapsed {
  justify-content: center;
}
.cid-syl09kOR7M .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-syl09kOR7M .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-syl09kOR7M .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-syl09kOR7M .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-syl09kOR7M .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-syl09kOR7M .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-syl09kOR7M .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-syl09kOR7M .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-syl09kOR7M .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-syl09kOR7M .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-syl09kOR7M .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-syl09kOR7M .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-syl09kOR7M .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-syl09kOR7M .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-syl09kOR7M .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-syl09kOR7M .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-syl09kOR7M .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-syl09kOR7M .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-syl09kOR7M .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-syl09kOR7M .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-syl09kOR7M .navbar.navbar-short {
  min-height: 60px;
}
.cid-syl09kOR7M .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-syl09kOR7M .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-syl09kOR7M .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-syl09kOR7M .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-syl09kOR7M .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-syl09kOR7M .dropdown-item.active,
.cid-syl09kOR7M .dropdown-item:active {
  background-color: transparent;
}
.cid-syl09kOR7M .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-syl09kOR7M .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-syl09kOR7M .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-syl09kOR7M .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-syl09kOR7M .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-syl09kOR7M .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-syl09kOR7M ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-syl09kOR7M .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-syl09kOR7M button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-syl09kOR7M button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-syl09kOR7M button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-syl09kOR7M button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-syl09kOR7M button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-syl09kOR7M button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-syl09kOR7M nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-syl09kOR7M nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-syl09kOR7M nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-syl09kOR7M nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-syl09kOR7M .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-syl09kOR7M a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-syl09kOR7M .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-syl09kOR7M .navbar {
    height: 70px;
  }
  .cid-syl09kOR7M .navbar.opened {
    height: auto;
  }
  .cid-syl09kOR7M .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-syl0bqowQ0 {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-image: url("../../../assets/images/mbr-1-1920x1280.jpg");
}
.cid-syl0bqowQ0 .mbr-section-title {
  color: #ffe885;
}
.cid-syl0bqowQ0 .mbr-text,
.cid-syl0bqowQ0 .mbr-section-btn {
  color: #fafafa;
}
.cid-syl0bqowQ0 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u0FwkTLJFj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #98dee8;
}
.cid-u0FwkTLJFj .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-u0FwkTLJFj .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-u0FwkTLJFj .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-u0FwkTLJFj .mbr-section-title DIV {
  text-align: center;
}
.cid-u0FwkTLJFj .mbr-section-title {
  text-align: center;
}
.cid-u0FwkTLJFj .mbr-text,
.cid-u0FwkTLJFj .mbr-section-btn {
  text-align: left;
}
.cid-udmaMfz0tK {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #4479d9;
}
.cid-udmaMfz0tK .mbr-fallback-image.disabled {
  display: none;
}
.cid-udmaMfz0tK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-udmaMfz0tK .mbr-text,
.cid-udmaMfz0tK .mbr-section-btn {
  color: #232323;
}
.cid-udmaMfz0tK .card-title,
.cid-udmaMfz0tK .card-box {
  color: #ffffff;
}
.cid-udmaMfz0tK .mbr-text,
.cid-udmaMfz0tK .link-wrap {
  color: #ffffff;
}
.cid-udmaMfz0tK .card-box .mbr-text,
.cid-udmaMfz0tK .mbr-section-btn {
  text-align: left;
}
.cid-sTqQap1kPw {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #9fdbf8;
}
@media (max-width: 991px) {
  .cid-sTqQap1kPw .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sTqQap1kPw .row {
  flex-direction: row-reverse;
}
.cid-sTqQap1kPw img {
  width: 100%;
}
.cid-sTqQap1kPw .mbr-description {
  color: #e43f3f;
}
.cid-u0Ftt2obtg {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background: #bbbbbb;
}
@media (max-width: 767px) {
  .cid-u0Ftt2obtg .row {
    flex-direction: column-reverse;
  }
  .cid-u0Ftt2obtg .row .map-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-u0Ftt2obtg .google-map {
  height: 100%;
  position: relative;
}
.cid-u0Ftt2obtg .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-u0Ftt2obtg .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-u0Ftt2obtg .google-map[data-state] {
  background: #e9e5dc;
}
.cid-u0Ftt2obtg .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-u0Ftt2obtg .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-u0Ftt2obtg .card-wrapper {
  display: flex;
  border-radius: 4px;
  background: #fafafa;
}
.cid-u0Ftt2obtg .card-wrapper:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .cid-u0Ftt2obtg .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u0Ftt2obtg .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-u0Ftt2obtg .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #6592e6;
}
.cid-u0UaAz47p6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bbbbbb;
}
.cid-u0UaAz47p6 .mbr-section-subtitle {
  color: #f1ecec;
}
.cid-sz0fGdweOb {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sz0fGdweOb nav.navbar {
  position: fixed;
}
.cid-sz0fGdweOb .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-sz0fGdweOb .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sz0fGdweOb .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sz0fGdweOb .dropdown-item:hover,
.cid-sz0fGdweOb .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sz0fGdweOb .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sz0fGdweOb .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sz0fGdweOb .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sz0fGdweOb .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sz0fGdweOb .nav-link {
  position: relative;
}
.cid-sz0fGdweOb .container {
  display: flex;
  margin: auto;
}
.cid-sz0fGdweOb .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sz0fGdweOb .dropdown-menu,
.cid-sz0fGdweOb .navbar.opened {
  background: #ffffff !important;
}
.cid-sz0fGdweOb .nav-item:focus,
.cid-sz0fGdweOb .nav-link:focus {
  outline: none;
}
.cid-sz0fGdweOb .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sz0fGdweOb .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sz0fGdweOb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sz0fGdweOb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sz0fGdweOb .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sz0fGdweOb .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sz0fGdweOb .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-sz0fGdweOb .navbar.opened {
  transition: all 0.3s;
}
.cid-sz0fGdweOb .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sz0fGdweOb .navbar .navbar-logo img {
  width: auto;
}
.cid-sz0fGdweOb .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sz0fGdweOb .navbar.collapsed {
  justify-content: center;
}
.cid-sz0fGdweOb .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sz0fGdweOb .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sz0fGdweOb .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sz0fGdweOb .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sz0fGdweOb .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sz0fGdweOb .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-sz0fGdweOb .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sz0fGdweOb .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sz0fGdweOb .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sz0fGdweOb .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sz0fGdweOb .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sz0fGdweOb .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sz0fGdweOb .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sz0fGdweOb .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-sz0fGdweOb .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sz0fGdweOb .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sz0fGdweOb .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sz0fGdweOb .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sz0fGdweOb .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sz0fGdweOb .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sz0fGdweOb .navbar.navbar-short {
  min-height: 60px;
}
.cid-sz0fGdweOb .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sz0fGdweOb .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sz0fGdweOb .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-sz0fGdweOb .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sz0fGdweOb .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sz0fGdweOb .dropdown-item.active,
.cid-sz0fGdweOb .dropdown-item:active {
  background-color: transparent;
}
.cid-sz0fGdweOb .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sz0fGdweOb .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sz0fGdweOb .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sz0fGdweOb .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sz0fGdweOb .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sz0fGdweOb .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sz0fGdweOb ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sz0fGdweOb .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sz0fGdweOb button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sz0fGdweOb button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sz0fGdweOb button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sz0fGdweOb button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sz0fGdweOb button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sz0fGdweOb button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sz0fGdweOb nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sz0fGdweOb nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sz0fGdweOb nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sz0fGdweOb nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sz0fGdweOb .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sz0fGdweOb a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sz0fGdweOb .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-sz0fGdweOb .navbar {
    height: 70px;
  }
  .cid-sz0fGdweOb .navbar.opened {
    height: auto;
  }
  .cid-sz0fGdweOb .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sz0fGeMwNg {
  background-image: url("../../../assets/images/background13.jpg");
}
.cid-sz0fGhc8HF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sz0fGhc8HF .row {
  flex-direction: row-reverse;
}
.cid-sz0fGhc8HF .video-wrapper iframe {
  width: 100%;
}
.cid-sz0fGhc8HF .mbr-section-title,
.cid-sz0fGhc8HF .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sz0fGhc8HF .text-wrapper {
    padding: 2rem;
  }
}
.cid-sz0fGicQNj {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sz0fGicQNj .video-wrapper iframe {
  width: 100%;
}
.cid-sz0fGicQNj .mbr-section-title,
.cid-sz0fGicQNj .mbr-section-subtitle,
.cid-sz0fGicQNj .mbr-text {
  text-align: center;
}
.cid-sz0fGjnmqF {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sz0fGjnmqF .video-wrapper iframe {
  width: 100%;
}
.cid-sz0fGjnmqF .mbr-section-title,
.cid-sz0fGjnmqF .mbr-section-subtitle,
.cid-sz0fGjnmqF .mbr-text {
  text-align: center;
}
.cid-sz0fGkJ7gZ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sz0fGkJ7gZ .video-wrapper iframe {
  width: 100%;
}
.cid-sz0fGkJ7gZ .mbr-section-title,
.cid-sz0fGkJ7gZ .mbr-section-subtitle,
.cid-sz0fGkJ7gZ .mbr-text {
  text-align: center;
}
.cid-sz0fGlWuaW {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sz0fGlWuaW .video-wrapper iframe {
  width: 100%;
}
.cid-sz0fGlWuaW .mbr-section-title,
.cid-sz0fGlWuaW .mbr-section-subtitle,
.cid-sz0fGlWuaW .mbr-text {
  text-align: center;
}
.cid-sz0fGn0yAd {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sz0fGn0yAd .video-wrapper iframe {
  width: 100%;
}
.cid-sz0fGn0yAd .mbr-section-title,
.cid-sz0fGn0yAd .mbr-section-subtitle,
.cid-sz0fGn0yAd .mbr-text {
  text-align: center;
}
.cid-sz0fGo2f8i {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sz0fGo2f8i .video-wrapper iframe {
  width: 100%;
}
.cid-sz0fGo2f8i .mbr-section-title,
.cid-sz0fGo2f8i .mbr-section-subtitle,
.cid-sz0fGo2f8i .mbr-text {
  text-align: center;
}
.cid-sz0fGqp2ke {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sz0fGqp2ke .video-wrapper iframe {
  width: 100%;
}
.cid-sz0fGqp2ke .mbr-section-title,
.cid-sz0fGqp2ke .mbr-section-subtitle,
.cid-sz0fGqp2ke .mbr-text {
  text-align: center;
}
.cid-sz0fGs5cai {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sz0fGs5cai .video-wrapper iframe {
  width: 100%;
}
.cid-sz0fGs5cai .mbr-section-title,
.cid-sz0fGs5cai .mbr-section-subtitle,
.cid-sz0fGs5cai .mbr-text {
  text-align: center;
}
.cid-sz0fGthBFz {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sz0fGthBFz .video-wrapper iframe {
  width: 100%;
}
.cid-sz0fGthBFz .mbr-section-title,
.cid-sz0fGthBFz .mbr-section-subtitle,
.cid-sz0fGthBFz .mbr-text {
  text-align: center;
}
.cid-sz0fGueQ2c {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sz0fGueQ2c .video-wrapper iframe {
  width: 100%;
}
.cid-sz0fGueQ2c .mbr-section-title,
.cid-sz0fGueQ2c .mbr-section-subtitle,
.cid-sz0fGueQ2c .mbr-text {
  text-align: center;
}
.cid-sz0fGvvX49 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sz0fGvvX49 .video-wrapper iframe {
  width: 100%;
}
.cid-sz0fGvvX49 .mbr-section-title,
.cid-sz0fGvvX49 .mbr-section-subtitle,
.cid-sz0fGvvX49 .mbr-text {
  text-align: center;
}
.cid-sz0fGwBhRS {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sz0fGwBhRS .video-wrapper iframe {
  width: 100%;
}
.cid-sz0fGwBhRS .mbr-section-title,
.cid-sz0fGwBhRS .mbr-section-subtitle,
.cid-sz0fGwBhRS .mbr-text {
  text-align: center;
}
.cid-sz0fGxohxn {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sz0fGxohxn .video-wrapper iframe {
  width: 100%;
}
.cid-sz0fGxohxn .mbr-section-title,
.cid-sz0fGxohxn .mbr-section-subtitle,
.cid-sz0fGxohxn .mbr-text {
  text-align: center;
}
.cid-sz0fGyMgjk {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sz0fGyMgjk .video-wrapper iframe {
  width: 100%;
}
.cid-sz0fGyMgjk .mbr-section-title,
.cid-sz0fGyMgjk .mbr-section-subtitle,
.cid-sz0fGyMgjk .mbr-text {
  text-align: center;
}
.cid-sz0fGzIHXT {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sz0fGzIHXT .video-wrapper iframe {
  width: 100%;
}
.cid-sz0fGzIHXT .mbr-section-title,
.cid-sz0fGzIHXT .mbr-section-subtitle,
.cid-sz0fGzIHXT .mbr-text {
  text-align: center;
}
.cid-sz0fGAV6nj {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sz0fGAV6nj .video-wrapper iframe {
  width: 100%;
}
.cid-sz0fGAV6nj .mbr-section-title,
.cid-sz0fGAV6nj .mbr-section-subtitle,
.cid-sz0fGAV6nj .mbr-text {
  text-align: center;
}
.cid-sz0fGC4q26 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sz0fGC4q26 .video-wrapper iframe {
  width: 100%;
}
.cid-sz0fGC4q26 .mbr-section-title,
.cid-sz0fGC4q26 .mbr-section-subtitle,
.cid-sz0fGC4q26 .mbr-text {
  text-align: center;
}
.cid-sz0fGCWMbu {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sz0fGCWMbu .video-wrapper iframe {
  width: 100%;
}
.cid-sz0fGCWMbu .mbr-section-title,
.cid-sz0fGCWMbu .mbr-section-subtitle,
.cid-sz0fGCWMbu .mbr-text {
  text-align: center;
}
.cid-sz0fGEuZrm {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sz0fGEuZrm .video-wrapper iframe {
  width: 100%;
}
.cid-sz0fGEuZrm .mbr-section-title,
.cid-sz0fGEuZrm .mbr-section-subtitle,
.cid-sz0fGEuZrm .mbr-text {
  text-align: center;
}
.cid-sz0fGFANgf {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sz0fGFANgf .video-wrapper iframe {
  width: 100%;
}
.cid-sz0fGFANgf .mbr-section-title,
.cid-sz0fGFANgf .mbr-section-subtitle,
.cid-sz0fGFANgf .mbr-text {
  text-align: center;
}
.cid-sz0fGGNBYF {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sz0fGGNBYF .video-wrapper iframe {
  width: 100%;
}
.cid-sz0fGGNBYF .mbr-section-title,
.cid-sz0fGGNBYF .mbr-section-subtitle,
.cid-sz0fGGNBYF .mbr-text {
  text-align: center;
}
.cid-sz0fGHTHcA {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sz0fGHTHcA .video-wrapper iframe {
  width: 100%;
}
.cid-sz0fGHTHcA .mbr-section-title,
.cid-sz0fGHTHcA .mbr-section-subtitle,
.cid-sz0fGHTHcA .mbr-text {
  text-align: center;
}
.cid-sz0fGIZ1mo {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sz0fGIZ1mo .video-wrapper iframe {
  width: 100%;
}
.cid-sz0fGIZ1mo .mbr-section-title,
.cid-sz0fGIZ1mo .mbr-section-subtitle,
.cid-sz0fGIZ1mo .mbr-text {
  text-align: center;
}
.cid-sz0fGKdUjd {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sz0fGKdUjd .video-wrapper iframe {
  width: 100%;
}
.cid-sz0fGKdUjd .mbr-section-title,
.cid-sz0fGKdUjd .mbr-section-subtitle,
.cid-sz0fGKdUjd .mbr-text {
  text-align: center;
}
.cid-sz0fGLYNjL {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sz0fGLYNjL .video-wrapper iframe {
  width: 100%;
}
.cid-sz0fGLYNjL .mbr-section-title,
.cid-sz0fGLYNjL .mbr-section-subtitle,
.cid-sz0fGLYNjL .mbr-text {
  text-align: center;
}
.cid-sz0fGNcyEN {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sz0fGNcyEN .video-wrapper iframe {
  width: 100%;
}
.cid-sz0fGNcyEN .mbr-section-title,
.cid-sz0fGNcyEN .mbr-section-subtitle,
.cid-sz0fGNcyEN .mbr-text {
  text-align: center;
}
.cid-sz0fGOkvff {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sz0fGOkvff .mbr-media {
  position: relative;
}
.cid-sz0fGOkvff .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-sz0fGOkvff .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-sz0fGOkvff .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-sz0fGOkvff .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-sz0fGOkvff .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-sz0fGOkvff .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-sz0fGOkvff .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-sz0fGOkvff .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-syrqSOQ64o {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-syrqSOQ64o nav.navbar {
  position: fixed;
}
.cid-syrqSOQ64o .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-syrqSOQ64o .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-syrqSOQ64o .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-syrqSOQ64o .dropdown-item:hover,
.cid-syrqSOQ64o .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-syrqSOQ64o .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-syrqSOQ64o .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-syrqSOQ64o .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-syrqSOQ64o .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-syrqSOQ64o .nav-link {
  position: relative;
}
.cid-syrqSOQ64o .container {
  display: flex;
  margin: auto;
}
.cid-syrqSOQ64o .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-syrqSOQ64o .dropdown-menu,
.cid-syrqSOQ64o .navbar.opened {
  background: #ffffff !important;
}
.cid-syrqSOQ64o .nav-item:focus,
.cid-syrqSOQ64o .nav-link:focus {
  outline: none;
}
.cid-syrqSOQ64o .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-syrqSOQ64o .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-syrqSOQ64o .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-syrqSOQ64o .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-syrqSOQ64o .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-syrqSOQ64o .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-syrqSOQ64o .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-syrqSOQ64o .navbar.opened {
  transition: all 0.3s;
}
.cid-syrqSOQ64o .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-syrqSOQ64o .navbar .navbar-logo img {
  width: auto;
}
.cid-syrqSOQ64o .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-syrqSOQ64o .navbar.collapsed {
  justify-content: center;
}
.cid-syrqSOQ64o .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-syrqSOQ64o .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-syrqSOQ64o .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-syrqSOQ64o .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-syrqSOQ64o .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-syrqSOQ64o .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-syrqSOQ64o .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-syrqSOQ64o .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-syrqSOQ64o .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-syrqSOQ64o .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-syrqSOQ64o .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-syrqSOQ64o .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-syrqSOQ64o .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-syrqSOQ64o .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-syrqSOQ64o .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-syrqSOQ64o .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-syrqSOQ64o .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-syrqSOQ64o .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-syrqSOQ64o .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-syrqSOQ64o .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-syrqSOQ64o .navbar.navbar-short {
  min-height: 60px;
}
.cid-syrqSOQ64o .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-syrqSOQ64o .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-syrqSOQ64o .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-syrqSOQ64o .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-syrqSOQ64o .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-syrqSOQ64o .dropdown-item.active,
.cid-syrqSOQ64o .dropdown-item:active {
  background-color: transparent;
}
.cid-syrqSOQ64o .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-syrqSOQ64o .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-syrqSOQ64o .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-syrqSOQ64o .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-syrqSOQ64o .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-syrqSOQ64o .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-syrqSOQ64o ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-syrqSOQ64o .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-syrqSOQ64o button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-syrqSOQ64o button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-syrqSOQ64o button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-syrqSOQ64o button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-syrqSOQ64o button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-syrqSOQ64o button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-syrqSOQ64o nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-syrqSOQ64o nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-syrqSOQ64o nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-syrqSOQ64o nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-syrqSOQ64o .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-syrqSOQ64o a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-syrqSOQ64o .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-syrqSOQ64o .navbar {
    height: 70px;
  }
  .cid-syrqSOQ64o .navbar.opened {
    height: auto;
  }
  .cid-syrqSOQ64o .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-syrqSVhJN7 {
  background-image: url("../../../assets/images/background13.jpg");
}
.cid-syrqSXzEgI {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-syrqSXzEgI .row {
  flex-direction: row-reverse;
}
.cid-syrqSXzEgI .video-wrapper iframe {
  width: 100%;
}
.cid-syrqSXzEgI .mbr-section-title,
.cid-syrqSXzEgI .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-syrqSXzEgI .text-wrapper {
    padding: 2rem;
  }
}
.cid-sz0hqbndkO {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sz0hqbndkO .video-wrapper iframe {
  width: 100%;
}
.cid-sz0hqbndkO .mbr-section-title,
.cid-sz0hqbndkO .mbr-section-subtitle,
.cid-sz0hqbndkO .mbr-text {
  text-align: center;
}
.cid-sz0hqG8tOZ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sz0hqG8tOZ .video-wrapper iframe {
  width: 100%;
}
.cid-sz0hqG8tOZ .mbr-section-title,
.cid-sz0hqG8tOZ .mbr-section-subtitle,
.cid-sz0hqG8tOZ .mbr-text {
  text-align: center;
}
.cid-sz0hr8NVqt {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sz0hr8NVqt .video-wrapper iframe {
  width: 100%;
}
.cid-sz0hr8NVqt .mbr-section-title,
.cid-sz0hr8NVqt .mbr-section-subtitle,
.cid-sz0hr8NVqt .mbr-text {
  text-align: center;
}
.cid-sz0hrI7Kve {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sz0hrI7Kve .video-wrapper iframe {
  width: 100%;
}
.cid-sz0hrI7Kve .mbr-section-title,
.cid-sz0hrI7Kve .mbr-section-subtitle,
.cid-sz0hrI7Kve .mbr-text {
  text-align: center;
}
.cid-sz0hsefyLK {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sz0hsefyLK .video-wrapper iframe {
  width: 100%;
}
.cid-sz0hsefyLK .mbr-section-title,
.cid-sz0hsefyLK .mbr-section-subtitle,
.cid-sz0hsefyLK .mbr-text {
  text-align: center;
}
.cid-sz0hsISoJK {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sz0hsISoJK .video-wrapper iframe {
  width: 100%;
}
.cid-sz0hsISoJK .mbr-section-title,
.cid-sz0hsISoJK .mbr-section-subtitle,
.cid-sz0hsISoJK .mbr-text {
  text-align: center;
}
.cid-sz0htpS5Qj {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sz0htpS5Qj .video-wrapper iframe {
  width: 100%;
}
.cid-sz0htpS5Qj .mbr-section-title,
.cid-sz0htpS5Qj .mbr-section-subtitle,
.cid-sz0htpS5Qj .mbr-text {
  text-align: center;
}
.cid-syrqSYMLrd {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-syrqSYMLrd .video-wrapper iframe {
  width: 100%;
}
.cid-syrqSYMLrd .mbr-section-title,
.cid-syrqSYMLrd .mbr-section-subtitle,
.cid-syrqSYMLrd .mbr-text {
  text-align: center;
}
.cid-syrqT0RwTL {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-syrqT0RwTL .video-wrapper iframe {
  width: 100%;
}
.cid-syrqT0RwTL .mbr-section-title,
.cid-syrqT0RwTL .mbr-section-subtitle,
.cid-syrqT0RwTL .mbr-text {
  text-align: center;
}
.cid-syrqT2vlBv {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-syrqT2vlBv .video-wrapper iframe {
  width: 100%;
}
.cid-syrqT2vlBv .mbr-section-title,
.cid-syrqT2vlBv .mbr-section-subtitle,
.cid-syrqT2vlBv .mbr-text {
  text-align: center;
}
.cid-syrqT4gyCD {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-syrqT4gyCD .video-wrapper iframe {
  width: 100%;
}
.cid-syrqT4gyCD .mbr-section-title,
.cid-syrqT4gyCD .mbr-section-subtitle,
.cid-syrqT4gyCD .mbr-text {
  text-align: center;
}
.cid-syrChLHyhk {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-syrChLHyhk .video-wrapper iframe {
  width: 100%;
}
.cid-syrChLHyhk .mbr-section-title,
.cid-syrChLHyhk .mbr-section-subtitle,
.cid-syrChLHyhk .mbr-text {
  text-align: center;
}
.cid-syrqT68yqY {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-syrqT68yqY .video-wrapper iframe {
  width: 100%;
}
.cid-syrqT68yqY .mbr-section-title,
.cid-syrqT68yqY .mbr-section-subtitle,
.cid-syrqT68yqY .mbr-text {
  text-align: center;
}
.cid-syrCLtUZt8 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-syrCLtUZt8 .video-wrapper iframe {
  width: 100%;
}
.cid-syrCLtUZt8 .mbr-section-title,
.cid-syrCLtUZt8 .mbr-section-subtitle,
.cid-syrCLtUZt8 .mbr-text {
  text-align: center;
}
.cid-syrCM82Hcs {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-syrCM82Hcs .video-wrapper iframe {
  width: 100%;
}
.cid-syrCM82Hcs .mbr-section-title,
.cid-syrCM82Hcs .mbr-section-subtitle,
.cid-syrCM82Hcs .mbr-text {
  text-align: center;
}
.cid-syrJtlz65E {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-syrJtlz65E .video-wrapper iframe {
  width: 100%;
}
.cid-syrJtlz65E .mbr-section-title,
.cid-syrJtlz65E .mbr-section-subtitle,
.cid-syrJtlz65E .mbr-text {
  text-align: center;
}
.cid-syrDh4Xvqi {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-syrDh4Xvqi .video-wrapper iframe {
  width: 100%;
}
.cid-syrDh4Xvqi .mbr-section-title,
.cid-syrDh4Xvqi .mbr-section-subtitle,
.cid-syrDh4Xvqi .mbr-text {
  text-align: center;
}
.cid-syrDoJVy0o {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-syrDoJVy0o .video-wrapper iframe {
  width: 100%;
}
.cid-syrDoJVy0o .mbr-section-title,
.cid-syrDoJVy0o .mbr-section-subtitle,
.cid-syrDoJVy0o .mbr-text {
  text-align: center;
}
.cid-syrJ4FrpqL {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-syrJ4FrpqL .video-wrapper iframe {
  width: 100%;
}
.cid-syrJ4FrpqL .mbr-section-title,
.cid-syrJ4FrpqL .mbr-section-subtitle,
.cid-syrJ4FrpqL .mbr-text {
  text-align: center;
}
.cid-szpzRedMKt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-szpzRedMKt nav.navbar {
  position: fixed;
}
.cid-szpzRedMKt .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-szpzRedMKt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-szpzRedMKt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-szpzRedMKt .dropdown-item:hover,
.cid-szpzRedMKt .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-szpzRedMKt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-szpzRedMKt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-szpzRedMKt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-szpzRedMKt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-szpzRedMKt .nav-link {
  position: relative;
}
.cid-szpzRedMKt .container {
  display: flex;
  margin: auto;
}
.cid-szpzRedMKt .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-szpzRedMKt .dropdown-menu,
.cid-szpzRedMKt .navbar.opened {
  background: #ffffff !important;
}
.cid-szpzRedMKt .nav-item:focus,
.cid-szpzRedMKt .nav-link:focus {
  outline: none;
}
.cid-szpzRedMKt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-szpzRedMKt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-szpzRedMKt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-szpzRedMKt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-szpzRedMKt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-szpzRedMKt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-szpzRedMKt .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-szpzRedMKt .navbar.opened {
  transition: all 0.3s;
}
.cid-szpzRedMKt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-szpzRedMKt .navbar .navbar-logo img {
  width: auto;
}
.cid-szpzRedMKt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-szpzRedMKt .navbar.collapsed {
  justify-content: center;
}
.cid-szpzRedMKt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-szpzRedMKt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-szpzRedMKt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-szpzRedMKt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-szpzRedMKt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-szpzRedMKt .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-szpzRedMKt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-szpzRedMKt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-szpzRedMKt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-szpzRedMKt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-szpzRedMKt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-szpzRedMKt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-szpzRedMKt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-szpzRedMKt .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-szpzRedMKt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-szpzRedMKt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-szpzRedMKt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-szpzRedMKt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-szpzRedMKt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-szpzRedMKt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-szpzRedMKt .navbar.navbar-short {
  min-height: 60px;
}
.cid-szpzRedMKt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-szpzRedMKt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-szpzRedMKt .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-szpzRedMKt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-szpzRedMKt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-szpzRedMKt .dropdown-item.active,
.cid-szpzRedMKt .dropdown-item:active {
  background-color: transparent;
}
.cid-szpzRedMKt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-szpzRedMKt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-szpzRedMKt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-szpzRedMKt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-szpzRedMKt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-szpzRedMKt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-szpzRedMKt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-szpzRedMKt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-szpzRedMKt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-szpzRedMKt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-szpzRedMKt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-szpzRedMKt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-szpzRedMKt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-szpzRedMKt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-szpzRedMKt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-szpzRedMKt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-szpzRedMKt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-szpzRedMKt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-szpzRedMKt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-szpzRedMKt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-szpzRedMKt .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-szpzRedMKt .navbar {
    height: 70px;
  }
  .cid-szpzRedMKt .navbar.opened {
    height: auto;
  }
  .cid-szpzRedMKt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-szpzRfkVb1 {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-image: url("../../../assets/images/mbr-2-1920x1357.jpg");
}
.cid-szpzRfkVb1 .mbr-section-title {
  color: #ffe161;
}
.cid-szpzRfkVb1 .mbr-text,
.cid-szpzRfkVb1 .mbr-section-btn {
  color: #fafafa;
}
.cid-szpzRfkVb1 .mbr-section-subtitle {
  color: #ffe885;
}
.cid-szpzRgE0q6 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #9fdbf8;
}
.cid-szpzRgE0q6 img,
.cid-szpzRgE0q6 .item-img {
  width: 100%;
}
.cid-szpzRgE0q6 .item:focus,
.cid-szpzRgE0q6 span:focus {
  outline: none;
}
.cid-szpzRgE0q6 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-szpzRgE0q6 .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-szpzRgE0q6 .item {
  padding: 0;
  margin: 0;
}
.cid-szpzRgE0q6 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-szpzRgE0q6 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-szpzRgE0q6 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-szpzRgE0q6 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-szpzRgE0q6 .mbr-section-title {
  color: #232323;
}
.cid-szpzRgE0q6 .mbr-text,
.cid-szpzRgE0q6 .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-szpzRgE0q6 .item-title {
  text-align: left;
}
.cid-szpzRgE0q6 .item-subtitle {
  text-align: left;
}
.cid-szpYngpFLU {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-szpYngpFLU nav.navbar {
  position: fixed;
}
.cid-szpYngpFLU .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-szpYngpFLU .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-szpYngpFLU .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-szpYngpFLU .dropdown-item:hover,
.cid-szpYngpFLU .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-szpYngpFLU .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-szpYngpFLU .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-szpYngpFLU .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-szpYngpFLU .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-szpYngpFLU .nav-link {
  position: relative;
}
.cid-szpYngpFLU .container {
  display: flex;
  margin: auto;
}
.cid-szpYngpFLU .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-szpYngpFLU .dropdown-menu,
.cid-szpYngpFLU .navbar.opened {
  background: #ffffff !important;
}
.cid-szpYngpFLU .nav-item:focus,
.cid-szpYngpFLU .nav-link:focus {
  outline: none;
}
.cid-szpYngpFLU .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-szpYngpFLU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-szpYngpFLU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-szpYngpFLU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-szpYngpFLU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-szpYngpFLU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-szpYngpFLU .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-szpYngpFLU .navbar.opened {
  transition: all 0.3s;
}
.cid-szpYngpFLU .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-szpYngpFLU .navbar .navbar-logo img {
  width: auto;
}
.cid-szpYngpFLU .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-szpYngpFLU .navbar.collapsed {
  justify-content: center;
}
.cid-szpYngpFLU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-szpYngpFLU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-szpYngpFLU .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-szpYngpFLU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-szpYngpFLU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-szpYngpFLU .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-szpYngpFLU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-szpYngpFLU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-szpYngpFLU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-szpYngpFLU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-szpYngpFLU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-szpYngpFLU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-szpYngpFLU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-szpYngpFLU .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-szpYngpFLU .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-szpYngpFLU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-szpYngpFLU .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-szpYngpFLU .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-szpYngpFLU .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-szpYngpFLU .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-szpYngpFLU .navbar.navbar-short {
  min-height: 60px;
}
.cid-szpYngpFLU .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-szpYngpFLU .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-szpYngpFLU .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-szpYngpFLU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-szpYngpFLU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-szpYngpFLU .dropdown-item.active,
.cid-szpYngpFLU .dropdown-item:active {
  background-color: transparent;
}
.cid-szpYngpFLU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-szpYngpFLU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-szpYngpFLU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-szpYngpFLU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-szpYngpFLU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-szpYngpFLU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-szpYngpFLU ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-szpYngpFLU .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-szpYngpFLU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-szpYngpFLU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-szpYngpFLU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-szpYngpFLU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-szpYngpFLU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-szpYngpFLU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-szpYngpFLU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-szpYngpFLU nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-szpYngpFLU nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-szpYngpFLU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-szpYngpFLU .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-szpYngpFLU a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-szpYngpFLU .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-szpYngpFLU .navbar {
    height: 70px;
  }
  .cid-szpYngpFLU .navbar.opened {
    height: auto;
  }
  .cid-szpYngpFLU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-szpYni4iq1 {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-image: url("../../../assets/images/mbr-1920x1355.jpg");
}
.cid-szpYni4iq1 .mbr-section-title {
  color: #ffe161;
}
.cid-szpYni4iq1 .mbr-text,
.cid-szpYni4iq1 .mbr-section-btn {
  color: #fafafa;
}
.cid-szpYni4iq1 .mbr-section-subtitle {
  color: #ffe885;
}
.cid-szpYnjTOgf {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #9fdbf8;
}
.cid-szpYnjTOgf img,
.cid-szpYnjTOgf .item-img {
  width: 100%;
}
.cid-szpYnjTOgf .item:focus,
.cid-szpYnjTOgf span:focus {
  outline: none;
}
.cid-szpYnjTOgf .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-szpYnjTOgf .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-szpYnjTOgf .item {
  padding: 0;
  margin: 0;
}
.cid-szpYnjTOgf .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-szpYnjTOgf .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-szpYnjTOgf .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-szpYnjTOgf .mbr-section-btn {
  margin-top: auto !important;
}
.cid-szpYnjTOgf .mbr-section-title {
  color: #232323;
}
.cid-szpYnjTOgf .mbr-text,
.cid-szpYnjTOgf .mbr-section-btn {
  text-align: left;
}
.cid-szpYnjTOgf .item-title {
  text-align: left;
}
.cid-szpYnjTOgf .item-subtitle {
  text-align: left;
}
.cid-szpzFmzdbL {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-szpzFmzdbL nav.navbar {
  position: fixed;
}
.cid-szpzFmzdbL .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-szpzFmzdbL .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-szpzFmzdbL .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-szpzFmzdbL .dropdown-item:hover,
.cid-szpzFmzdbL .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-szpzFmzdbL .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-szpzFmzdbL .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-szpzFmzdbL .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-szpzFmzdbL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-szpzFmzdbL .nav-link {
  position: relative;
}
.cid-szpzFmzdbL .container {
  display: flex;
  margin: auto;
}
.cid-szpzFmzdbL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-szpzFmzdbL .dropdown-menu,
.cid-szpzFmzdbL .navbar.opened {
  background: #ffffff !important;
}
.cid-szpzFmzdbL .nav-item:focus,
.cid-szpzFmzdbL .nav-link:focus {
  outline: none;
}
.cid-szpzFmzdbL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-szpzFmzdbL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-szpzFmzdbL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-szpzFmzdbL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-szpzFmzdbL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-szpzFmzdbL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-szpzFmzdbL .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-szpzFmzdbL .navbar.opened {
  transition: all 0.3s;
}
.cid-szpzFmzdbL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-szpzFmzdbL .navbar .navbar-logo img {
  width: auto;
}
.cid-szpzFmzdbL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-szpzFmzdbL .navbar.collapsed {
  justify-content: center;
}
.cid-szpzFmzdbL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-szpzFmzdbL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-szpzFmzdbL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-szpzFmzdbL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-szpzFmzdbL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-szpzFmzdbL .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-szpzFmzdbL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-szpzFmzdbL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-szpzFmzdbL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-szpzFmzdbL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-szpzFmzdbL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-szpzFmzdbL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-szpzFmzdbL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-szpzFmzdbL .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-szpzFmzdbL .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-szpzFmzdbL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-szpzFmzdbL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-szpzFmzdbL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-szpzFmzdbL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-szpzFmzdbL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-szpzFmzdbL .navbar.navbar-short {
  min-height: 60px;
}
.cid-szpzFmzdbL .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-szpzFmzdbL .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-szpzFmzdbL .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-szpzFmzdbL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-szpzFmzdbL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-szpzFmzdbL .dropdown-item.active,
.cid-szpzFmzdbL .dropdown-item:active {
  background-color: transparent;
}
.cid-szpzFmzdbL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-szpzFmzdbL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-szpzFmzdbL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-szpzFmzdbL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-szpzFmzdbL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-szpzFmzdbL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-szpzFmzdbL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-szpzFmzdbL .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-szpzFmzdbL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-szpzFmzdbL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-szpzFmzdbL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-szpzFmzdbL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-szpzFmzdbL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-szpzFmzdbL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-szpzFmzdbL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-szpzFmzdbL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-szpzFmzdbL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-szpzFmzdbL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-szpzFmzdbL .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-szpzFmzdbL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-szpzFmzdbL .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-szpzFmzdbL .navbar {
    height: 70px;
  }
  .cid-szpzFmzdbL .navbar.opened {
    height: auto;
  }
  .cid-szpzFmzdbL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-szpzFoa3sO {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-image: url("../../../assets/images/mbr-1920x1355.jpg");
}
.cid-szpzFoa3sO .mbr-section-title {
  color: #ffe161;
}
.cid-szpzFoa3sO .mbr-text,
.cid-szpzFoa3sO .mbr-section-btn {
  color: #fafafa;
}
.cid-szpzFoa3sO .mbr-section-subtitle {
  color: #ffe885;
}
.cid-szpzFskTcq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-szpzFskTcq .row {
  flex-direction: row-reverse;
}
.cid-szpzFskTcq .video-wrapper iframe {
  width: 100%;
}
.cid-szpzFskTcq .mbr-section-title,
.cid-szpzFskTcq .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-szpzFskTcq .text-wrapper {
    padding: 2rem;
  }
}
.cid-szpzFtoPo0 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-szpzFtoPo0 .video-wrapper iframe {
  width: 100%;
}
.cid-szpzFtoPo0 .mbr-section-title,
.cid-szpzFtoPo0 .mbr-section-subtitle,
.cid-szpzFtoPo0 .mbr-text {
  text-align: center;
}
.cid-szpzFusbUN {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-szpzFusbUN .video-wrapper iframe {
  width: 100%;
}
.cid-szpzFusbUN .mbr-section-title,
.cid-szpzFusbUN .mbr-section-subtitle,
.cid-szpzFusbUN .mbr-text {
  text-align: center;
}
.cid-szpzFvmlST {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-szpzFvmlST .video-wrapper iframe {
  width: 100%;
}
.cid-szpzFvmlST .mbr-section-title,
.cid-szpzFvmlST .mbr-section-subtitle,
.cid-szpzFvmlST .mbr-text {
  text-align: center;
}
.cid-szpzFwi0r8 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-szpzFwi0r8 .video-wrapper iframe {
  width: 100%;
}
.cid-szpzFwi0r8 .mbr-section-title,
.cid-szpzFwi0r8 .mbr-section-subtitle,
.cid-szpzFwi0r8 .mbr-text {
  text-align: center;
}
.cid-szpzFxn9EG {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-szpzFxn9EG .video-wrapper iframe {
  width: 100%;
}
.cid-szpzFxn9EG .mbr-section-title,
.cid-szpzFxn9EG .mbr-section-subtitle,
.cid-szpzFxn9EG .mbr-text {
  text-align: center;
}
.cid-szpzFypo7q {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-szpzFypo7q .video-wrapper iframe {
  width: 100%;
}
.cid-szpzFypo7q .mbr-section-title,
.cid-szpzFypo7q .mbr-section-subtitle,
.cid-szpzFypo7q .mbr-text {
  text-align: center;
}
.cid-szpzFzeFuA {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-szpzFzeFuA .video-wrapper iframe {
  width: 100%;
}
.cid-szpzFzeFuA .mbr-section-title,
.cid-szpzFzeFuA .mbr-section-subtitle,
.cid-szpzFzeFuA .mbr-text {
  text-align: center;
}
.cid-szpzFAhvmN {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-szpzFAhvmN .video-wrapper iframe {
  width: 100%;
}
.cid-szpzFAhvmN .mbr-section-title,
.cid-szpzFAhvmN .mbr-section-subtitle,
.cid-szpzFAhvmN .mbr-text {
  text-align: center;
}
.cid-szpzFBgZCE {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-szpzFBgZCE .video-wrapper iframe {
  width: 100%;
}
.cid-szpzFBgZCE .mbr-section-title,
.cid-szpzFBgZCE .mbr-section-subtitle,
.cid-szpzFBgZCE .mbr-text {
  text-align: center;
}
.cid-szpzFCRaTJ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-szpzFCRaTJ .video-wrapper iframe {
  width: 100%;
}
.cid-szpzFCRaTJ .mbr-section-title,
.cid-szpzFCRaTJ .mbr-section-subtitle,
.cid-szpzFCRaTJ .mbr-text {
  text-align: center;
}
.cid-szpzFDVC1D {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-szpzFDVC1D .video-wrapper iframe {
  width: 100%;
}
.cid-szpzFDVC1D .mbr-section-title,
.cid-szpzFDVC1D .mbr-section-subtitle,
.cid-szpzFDVC1D .mbr-text {
  text-align: center;
}
.cid-szpzFEN9VC {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-szpzFEN9VC .video-wrapper iframe {
  width: 100%;
}
.cid-szpzFEN9VC .mbr-section-title,
.cid-szpzFEN9VC .mbr-section-subtitle,
.cid-szpzFEN9VC .mbr-text {
  text-align: center;
}
.cid-szpzFHmYpv {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-szpzFHmYpv .video-wrapper iframe {
  width: 100%;
}
.cid-szpzFHmYpv .mbr-section-title,
.cid-szpzFHmYpv .mbr-section-subtitle,
.cid-szpzFHmYpv .mbr-text {
  text-align: center;
}
.cid-szpzFIoMns {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-szpzFIoMns .video-wrapper iframe {
  width: 100%;
}
.cid-szpzFIoMns .mbr-section-title,
.cid-szpzFIoMns .mbr-section-subtitle,
.cid-szpzFIoMns .mbr-text {
  text-align: center;
}
.cid-szpzFJn6A3 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-szpzFJn6A3 .video-wrapper iframe {
  width: 100%;
}
.cid-szpzFJn6A3 .mbr-section-title,
.cid-szpzFJn6A3 .mbr-section-subtitle,
.cid-szpzFJn6A3 .mbr-text {
  text-align: center;
}
.cid-szpzFKAGLf {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-szpzFKAGLf .video-wrapper iframe {
  width: 100%;
}
.cid-szpzFKAGLf .mbr-section-title,
.cid-szpzFKAGLf .mbr-section-subtitle,
.cid-szpzFKAGLf .mbr-text {
  text-align: center;
}
.cid-szpzFMAJpq {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-szpzFMAJpq .video-wrapper iframe {
  width: 100%;
}
.cid-szpzFMAJpq .mbr-section-title,
.cid-szpzFMAJpq .mbr-section-subtitle,
.cid-szpzFMAJpq .mbr-text {
  text-align: center;
}
.cid-szpzFOH2qI {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-szpzFOH2qI .video-wrapper iframe {
  width: 100%;
}
.cid-szpzFOH2qI .mbr-section-title,
.cid-szpzFOH2qI .mbr-section-subtitle,
.cid-szpzFOH2qI .mbr-text {
  text-align: center;
}
.cid-szpzFQmOwX {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-szpzFQmOwX .video-wrapper iframe {
  width: 100%;
}
.cid-szpzFQmOwX .mbr-section-title,
.cid-szpzFQmOwX .mbr-section-subtitle,
.cid-szpzFQmOwX .mbr-text {
  text-align: center;
}
.cid-szpzFRiIXM {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-szpzFRiIXM .video-wrapper iframe {
  width: 100%;
}
.cid-szpzFRiIXM .mbr-section-title,
.cid-szpzFRiIXM .mbr-section-subtitle,
.cid-szpzFRiIXM .mbr-text {
  text-align: center;
}
.cid-szpzFS94NX {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-szpzFS94NX .video-wrapper iframe {
  width: 100%;
}
.cid-szpzFS94NX .mbr-section-title,
.cid-szpzFS94NX .mbr-section-subtitle,
.cid-szpzFS94NX .mbr-text {
  text-align: center;
}
.cid-szpzFTd90U {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-szpzFTd90U .video-wrapper iframe {
  width: 100%;
}
.cid-szpzFTd90U .mbr-section-title,
.cid-szpzFTd90U .mbr-section-subtitle,
.cid-szpzFTd90U .mbr-text {
  text-align: center;
}
.cid-szpzFUg246 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-szpzFUg246 .video-wrapper iframe {
  width: 100%;
}
.cid-szpzFUg246 .mbr-section-title,
.cid-szpzFUg246 .mbr-section-subtitle,
.cid-szpzFUg246 .mbr-text {
  text-align: center;
}
.cid-szpzFVj5ME {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-szpzFVj5ME .video-wrapper iframe {
  width: 100%;
}
.cid-szpzFVj5ME .mbr-section-title,
.cid-szpzFVj5ME .mbr-section-subtitle,
.cid-szpzFVj5ME .mbr-text {
  text-align: center;
}
.cid-szpzFWLCtr {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-szpzFWLCtr .video-wrapper iframe {
  width: 100%;
}
.cid-szpzFWLCtr .mbr-section-title,
.cid-szpzFWLCtr .mbr-section-subtitle,
.cid-szpzFWLCtr .mbr-text {
  text-align: center;
}
.cid-szpzFY48py {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-szpzFY48py .video-wrapper iframe {
  width: 100%;
}
.cid-szpzFY48py .mbr-section-title,
.cid-szpzFY48py .mbr-section-subtitle,
.cid-szpzFY48py .mbr-text {
  text-align: center;
}
.cid-szpzFZ3avb {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-szpzFZ3avb .video-wrapper iframe {
  width: 100%;
}
.cid-szpzFZ3avb .mbr-section-title,
.cid-szpzFZ3avb .mbr-section-subtitle,
.cid-szpzFZ3avb .mbr-text {
  text-align: center;
}
.cid-szpzG0gxTp {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-szpzG0gxTp .video-wrapper iframe {
  width: 100%;
}
.cid-szpzG0gxTp .mbr-section-title,
.cid-szpzG0gxTp .mbr-section-subtitle,
.cid-szpzG0gxTp .mbr-text {
  text-align: center;
}
.cid-szpzG1kbRC {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-szpzG1kbRC .video-wrapper iframe {
  width: 100%;
}
.cid-szpzG1kbRC .mbr-section-title,
.cid-szpzG1kbRC .mbr-section-subtitle,
.cid-szpzG1kbRC .mbr-text {
  text-align: center;
}
.cid-szpzG2yJgG {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-szpzG2yJgG .video-wrapper iframe {
  width: 100%;
}
.cid-szpzG2yJgG .mbr-section-title,
.cid-szpzG2yJgG .mbr-section-subtitle,
.cid-szpzG2yJgG .mbr-text {
  text-align: center;
}
.cid-szpzG45aOD {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-szpzG45aOD .mbr-media {
  position: relative;
}
.cid-szpzG45aOD .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-szpzG45aOD .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-szpzG45aOD .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-szpzG45aOD .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-szpzG45aOD .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-szpzG45aOD .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-szpzG45aOD .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-szpzG45aOD .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-syl09kOR7M {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-syl09kOR7M nav.navbar {
  position: fixed;
}
.cid-syl09kOR7M .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-syl09kOR7M .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-syl09kOR7M .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-syl09kOR7M .dropdown-item:hover,
.cid-syl09kOR7M .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-syl09kOR7M .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-syl09kOR7M .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-syl09kOR7M .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-syl09kOR7M .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-syl09kOR7M .nav-link {
  position: relative;
}
.cid-syl09kOR7M .container {
  display: flex;
  margin: auto;
}
.cid-syl09kOR7M .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-syl09kOR7M .dropdown-menu,
.cid-syl09kOR7M .navbar.opened {
  background: #ffffff !important;
}
.cid-syl09kOR7M .nav-item:focus,
.cid-syl09kOR7M .nav-link:focus {
  outline: none;
}
.cid-syl09kOR7M .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-syl09kOR7M .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-syl09kOR7M .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-syl09kOR7M .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-syl09kOR7M .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-syl09kOR7M .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-syl09kOR7M .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-syl09kOR7M .navbar.opened {
  transition: all 0.3s;
}
.cid-syl09kOR7M .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-syl09kOR7M .navbar .navbar-logo img {
  width: auto;
}
.cid-syl09kOR7M .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-syl09kOR7M .navbar.collapsed {
  justify-content: center;
}
.cid-syl09kOR7M .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-syl09kOR7M .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-syl09kOR7M .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-syl09kOR7M .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-syl09kOR7M .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-syl09kOR7M .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-syl09kOR7M .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-syl09kOR7M .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-syl09kOR7M .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-syl09kOR7M .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-syl09kOR7M .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-syl09kOR7M .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-syl09kOR7M .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-syl09kOR7M .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-syl09kOR7M .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-syl09kOR7M .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-syl09kOR7M .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-syl09kOR7M .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-syl09kOR7M .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-syl09kOR7M .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-syl09kOR7M .navbar.navbar-short {
  min-height: 60px;
}
.cid-syl09kOR7M .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-syl09kOR7M .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-syl09kOR7M .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-syl09kOR7M .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-syl09kOR7M .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-syl09kOR7M .dropdown-item.active,
.cid-syl09kOR7M .dropdown-item:active {
  background-color: transparent;
}
.cid-syl09kOR7M .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-syl09kOR7M .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-syl09kOR7M .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-syl09kOR7M .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-syl09kOR7M .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-syl09kOR7M .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-syl09kOR7M ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-syl09kOR7M .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-syl09kOR7M button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-syl09kOR7M button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-syl09kOR7M button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-syl09kOR7M button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-syl09kOR7M button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-syl09kOR7M button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-syl09kOR7M nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-syl09kOR7M nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-syl09kOR7M nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-syl09kOR7M nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-syl09kOR7M .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-syl09kOR7M a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-syl09kOR7M .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-syl09kOR7M .navbar {
    height: 70px;
  }
  .cid-syl09kOR7M .navbar.opened {
    height: auto;
  }
  .cid-syl09kOR7M .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sAgLxuzDez {
  display: flex;
  background-image: url("../../../assets/images/mbr-1-1920x1357.jpg");
}
.cid-sAgLxuzDez .mbr-overlay {
  background-color: #353535;
  opacity: 0.5;
}
.cid-sAgLxuzDez .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-sAgLxuzDez {
    align-items: flex-end;
  }
  .cid-sAgLxuzDez .row {
    justify-content: flex-start;
  }
  .cid-sAgLxuzDez .content-wrap {
    width: 51%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-sAgLxuzDez .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-sAgLxuzDez {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sAgLxuzDez .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-sAgLxuzDez .content-wrap {
    width: 100%;
  }
}
.cid-sApwULq28h {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sApwULq28h img,
.cid-sApwULq28h .item-img {
  width: 100%;
}
.cid-sApwULq28h .item:focus,
.cid-sApwULq28h span:focus {
  outline: none;
}
.cid-sApwULq28h .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sApwULq28h .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-sApwULq28h .item {
  padding: 0;
  margin: 0;
}
.cid-sApwULq28h .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sApwULq28h .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sApwULq28h .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-sApwULq28h .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sApwULq28h .mbr-section-title {
  color: #232323;
}
.cid-sAhdGB8iFR {
  padding-top: 1rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-sAhdGB8iFR .mbr-section-subtitle {
  text-align: left;
}
.cid-sApZHGQVGV {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sApZHGQVGV nav.navbar {
  position: fixed;
}
.cid-sApZHGQVGV .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-sApZHGQVGV .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sApZHGQVGV .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sApZHGQVGV .dropdown-item:hover,
.cid-sApZHGQVGV .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sApZHGQVGV .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sApZHGQVGV .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sApZHGQVGV .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sApZHGQVGV .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sApZHGQVGV .nav-link {
  position: relative;
}
.cid-sApZHGQVGV .container {
  display: flex;
  margin: auto;
}
.cid-sApZHGQVGV .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sApZHGQVGV .dropdown-menu,
.cid-sApZHGQVGV .navbar.opened {
  background: #ffffff !important;
}
.cid-sApZHGQVGV .nav-item:focus,
.cid-sApZHGQVGV .nav-link:focus {
  outline: none;
}
.cid-sApZHGQVGV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sApZHGQVGV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sApZHGQVGV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sApZHGQVGV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sApZHGQVGV .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sApZHGQVGV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sApZHGQVGV .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-sApZHGQVGV .navbar.opened {
  transition: all 0.3s;
}
.cid-sApZHGQVGV .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sApZHGQVGV .navbar .navbar-logo img {
  width: auto;
}
.cid-sApZHGQVGV .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sApZHGQVGV .navbar.collapsed {
  justify-content: center;
}
.cid-sApZHGQVGV .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sApZHGQVGV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sApZHGQVGV .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sApZHGQVGV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sApZHGQVGV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sApZHGQVGV .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-sApZHGQVGV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sApZHGQVGV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sApZHGQVGV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sApZHGQVGV .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sApZHGQVGV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sApZHGQVGV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sApZHGQVGV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sApZHGQVGV .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-sApZHGQVGV .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sApZHGQVGV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sApZHGQVGV .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sApZHGQVGV .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sApZHGQVGV .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sApZHGQVGV .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sApZHGQVGV .navbar.navbar-short {
  min-height: 60px;
}
.cid-sApZHGQVGV .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sApZHGQVGV .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sApZHGQVGV .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-sApZHGQVGV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sApZHGQVGV .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sApZHGQVGV .dropdown-item.active,
.cid-sApZHGQVGV .dropdown-item:active {
  background-color: transparent;
}
.cid-sApZHGQVGV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sApZHGQVGV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sApZHGQVGV .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sApZHGQVGV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sApZHGQVGV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sApZHGQVGV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sApZHGQVGV ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sApZHGQVGV .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sApZHGQVGV button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sApZHGQVGV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sApZHGQVGV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sApZHGQVGV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sApZHGQVGV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sApZHGQVGV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sApZHGQVGV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sApZHGQVGV nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sApZHGQVGV nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sApZHGQVGV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sApZHGQVGV .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sApZHGQVGV a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sApZHGQVGV .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-sApZHGQVGV .navbar {
    height: 70px;
  }
  .cid-sApZHGQVGV .navbar.opened {
    height: auto;
  }
  .cid-sApZHGQVGV .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sApZHHSBYT {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-image: url("../../../assets/images/mbr-2-1920x1357.jpg");
}
.cid-sApZHHSBYT .mbr-section-title {
  color: #ffe161;
}
.cid-sApZHHSBYT .mbr-text,
.cid-sApZHHSBYT .mbr-section-btn {
  color: #fafafa;
}
.cid-sApZHHSBYT .mbr-section-subtitle {
  color: #ffe885;
}
.cid-sAq01nKLyF {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sApZHJ8KKe {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sApZHJ8KKe img,
.cid-sApZHJ8KKe .item-img {
  width: 100%;
}
.cid-sApZHJ8KKe .item:focus,
.cid-sApZHJ8KKe span:focus {
  outline: none;
}
.cid-sApZHJ8KKe .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sApZHJ8KKe .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-sApZHJ8KKe .item {
  padding: 0;
  margin: 0;
}
.cid-sApZHJ8KKe .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sApZHJ8KKe .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sApZHJ8KKe .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-sApZHJ8KKe .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sApZHJ8KKe .mbr-section-title {
  color: #232323;
}
.cid-sApZHJ8KKe .mbr-text,
.cid-sApZHJ8KKe .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-sApZHJ8KKe .item-title {
  text-align: left;
}
.cid-sApZHJ8KKe .item-subtitle {
  text-align: left;
}
.cid-sAqcvWG1PQ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sAqcvWG1PQ nav.navbar {
  position: fixed;
}
.cid-sAqcvWG1PQ .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-sAqcvWG1PQ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sAqcvWG1PQ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sAqcvWG1PQ .dropdown-item:hover,
.cid-sAqcvWG1PQ .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sAqcvWG1PQ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sAqcvWG1PQ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sAqcvWG1PQ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sAqcvWG1PQ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sAqcvWG1PQ .nav-link {
  position: relative;
}
.cid-sAqcvWG1PQ .container {
  display: flex;
  margin: auto;
}
.cid-sAqcvWG1PQ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sAqcvWG1PQ .dropdown-menu,
.cid-sAqcvWG1PQ .navbar.opened {
  background: #ffffff !important;
}
.cid-sAqcvWG1PQ .nav-item:focus,
.cid-sAqcvWG1PQ .nav-link:focus {
  outline: none;
}
.cid-sAqcvWG1PQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sAqcvWG1PQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sAqcvWG1PQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sAqcvWG1PQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sAqcvWG1PQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sAqcvWG1PQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sAqcvWG1PQ .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-sAqcvWG1PQ .navbar.opened {
  transition: all 0.3s;
}
.cid-sAqcvWG1PQ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sAqcvWG1PQ .navbar .navbar-logo img {
  width: auto;
}
.cid-sAqcvWG1PQ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sAqcvWG1PQ .navbar.collapsed {
  justify-content: center;
}
.cid-sAqcvWG1PQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sAqcvWG1PQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sAqcvWG1PQ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sAqcvWG1PQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sAqcvWG1PQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sAqcvWG1PQ .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-sAqcvWG1PQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sAqcvWG1PQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sAqcvWG1PQ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sAqcvWG1PQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sAqcvWG1PQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sAqcvWG1PQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sAqcvWG1PQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sAqcvWG1PQ .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-sAqcvWG1PQ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sAqcvWG1PQ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sAqcvWG1PQ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sAqcvWG1PQ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sAqcvWG1PQ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sAqcvWG1PQ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sAqcvWG1PQ .navbar.navbar-short {
  min-height: 60px;
}
.cid-sAqcvWG1PQ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sAqcvWG1PQ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sAqcvWG1PQ .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-sAqcvWG1PQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sAqcvWG1PQ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sAqcvWG1PQ .dropdown-item.active,
.cid-sAqcvWG1PQ .dropdown-item:active {
  background-color: transparent;
}
.cid-sAqcvWG1PQ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sAqcvWG1PQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sAqcvWG1PQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sAqcvWG1PQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sAqcvWG1PQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sAqcvWG1PQ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sAqcvWG1PQ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sAqcvWG1PQ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sAqcvWG1PQ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sAqcvWG1PQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sAqcvWG1PQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sAqcvWG1PQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sAqcvWG1PQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sAqcvWG1PQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sAqcvWG1PQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sAqcvWG1PQ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sAqcvWG1PQ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sAqcvWG1PQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sAqcvWG1PQ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sAqcvWG1PQ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sAqcvWG1PQ .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-sAqcvWG1PQ .navbar {
    height: 70px;
  }
  .cid-sAqcvWG1PQ .navbar.opened {
    height: auto;
  }
  .cid-sAqcvWG1PQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sAqcvY0THn {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-image: url("../../../assets/images/mbr-1920x640.jpg");
}
.cid-sAqcvY0THn .mbr-section-title {
  color: #ffe161;
}
.cid-sAqcvY0THn .mbr-text,
.cid-sAqcvY0THn .mbr-section-btn {
  color: #fafafa;
}
.cid-sAqcvY0THn .mbr-section-subtitle {
  color: #ffe885;
}
.cid-sAqcvZPNk8 {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sAqcw16IkY {
  padding-top: 1rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sAqcw16IkY img,
.cid-sAqcw16IkY .item-img {
  width: 100%;
}
.cid-sAqcw16IkY .item:focus,
.cid-sAqcw16IkY span:focus {
  outline: none;
}
.cid-sAqcw16IkY .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sAqcw16IkY .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-sAqcw16IkY .item {
  padding: 0;
  margin: 0;
}
.cid-sAqcw16IkY .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sAqcw16IkY .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sAqcw16IkY .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-sAqcw16IkY .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sAqcw16IkY .mbr-section-title {
  color: #232323;
}
.cid-sAqcw16IkY .mbr-text,
.cid-sAqcw16IkY .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-sAqcw16IkY .item-title {
  text-align: left;
}
.cid-sAqcw16IkY .item-subtitle {
  text-align: left;
}
.cid-sNZLefK9SU {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sNZLefK9SU nav.navbar {
  position: fixed;
}
.cid-sNZLefK9SU .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-sNZLefK9SU .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sNZLefK9SU .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sNZLefK9SU .dropdown-item:hover,
.cid-sNZLefK9SU .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sNZLefK9SU .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sNZLefK9SU .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sNZLefK9SU .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sNZLefK9SU .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sNZLefK9SU .nav-link {
  position: relative;
}
.cid-sNZLefK9SU .container {
  display: flex;
  margin: auto;
}
.cid-sNZLefK9SU .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sNZLefK9SU .dropdown-menu,
.cid-sNZLefK9SU .navbar.opened {
  background: #ffffff !important;
}
.cid-sNZLefK9SU .nav-item:focus,
.cid-sNZLefK9SU .nav-link:focus {
  outline: none;
}
.cid-sNZLefK9SU .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sNZLefK9SU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sNZLefK9SU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sNZLefK9SU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sNZLefK9SU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sNZLefK9SU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sNZLefK9SU .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-sNZLefK9SU .navbar.opened {
  transition: all 0.3s;
}
.cid-sNZLefK9SU .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sNZLefK9SU .navbar .navbar-logo img {
  width: auto;
}
.cid-sNZLefK9SU .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sNZLefK9SU .navbar.collapsed {
  justify-content: center;
}
.cid-sNZLefK9SU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sNZLefK9SU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sNZLefK9SU .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sNZLefK9SU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sNZLefK9SU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sNZLefK9SU .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-sNZLefK9SU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sNZLefK9SU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sNZLefK9SU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sNZLefK9SU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sNZLefK9SU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sNZLefK9SU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sNZLefK9SU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sNZLefK9SU .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-sNZLefK9SU .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sNZLefK9SU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sNZLefK9SU .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sNZLefK9SU .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sNZLefK9SU .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sNZLefK9SU .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sNZLefK9SU .navbar.navbar-short {
  min-height: 60px;
}
.cid-sNZLefK9SU .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sNZLefK9SU .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sNZLefK9SU .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-sNZLefK9SU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sNZLefK9SU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sNZLefK9SU .dropdown-item.active,
.cid-sNZLefK9SU .dropdown-item:active {
  background-color: transparent;
}
.cid-sNZLefK9SU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sNZLefK9SU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sNZLefK9SU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sNZLefK9SU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sNZLefK9SU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sNZLefK9SU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sNZLefK9SU ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sNZLefK9SU .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sNZLefK9SU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sNZLefK9SU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sNZLefK9SU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sNZLefK9SU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sNZLefK9SU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sNZLefK9SU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sNZLefK9SU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sNZLefK9SU nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sNZLefK9SU nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sNZLefK9SU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sNZLefK9SU .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sNZLefK9SU a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sNZLefK9SU .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-sNZLefK9SU .navbar {
    height: 70px;
  }
  .cid-sNZLefK9SU .navbar.opened {
    height: auto;
  }
  .cid-sNZLefK9SU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sNZLenn4ef {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-image: url("../../../assets/images/mbr-1920x1355.jpg");
}
.cid-sNZLenn4ef .mbr-section-title {
  color: #ffe161;
}
.cid-sNZLenn4ef .mbr-text,
.cid-sNZLenn4ef .mbr-section-btn {
  color: #fafafa;
}
.cid-sNZLenn4ef .mbr-section-subtitle {
  color: #ffe885;
}
.cid-sNZLeqUqL8 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sNZLeqUqL8 .video-wrapper iframe {
  width: 100%;
}
.cid-sNZLeqUqL8 .mbr-section-title,
.cid-sNZLeqUqL8 .mbr-section-subtitle,
.cid-sNZLeqUqL8 .mbr-text {
  text-align: center;
}
.cid-sNZLetI8xo {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sNZLetI8xo .video-wrapper iframe {
  width: 100%;
}
.cid-sNZLetI8xo .mbr-section-title,
.cid-sNZLetI8xo .mbr-section-subtitle,
.cid-sNZLetI8xo .mbr-text {
  text-align: center;
}
.cid-sNZLeEB4d0 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sNZLeEB4d0 .video-wrapper iframe {
  width: 100%;
}
.cid-sNZLeEB4d0 .mbr-section-title,
.cid-sNZLeEB4d0 .mbr-section-subtitle,
.cid-sNZLeEB4d0 .mbr-text {
  text-align: center;
}
.cid-sNZLeFw5aa {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sNZLeFw5aa .video-wrapper iframe {
  width: 100%;
}
.cid-sNZLeFw5aa .mbr-section-title,
.cid-sNZLeFw5aa .mbr-section-subtitle,
.cid-sNZLeFw5aa .mbr-text {
  text-align: center;
}
.cid-sNZLeHa9rs {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sNZLeHa9rs .video-wrapper iframe {
  width: 100%;
}
.cid-sNZLeHa9rs .mbr-section-title,
.cid-sNZLeHa9rs .mbr-section-subtitle,
.cid-sNZLeHa9rs .mbr-text {
  text-align: center;
}
.cid-sNZLeIvCsU {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sNZLeIvCsU .video-wrapper iframe {
  width: 100%;
}
.cid-sNZLeIvCsU .mbr-section-title,
.cid-sNZLeIvCsU .mbr-section-subtitle,
.cid-sNZLeIvCsU .mbr-text {
  text-align: center;
}
.cid-sNZLeJyBcC {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sNZLeJyBcC .video-wrapper iframe {
  width: 100%;
}
.cid-sNZLeJyBcC .mbr-section-title,
.cid-sNZLeJyBcC .mbr-section-subtitle,
.cid-sNZLeJyBcC .mbr-text {
  text-align: center;
}
.cid-sNZLeKIY1D {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sNZLeKIY1D .video-wrapper iframe {
  width: 100%;
}
.cid-sNZLeKIY1D .mbr-section-title,
.cid-sNZLeKIY1D .mbr-section-subtitle,
.cid-sNZLeKIY1D .mbr-text {
  text-align: center;
}
.cid-sNZLeN2lNd {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sNZLeN2lNd .video-wrapper iframe {
  width: 100%;
}
.cid-sNZLeN2lNd .mbr-section-title,
.cid-sNZLeN2lNd .mbr-section-subtitle,
.cid-sNZLeN2lNd .mbr-text {
  text-align: center;
}
.cid-sNZLeQfepj {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sNZLeQfepj .video-wrapper iframe {
  width: 100%;
}
.cid-sNZLeQfepj .mbr-section-title,
.cid-sNZLeQfepj .mbr-section-subtitle,
.cid-sNZLeQfepj .mbr-text {
  text-align: center;
}
.cid-sNZLeYRuFW {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sNZLeYRuFW .video-wrapper iframe {
  width: 100%;
}
.cid-sNZLeYRuFW .mbr-section-title,
.cid-sNZLeYRuFW .mbr-section-subtitle,
.cid-sNZLeYRuFW .mbr-text {
  text-align: center;
}
.cid-sNZLfdT60Z {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sNZLfdT60Z .video-wrapper iframe {
  width: 100%;
}
.cid-sNZLfdT60Z .mbr-section-title,
.cid-sNZLfdT60Z .mbr-section-subtitle,
.cid-sNZLfdT60Z .mbr-text {
  text-align: center;
}
.cid-sNZLfgLjND {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sNZLfgLjND .video-wrapper iframe {
  width: 100%;
}
.cid-sNZLfgLjND .mbr-section-title,
.cid-sNZLfgLjND .mbr-section-subtitle,
.cid-sNZLfgLjND .mbr-text {
  text-align: center;
}
.cid-u0U5bawfu0 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u0U5bawfu0 nav.navbar {
  position: fixed;
}
.cid-u0U5bawfu0 .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-u0U5bawfu0 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u0U5bawfu0 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u0U5bawfu0 .dropdown-item:hover,
.cid-u0U5bawfu0 .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-u0U5bawfu0 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u0U5bawfu0 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u0U5bawfu0 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u0U5bawfu0 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u0U5bawfu0 .nav-link {
  position: relative;
}
.cid-u0U5bawfu0 .container {
  display: flex;
  margin: auto;
}
.cid-u0U5bawfu0 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u0U5bawfu0 .dropdown-menu,
.cid-u0U5bawfu0 .navbar.opened {
  background: #ffffff !important;
}
.cid-u0U5bawfu0 .nav-item:focus,
.cid-u0U5bawfu0 .nav-link:focus {
  outline: none;
}
.cid-u0U5bawfu0 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u0U5bawfu0 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u0U5bawfu0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u0U5bawfu0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u0U5bawfu0 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u0U5bawfu0 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u0U5bawfu0 .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-u0U5bawfu0 .navbar.opened {
  transition: all 0.3s;
}
.cid-u0U5bawfu0 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u0U5bawfu0 .navbar .navbar-logo img {
  width: auto;
}
.cid-u0U5bawfu0 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u0U5bawfu0 .navbar.collapsed {
  justify-content: center;
}
.cid-u0U5bawfu0 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u0U5bawfu0 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u0U5bawfu0 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-u0U5bawfu0 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u0U5bawfu0 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u0U5bawfu0 .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-u0U5bawfu0 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u0U5bawfu0 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u0U5bawfu0 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u0U5bawfu0 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u0U5bawfu0 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u0U5bawfu0 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u0U5bawfu0 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u0U5bawfu0 .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-u0U5bawfu0 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u0U5bawfu0 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u0U5bawfu0 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u0U5bawfu0 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u0U5bawfu0 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u0U5bawfu0 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u0U5bawfu0 .navbar.navbar-short {
  min-height: 60px;
}
.cid-u0U5bawfu0 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u0U5bawfu0 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u0U5bawfu0 .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-u0U5bawfu0 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u0U5bawfu0 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u0U5bawfu0 .dropdown-item.active,
.cid-u0U5bawfu0 .dropdown-item:active {
  background-color: transparent;
}
.cid-u0U5bawfu0 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u0U5bawfu0 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u0U5bawfu0 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u0U5bawfu0 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u0U5bawfu0 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u0U5bawfu0 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u0U5bawfu0 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u0U5bawfu0 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u0U5bawfu0 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u0U5bawfu0 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u0U5bawfu0 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u0U5bawfu0 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u0U5bawfu0 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u0U5bawfu0 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u0U5bawfu0 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u0U5bawfu0 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u0U5bawfu0 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u0U5bawfu0 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u0U5bawfu0 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u0U5bawfu0 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u0U5bawfu0 .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-u0U5bawfu0 .navbar {
    height: 70px;
  }
  .cid-u0U5bawfu0 .navbar.opened {
    height: auto;
  }
  .cid-u0U5bawfu0 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u0U5baNWZD {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-image: url("../../../assets/images/mbr-2-1920x1280.jpg");
}
.cid-u0U5baNWZD .mbr-section-title {
  color: #ffe885;
}
.cid-u0U5baNWZD .mbr-text,
.cid-u0U5baNWZD .mbr-section-btn {
  color: #fafafa;
}
.cid-u0U5baNWZD .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u0U5bbnMje {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #cccdcf;
}
.cid-u0U5bbnMje img,
.cid-u0U5bbnMje .item-img {
  width: 100%;
}
.cid-u0U5bbnMje .item:focus,
.cid-u0U5bbnMje span:focus {
  outline: none;
}
.cid-u0U5bbnMje .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u0U5bbnMje .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-u0U5bbnMje .item {
  padding: 0;
  margin: 0;
}
.cid-u0U5bbnMje .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #cccdcf;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u0U5bbnMje .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u0U5bbnMje .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-u0U5bbnMje .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u0U5bbnMje .mbr-section-title {
  color: #232323;
}
.cid-u0U5bbnMje .mbr-text,
.cid-u0U5bbnMje .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-u0U5bbnMje .item-title {
  text-align: left;
}
.cid-u0U5bbnMje .item-subtitle {
  text-align: left;
}
.cid-u0U5bd55mN {
  padding-top: 1rem;
  padding-bottom: 6rem;
  background-color: #cccdcf;
}
.cid-u0U5bd55mN img,
.cid-u0U5bd55mN .item-img {
  width: 100%;
}
.cid-u0U5bd55mN .item:focus,
.cid-u0U5bd55mN span:focus {
  outline: none;
}
.cid-u0U5bd55mN .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u0U5bd55mN .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-u0U5bd55mN .item {
  padding: 0;
  margin: 0;
}
.cid-u0U5bd55mN .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #cccdcf;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u0U5bd55mN .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u0U5bd55mN .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-u0U5bd55mN .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u0U5bd55mN .mbr-section-title {
  color: #232323;
}
.cid-u0U5bd55mN .mbr-text,
.cid-u0U5bd55mN .mbr-section-btn {
  text-align: left;
}
.cid-u0U5bd55mN .item-title {
  text-align: left;
}
.cid-u0U5bd55mN .item-subtitle {
  text-align: left;
}
.cid-u0U5bdkL9L {
  padding-top: 4rem;
  padding-bottom: 10rem;
  background: #9fdbf8;
}
@media (max-width: 767px) {
  .cid-u0U5bdkL9L .row {
    flex-direction: column-reverse;
  }
  .cid-u0U5bdkL9L .row .map-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-u0U5bdkL9L .google-map {
  height: 100%;
  position: relative;
}
.cid-u0U5bdkL9L .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-u0U5bdkL9L .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-u0U5bdkL9L .google-map[data-state] {
  background: #e9e5dc;
}
.cid-u0U5bdkL9L .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-u0U5bdkL9L .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-u0U5bdkL9L .card-wrapper {
  display: flex;
  border-radius: 4px;
  background: #fafafa;
}
.cid-u0U5bdkL9L .card-wrapper:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .cid-u0U5bdkL9L .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u0U5bdkL9L .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-u0U5bdkL9L .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #6592e6;
}
