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-u5GR2XMwtL {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u5GR2XMwtL nav.navbar {
  position: fixed;
}
.cid-u5GR2XMwtL .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-u5GR2XMwtL .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u5GR2XMwtL .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u5GR2XMwtL .dropdown-item:hover,
.cid-u5GR2XMwtL .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-u5GR2XMwtL .dropdown-item:hover span {
  color: white;
}
.cid-u5GR2XMwtL .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u5GR2XMwtL .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u5GR2XMwtL .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u5GR2XMwtL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u5GR2XMwtL .nav-link {
  position: relative;
}
.cid-u5GR2XMwtL .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u5GR2XMwtL .container {
    flex-wrap: nowrap;
  }
}
.cid-u5GR2XMwtL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u5GR2XMwtL .dropdown-menu,
.cid-u5GR2XMwtL .navbar.opened {
  background: #ffffff !important;
}
.cid-u5GR2XMwtL .nav-item:focus,
.cid-u5GR2XMwtL .nav-link:focus {
  outline: none;
}
.cid-u5GR2XMwtL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u5GR2XMwtL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u5GR2XMwtL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u5GR2XMwtL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u5GR2XMwtL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u5GR2XMwtL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u5GR2XMwtL .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-u5GR2XMwtL .navbar.opened {
  transition: all 0.3s;
}
.cid-u5GR2XMwtL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u5GR2XMwtL .navbar .navbar-logo img {
  width: auto;
}
.cid-u5GR2XMwtL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u5GR2XMwtL .navbar.collapsed {
  justify-content: center;
}
.cid-u5GR2XMwtL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u5GR2XMwtL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u5GR2XMwtL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u5GR2XMwtL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u5GR2XMwtL .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-u5GR2XMwtL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u5GR2XMwtL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u5GR2XMwtL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u5GR2XMwtL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u5GR2XMwtL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u5GR2XMwtL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u5GR2XMwtL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u5GR2XMwtL .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-u5GR2XMwtL .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u5GR2XMwtL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u5GR2XMwtL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u5GR2XMwtL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u5GR2XMwtL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u5GR2XMwtL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u5GR2XMwtL .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u5GR2XMwtL .navbar.navbar-short {
  min-height: 60px;
}
.cid-u5GR2XMwtL .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u5GR2XMwtL .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u5GR2XMwtL .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u5GR2XMwtL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u5GR2XMwtL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u5GR2XMwtL .dropdown-item.active,
.cid-u5GR2XMwtL .dropdown-item:active {
  background-color: transparent;
}
.cid-u5GR2XMwtL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u5GR2XMwtL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u5GR2XMwtL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u5GR2XMwtL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u5GR2XMwtL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u5GR2XMwtL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u5GR2XMwtL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u5GR2XMwtL .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u5GR2XMwtL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u5GR2XMwtL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u5GR2XMwtL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u5GR2XMwtL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u5GR2XMwtL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u5GR2XMwtL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u5GR2XMwtL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u5GR2XMwtL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u5GR2XMwtL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u5GR2XMwtL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u5GR2XMwtL .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u5GR2XMwtL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u5GR2XMwtL .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-u5GR2XMwtL .navbar {
    height: 70px;
  }
  .cid-u5GR2XMwtL .navbar.opened {
    height: auto;
  }
  .cid-u5GR2XMwtL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u5GSsefGVQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u5GThtIKBc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u5GThk2fJJ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u5GTgHen1u {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u5GTgAI1VV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u5GTgrVhay {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u5GTgid9gm {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u5GUTVMDK2 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u5GUUArlEr {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u5GUTdEPFi {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u5GVYM0WhS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-u5GVYM0WhS .mbr-text {
  color: #fafafa;
}
.cid-u5GVYM0WhS .mbr-section-subtitle {
  color: #fafafa;
}
.cid-u5GWuoFtK7 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-u5GWuoFtK7 .media-container-row .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-u5GWXlQg5t {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u5GWXlQg5t nav.navbar {
  position: fixed;
}
.cid-u5GWXlQg5t .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-u5GWXlQg5t .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u5GWXlQg5t .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u5GWXlQg5t .dropdown-item:hover,
.cid-u5GWXlQg5t .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-u5GWXlQg5t .dropdown-item:hover span {
  color: white;
}
.cid-u5GWXlQg5t .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u5GWXlQg5t .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u5GWXlQg5t .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u5GWXlQg5t .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u5GWXlQg5t .nav-link {
  position: relative;
}
.cid-u5GWXlQg5t .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u5GWXlQg5t .container {
    flex-wrap: nowrap;
  }
}
.cid-u5GWXlQg5t .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u5GWXlQg5t .dropdown-menu,
.cid-u5GWXlQg5t .navbar.opened {
  background: #ffffff !important;
}
.cid-u5GWXlQg5t .nav-item:focus,
.cid-u5GWXlQg5t .nav-link:focus {
  outline: none;
}
.cid-u5GWXlQg5t .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u5GWXlQg5t .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u5GWXlQg5t .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u5GWXlQg5t .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u5GWXlQg5t .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u5GWXlQg5t .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u5GWXlQg5t .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-u5GWXlQg5t .navbar.opened {
  transition: all 0.3s;
}
.cid-u5GWXlQg5t .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u5GWXlQg5t .navbar .navbar-logo img {
  width: auto;
}
.cid-u5GWXlQg5t .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u5GWXlQg5t .navbar.collapsed {
  justify-content: center;
}
.cid-u5GWXlQg5t .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u5GWXlQg5t .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u5GWXlQg5t .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u5GWXlQg5t .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u5GWXlQg5t .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-u5GWXlQg5t .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u5GWXlQg5t .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u5GWXlQg5t .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u5GWXlQg5t .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u5GWXlQg5t .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u5GWXlQg5t .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u5GWXlQg5t .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u5GWXlQg5t .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-u5GWXlQg5t .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u5GWXlQg5t .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u5GWXlQg5t .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u5GWXlQg5t .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u5GWXlQg5t .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u5GWXlQg5t .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u5GWXlQg5t .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u5GWXlQg5t .navbar.navbar-short {
  min-height: 60px;
}
.cid-u5GWXlQg5t .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u5GWXlQg5t .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u5GWXlQg5t .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u5GWXlQg5t .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u5GWXlQg5t .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u5GWXlQg5t .dropdown-item.active,
.cid-u5GWXlQg5t .dropdown-item:active {
  background-color: transparent;
}
.cid-u5GWXlQg5t .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u5GWXlQg5t .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u5GWXlQg5t .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u5GWXlQg5t .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u5GWXlQg5t .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u5GWXlQg5t .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u5GWXlQg5t ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u5GWXlQg5t .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u5GWXlQg5t button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u5GWXlQg5t button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u5GWXlQg5t button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u5GWXlQg5t button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u5GWXlQg5t button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u5GWXlQg5t button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u5GWXlQg5t nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u5GWXlQg5t nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u5GWXlQg5t nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u5GWXlQg5t nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u5GWXlQg5t .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u5GWXlQg5t a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u5GWXlQg5t .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-u5GWXlQg5t .navbar {
    height: 70px;
  }
  .cid-u5GWXlQg5t .navbar.opened {
    height: auto;
  }
  .cid-u5GWXlQg5t .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u5GWXn501t {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u5GWXnk68N {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u5GWXmc7QN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u5GWXmjFZT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u5GWXms2hM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u5GWXmAh4b {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u5GWXmIesi {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u5GWXmPrMP {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u5GWXnscqo {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-u5GWXnscqo .mbr-text {
  color: #fafafa;
}
.cid-u5GWXnscqo .mbr-section-subtitle {
  color: #fafafa;
}
.cid-u5GWXnAGZN {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-u5GWXnAGZN .media-container-row .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-u5GZJcuTZD {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u5GZJcuTZD nav.navbar {
  position: fixed;
}
.cid-u5GZJcuTZD .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-u5GZJcuTZD .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u5GZJcuTZD .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u5GZJcuTZD .dropdown-item:hover,
.cid-u5GZJcuTZD .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-u5GZJcuTZD .dropdown-item:hover span {
  color: white;
}
.cid-u5GZJcuTZD .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u5GZJcuTZD .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u5GZJcuTZD .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u5GZJcuTZD .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u5GZJcuTZD .nav-link {
  position: relative;
}
.cid-u5GZJcuTZD .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u5GZJcuTZD .container {
    flex-wrap: nowrap;
  }
}
.cid-u5GZJcuTZD .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u5GZJcuTZD .dropdown-menu,
.cid-u5GZJcuTZD .navbar.opened {
  background: #ffffff !important;
}
.cid-u5GZJcuTZD .nav-item:focus,
.cid-u5GZJcuTZD .nav-link:focus {
  outline: none;
}
.cid-u5GZJcuTZD .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u5GZJcuTZD .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u5GZJcuTZD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u5GZJcuTZD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u5GZJcuTZD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u5GZJcuTZD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u5GZJcuTZD .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-u5GZJcuTZD .navbar.opened {
  transition: all 0.3s;
}
.cid-u5GZJcuTZD .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u5GZJcuTZD .navbar .navbar-logo img {
  width: auto;
}
.cid-u5GZJcuTZD .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u5GZJcuTZD .navbar.collapsed {
  justify-content: center;
}
.cid-u5GZJcuTZD .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u5GZJcuTZD .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u5GZJcuTZD .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u5GZJcuTZD .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u5GZJcuTZD .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-u5GZJcuTZD .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u5GZJcuTZD .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u5GZJcuTZD .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u5GZJcuTZD .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u5GZJcuTZD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u5GZJcuTZD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u5GZJcuTZD .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u5GZJcuTZD .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-u5GZJcuTZD .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u5GZJcuTZD .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u5GZJcuTZD .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u5GZJcuTZD .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u5GZJcuTZD .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u5GZJcuTZD .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u5GZJcuTZD .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u5GZJcuTZD .navbar.navbar-short {
  min-height: 60px;
}
.cid-u5GZJcuTZD .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u5GZJcuTZD .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u5GZJcuTZD .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u5GZJcuTZD .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u5GZJcuTZD .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u5GZJcuTZD .dropdown-item.active,
.cid-u5GZJcuTZD .dropdown-item:active {
  background-color: transparent;
}
.cid-u5GZJcuTZD .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u5GZJcuTZD .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u5GZJcuTZD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u5GZJcuTZD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u5GZJcuTZD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u5GZJcuTZD .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u5GZJcuTZD ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u5GZJcuTZD .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u5GZJcuTZD button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u5GZJcuTZD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u5GZJcuTZD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u5GZJcuTZD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u5GZJcuTZD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u5GZJcuTZD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u5GZJcuTZD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u5GZJcuTZD nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u5GZJcuTZD nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u5GZJcuTZD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u5GZJcuTZD .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u5GZJcuTZD a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u5GZJcuTZD .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-u5GZJcuTZD .navbar {
    height: 70px;
  }
  .cid-u5GZJcuTZD .navbar.opened {
    height: auto;
  }
  .cid-u5GZJcuTZD .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u5GZJcKESH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u5GZJcSRzG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u5GZJd0ORt {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u5GZJeoTyf {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-u5GZJeoTyf .mbr-text {
  color: #fafafa;
}
.cid-u5GZJeoTyf .mbr-section-subtitle {
  color: #fafafa;
}
.cid-u5GZJevVRj {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-u5GZJevVRj .media-container-row .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-u5H1zyOD74 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u5H1zyOD74 nav.navbar {
  position: fixed;
}
.cid-u5H1zyOD74 .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-u5H1zyOD74 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u5H1zyOD74 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u5H1zyOD74 .dropdown-item:hover,
.cid-u5H1zyOD74 .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-u5H1zyOD74 .dropdown-item:hover span {
  color: white;
}
.cid-u5H1zyOD74 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u5H1zyOD74 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u5H1zyOD74 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u5H1zyOD74 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u5H1zyOD74 .nav-link {
  position: relative;
}
.cid-u5H1zyOD74 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u5H1zyOD74 .container {
    flex-wrap: nowrap;
  }
}
.cid-u5H1zyOD74 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u5H1zyOD74 .dropdown-menu,
.cid-u5H1zyOD74 .navbar.opened {
  background: #ffffff !important;
}
.cid-u5H1zyOD74 .nav-item:focus,
.cid-u5H1zyOD74 .nav-link:focus {
  outline: none;
}
.cid-u5H1zyOD74 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u5H1zyOD74 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u5H1zyOD74 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u5H1zyOD74 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u5H1zyOD74 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u5H1zyOD74 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u5H1zyOD74 .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-u5H1zyOD74 .navbar.opened {
  transition: all 0.3s;
}
.cid-u5H1zyOD74 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u5H1zyOD74 .navbar .navbar-logo img {
  width: auto;
}
.cid-u5H1zyOD74 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u5H1zyOD74 .navbar.collapsed {
  justify-content: center;
}
.cid-u5H1zyOD74 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u5H1zyOD74 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u5H1zyOD74 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u5H1zyOD74 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u5H1zyOD74 .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-u5H1zyOD74 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u5H1zyOD74 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u5H1zyOD74 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u5H1zyOD74 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u5H1zyOD74 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u5H1zyOD74 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u5H1zyOD74 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u5H1zyOD74 .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-u5H1zyOD74 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u5H1zyOD74 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u5H1zyOD74 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u5H1zyOD74 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u5H1zyOD74 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u5H1zyOD74 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u5H1zyOD74 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u5H1zyOD74 .navbar.navbar-short {
  min-height: 60px;
}
.cid-u5H1zyOD74 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u5H1zyOD74 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u5H1zyOD74 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u5H1zyOD74 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u5H1zyOD74 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u5H1zyOD74 .dropdown-item.active,
.cid-u5H1zyOD74 .dropdown-item:active {
  background-color: transparent;
}
.cid-u5H1zyOD74 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u5H1zyOD74 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u5H1zyOD74 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u5H1zyOD74 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u5H1zyOD74 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u5H1zyOD74 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u5H1zyOD74 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u5H1zyOD74 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u5H1zyOD74 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u5H1zyOD74 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u5H1zyOD74 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u5H1zyOD74 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u5H1zyOD74 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u5H1zyOD74 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u5H1zyOD74 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u5H1zyOD74 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u5H1zyOD74 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u5H1zyOD74 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u5H1zyOD74 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u5H1zyOD74 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u5H1zyOD74 .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-u5H1zyOD74 .navbar {
    height: 70px;
  }
  .cid-u5H1zyOD74 .navbar.opened {
    height: auto;
  }
  .cid-u5H1zyOD74 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u5H1zz4EdB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u5H1zzaq1R {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u5H1zzgH8W {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u5H1zzoBZU {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-u5H1zzoBZU .mbr-text {
  color: #fafafa;
}
.cid-u5H1zzoBZU .mbr-section-subtitle {
  color: #fafafa;
}
.cid-u5H1zzvfDL {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-u5H1zzvfDL .media-container-row .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-u5H3aWTJ9m {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u5H3aWTJ9m nav.navbar {
  position: fixed;
}
.cid-u5H3aWTJ9m .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-u5H3aWTJ9m .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u5H3aWTJ9m .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u5H3aWTJ9m .dropdown-item:hover,
.cid-u5H3aWTJ9m .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-u5H3aWTJ9m .dropdown-item:hover span {
  color: white;
}
.cid-u5H3aWTJ9m .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u5H3aWTJ9m .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u5H3aWTJ9m .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u5H3aWTJ9m .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u5H3aWTJ9m .nav-link {
  position: relative;
}
.cid-u5H3aWTJ9m .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u5H3aWTJ9m .container {
    flex-wrap: nowrap;
  }
}
.cid-u5H3aWTJ9m .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u5H3aWTJ9m .dropdown-menu,
.cid-u5H3aWTJ9m .navbar.opened {
  background: #ffffff !important;
}
.cid-u5H3aWTJ9m .nav-item:focus,
.cid-u5H3aWTJ9m .nav-link:focus {
  outline: none;
}
.cid-u5H3aWTJ9m .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u5H3aWTJ9m .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u5H3aWTJ9m .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u5H3aWTJ9m .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u5H3aWTJ9m .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u5H3aWTJ9m .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u5H3aWTJ9m .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-u5H3aWTJ9m .navbar.opened {
  transition: all 0.3s;
}
.cid-u5H3aWTJ9m .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u5H3aWTJ9m .navbar .navbar-logo img {
  width: auto;
}
.cid-u5H3aWTJ9m .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u5H3aWTJ9m .navbar.collapsed {
  justify-content: center;
}
.cid-u5H3aWTJ9m .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u5H3aWTJ9m .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u5H3aWTJ9m .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u5H3aWTJ9m .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u5H3aWTJ9m .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-u5H3aWTJ9m .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u5H3aWTJ9m .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u5H3aWTJ9m .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u5H3aWTJ9m .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u5H3aWTJ9m .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u5H3aWTJ9m .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u5H3aWTJ9m .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u5H3aWTJ9m .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-u5H3aWTJ9m .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u5H3aWTJ9m .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u5H3aWTJ9m .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u5H3aWTJ9m .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u5H3aWTJ9m .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u5H3aWTJ9m .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u5H3aWTJ9m .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u5H3aWTJ9m .navbar.navbar-short {
  min-height: 60px;
}
.cid-u5H3aWTJ9m .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u5H3aWTJ9m .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u5H3aWTJ9m .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u5H3aWTJ9m .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u5H3aWTJ9m .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u5H3aWTJ9m .dropdown-item.active,
.cid-u5H3aWTJ9m .dropdown-item:active {
  background-color: transparent;
}
.cid-u5H3aWTJ9m .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u5H3aWTJ9m .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u5H3aWTJ9m .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u5H3aWTJ9m .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u5H3aWTJ9m .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u5H3aWTJ9m .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u5H3aWTJ9m ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u5H3aWTJ9m .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u5H3aWTJ9m button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u5H3aWTJ9m button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u5H3aWTJ9m button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u5H3aWTJ9m button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u5H3aWTJ9m button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u5H3aWTJ9m button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u5H3aWTJ9m nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u5H3aWTJ9m nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u5H3aWTJ9m nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u5H3aWTJ9m nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u5H3aWTJ9m .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u5H3aWTJ9m a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u5H3aWTJ9m .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-u5H3aWTJ9m .navbar {
    height: 70px;
  }
  .cid-u5H3aWTJ9m .navbar.opened {
    height: auto;
  }
  .cid-u5H3aWTJ9m .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u5H3aX8PZy {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u5H3aXFo1m {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u5H3aXM5Jr {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u5H3aXZUsz {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u5H3aXfA1l {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u5H3aXmA5x {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u5H3aXsEfW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u5H3aXymeS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u5H3aXTdGY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u5H3aY82By {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u5H3aYfLIZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-u5H3aYfLIZ .mbr-text {
  color: #fafafa;
}
.cid-u5H3aYfLIZ .mbr-section-subtitle {
  color: #fafafa;
}
.cid-u5H3aYmCOj {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-u5H3aYmCOj .media-container-row .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-u5H3aWTJ9m {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u5H3aWTJ9m nav.navbar {
  position: fixed;
}
.cid-u5H3aWTJ9m .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-u5H3aWTJ9m .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u5H3aWTJ9m .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u5H3aWTJ9m .dropdown-item:hover,
.cid-u5H3aWTJ9m .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-u5H3aWTJ9m .dropdown-item:hover span {
  color: white;
}
.cid-u5H3aWTJ9m .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u5H3aWTJ9m .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u5H3aWTJ9m .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u5H3aWTJ9m .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u5H3aWTJ9m .nav-link {
  position: relative;
}
.cid-u5H3aWTJ9m .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u5H3aWTJ9m .container {
    flex-wrap: nowrap;
  }
}
.cid-u5H3aWTJ9m .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u5H3aWTJ9m .dropdown-menu,
.cid-u5H3aWTJ9m .navbar.opened {
  background: #ffffff !important;
}
.cid-u5H3aWTJ9m .nav-item:focus,
.cid-u5H3aWTJ9m .nav-link:focus {
  outline: none;
}
.cid-u5H3aWTJ9m .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u5H3aWTJ9m .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u5H3aWTJ9m .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u5H3aWTJ9m .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u5H3aWTJ9m .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u5H3aWTJ9m .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u5H3aWTJ9m .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-u5H3aWTJ9m .navbar.opened {
  transition: all 0.3s;
}
.cid-u5H3aWTJ9m .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u5H3aWTJ9m .navbar .navbar-logo img {
  width: auto;
}
.cid-u5H3aWTJ9m .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u5H3aWTJ9m .navbar.collapsed {
  justify-content: center;
}
.cid-u5H3aWTJ9m .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u5H3aWTJ9m .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u5H3aWTJ9m .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u5H3aWTJ9m .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u5H3aWTJ9m .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-u5H3aWTJ9m .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u5H3aWTJ9m .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u5H3aWTJ9m .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u5H3aWTJ9m .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u5H3aWTJ9m .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u5H3aWTJ9m .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u5H3aWTJ9m .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u5H3aWTJ9m .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-u5H3aWTJ9m .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u5H3aWTJ9m .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u5H3aWTJ9m .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u5H3aWTJ9m .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u5H3aWTJ9m .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u5H3aWTJ9m .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u5H3aWTJ9m .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u5H3aWTJ9m .navbar.navbar-short {
  min-height: 60px;
}
.cid-u5H3aWTJ9m .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u5H3aWTJ9m .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u5H3aWTJ9m .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u5H3aWTJ9m .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u5H3aWTJ9m .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u5H3aWTJ9m .dropdown-item.active,
.cid-u5H3aWTJ9m .dropdown-item:active {
  background-color: transparent;
}
.cid-u5H3aWTJ9m .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u5H3aWTJ9m .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u5H3aWTJ9m .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u5H3aWTJ9m .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u5H3aWTJ9m .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u5H3aWTJ9m .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u5H3aWTJ9m ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u5H3aWTJ9m .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u5H3aWTJ9m button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u5H3aWTJ9m button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u5H3aWTJ9m button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u5H3aWTJ9m button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u5H3aWTJ9m button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u5H3aWTJ9m button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u5H3aWTJ9m nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u5H3aWTJ9m nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u5H3aWTJ9m nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u5H3aWTJ9m nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u5H3aWTJ9m .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u5H3aWTJ9m a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u5H3aWTJ9m .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-u5H3aWTJ9m .navbar {
    height: 70px;
  }
  .cid-u5H3aWTJ9m .navbar.opened {
    height: auto;
  }
  .cid-u5H3aWTJ9m .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u5H5Ikaha1 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u5H5Ikaha1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u5H5Ikaha1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u5H5IE5dc6 {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u5H5RY0EJp {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-u5H5RY0EJp .mbr-text {
  color: #fafafa;
}
.cid-u5H5RY0EJp .mbr-section-subtitle {
  color: #fafafa;
}
.cid-u5H3aYmCOj {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-u5H3aYmCOj .media-container-row .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-u5H6SByqww {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u5H6SByqww nav.navbar {
  position: fixed;
}
.cid-u5H6SByqww .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-u5H6SByqww .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u5H6SByqww .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u5H6SByqww .dropdown-item:hover,
.cid-u5H6SByqww .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-u5H6SByqww .dropdown-item:hover span {
  color: white;
}
.cid-u5H6SByqww .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u5H6SByqww .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u5H6SByqww .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u5H6SByqww .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u5H6SByqww .nav-link {
  position: relative;
}
.cid-u5H6SByqww .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u5H6SByqww .container {
    flex-wrap: nowrap;
  }
}
.cid-u5H6SByqww .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u5H6SByqww .dropdown-menu,
.cid-u5H6SByqww .navbar.opened {
  background: #ffffff !important;
}
.cid-u5H6SByqww .nav-item:focus,
.cid-u5H6SByqww .nav-link:focus {
  outline: none;
}
.cid-u5H6SByqww .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u5H6SByqww .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u5H6SByqww .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u5H6SByqww .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u5H6SByqww .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u5H6SByqww .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u5H6SByqww .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-u5H6SByqww .navbar.opened {
  transition: all 0.3s;
}
.cid-u5H6SByqww .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u5H6SByqww .navbar .navbar-logo img {
  width: auto;
}
.cid-u5H6SByqww .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u5H6SByqww .navbar.collapsed {
  justify-content: center;
}
.cid-u5H6SByqww .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u5H6SByqww .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u5H6SByqww .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u5H6SByqww .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u5H6SByqww .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-u5H6SByqww .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u5H6SByqww .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u5H6SByqww .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u5H6SByqww .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u5H6SByqww .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u5H6SByqww .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u5H6SByqww .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u5H6SByqww .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-u5H6SByqww .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u5H6SByqww .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u5H6SByqww .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u5H6SByqww .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u5H6SByqww .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u5H6SByqww .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u5H6SByqww .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u5H6SByqww .navbar.navbar-short {
  min-height: 60px;
}
.cid-u5H6SByqww .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u5H6SByqww .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u5H6SByqww .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u5H6SByqww .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u5H6SByqww .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u5H6SByqww .dropdown-item.active,
.cid-u5H6SByqww .dropdown-item:active {
  background-color: transparent;
}
.cid-u5H6SByqww .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u5H6SByqww .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u5H6SByqww .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u5H6SByqww .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u5H6SByqww .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u5H6SByqww .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u5H6SByqww ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u5H6SByqww .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u5H6SByqww button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u5H6SByqww button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u5H6SByqww button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u5H6SByqww button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u5H6SByqww button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u5H6SByqww button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u5H6SByqww nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u5H6SByqww nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u5H6SByqww nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u5H6SByqww nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u5H6SByqww .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u5H6SByqww a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u5H6SByqww .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-u5H6SByqww .navbar {
    height: 70px;
  }
  .cid-u5H6SByqww .navbar.opened {
    height: auto;
  }
  .cid-u5H6SByqww .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u5H6SBSsou {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u5H6SBSsou .mbr-fallback-image.disabled {
  display: none;
}
.cid-u5H6SBSsou .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u5H6SC59mD {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u5H6SCeWs2 {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-u5H6SCeWs2 .mbr-text {
  color: #fafafa;
}
.cid-u5H6SCeWs2 .mbr-section-subtitle {
  color: #fafafa;
}
.cid-u5H6SCmMcO {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #232323;
  overflow: hidden;
}
.cid-u5H6SCmMcO .media-container-row .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-u5H7EensYg {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u5H7EensYg nav.navbar {
  position: fixed;
}
.cid-u5H7EensYg .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-u5H7EensYg .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u5H7EensYg .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u5H7EensYg .dropdown-item:hover,
.cid-u5H7EensYg .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-u5H7EensYg .dropdown-item:hover span {
  color: white;
}
.cid-u5H7EensYg .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u5H7EensYg .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u5H7EensYg .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u5H7EensYg .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u5H7EensYg .nav-link {
  position: relative;
}
.cid-u5H7EensYg .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u5H7EensYg .container {
    flex-wrap: nowrap;
  }
}
.cid-u5H7EensYg .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u5H7EensYg .dropdown-menu,
.cid-u5H7EensYg .navbar.opened {
  background: #ffffff !important;
}
.cid-u5H7EensYg .nav-item:focus,
.cid-u5H7EensYg .nav-link:focus {
  outline: none;
}
.cid-u5H7EensYg .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u5H7EensYg .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u5H7EensYg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u5H7EensYg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u5H7EensYg .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u5H7EensYg .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u5H7EensYg .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-u5H7EensYg .navbar.opened {
  transition: all 0.3s;
}
.cid-u5H7EensYg .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u5H7EensYg .navbar .navbar-logo img {
  width: auto;
}
.cid-u5H7EensYg .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u5H7EensYg .navbar.collapsed {
  justify-content: center;
}
.cid-u5H7EensYg .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u5H7EensYg .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u5H7EensYg .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u5H7EensYg .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u5H7EensYg .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-u5H7EensYg .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u5H7EensYg .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u5H7EensYg .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u5H7EensYg .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u5H7EensYg .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u5H7EensYg .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u5H7EensYg .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u5H7EensYg .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-u5H7EensYg .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u5H7EensYg .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u5H7EensYg .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u5H7EensYg .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u5H7EensYg .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u5H7EensYg .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u5H7EensYg .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u5H7EensYg .navbar.navbar-short {
  min-height: 60px;
}
.cid-u5H7EensYg .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u5H7EensYg .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u5H7EensYg .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u5H7EensYg .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u5H7EensYg .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u5H7EensYg .dropdown-item.active,
.cid-u5H7EensYg .dropdown-item:active {
  background-color: transparent;
}
.cid-u5H7EensYg .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u5H7EensYg .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u5H7EensYg .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u5H7EensYg .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u5H7EensYg .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u5H7EensYg .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u5H7EensYg ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u5H7EensYg .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u5H7EensYg button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u5H7EensYg button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u5H7EensYg button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u5H7EensYg button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u5H7EensYg button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u5H7EensYg button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u5H7EensYg nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u5H7EensYg nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u5H7EensYg nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u5H7EensYg nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u5H7EensYg .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u5H7EensYg a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u5H7EensYg .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-u5H7EensYg .navbar {
    height: 70px;
  }
  .cid-u5H7EensYg .navbar.opened {
    height: auto;
  }
  .cid-u5H7EensYg .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u5H7EeCJgC {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u5H7EeCJgC .mbr-fallback-image.disabled {
  display: none;
}
.cid-u5H7EeCJgC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u5H7EeLw2b {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u5H7EeRTnh {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-u5H7EeRTnh .mbr-text {
  color: #fafafa;
}
.cid-u5H7EeRTnh .mbr-section-subtitle {
  color: #fafafa;
}
.cid-u5H7EeXOKd {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #232323;
  overflow: hidden;
}
.cid-u5H7EeXOKd .media-container-row .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-u5H7YjcpIt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u5H7YjcpIt nav.navbar {
  position: fixed;
}
.cid-u5H7YjcpIt .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-u5H7YjcpIt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u5H7YjcpIt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u5H7YjcpIt .dropdown-item:hover,
.cid-u5H7YjcpIt .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-u5H7YjcpIt .dropdown-item:hover span {
  color: white;
}
.cid-u5H7YjcpIt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u5H7YjcpIt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u5H7YjcpIt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u5H7YjcpIt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u5H7YjcpIt .nav-link {
  position: relative;
}
.cid-u5H7YjcpIt .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u5H7YjcpIt .container {
    flex-wrap: nowrap;
  }
}
.cid-u5H7YjcpIt .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u5H7YjcpIt .dropdown-menu,
.cid-u5H7YjcpIt .navbar.opened {
  background: #ffffff !important;
}
.cid-u5H7YjcpIt .nav-item:focus,
.cid-u5H7YjcpIt .nav-link:focus {
  outline: none;
}
.cid-u5H7YjcpIt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u5H7YjcpIt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u5H7YjcpIt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u5H7YjcpIt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u5H7YjcpIt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u5H7YjcpIt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u5H7YjcpIt .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-u5H7YjcpIt .navbar.opened {
  transition: all 0.3s;
}
.cid-u5H7YjcpIt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u5H7YjcpIt .navbar .navbar-logo img {
  width: auto;
}
.cid-u5H7YjcpIt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u5H7YjcpIt .navbar.collapsed {
  justify-content: center;
}
.cid-u5H7YjcpIt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u5H7YjcpIt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u5H7YjcpIt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u5H7YjcpIt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u5H7YjcpIt .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-u5H7YjcpIt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u5H7YjcpIt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u5H7YjcpIt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u5H7YjcpIt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u5H7YjcpIt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u5H7YjcpIt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u5H7YjcpIt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u5H7YjcpIt .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-u5H7YjcpIt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u5H7YjcpIt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u5H7YjcpIt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u5H7YjcpIt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u5H7YjcpIt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u5H7YjcpIt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u5H7YjcpIt .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u5H7YjcpIt .navbar.navbar-short {
  min-height: 60px;
}
.cid-u5H7YjcpIt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u5H7YjcpIt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u5H7YjcpIt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u5H7YjcpIt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u5H7YjcpIt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u5H7YjcpIt .dropdown-item.active,
.cid-u5H7YjcpIt .dropdown-item:active {
  background-color: transparent;
}
.cid-u5H7YjcpIt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u5H7YjcpIt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u5H7YjcpIt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u5H7YjcpIt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u5H7YjcpIt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u5H7YjcpIt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u5H7YjcpIt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u5H7YjcpIt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u5H7YjcpIt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u5H7YjcpIt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u5H7YjcpIt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u5H7YjcpIt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u5H7YjcpIt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u5H7YjcpIt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u5H7YjcpIt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u5H7YjcpIt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u5H7YjcpIt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u5H7YjcpIt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u5H7YjcpIt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u5H7YjcpIt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u5H7YjcpIt .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-u5H7YjcpIt .navbar {
    height: 70px;
  }
  .cid-u5H7YjcpIt .navbar.opened {
    height: auto;
  }
  .cid-u5H7YjcpIt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u5H7YjtFiT {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u5H7YjtFiT .mbr-fallback-image.disabled {
  display: none;
}
.cid-u5H7YjtFiT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u5H7YjEqmf {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u5H7YjKCGI {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-u5H7YjKCGI .mbr-text {
  color: #fafafa;
}
.cid-u5H7YjKCGI .mbr-section-subtitle {
  color: #fafafa;
}
.cid-u5H7YjQ8o9 {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #232323;
  overflow: hidden;
}
.cid-u5H7YjQ8o9 .media-container-row .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-u5H8AbxIU1 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u5H8AbxIU1 nav.navbar {
  position: fixed;
}
.cid-u5H8AbxIU1 .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-u5H8AbxIU1 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u5H8AbxIU1 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u5H8AbxIU1 .dropdown-item:hover,
.cid-u5H8AbxIU1 .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-u5H8AbxIU1 .dropdown-item:hover span {
  color: white;
}
.cid-u5H8AbxIU1 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u5H8AbxIU1 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u5H8AbxIU1 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u5H8AbxIU1 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u5H8AbxIU1 .nav-link {
  position: relative;
}
.cid-u5H8AbxIU1 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u5H8AbxIU1 .container {
    flex-wrap: nowrap;
  }
}
.cid-u5H8AbxIU1 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u5H8AbxIU1 .dropdown-menu,
.cid-u5H8AbxIU1 .navbar.opened {
  background: #ffffff !important;
}
.cid-u5H8AbxIU1 .nav-item:focus,
.cid-u5H8AbxIU1 .nav-link:focus {
  outline: none;
}
.cid-u5H8AbxIU1 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u5H8AbxIU1 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u5H8AbxIU1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u5H8AbxIU1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u5H8AbxIU1 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u5H8AbxIU1 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u5H8AbxIU1 .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-u5H8AbxIU1 .navbar.opened {
  transition: all 0.3s;
}
.cid-u5H8AbxIU1 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u5H8AbxIU1 .navbar .navbar-logo img {
  width: auto;
}
.cid-u5H8AbxIU1 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u5H8AbxIU1 .navbar.collapsed {
  justify-content: center;
}
.cid-u5H8AbxIU1 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u5H8AbxIU1 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u5H8AbxIU1 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u5H8AbxIU1 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u5H8AbxIU1 .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-u5H8AbxIU1 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u5H8AbxIU1 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u5H8AbxIU1 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u5H8AbxIU1 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u5H8AbxIU1 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u5H8AbxIU1 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u5H8AbxIU1 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u5H8AbxIU1 .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-u5H8AbxIU1 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u5H8AbxIU1 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u5H8AbxIU1 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u5H8AbxIU1 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u5H8AbxIU1 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u5H8AbxIU1 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u5H8AbxIU1 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u5H8AbxIU1 .navbar.navbar-short {
  min-height: 60px;
}
.cid-u5H8AbxIU1 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u5H8AbxIU1 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u5H8AbxIU1 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u5H8AbxIU1 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u5H8AbxIU1 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u5H8AbxIU1 .dropdown-item.active,
.cid-u5H8AbxIU1 .dropdown-item:active {
  background-color: transparent;
}
.cid-u5H8AbxIU1 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u5H8AbxIU1 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u5H8AbxIU1 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u5H8AbxIU1 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u5H8AbxIU1 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u5H8AbxIU1 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u5H8AbxIU1 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u5H8AbxIU1 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u5H8AbxIU1 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u5H8AbxIU1 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u5H8AbxIU1 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u5H8AbxIU1 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u5H8AbxIU1 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u5H8AbxIU1 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u5H8AbxIU1 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u5H8AbxIU1 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u5H8AbxIU1 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u5H8AbxIU1 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u5H8AbxIU1 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u5H8AbxIU1 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u5H8AbxIU1 .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-u5H8AbxIU1 .navbar {
    height: 70px;
  }
  .cid-u5H8AbxIU1 .navbar.opened {
    height: auto;
  }
  .cid-u5H8AbxIU1 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u5H8AbMKLC {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u5H8AbMKLC .mbr-fallback-image.disabled {
  display: none;
}
.cid-u5H8AbMKLC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u5H8AbWUWJ {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u5H8Ac2F4D {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-u5H8Ac2F4D .mbr-text {
  color: #fafafa;
}
.cid-u5H8Ac2F4D .mbr-section-subtitle {
  color: #fafafa;
}
.cid-u5H8Ac9sab {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #232323;
  overflow: hidden;
}
.cid-u5H8Ac9sab .media-container-row .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-u5H9GsSjJd {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u5H9GsSjJd nav.navbar {
  position: fixed;
}
.cid-u5H9GsSjJd .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-u5H9GsSjJd .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u5H9GsSjJd .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u5H9GsSjJd .dropdown-item:hover,
.cid-u5H9GsSjJd .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-u5H9GsSjJd .dropdown-item:hover span {
  color: white;
}
.cid-u5H9GsSjJd .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u5H9GsSjJd .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u5H9GsSjJd .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u5H9GsSjJd .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u5H9GsSjJd .nav-link {
  position: relative;
}
.cid-u5H9GsSjJd .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u5H9GsSjJd .container {
    flex-wrap: nowrap;
  }
}
.cid-u5H9GsSjJd .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u5H9GsSjJd .dropdown-menu,
.cid-u5H9GsSjJd .navbar.opened {
  background: #ffffff !important;
}
.cid-u5H9GsSjJd .nav-item:focus,
.cid-u5H9GsSjJd .nav-link:focus {
  outline: none;
}
.cid-u5H9GsSjJd .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u5H9GsSjJd .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u5H9GsSjJd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u5H9GsSjJd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u5H9GsSjJd .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u5H9GsSjJd .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u5H9GsSjJd .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-u5H9GsSjJd .navbar.opened {
  transition: all 0.3s;
}
.cid-u5H9GsSjJd .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u5H9GsSjJd .navbar .navbar-logo img {
  width: auto;
}
.cid-u5H9GsSjJd .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u5H9GsSjJd .navbar.collapsed {
  justify-content: center;
}
.cid-u5H9GsSjJd .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u5H9GsSjJd .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u5H9GsSjJd .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u5H9GsSjJd .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u5H9GsSjJd .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-u5H9GsSjJd .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u5H9GsSjJd .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u5H9GsSjJd .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u5H9GsSjJd .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u5H9GsSjJd .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u5H9GsSjJd .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u5H9GsSjJd .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u5H9GsSjJd .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-u5H9GsSjJd .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u5H9GsSjJd .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u5H9GsSjJd .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u5H9GsSjJd .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u5H9GsSjJd .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u5H9GsSjJd .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u5H9GsSjJd .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u5H9GsSjJd .navbar.navbar-short {
  min-height: 60px;
}
.cid-u5H9GsSjJd .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u5H9GsSjJd .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u5H9GsSjJd .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u5H9GsSjJd .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u5H9GsSjJd .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u5H9GsSjJd .dropdown-item.active,
.cid-u5H9GsSjJd .dropdown-item:active {
  background-color: transparent;
}
.cid-u5H9GsSjJd .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u5H9GsSjJd .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u5H9GsSjJd .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u5H9GsSjJd .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u5H9GsSjJd .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u5H9GsSjJd .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u5H9GsSjJd ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u5H9GsSjJd .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u5H9GsSjJd button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u5H9GsSjJd button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u5H9GsSjJd button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u5H9GsSjJd button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u5H9GsSjJd button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u5H9GsSjJd button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u5H9GsSjJd nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u5H9GsSjJd nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u5H9GsSjJd nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u5H9GsSjJd nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u5H9GsSjJd .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u5H9GsSjJd a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u5H9GsSjJd .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-u5H9GsSjJd .navbar {
    height: 70px;
  }
  .cid-u5H9GsSjJd .navbar.opened {
    height: auto;
  }
  .cid-u5H9GsSjJd .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u5H9Gt8Fxp {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u5H9Gt8Fxp .mbr-fallback-image.disabled {
  display: none;
}
.cid-u5H9Gt8Fxp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u5H9Gtilqy {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u5H9Gtq2ik {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-u5H9Gtq2ik .mbr-text {
  color: #fafafa;
}
.cid-u5H9Gtq2ik .mbr-section-subtitle {
  color: #fafafa;
}
.cid-u5H9GtwXba {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #232323;
  overflow: hidden;
}
.cid-u5H9GtwXba .media-container-row .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-u62nQrW1kl {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u62nQrW1kl nav.navbar {
  position: fixed;
}
.cid-u62nQrW1kl .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-u62nQrW1kl .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u62nQrW1kl .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u62nQrW1kl .dropdown-item:hover,
.cid-u62nQrW1kl .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-u62nQrW1kl .dropdown-item:hover span {
  color: white;
}
.cid-u62nQrW1kl .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u62nQrW1kl .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u62nQrW1kl .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u62nQrW1kl .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u62nQrW1kl .nav-link {
  position: relative;
}
.cid-u62nQrW1kl .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u62nQrW1kl .container {
    flex-wrap: nowrap;
  }
}
.cid-u62nQrW1kl .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u62nQrW1kl .dropdown-menu,
.cid-u62nQrW1kl .navbar.opened {
  background: #ffffff !important;
}
.cid-u62nQrW1kl .nav-item:focus,
.cid-u62nQrW1kl .nav-link:focus {
  outline: none;
}
.cid-u62nQrW1kl .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u62nQrW1kl .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u62nQrW1kl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u62nQrW1kl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u62nQrW1kl .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u62nQrW1kl .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u62nQrW1kl .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-u62nQrW1kl .navbar.opened {
  transition: all 0.3s;
}
.cid-u62nQrW1kl .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u62nQrW1kl .navbar .navbar-logo img {
  width: auto;
}
.cid-u62nQrW1kl .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u62nQrW1kl .navbar.collapsed {
  justify-content: center;
}
.cid-u62nQrW1kl .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u62nQrW1kl .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u62nQrW1kl .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u62nQrW1kl .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u62nQrW1kl .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-u62nQrW1kl .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u62nQrW1kl .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u62nQrW1kl .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u62nQrW1kl .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u62nQrW1kl .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u62nQrW1kl .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u62nQrW1kl .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u62nQrW1kl .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-u62nQrW1kl .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u62nQrW1kl .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u62nQrW1kl .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u62nQrW1kl .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u62nQrW1kl .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u62nQrW1kl .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u62nQrW1kl .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u62nQrW1kl .navbar.navbar-short {
  min-height: 60px;
}
.cid-u62nQrW1kl .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u62nQrW1kl .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u62nQrW1kl .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u62nQrW1kl .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u62nQrW1kl .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u62nQrW1kl .dropdown-item.active,
.cid-u62nQrW1kl .dropdown-item:active {
  background-color: transparent;
}
.cid-u62nQrW1kl .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u62nQrW1kl .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u62nQrW1kl .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u62nQrW1kl .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u62nQrW1kl .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u62nQrW1kl .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u62nQrW1kl ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u62nQrW1kl .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u62nQrW1kl button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u62nQrW1kl button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u62nQrW1kl button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u62nQrW1kl button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u62nQrW1kl button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u62nQrW1kl button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u62nQrW1kl nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u62nQrW1kl nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u62nQrW1kl nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u62nQrW1kl nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u62nQrW1kl .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u62nQrW1kl a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u62nQrW1kl .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-u62nQrW1kl .navbar {
    height: 70px;
  }
  .cid-u62nQrW1kl .navbar.opened {
    height: auto;
  }
  .cid-u62nQrW1kl .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u62nQsaqfL {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u62nQsaqfL .mbr-fallback-image.disabled {
  display: none;
}
.cid-u62nQsaqfL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u62nQsj0PF {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u62nQsrAqE {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-u62nQsrAqE .mbr-text {
  color: #fafafa;
}
.cid-u62nQsrAqE .mbr-section-subtitle {
  color: #fafafa;
}
.cid-u62nQsx8h4 {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #232323;
  overflow: hidden;
}
.cid-u62nQsx8h4 .media-container-row .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-u62pjU3JnD {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u62pjU3JnD nav.navbar {
  position: fixed;
}
.cid-u62pjU3JnD .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-u62pjU3JnD .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u62pjU3JnD .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u62pjU3JnD .dropdown-item:hover,
.cid-u62pjU3JnD .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-u62pjU3JnD .dropdown-item:hover span {
  color: white;
}
.cid-u62pjU3JnD .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u62pjU3JnD .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u62pjU3JnD .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u62pjU3JnD .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u62pjU3JnD .nav-link {
  position: relative;
}
.cid-u62pjU3JnD .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u62pjU3JnD .container {
    flex-wrap: nowrap;
  }
}
.cid-u62pjU3JnD .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u62pjU3JnD .dropdown-menu,
.cid-u62pjU3JnD .navbar.opened {
  background: #ffffff !important;
}
.cid-u62pjU3JnD .nav-item:focus,
.cid-u62pjU3JnD .nav-link:focus {
  outline: none;
}
.cid-u62pjU3JnD .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u62pjU3JnD .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u62pjU3JnD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u62pjU3JnD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u62pjU3JnD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u62pjU3JnD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u62pjU3JnD .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-u62pjU3JnD .navbar.opened {
  transition: all 0.3s;
}
.cid-u62pjU3JnD .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u62pjU3JnD .navbar .navbar-logo img {
  width: auto;
}
.cid-u62pjU3JnD .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u62pjU3JnD .navbar.collapsed {
  justify-content: center;
}
.cid-u62pjU3JnD .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u62pjU3JnD .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u62pjU3JnD .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u62pjU3JnD .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u62pjU3JnD .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-u62pjU3JnD .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u62pjU3JnD .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u62pjU3JnD .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u62pjU3JnD .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u62pjU3JnD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u62pjU3JnD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u62pjU3JnD .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u62pjU3JnD .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-u62pjU3JnD .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u62pjU3JnD .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u62pjU3JnD .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u62pjU3JnD .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u62pjU3JnD .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u62pjU3JnD .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u62pjU3JnD .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u62pjU3JnD .navbar.navbar-short {
  min-height: 60px;
}
.cid-u62pjU3JnD .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u62pjU3JnD .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u62pjU3JnD .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u62pjU3JnD .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u62pjU3JnD .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u62pjU3JnD .dropdown-item.active,
.cid-u62pjU3JnD .dropdown-item:active {
  background-color: transparent;
}
.cid-u62pjU3JnD .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u62pjU3JnD .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u62pjU3JnD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u62pjU3JnD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u62pjU3JnD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u62pjU3JnD .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u62pjU3JnD ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u62pjU3JnD .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u62pjU3JnD button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u62pjU3JnD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u62pjU3JnD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u62pjU3JnD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u62pjU3JnD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u62pjU3JnD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u62pjU3JnD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u62pjU3JnD nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u62pjU3JnD nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u62pjU3JnD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u62pjU3JnD .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u62pjU3JnD a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u62pjU3JnD .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-u62pjU3JnD .navbar {
    height: 70px;
  }
  .cid-u62pjU3JnD .navbar.opened {
    height: auto;
  }
  .cid-u62pjU3JnD .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u62pjUjUQh {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u62pjUjUQh .mbr-fallback-image.disabled {
  display: none;
}
.cid-u62pjUjUQh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u62pjUvdku {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u62pjUDqkh {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-u62pjUDqkh .mbr-text {
  color: #fafafa;
}
.cid-u62pjUDqkh .mbr-section-subtitle {
  color: #fafafa;
}
.cid-u62pjULABV {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #232323;
  overflow: hidden;
}
.cid-u62pjULABV .media-container-row .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-u62roefarM {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u62roefarM nav.navbar {
  position: fixed;
}
.cid-u62roefarM .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-u62roefarM .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u62roefarM .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u62roefarM .dropdown-item:hover,
.cid-u62roefarM .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-u62roefarM .dropdown-item:hover span {
  color: white;
}
.cid-u62roefarM .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u62roefarM .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u62roefarM .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u62roefarM .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u62roefarM .nav-link {
  position: relative;
}
.cid-u62roefarM .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u62roefarM .container {
    flex-wrap: nowrap;
  }
}
.cid-u62roefarM .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u62roefarM .dropdown-menu,
.cid-u62roefarM .navbar.opened {
  background: #ffffff !important;
}
.cid-u62roefarM .nav-item:focus,
.cid-u62roefarM .nav-link:focus {
  outline: none;
}
.cid-u62roefarM .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u62roefarM .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u62roefarM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u62roefarM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u62roefarM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u62roefarM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u62roefarM .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-u62roefarM .navbar.opened {
  transition: all 0.3s;
}
.cid-u62roefarM .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u62roefarM .navbar .navbar-logo img {
  width: auto;
}
.cid-u62roefarM .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u62roefarM .navbar.collapsed {
  justify-content: center;
}
.cid-u62roefarM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u62roefarM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u62roefarM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u62roefarM .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u62roefarM .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-u62roefarM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u62roefarM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u62roefarM .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u62roefarM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u62roefarM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u62roefarM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u62roefarM .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u62roefarM .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-u62roefarM .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u62roefarM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u62roefarM .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u62roefarM .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u62roefarM .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u62roefarM .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u62roefarM .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u62roefarM .navbar.navbar-short {
  min-height: 60px;
}
.cid-u62roefarM .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u62roefarM .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u62roefarM .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u62roefarM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u62roefarM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u62roefarM .dropdown-item.active,
.cid-u62roefarM .dropdown-item:active {
  background-color: transparent;
}
.cid-u62roefarM .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u62roefarM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u62roefarM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u62roefarM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u62roefarM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u62roefarM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u62roefarM ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u62roefarM .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u62roefarM button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u62roefarM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u62roefarM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u62roefarM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u62roefarM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u62roefarM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u62roefarM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u62roefarM nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u62roefarM nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u62roefarM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u62roefarM .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u62roefarM a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u62roefarM .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-u62roefarM .navbar {
    height: 70px;
  }
  .cid-u62roefarM .navbar.opened {
    height: auto;
  }
  .cid-u62roefarM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u62roevsVC {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u62roevsVC .mbr-fallback-image.disabled {
  display: none;
}
.cid-u62roevsVC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u62roeGvaP {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u62roeOtnR {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-u62roeOtnR .mbr-text {
  color: #fafafa;
}
.cid-u62roeOtnR .mbr-section-subtitle {
  color: #fafafa;
}
.cid-u62roeV8zw {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #232323;
  overflow: hidden;
}
.cid-u62roeV8zw .media-container-row .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-u62wB4RcB3 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u62wB4RcB3 nav.navbar {
  position: fixed;
}
.cid-u62wB4RcB3 .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-u62wB4RcB3 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u62wB4RcB3 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u62wB4RcB3 .dropdown-item:hover,
.cid-u62wB4RcB3 .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-u62wB4RcB3 .dropdown-item:hover span {
  color: white;
}
.cid-u62wB4RcB3 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u62wB4RcB3 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u62wB4RcB3 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u62wB4RcB3 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u62wB4RcB3 .nav-link {
  position: relative;
}
.cid-u62wB4RcB3 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u62wB4RcB3 .container {
    flex-wrap: nowrap;
  }
}
.cid-u62wB4RcB3 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u62wB4RcB3 .dropdown-menu,
.cid-u62wB4RcB3 .navbar.opened {
  background: #ffffff !important;
}
.cid-u62wB4RcB3 .nav-item:focus,
.cid-u62wB4RcB3 .nav-link:focus {
  outline: none;
}
.cid-u62wB4RcB3 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u62wB4RcB3 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u62wB4RcB3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u62wB4RcB3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u62wB4RcB3 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u62wB4RcB3 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u62wB4RcB3 .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-u62wB4RcB3 .navbar.opened {
  transition: all 0.3s;
}
.cid-u62wB4RcB3 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u62wB4RcB3 .navbar .navbar-logo img {
  width: auto;
}
.cid-u62wB4RcB3 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u62wB4RcB3 .navbar.collapsed {
  justify-content: center;
}
.cid-u62wB4RcB3 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u62wB4RcB3 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u62wB4RcB3 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u62wB4RcB3 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u62wB4RcB3 .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-u62wB4RcB3 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u62wB4RcB3 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u62wB4RcB3 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u62wB4RcB3 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u62wB4RcB3 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u62wB4RcB3 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u62wB4RcB3 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u62wB4RcB3 .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-u62wB4RcB3 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u62wB4RcB3 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u62wB4RcB3 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u62wB4RcB3 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u62wB4RcB3 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u62wB4RcB3 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u62wB4RcB3 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u62wB4RcB3 .navbar.navbar-short {
  min-height: 60px;
}
.cid-u62wB4RcB3 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u62wB4RcB3 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u62wB4RcB3 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u62wB4RcB3 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u62wB4RcB3 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u62wB4RcB3 .dropdown-item.active,
.cid-u62wB4RcB3 .dropdown-item:active {
  background-color: transparent;
}
.cid-u62wB4RcB3 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u62wB4RcB3 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u62wB4RcB3 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u62wB4RcB3 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u62wB4RcB3 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u62wB4RcB3 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u62wB4RcB3 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u62wB4RcB3 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u62wB4RcB3 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u62wB4RcB3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u62wB4RcB3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u62wB4RcB3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u62wB4RcB3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u62wB4RcB3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u62wB4RcB3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u62wB4RcB3 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u62wB4RcB3 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u62wB4RcB3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u62wB4RcB3 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u62wB4RcB3 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u62wB4RcB3 .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-u62wB4RcB3 .navbar {
    height: 70px;
  }
  .cid-u62wB4RcB3 .navbar.opened {
    height: auto;
  }
  .cid-u62wB4RcB3 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u62wB56cCH {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u62wB56cCH .mbr-fallback-image.disabled {
  display: none;
}
.cid-u62wB56cCH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u62wB5hQ9J {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u62wB5oKD2 {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-u62wB5oKD2 .mbr-text {
  color: #fafafa;
}
.cid-u62wB5oKD2 .mbr-section-subtitle {
  color: #fafafa;
}
.cid-u62wB5vDPA {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #232323;
  overflow: hidden;
}
.cid-u62wB5vDPA .media-container-row .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-u62EO26lLl {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u62EO26lLl nav.navbar {
  position: fixed;
}
.cid-u62EO26lLl .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-u62EO26lLl .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u62EO26lLl .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u62EO26lLl .dropdown-item:hover,
.cid-u62EO26lLl .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-u62EO26lLl .dropdown-item:hover span {
  color: white;
}
.cid-u62EO26lLl .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u62EO26lLl .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u62EO26lLl .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u62EO26lLl .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u62EO26lLl .nav-link {
  position: relative;
}
.cid-u62EO26lLl .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u62EO26lLl .container {
    flex-wrap: nowrap;
  }
}
.cid-u62EO26lLl .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u62EO26lLl .dropdown-menu,
.cid-u62EO26lLl .navbar.opened {
  background: #ffffff !important;
}
.cid-u62EO26lLl .nav-item:focus,
.cid-u62EO26lLl .nav-link:focus {
  outline: none;
}
.cid-u62EO26lLl .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u62EO26lLl .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u62EO26lLl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u62EO26lLl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u62EO26lLl .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u62EO26lLl .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u62EO26lLl .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-u62EO26lLl .navbar.opened {
  transition: all 0.3s;
}
.cid-u62EO26lLl .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u62EO26lLl .navbar .navbar-logo img {
  width: auto;
}
.cid-u62EO26lLl .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u62EO26lLl .navbar.collapsed {
  justify-content: center;
}
.cid-u62EO26lLl .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u62EO26lLl .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u62EO26lLl .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u62EO26lLl .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u62EO26lLl .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-u62EO26lLl .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u62EO26lLl .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u62EO26lLl .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u62EO26lLl .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u62EO26lLl .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u62EO26lLl .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u62EO26lLl .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u62EO26lLl .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-u62EO26lLl .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u62EO26lLl .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u62EO26lLl .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u62EO26lLl .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u62EO26lLl .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u62EO26lLl .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u62EO26lLl .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u62EO26lLl .navbar.navbar-short {
  min-height: 60px;
}
.cid-u62EO26lLl .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u62EO26lLl .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u62EO26lLl .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u62EO26lLl .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u62EO26lLl .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u62EO26lLl .dropdown-item.active,
.cid-u62EO26lLl .dropdown-item:active {
  background-color: transparent;
}
.cid-u62EO26lLl .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u62EO26lLl .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u62EO26lLl .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u62EO26lLl .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u62EO26lLl .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u62EO26lLl .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u62EO26lLl ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u62EO26lLl .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u62EO26lLl button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u62EO26lLl button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u62EO26lLl button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u62EO26lLl button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u62EO26lLl button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u62EO26lLl button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u62EO26lLl nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u62EO26lLl nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u62EO26lLl nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u62EO26lLl nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u62EO26lLl .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u62EO26lLl a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u62EO26lLl .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-u62EO26lLl .navbar {
    height: 70px;
  }
  .cid-u62EO26lLl .navbar.opened {
    height: auto;
  }
  .cid-u62EO26lLl .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u62EO2mJte {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u62EO2mJte .mbr-fallback-image.disabled {
  display: none;
}
.cid-u62EO2mJte .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u62EO2yIPv {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u62EO2GqJG {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-u62EO2GqJG .mbr-text {
  color: #fafafa;
}
.cid-u62EO2GqJG .mbr-section-subtitle {
  color: #fafafa;
}
.cid-u62EO2Mf9o {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #232323;
  overflow: hidden;
}
.cid-u62EO2Mf9o .media-container-row .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-u62FCeQWu4 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u62FCeQWu4 nav.navbar {
  position: fixed;
}
.cid-u62FCeQWu4 .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-u62FCeQWu4 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u62FCeQWu4 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u62FCeQWu4 .dropdown-item:hover,
.cid-u62FCeQWu4 .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-u62FCeQWu4 .dropdown-item:hover span {
  color: white;
}
.cid-u62FCeQWu4 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u62FCeQWu4 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u62FCeQWu4 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u62FCeQWu4 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u62FCeQWu4 .nav-link {
  position: relative;
}
.cid-u62FCeQWu4 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u62FCeQWu4 .container {
    flex-wrap: nowrap;
  }
}
.cid-u62FCeQWu4 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u62FCeQWu4 .dropdown-menu,
.cid-u62FCeQWu4 .navbar.opened {
  background: #ffffff !important;
}
.cid-u62FCeQWu4 .nav-item:focus,
.cid-u62FCeQWu4 .nav-link:focus {
  outline: none;
}
.cid-u62FCeQWu4 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u62FCeQWu4 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u62FCeQWu4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u62FCeQWu4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u62FCeQWu4 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u62FCeQWu4 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u62FCeQWu4 .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-u62FCeQWu4 .navbar.opened {
  transition: all 0.3s;
}
.cid-u62FCeQWu4 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u62FCeQWu4 .navbar .navbar-logo img {
  width: auto;
}
.cid-u62FCeQWu4 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u62FCeQWu4 .navbar.collapsed {
  justify-content: center;
}
.cid-u62FCeQWu4 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u62FCeQWu4 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u62FCeQWu4 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u62FCeQWu4 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u62FCeQWu4 .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-u62FCeQWu4 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u62FCeQWu4 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u62FCeQWu4 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u62FCeQWu4 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u62FCeQWu4 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u62FCeQWu4 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u62FCeQWu4 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u62FCeQWu4 .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-u62FCeQWu4 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u62FCeQWu4 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u62FCeQWu4 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u62FCeQWu4 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u62FCeQWu4 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u62FCeQWu4 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u62FCeQWu4 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u62FCeQWu4 .navbar.navbar-short {
  min-height: 60px;
}
.cid-u62FCeQWu4 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u62FCeQWu4 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u62FCeQWu4 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u62FCeQWu4 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u62FCeQWu4 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u62FCeQWu4 .dropdown-item.active,
.cid-u62FCeQWu4 .dropdown-item:active {
  background-color: transparent;
}
.cid-u62FCeQWu4 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u62FCeQWu4 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u62FCeQWu4 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u62FCeQWu4 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u62FCeQWu4 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u62FCeQWu4 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u62FCeQWu4 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u62FCeQWu4 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u62FCeQWu4 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u62FCeQWu4 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u62FCeQWu4 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u62FCeQWu4 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u62FCeQWu4 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u62FCeQWu4 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u62FCeQWu4 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u62FCeQWu4 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u62FCeQWu4 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u62FCeQWu4 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u62FCeQWu4 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u62FCeQWu4 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u62FCeQWu4 .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-u62FCeQWu4 .navbar {
    height: 70px;
  }
  .cid-u62FCeQWu4 .navbar.opened {
    height: auto;
  }
  .cid-u62FCeQWu4 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u62FCf6xBl {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u62FCf6xBl .mbr-fallback-image.disabled {
  display: none;
}
.cid-u62FCf6xBl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u62FCfjlo2 {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u62FCfrd6G {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-u62FCfrd6G .mbr-text {
  color: #fafafa;
}
.cid-u62FCfrd6G .mbr-section-subtitle {
  color: #fafafa;
}
.cid-u62FCfAphU {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #232323;
  overflow: hidden;
}
.cid-u62FCfAphU .media-container-row .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-u62ImHQQ51 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u62ImHQQ51 nav.navbar {
  position: fixed;
}
.cid-u62ImHQQ51 .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-u62ImHQQ51 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u62ImHQQ51 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u62ImHQQ51 .dropdown-item:hover,
.cid-u62ImHQQ51 .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-u62ImHQQ51 .dropdown-item:hover span {
  color: white;
}
.cid-u62ImHQQ51 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u62ImHQQ51 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u62ImHQQ51 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u62ImHQQ51 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u62ImHQQ51 .nav-link {
  position: relative;
}
.cid-u62ImHQQ51 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u62ImHQQ51 .container {
    flex-wrap: nowrap;
  }
}
.cid-u62ImHQQ51 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u62ImHQQ51 .dropdown-menu,
.cid-u62ImHQQ51 .navbar.opened {
  background: #ffffff !important;
}
.cid-u62ImHQQ51 .nav-item:focus,
.cid-u62ImHQQ51 .nav-link:focus {
  outline: none;
}
.cid-u62ImHQQ51 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u62ImHQQ51 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u62ImHQQ51 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u62ImHQQ51 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u62ImHQQ51 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u62ImHQQ51 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u62ImHQQ51 .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-u62ImHQQ51 .navbar.opened {
  transition: all 0.3s;
}
.cid-u62ImHQQ51 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u62ImHQQ51 .navbar .navbar-logo img {
  width: auto;
}
.cid-u62ImHQQ51 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u62ImHQQ51 .navbar.collapsed {
  justify-content: center;
}
.cid-u62ImHQQ51 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u62ImHQQ51 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u62ImHQQ51 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u62ImHQQ51 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u62ImHQQ51 .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-u62ImHQQ51 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u62ImHQQ51 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u62ImHQQ51 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u62ImHQQ51 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u62ImHQQ51 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u62ImHQQ51 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u62ImHQQ51 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u62ImHQQ51 .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-u62ImHQQ51 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u62ImHQQ51 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u62ImHQQ51 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u62ImHQQ51 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u62ImHQQ51 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u62ImHQQ51 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u62ImHQQ51 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u62ImHQQ51 .navbar.navbar-short {
  min-height: 60px;
}
.cid-u62ImHQQ51 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u62ImHQQ51 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u62ImHQQ51 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u62ImHQQ51 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u62ImHQQ51 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u62ImHQQ51 .dropdown-item.active,
.cid-u62ImHQQ51 .dropdown-item:active {
  background-color: transparent;
}
.cid-u62ImHQQ51 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u62ImHQQ51 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u62ImHQQ51 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u62ImHQQ51 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u62ImHQQ51 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u62ImHQQ51 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u62ImHQQ51 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u62ImHQQ51 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u62ImHQQ51 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u62ImHQQ51 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u62ImHQQ51 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u62ImHQQ51 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u62ImHQQ51 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u62ImHQQ51 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u62ImHQQ51 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u62ImHQQ51 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u62ImHQQ51 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u62ImHQQ51 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u62ImHQQ51 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u62ImHQQ51 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u62ImHQQ51 .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-u62ImHQQ51 .navbar {
    height: 70px;
  }
  .cid-u62ImHQQ51 .navbar.opened {
    height: auto;
  }
  .cid-u62ImHQQ51 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u62ImI5Ppq {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u62ImI5Ppq .mbr-fallback-image.disabled {
  display: none;
}
.cid-u62ImI5Ppq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u62ImIfvrG {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u62ImIkIIf {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-u62ImIkIIf .mbr-text {
  color: #fafafa;
}
.cid-u62ImIkIIf .mbr-section-subtitle {
  color: #fafafa;
}
.cid-u62ImIq97i {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #232323;
  overflow: hidden;
}
.cid-u62ImIq97i .media-container-row .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-u62Krbx8ua {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u62Krbx8ua nav.navbar {
  position: fixed;
}
.cid-u62Krbx8ua .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-u62Krbx8ua .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u62Krbx8ua .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u62Krbx8ua .dropdown-item:hover,
.cid-u62Krbx8ua .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-u62Krbx8ua .dropdown-item:hover span {
  color: white;
}
.cid-u62Krbx8ua .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u62Krbx8ua .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u62Krbx8ua .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u62Krbx8ua .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u62Krbx8ua .nav-link {
  position: relative;
}
.cid-u62Krbx8ua .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u62Krbx8ua .container {
    flex-wrap: nowrap;
  }
}
.cid-u62Krbx8ua .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u62Krbx8ua .dropdown-menu,
.cid-u62Krbx8ua .navbar.opened {
  background: #ffffff !important;
}
.cid-u62Krbx8ua .nav-item:focus,
.cid-u62Krbx8ua .nav-link:focus {
  outline: none;
}
.cid-u62Krbx8ua .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u62Krbx8ua .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u62Krbx8ua .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u62Krbx8ua .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u62Krbx8ua .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u62Krbx8ua .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u62Krbx8ua .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-u62Krbx8ua .navbar.opened {
  transition: all 0.3s;
}
.cid-u62Krbx8ua .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u62Krbx8ua .navbar .navbar-logo img {
  width: auto;
}
.cid-u62Krbx8ua .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u62Krbx8ua .navbar.collapsed {
  justify-content: center;
}
.cid-u62Krbx8ua .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u62Krbx8ua .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u62Krbx8ua .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u62Krbx8ua .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u62Krbx8ua .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-u62Krbx8ua .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u62Krbx8ua .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u62Krbx8ua .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u62Krbx8ua .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u62Krbx8ua .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u62Krbx8ua .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u62Krbx8ua .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u62Krbx8ua .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-u62Krbx8ua .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u62Krbx8ua .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u62Krbx8ua .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u62Krbx8ua .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u62Krbx8ua .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u62Krbx8ua .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u62Krbx8ua .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u62Krbx8ua .navbar.navbar-short {
  min-height: 60px;
}
.cid-u62Krbx8ua .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u62Krbx8ua .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u62Krbx8ua .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u62Krbx8ua .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u62Krbx8ua .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u62Krbx8ua .dropdown-item.active,
.cid-u62Krbx8ua .dropdown-item:active {
  background-color: transparent;
}
.cid-u62Krbx8ua .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u62Krbx8ua .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u62Krbx8ua .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u62Krbx8ua .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u62Krbx8ua .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u62Krbx8ua .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u62Krbx8ua ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u62Krbx8ua .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u62Krbx8ua button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u62Krbx8ua button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u62Krbx8ua button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u62Krbx8ua button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u62Krbx8ua button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u62Krbx8ua button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u62Krbx8ua nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u62Krbx8ua nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u62Krbx8ua nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u62Krbx8ua nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u62Krbx8ua .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u62Krbx8ua a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u62Krbx8ua .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-u62Krbx8ua .navbar {
    height: 70px;
  }
  .cid-u62Krbx8ua .navbar.opened {
    height: auto;
  }
  .cid-u62Krbx8ua .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u62KrbMM1n {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u62KrbMM1n .mbr-fallback-image.disabled {
  display: none;
}
.cid-u62KrbMM1n .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u62KrbZzAD {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u62Krc5cM0 {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-u62Krc5cM0 .mbr-text {
  color: #fafafa;
}
.cid-u62Krc5cM0 .mbr-section-subtitle {
  color: #fafafa;
}
.cid-u62Krcb9QG {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #232323;
  overflow: hidden;
}
.cid-u62Krcb9QG .media-container-row .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-u62MGRwJaO {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u62MGRwJaO nav.navbar {
  position: fixed;
}
.cid-u62MGRwJaO .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-u62MGRwJaO .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u62MGRwJaO .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u62MGRwJaO .dropdown-item:hover,
.cid-u62MGRwJaO .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-u62MGRwJaO .dropdown-item:hover span {
  color: white;
}
.cid-u62MGRwJaO .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u62MGRwJaO .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u62MGRwJaO .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u62MGRwJaO .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u62MGRwJaO .nav-link {
  position: relative;
}
.cid-u62MGRwJaO .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u62MGRwJaO .container {
    flex-wrap: nowrap;
  }
}
.cid-u62MGRwJaO .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u62MGRwJaO .dropdown-menu,
.cid-u62MGRwJaO .navbar.opened {
  background: #ffffff !important;
}
.cid-u62MGRwJaO .nav-item:focus,
.cid-u62MGRwJaO .nav-link:focus {
  outline: none;
}
.cid-u62MGRwJaO .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u62MGRwJaO .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u62MGRwJaO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u62MGRwJaO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u62MGRwJaO .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u62MGRwJaO .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u62MGRwJaO .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-u62MGRwJaO .navbar.opened {
  transition: all 0.3s;
}
.cid-u62MGRwJaO .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u62MGRwJaO .navbar .navbar-logo img {
  width: auto;
}
.cid-u62MGRwJaO .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u62MGRwJaO .navbar.collapsed {
  justify-content: center;
}
.cid-u62MGRwJaO .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u62MGRwJaO .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u62MGRwJaO .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u62MGRwJaO .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u62MGRwJaO .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-u62MGRwJaO .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u62MGRwJaO .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u62MGRwJaO .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u62MGRwJaO .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u62MGRwJaO .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u62MGRwJaO .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u62MGRwJaO .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u62MGRwJaO .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-u62MGRwJaO .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u62MGRwJaO .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u62MGRwJaO .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u62MGRwJaO .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u62MGRwJaO .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u62MGRwJaO .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u62MGRwJaO .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u62MGRwJaO .navbar.navbar-short {
  min-height: 60px;
}
.cid-u62MGRwJaO .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u62MGRwJaO .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u62MGRwJaO .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u62MGRwJaO .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u62MGRwJaO .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u62MGRwJaO .dropdown-item.active,
.cid-u62MGRwJaO .dropdown-item:active {
  background-color: transparent;
}
.cid-u62MGRwJaO .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u62MGRwJaO .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u62MGRwJaO .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u62MGRwJaO .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u62MGRwJaO .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u62MGRwJaO .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u62MGRwJaO ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u62MGRwJaO .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u62MGRwJaO button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u62MGRwJaO button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u62MGRwJaO button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u62MGRwJaO button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u62MGRwJaO button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u62MGRwJaO button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u62MGRwJaO nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u62MGRwJaO nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u62MGRwJaO nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u62MGRwJaO nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u62MGRwJaO .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u62MGRwJaO a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u62MGRwJaO .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-u62MGRwJaO .navbar {
    height: 70px;
  }
  .cid-u62MGRwJaO .navbar.opened {
    height: auto;
  }
  .cid-u62MGRwJaO .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u62MGRPcXM {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u62MGRPcXM .mbr-fallback-image.disabled {
  display: none;
}
.cid-u62MGRPcXM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u62MGS4OyM {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u62MGSck1o {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-u62MGSck1o .mbr-text {
  color: #fafafa;
}
.cid-u62MGSck1o .mbr-section-subtitle {
  color: #fafafa;
}
.cid-u62MGSjt8c {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #232323;
  overflow: hidden;
}
.cid-u62MGSjt8c .media-container-row .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-u62NJRscUg {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u62NJRscUg nav.navbar {
  position: fixed;
}
.cid-u62NJRscUg .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-u62NJRscUg .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u62NJRscUg .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u62NJRscUg .dropdown-item:hover,
.cid-u62NJRscUg .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-u62NJRscUg .dropdown-item:hover span {
  color: white;
}
.cid-u62NJRscUg .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u62NJRscUg .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u62NJRscUg .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u62NJRscUg .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u62NJRscUg .nav-link {
  position: relative;
}
.cid-u62NJRscUg .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u62NJRscUg .container {
    flex-wrap: nowrap;
  }
}
.cid-u62NJRscUg .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u62NJRscUg .dropdown-menu,
.cid-u62NJRscUg .navbar.opened {
  background: #ffffff !important;
}
.cid-u62NJRscUg .nav-item:focus,
.cid-u62NJRscUg .nav-link:focus {
  outline: none;
}
.cid-u62NJRscUg .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u62NJRscUg .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u62NJRscUg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u62NJRscUg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u62NJRscUg .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u62NJRscUg .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u62NJRscUg .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-u62NJRscUg .navbar.opened {
  transition: all 0.3s;
}
.cid-u62NJRscUg .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u62NJRscUg .navbar .navbar-logo img {
  width: auto;
}
.cid-u62NJRscUg .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u62NJRscUg .navbar.collapsed {
  justify-content: center;
}
.cid-u62NJRscUg .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u62NJRscUg .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u62NJRscUg .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u62NJRscUg .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u62NJRscUg .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-u62NJRscUg .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u62NJRscUg .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u62NJRscUg .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u62NJRscUg .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u62NJRscUg .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u62NJRscUg .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u62NJRscUg .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u62NJRscUg .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-u62NJRscUg .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u62NJRscUg .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u62NJRscUg .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u62NJRscUg .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u62NJRscUg .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u62NJRscUg .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u62NJRscUg .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u62NJRscUg .navbar.navbar-short {
  min-height: 60px;
}
.cid-u62NJRscUg .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u62NJRscUg .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u62NJRscUg .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u62NJRscUg .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u62NJRscUg .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u62NJRscUg .dropdown-item.active,
.cid-u62NJRscUg .dropdown-item:active {
  background-color: transparent;
}
.cid-u62NJRscUg .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u62NJRscUg .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u62NJRscUg .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u62NJRscUg .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u62NJRscUg .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u62NJRscUg .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u62NJRscUg ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u62NJRscUg .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u62NJRscUg button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u62NJRscUg button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u62NJRscUg button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u62NJRscUg button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u62NJRscUg button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u62NJRscUg button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u62NJRscUg nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u62NJRscUg nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u62NJRscUg nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u62NJRscUg nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u62NJRscUg .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u62NJRscUg a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u62NJRscUg .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-u62NJRscUg .navbar {
    height: 70px;
  }
  .cid-u62NJRscUg .navbar.opened {
    height: auto;
  }
  .cid-u62NJRscUg .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u62NJRIrbA {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u62NJRIrbA .mbr-fallback-image.disabled {
  display: none;
}
.cid-u62NJRIrbA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u62NJRSJoX {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u62NJRY43H {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-u62NJRY43H .mbr-text {
  color: #fafafa;
}
.cid-u62NJRY43H .mbr-section-subtitle {
  color: #fafafa;
}
.cid-u62NJS4qK4 {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #232323;
  overflow: hidden;
}
.cid-u62NJS4qK4 .media-container-row .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-u62OinwCmd {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u62OinwCmd nav.navbar {
  position: fixed;
}
.cid-u62OinwCmd .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-u62OinwCmd .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u62OinwCmd .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u62OinwCmd .dropdown-item:hover,
.cid-u62OinwCmd .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-u62OinwCmd .dropdown-item:hover span {
  color: white;
}
.cid-u62OinwCmd .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u62OinwCmd .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u62OinwCmd .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u62OinwCmd .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u62OinwCmd .nav-link {
  position: relative;
}
.cid-u62OinwCmd .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u62OinwCmd .container {
    flex-wrap: nowrap;
  }
}
.cid-u62OinwCmd .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u62OinwCmd .dropdown-menu,
.cid-u62OinwCmd .navbar.opened {
  background: #ffffff !important;
}
.cid-u62OinwCmd .nav-item:focus,
.cid-u62OinwCmd .nav-link:focus {
  outline: none;
}
.cid-u62OinwCmd .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u62OinwCmd .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u62OinwCmd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u62OinwCmd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u62OinwCmd .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u62OinwCmd .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u62OinwCmd .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-u62OinwCmd .navbar.opened {
  transition: all 0.3s;
}
.cid-u62OinwCmd .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u62OinwCmd .navbar .navbar-logo img {
  width: auto;
}
.cid-u62OinwCmd .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u62OinwCmd .navbar.collapsed {
  justify-content: center;
}
.cid-u62OinwCmd .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u62OinwCmd .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u62OinwCmd .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u62OinwCmd .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u62OinwCmd .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-u62OinwCmd .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u62OinwCmd .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u62OinwCmd .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u62OinwCmd .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u62OinwCmd .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u62OinwCmd .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u62OinwCmd .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u62OinwCmd .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-u62OinwCmd .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u62OinwCmd .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u62OinwCmd .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u62OinwCmd .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u62OinwCmd .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u62OinwCmd .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u62OinwCmd .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u62OinwCmd .navbar.navbar-short {
  min-height: 60px;
}
.cid-u62OinwCmd .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u62OinwCmd .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u62OinwCmd .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u62OinwCmd .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u62OinwCmd .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u62OinwCmd .dropdown-item.active,
.cid-u62OinwCmd .dropdown-item:active {
  background-color: transparent;
}
.cid-u62OinwCmd .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u62OinwCmd .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u62OinwCmd .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u62OinwCmd .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u62OinwCmd .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u62OinwCmd .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u62OinwCmd ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u62OinwCmd .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u62OinwCmd button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u62OinwCmd button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u62OinwCmd button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u62OinwCmd button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u62OinwCmd button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u62OinwCmd button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u62OinwCmd nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u62OinwCmd nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u62OinwCmd nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u62OinwCmd nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u62OinwCmd .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u62OinwCmd a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u62OinwCmd .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-u62OinwCmd .navbar {
    height: 70px;
  }
  .cid-u62OinwCmd .navbar.opened {
    height: auto;
  }
  .cid-u62OinwCmd .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u62OinQG9q {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u62OinQG9q .mbr-fallback-image.disabled {
  display: none;
}
.cid-u62OinQG9q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u62Oio3Yme {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u62Oioavtv {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-u62Oioavtv .mbr-text {
  color: #fafafa;
}
.cid-u62Oioavtv .mbr-section-subtitle {
  color: #fafafa;
}
.cid-u62OiofXdu {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #232323;
  overflow: hidden;
}
.cid-u62OiofXdu .media-container-row .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-u62Povwf6z {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u62Povwf6z nav.navbar {
  position: fixed;
}
.cid-u62Povwf6z .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-u62Povwf6z .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u62Povwf6z .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u62Povwf6z .dropdown-item:hover,
.cid-u62Povwf6z .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-u62Povwf6z .dropdown-item:hover span {
  color: white;
}
.cid-u62Povwf6z .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u62Povwf6z .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u62Povwf6z .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u62Povwf6z .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u62Povwf6z .nav-link {
  position: relative;
}
.cid-u62Povwf6z .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u62Povwf6z .container {
    flex-wrap: nowrap;
  }
}
.cid-u62Povwf6z .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u62Povwf6z .dropdown-menu,
.cid-u62Povwf6z .navbar.opened {
  background: #ffffff !important;
}
.cid-u62Povwf6z .nav-item:focus,
.cid-u62Povwf6z .nav-link:focus {
  outline: none;
}
.cid-u62Povwf6z .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u62Povwf6z .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u62Povwf6z .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u62Povwf6z .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u62Povwf6z .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u62Povwf6z .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u62Povwf6z .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-u62Povwf6z .navbar.opened {
  transition: all 0.3s;
}
.cid-u62Povwf6z .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u62Povwf6z .navbar .navbar-logo img {
  width: auto;
}
.cid-u62Povwf6z .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u62Povwf6z .navbar.collapsed {
  justify-content: center;
}
.cid-u62Povwf6z .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u62Povwf6z .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u62Povwf6z .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u62Povwf6z .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u62Povwf6z .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-u62Povwf6z .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u62Povwf6z .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u62Povwf6z .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u62Povwf6z .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u62Povwf6z .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u62Povwf6z .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u62Povwf6z .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u62Povwf6z .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-u62Povwf6z .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u62Povwf6z .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u62Povwf6z .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u62Povwf6z .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u62Povwf6z .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u62Povwf6z .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u62Povwf6z .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u62Povwf6z .navbar.navbar-short {
  min-height: 60px;
}
.cid-u62Povwf6z .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u62Povwf6z .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u62Povwf6z .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u62Povwf6z .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u62Povwf6z .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u62Povwf6z .dropdown-item.active,
.cid-u62Povwf6z .dropdown-item:active {
  background-color: transparent;
}
.cid-u62Povwf6z .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u62Povwf6z .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u62Povwf6z .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u62Povwf6z .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u62Povwf6z .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u62Povwf6z .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u62Povwf6z ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u62Povwf6z .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u62Povwf6z button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u62Povwf6z button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u62Povwf6z button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u62Povwf6z button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u62Povwf6z button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u62Povwf6z button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u62Povwf6z nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u62Povwf6z nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u62Povwf6z nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u62Povwf6z nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u62Povwf6z .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u62Povwf6z a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u62Povwf6z .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-u62Povwf6z .navbar {
    height: 70px;
  }
  .cid-u62Povwf6z .navbar.opened {
    height: auto;
  }
  .cid-u62Povwf6z .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u62PovRABL {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u62PovRABL .mbr-fallback-image.disabled {
  display: none;
}
.cid-u62PovRABL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u62Pow3rBP {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u62PowaZf3 {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-u62PowaZf3 .mbr-text {
  color: #fafafa;
}
.cid-u62PowaZf3 .mbr-section-subtitle {
  color: #fafafa;
}
.cid-u62Powhg6u {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #232323;
  overflow: hidden;
}
.cid-u62Powhg6u .media-container-row .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-u62PSk78c1 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u62PSk78c1 nav.navbar {
  position: fixed;
}
.cid-u62PSk78c1 .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-u62PSk78c1 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u62PSk78c1 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u62PSk78c1 .dropdown-item:hover,
.cid-u62PSk78c1 .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-u62PSk78c1 .dropdown-item:hover span {
  color: white;
}
.cid-u62PSk78c1 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u62PSk78c1 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u62PSk78c1 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u62PSk78c1 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u62PSk78c1 .nav-link {
  position: relative;
}
.cid-u62PSk78c1 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u62PSk78c1 .container {
    flex-wrap: nowrap;
  }
}
.cid-u62PSk78c1 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u62PSk78c1 .dropdown-menu,
.cid-u62PSk78c1 .navbar.opened {
  background: #ffffff !important;
}
.cid-u62PSk78c1 .nav-item:focus,
.cid-u62PSk78c1 .nav-link:focus {
  outline: none;
}
.cid-u62PSk78c1 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u62PSk78c1 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u62PSk78c1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u62PSk78c1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u62PSk78c1 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u62PSk78c1 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u62PSk78c1 .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-u62PSk78c1 .navbar.opened {
  transition: all 0.3s;
}
.cid-u62PSk78c1 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u62PSk78c1 .navbar .navbar-logo img {
  width: auto;
}
.cid-u62PSk78c1 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u62PSk78c1 .navbar.collapsed {
  justify-content: center;
}
.cid-u62PSk78c1 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u62PSk78c1 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u62PSk78c1 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u62PSk78c1 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u62PSk78c1 .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-u62PSk78c1 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u62PSk78c1 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u62PSk78c1 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u62PSk78c1 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u62PSk78c1 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u62PSk78c1 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u62PSk78c1 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u62PSk78c1 .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-u62PSk78c1 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u62PSk78c1 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u62PSk78c1 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u62PSk78c1 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u62PSk78c1 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u62PSk78c1 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u62PSk78c1 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u62PSk78c1 .navbar.navbar-short {
  min-height: 60px;
}
.cid-u62PSk78c1 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u62PSk78c1 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u62PSk78c1 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u62PSk78c1 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u62PSk78c1 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u62PSk78c1 .dropdown-item.active,
.cid-u62PSk78c1 .dropdown-item:active {
  background-color: transparent;
}
.cid-u62PSk78c1 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u62PSk78c1 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u62PSk78c1 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u62PSk78c1 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u62PSk78c1 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u62PSk78c1 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u62PSk78c1 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u62PSk78c1 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u62PSk78c1 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u62PSk78c1 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u62PSk78c1 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u62PSk78c1 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u62PSk78c1 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u62PSk78c1 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u62PSk78c1 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u62PSk78c1 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u62PSk78c1 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u62PSk78c1 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u62PSk78c1 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u62PSk78c1 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u62PSk78c1 .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-u62PSk78c1 .navbar {
    height: 70px;
  }
  .cid-u62PSk78c1 .navbar.opened {
    height: auto;
  }
  .cid-u62PSk78c1 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u62PSkosgc {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u62PSkosgc .mbr-fallback-image.disabled {
  display: none;
}
.cid-u62PSkosgc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u62PSkyaFG {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u62PSkE9Rc {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-u62PSkE9Rc .mbr-text {
  color: #fafafa;
}
.cid-u62PSkE9Rc .mbr-section-subtitle {
  color: #fafafa;
}
.cid-u62PSkKdk0 {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #232323;
  overflow: hidden;
}
.cid-u62PSkKdk0 .media-container-row .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-u62QMWgEhX {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u62QMWgEhX nav.navbar {
  position: fixed;
}
.cid-u62QMWgEhX .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-u62QMWgEhX .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u62QMWgEhX .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u62QMWgEhX .dropdown-item:hover,
.cid-u62QMWgEhX .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-u62QMWgEhX .dropdown-item:hover span {
  color: white;
}
.cid-u62QMWgEhX .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u62QMWgEhX .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u62QMWgEhX .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u62QMWgEhX .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u62QMWgEhX .nav-link {
  position: relative;
}
.cid-u62QMWgEhX .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u62QMWgEhX .container {
    flex-wrap: nowrap;
  }
}
.cid-u62QMWgEhX .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u62QMWgEhX .dropdown-menu,
.cid-u62QMWgEhX .navbar.opened {
  background: #ffffff !important;
}
.cid-u62QMWgEhX .nav-item:focus,
.cid-u62QMWgEhX .nav-link:focus {
  outline: none;
}
.cid-u62QMWgEhX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u62QMWgEhX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u62QMWgEhX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u62QMWgEhX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u62QMWgEhX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u62QMWgEhX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u62QMWgEhX .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-u62QMWgEhX .navbar.opened {
  transition: all 0.3s;
}
.cid-u62QMWgEhX .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u62QMWgEhX .navbar .navbar-logo img {
  width: auto;
}
.cid-u62QMWgEhX .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u62QMWgEhX .navbar.collapsed {
  justify-content: center;
}
.cid-u62QMWgEhX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u62QMWgEhX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u62QMWgEhX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u62QMWgEhX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u62QMWgEhX .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-u62QMWgEhX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u62QMWgEhX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u62QMWgEhX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u62QMWgEhX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u62QMWgEhX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u62QMWgEhX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u62QMWgEhX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u62QMWgEhX .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-u62QMWgEhX .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u62QMWgEhX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u62QMWgEhX .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u62QMWgEhX .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u62QMWgEhX .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u62QMWgEhX .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u62QMWgEhX .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u62QMWgEhX .navbar.navbar-short {
  min-height: 60px;
}
.cid-u62QMWgEhX .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u62QMWgEhX .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u62QMWgEhX .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u62QMWgEhX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u62QMWgEhX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u62QMWgEhX .dropdown-item.active,
.cid-u62QMWgEhX .dropdown-item:active {
  background-color: transparent;
}
.cid-u62QMWgEhX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u62QMWgEhX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u62QMWgEhX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u62QMWgEhX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u62QMWgEhX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u62QMWgEhX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u62QMWgEhX ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u62QMWgEhX .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u62QMWgEhX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u62QMWgEhX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u62QMWgEhX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u62QMWgEhX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u62QMWgEhX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u62QMWgEhX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u62QMWgEhX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u62QMWgEhX nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u62QMWgEhX nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u62QMWgEhX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u62QMWgEhX .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u62QMWgEhX a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u62QMWgEhX .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-u62QMWgEhX .navbar {
    height: 70px;
  }
  .cid-u62QMWgEhX .navbar.opened {
    height: auto;
  }
  .cid-u62QMWgEhX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u62QMWxVe7 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u62QMWxVe7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u62QMWxVe7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u62QMWM7Hb {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u62QMWTDWe {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-u62QMWTDWe .mbr-text {
  color: #fafafa;
}
.cid-u62QMWTDWe .mbr-section-subtitle {
  color: #fafafa;
}
.cid-u62QMWZKYk {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #232323;
  overflow: hidden;
}
.cid-u62QMWZKYk .media-container-row .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-u62UnNFp7R {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u62UnNFp7R nav.navbar {
  position: fixed;
}
.cid-u62UnNFp7R .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-u62UnNFp7R .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u62UnNFp7R .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u62UnNFp7R .dropdown-item:hover,
.cid-u62UnNFp7R .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-u62UnNFp7R .dropdown-item:hover span {
  color: white;
}
.cid-u62UnNFp7R .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u62UnNFp7R .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u62UnNFp7R .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u62UnNFp7R .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u62UnNFp7R .nav-link {
  position: relative;
}
.cid-u62UnNFp7R .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u62UnNFp7R .container {
    flex-wrap: nowrap;
  }
}
.cid-u62UnNFp7R .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u62UnNFp7R .dropdown-menu,
.cid-u62UnNFp7R .navbar.opened {
  background: #ffffff !important;
}
.cid-u62UnNFp7R .nav-item:focus,
.cid-u62UnNFp7R .nav-link:focus {
  outline: none;
}
.cid-u62UnNFp7R .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u62UnNFp7R .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u62UnNFp7R .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u62UnNFp7R .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u62UnNFp7R .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u62UnNFp7R .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u62UnNFp7R .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-u62UnNFp7R .navbar.opened {
  transition: all 0.3s;
}
.cid-u62UnNFp7R .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u62UnNFp7R .navbar .navbar-logo img {
  width: auto;
}
.cid-u62UnNFp7R .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u62UnNFp7R .navbar.collapsed {
  justify-content: center;
}
.cid-u62UnNFp7R .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u62UnNFp7R .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u62UnNFp7R .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u62UnNFp7R .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u62UnNFp7R .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-u62UnNFp7R .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u62UnNFp7R .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u62UnNFp7R .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u62UnNFp7R .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u62UnNFp7R .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u62UnNFp7R .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u62UnNFp7R .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u62UnNFp7R .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-u62UnNFp7R .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u62UnNFp7R .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u62UnNFp7R .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u62UnNFp7R .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u62UnNFp7R .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u62UnNFp7R .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u62UnNFp7R .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u62UnNFp7R .navbar.navbar-short {
  min-height: 60px;
}
.cid-u62UnNFp7R .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u62UnNFp7R .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u62UnNFp7R .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u62UnNFp7R .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u62UnNFp7R .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u62UnNFp7R .dropdown-item.active,
.cid-u62UnNFp7R .dropdown-item:active {
  background-color: transparent;
}
.cid-u62UnNFp7R .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u62UnNFp7R .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u62UnNFp7R .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u62UnNFp7R .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u62UnNFp7R .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u62UnNFp7R .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u62UnNFp7R ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u62UnNFp7R .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u62UnNFp7R button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u62UnNFp7R button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u62UnNFp7R button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u62UnNFp7R button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u62UnNFp7R button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u62UnNFp7R button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u62UnNFp7R nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u62UnNFp7R nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u62UnNFp7R nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u62UnNFp7R nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u62UnNFp7R .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u62UnNFp7R a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u62UnNFp7R .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-u62UnNFp7R .navbar {
    height: 70px;
  }
  .cid-u62UnNFp7R .navbar.opened {
    height: auto;
  }
  .cid-u62UnNFp7R .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u62UnNUIHW {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u62UnNUIHW .mbr-fallback-image.disabled {
  display: none;
}
.cid-u62UnNUIHW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u62UnO887T {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u62UnOgq9A {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-u62UnOgq9A .mbr-text {
  color: #fafafa;
}
.cid-u62UnOgq9A .mbr-section-subtitle {
  color: #fafafa;
}
.cid-u62UnOqSfF {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #232323;
  overflow: hidden;
}
.cid-u62UnOqSfF .media-container-row .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-u62V5JZ3XW {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u62V5JZ3XW nav.navbar {
  position: fixed;
}
.cid-u62V5JZ3XW .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-u62V5JZ3XW .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u62V5JZ3XW .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u62V5JZ3XW .dropdown-item:hover,
.cid-u62V5JZ3XW .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-u62V5JZ3XW .dropdown-item:hover span {
  color: white;
}
.cid-u62V5JZ3XW .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u62V5JZ3XW .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u62V5JZ3XW .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u62V5JZ3XW .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u62V5JZ3XW .nav-link {
  position: relative;
}
.cid-u62V5JZ3XW .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u62V5JZ3XW .container {
    flex-wrap: nowrap;
  }
}
.cid-u62V5JZ3XW .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u62V5JZ3XW .dropdown-menu,
.cid-u62V5JZ3XW .navbar.opened {
  background: #ffffff !important;
}
.cid-u62V5JZ3XW .nav-item:focus,
.cid-u62V5JZ3XW .nav-link:focus {
  outline: none;
}
.cid-u62V5JZ3XW .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u62V5JZ3XW .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u62V5JZ3XW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u62V5JZ3XW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u62V5JZ3XW .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u62V5JZ3XW .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u62V5JZ3XW .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-u62V5JZ3XW .navbar.opened {
  transition: all 0.3s;
}
.cid-u62V5JZ3XW .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u62V5JZ3XW .navbar .navbar-logo img {
  width: auto;
}
.cid-u62V5JZ3XW .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u62V5JZ3XW .navbar.collapsed {
  justify-content: center;
}
.cid-u62V5JZ3XW .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u62V5JZ3XW .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u62V5JZ3XW .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u62V5JZ3XW .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u62V5JZ3XW .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-u62V5JZ3XW .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u62V5JZ3XW .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u62V5JZ3XW .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u62V5JZ3XW .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u62V5JZ3XW .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u62V5JZ3XW .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u62V5JZ3XW .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u62V5JZ3XW .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-u62V5JZ3XW .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u62V5JZ3XW .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u62V5JZ3XW .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u62V5JZ3XW .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u62V5JZ3XW .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u62V5JZ3XW .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u62V5JZ3XW .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u62V5JZ3XW .navbar.navbar-short {
  min-height: 60px;
}
.cid-u62V5JZ3XW .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u62V5JZ3XW .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u62V5JZ3XW .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u62V5JZ3XW .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u62V5JZ3XW .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u62V5JZ3XW .dropdown-item.active,
.cid-u62V5JZ3XW .dropdown-item:active {
  background-color: transparent;
}
.cid-u62V5JZ3XW .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u62V5JZ3XW .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u62V5JZ3XW .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u62V5JZ3XW .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u62V5JZ3XW .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u62V5JZ3XW .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u62V5JZ3XW ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u62V5JZ3XW .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u62V5JZ3XW button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u62V5JZ3XW button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u62V5JZ3XW button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u62V5JZ3XW button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u62V5JZ3XW button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u62V5JZ3XW button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u62V5JZ3XW nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u62V5JZ3XW nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u62V5JZ3XW nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u62V5JZ3XW nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u62V5JZ3XW .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u62V5JZ3XW a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u62V5JZ3XW .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-u62V5JZ3XW .navbar {
    height: 70px;
  }
  .cid-u62V5JZ3XW .navbar.opened {
    height: auto;
  }
  .cid-u62V5JZ3XW .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u62V5KfYrP {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u62V5KfYrP .mbr-fallback-image.disabled {
  display: none;
}
.cid-u62V5KfYrP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u62V5KrRz1 {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u62V5Kxitf {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-u62V5Kxitf .mbr-text {
  color: #fafafa;
}
.cid-u62V5Kxitf .mbr-section-subtitle {
  color: #fafafa;
}
.cid-u62V5KEFSR {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #232323;
  overflow: hidden;
}
.cid-u62V5KEFSR .media-container-row .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-u62Wh361L9 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u62Wh361L9 nav.navbar {
  position: fixed;
}
.cid-u62Wh361L9 .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-u62Wh361L9 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u62Wh361L9 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u62Wh361L9 .dropdown-item:hover,
.cid-u62Wh361L9 .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-u62Wh361L9 .dropdown-item:hover span {
  color: white;
}
.cid-u62Wh361L9 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u62Wh361L9 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u62Wh361L9 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u62Wh361L9 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u62Wh361L9 .nav-link {
  position: relative;
}
.cid-u62Wh361L9 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u62Wh361L9 .container {
    flex-wrap: nowrap;
  }
}
.cid-u62Wh361L9 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u62Wh361L9 .dropdown-menu,
.cid-u62Wh361L9 .navbar.opened {
  background: #ffffff !important;
}
.cid-u62Wh361L9 .nav-item:focus,
.cid-u62Wh361L9 .nav-link:focus {
  outline: none;
}
.cid-u62Wh361L9 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u62Wh361L9 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u62Wh361L9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u62Wh361L9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u62Wh361L9 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u62Wh361L9 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u62Wh361L9 .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-u62Wh361L9 .navbar.opened {
  transition: all 0.3s;
}
.cid-u62Wh361L9 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u62Wh361L9 .navbar .navbar-logo img {
  width: auto;
}
.cid-u62Wh361L9 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u62Wh361L9 .navbar.collapsed {
  justify-content: center;
}
.cid-u62Wh361L9 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u62Wh361L9 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u62Wh361L9 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u62Wh361L9 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u62Wh361L9 .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-u62Wh361L9 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u62Wh361L9 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u62Wh361L9 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u62Wh361L9 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u62Wh361L9 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u62Wh361L9 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u62Wh361L9 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u62Wh361L9 .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-u62Wh361L9 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u62Wh361L9 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u62Wh361L9 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u62Wh361L9 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u62Wh361L9 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u62Wh361L9 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u62Wh361L9 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u62Wh361L9 .navbar.navbar-short {
  min-height: 60px;
}
.cid-u62Wh361L9 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u62Wh361L9 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u62Wh361L9 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u62Wh361L9 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u62Wh361L9 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u62Wh361L9 .dropdown-item.active,
.cid-u62Wh361L9 .dropdown-item:active {
  background-color: transparent;
}
.cid-u62Wh361L9 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u62Wh361L9 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u62Wh361L9 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u62Wh361L9 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u62Wh361L9 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u62Wh361L9 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u62Wh361L9 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u62Wh361L9 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u62Wh361L9 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u62Wh361L9 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u62Wh361L9 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u62Wh361L9 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u62Wh361L9 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u62Wh361L9 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u62Wh361L9 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u62Wh361L9 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u62Wh361L9 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u62Wh361L9 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u62Wh361L9 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u62Wh361L9 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u62Wh361L9 .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-u62Wh361L9 .navbar {
    height: 70px;
  }
  .cid-u62Wh361L9 .navbar.opened {
    height: auto;
  }
  .cid-u62Wh361L9 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u62Wh3lly0 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u62Wh3lly0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u62Wh3lly0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u62WyvvxUC {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u62Wh3GC6D {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-u62Wh3GC6D .mbr-text {
  color: #fafafa;
}
.cid-u62Wh3GC6D .mbr-section-subtitle {
  color: #fafafa;
}
.cid-u62Wh3OO1d {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #232323;
  overflow: hidden;
}
.cid-u62Wh3OO1d .media-container-row .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-u63004NZou {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u63004NZou nav.navbar {
  position: fixed;
}
.cid-u63004NZou .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-u63004NZou .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u63004NZou .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u63004NZou .dropdown-item:hover,
.cid-u63004NZou .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-u63004NZou .dropdown-item:hover span {
  color: white;
}
.cid-u63004NZou .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u63004NZou .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u63004NZou .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u63004NZou .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u63004NZou .nav-link {
  position: relative;
}
.cid-u63004NZou .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u63004NZou .container {
    flex-wrap: nowrap;
  }
}
.cid-u63004NZou .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u63004NZou .dropdown-menu,
.cid-u63004NZou .navbar.opened {
  background: #ffffff !important;
}
.cid-u63004NZou .nav-item:focus,
.cid-u63004NZou .nav-link:focus {
  outline: none;
}
.cid-u63004NZou .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u63004NZou .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u63004NZou .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u63004NZou .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u63004NZou .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u63004NZou .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u63004NZou .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-u63004NZou .navbar.opened {
  transition: all 0.3s;
}
.cid-u63004NZou .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u63004NZou .navbar .navbar-logo img {
  width: auto;
}
.cid-u63004NZou .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u63004NZou .navbar.collapsed {
  justify-content: center;
}
.cid-u63004NZou .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u63004NZou .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u63004NZou .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u63004NZou .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u63004NZou .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-u63004NZou .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u63004NZou .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u63004NZou .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u63004NZou .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u63004NZou .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u63004NZou .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u63004NZou .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u63004NZou .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-u63004NZou .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u63004NZou .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u63004NZou .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u63004NZou .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u63004NZou .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u63004NZou .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u63004NZou .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u63004NZou .navbar.navbar-short {
  min-height: 60px;
}
.cid-u63004NZou .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u63004NZou .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u63004NZou .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u63004NZou .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u63004NZou .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u63004NZou .dropdown-item.active,
.cid-u63004NZou .dropdown-item:active {
  background-color: transparent;
}
.cid-u63004NZou .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u63004NZou .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u63004NZou .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u63004NZou .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u63004NZou .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u63004NZou .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u63004NZou ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u63004NZou .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u63004NZou button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u63004NZou button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u63004NZou button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u63004NZou button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u63004NZou button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u63004NZou button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u63004NZou nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u63004NZou nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u63004NZou nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u63004NZou nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u63004NZou .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u63004NZou a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u63004NZou .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-u63004NZou .navbar {
    height: 70px;
  }
  .cid-u63004NZou .navbar.opened {
    height: auto;
  }
  .cid-u63004NZou .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u630052DXv {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u630052DXv .mbr-fallback-image.disabled {
  display: none;
}
.cid-u630052DXv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u63005dcol {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u63005kqya {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-u63005kqya .mbr-text {
  color: #fafafa;
}
.cid-u63005kqya .mbr-section-subtitle {
  color: #fafafa;
}
.cid-u63005qR3O {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #232323;
  overflow: hidden;
}
.cid-u63005qR3O .media-container-row .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-u631FL0Ikp {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u631FL0Ikp nav.navbar {
  position: fixed;
}
.cid-u631FL0Ikp .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-u631FL0Ikp .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u631FL0Ikp .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u631FL0Ikp .dropdown-item:hover,
.cid-u631FL0Ikp .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-u631FL0Ikp .dropdown-item:hover span {
  color: white;
}
.cid-u631FL0Ikp .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u631FL0Ikp .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u631FL0Ikp .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u631FL0Ikp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u631FL0Ikp .nav-link {
  position: relative;
}
.cid-u631FL0Ikp .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u631FL0Ikp .container {
    flex-wrap: nowrap;
  }
}
.cid-u631FL0Ikp .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u631FL0Ikp .dropdown-menu,
.cid-u631FL0Ikp .navbar.opened {
  background: #ffffff !important;
}
.cid-u631FL0Ikp .nav-item:focus,
.cid-u631FL0Ikp .nav-link:focus {
  outline: none;
}
.cid-u631FL0Ikp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u631FL0Ikp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u631FL0Ikp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u631FL0Ikp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u631FL0Ikp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u631FL0Ikp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u631FL0Ikp .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-u631FL0Ikp .navbar.opened {
  transition: all 0.3s;
}
.cid-u631FL0Ikp .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u631FL0Ikp .navbar .navbar-logo img {
  width: auto;
}
.cid-u631FL0Ikp .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u631FL0Ikp .navbar.collapsed {
  justify-content: center;
}
.cid-u631FL0Ikp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u631FL0Ikp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u631FL0Ikp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u631FL0Ikp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u631FL0Ikp .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-u631FL0Ikp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u631FL0Ikp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u631FL0Ikp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u631FL0Ikp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u631FL0Ikp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u631FL0Ikp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u631FL0Ikp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u631FL0Ikp .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-u631FL0Ikp .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u631FL0Ikp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u631FL0Ikp .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u631FL0Ikp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u631FL0Ikp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u631FL0Ikp .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u631FL0Ikp .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u631FL0Ikp .navbar.navbar-short {
  min-height: 60px;
}
.cid-u631FL0Ikp .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u631FL0Ikp .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u631FL0Ikp .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u631FL0Ikp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u631FL0Ikp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u631FL0Ikp .dropdown-item.active,
.cid-u631FL0Ikp .dropdown-item:active {
  background-color: transparent;
}
.cid-u631FL0Ikp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u631FL0Ikp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u631FL0Ikp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u631FL0Ikp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u631FL0Ikp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u631FL0Ikp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u631FL0Ikp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u631FL0Ikp .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u631FL0Ikp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u631FL0Ikp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u631FL0Ikp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u631FL0Ikp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u631FL0Ikp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u631FL0Ikp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u631FL0Ikp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u631FL0Ikp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u631FL0Ikp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u631FL0Ikp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u631FL0Ikp .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u631FL0Ikp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u631FL0Ikp .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-u631FL0Ikp .navbar {
    height: 70px;
  }
  .cid-u631FL0Ikp .navbar.opened {
    height: auto;
  }
  .cid-u631FL0Ikp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u631FLfqdS {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u631FLfqdS .mbr-fallback-image.disabled {
  display: none;
}
.cid-u631FLfqdS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u631FLqsWQ {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u631FLwKSF {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-u631FLwKSF .mbr-text {
  color: #fafafa;
}
.cid-u631FLwKSF .mbr-section-subtitle {
  color: #fafafa;
}
.cid-u631FLCwEn {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #232323;
  overflow: hidden;
}
.cid-u631FLCwEn .media-container-row .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-u632kkPMfk {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u632kkPMfk nav.navbar {
  position: fixed;
}
.cid-u632kkPMfk .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-u632kkPMfk .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u632kkPMfk .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u632kkPMfk .dropdown-item:hover,
.cid-u632kkPMfk .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-u632kkPMfk .dropdown-item:hover span {
  color: white;
}
.cid-u632kkPMfk .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u632kkPMfk .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u632kkPMfk .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u632kkPMfk .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u632kkPMfk .nav-link {
  position: relative;
}
.cid-u632kkPMfk .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u632kkPMfk .container {
    flex-wrap: nowrap;
  }
}
.cid-u632kkPMfk .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u632kkPMfk .dropdown-menu,
.cid-u632kkPMfk .navbar.opened {
  background: #ffffff !important;
}
.cid-u632kkPMfk .nav-item:focus,
.cid-u632kkPMfk .nav-link:focus {
  outline: none;
}
.cid-u632kkPMfk .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u632kkPMfk .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u632kkPMfk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u632kkPMfk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u632kkPMfk .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u632kkPMfk .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u632kkPMfk .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-u632kkPMfk .navbar.opened {
  transition: all 0.3s;
}
.cid-u632kkPMfk .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u632kkPMfk .navbar .navbar-logo img {
  width: auto;
}
.cid-u632kkPMfk .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u632kkPMfk .navbar.collapsed {
  justify-content: center;
}
.cid-u632kkPMfk .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u632kkPMfk .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u632kkPMfk .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u632kkPMfk .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u632kkPMfk .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-u632kkPMfk .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u632kkPMfk .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u632kkPMfk .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u632kkPMfk .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u632kkPMfk .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u632kkPMfk .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u632kkPMfk .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u632kkPMfk .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-u632kkPMfk .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u632kkPMfk .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u632kkPMfk .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u632kkPMfk .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u632kkPMfk .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u632kkPMfk .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u632kkPMfk .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u632kkPMfk .navbar.navbar-short {
  min-height: 60px;
}
.cid-u632kkPMfk .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u632kkPMfk .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u632kkPMfk .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u632kkPMfk .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u632kkPMfk .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u632kkPMfk .dropdown-item.active,
.cid-u632kkPMfk .dropdown-item:active {
  background-color: transparent;
}
.cid-u632kkPMfk .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u632kkPMfk .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u632kkPMfk .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u632kkPMfk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u632kkPMfk .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u632kkPMfk .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u632kkPMfk ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u632kkPMfk .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u632kkPMfk button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u632kkPMfk button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u632kkPMfk button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u632kkPMfk button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u632kkPMfk button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u632kkPMfk button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u632kkPMfk nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u632kkPMfk nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u632kkPMfk nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u632kkPMfk nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u632kkPMfk .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u632kkPMfk a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u632kkPMfk .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-u632kkPMfk .navbar {
    height: 70px;
  }
  .cid-u632kkPMfk .navbar.opened {
    height: auto;
  }
  .cid-u632kkPMfk .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u632kl5dLK {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u632kl5dLK .mbr-fallback-image.disabled {
  display: none;
}
.cid-u632kl5dLK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u632klidkJ {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u632klthCM {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-u632klthCM .mbr-text {
  color: #fafafa;
}
.cid-u632klthCM .mbr-section-subtitle {
  color: #fafafa;
}
.cid-u632klz7bs {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #232323;
  overflow: hidden;
}
.cid-u632klz7bs .media-container-row .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-u6331biTuw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u6331biTuw nav.navbar {
  position: fixed;
}
.cid-u6331biTuw .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-u6331biTuw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u6331biTuw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u6331biTuw .dropdown-item:hover,
.cid-u6331biTuw .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-u6331biTuw .dropdown-item:hover span {
  color: white;
}
.cid-u6331biTuw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u6331biTuw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u6331biTuw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u6331biTuw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u6331biTuw .nav-link {
  position: relative;
}
.cid-u6331biTuw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u6331biTuw .container {
    flex-wrap: nowrap;
  }
}
.cid-u6331biTuw .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u6331biTuw .dropdown-menu,
.cid-u6331biTuw .navbar.opened {
  background: #ffffff !important;
}
.cid-u6331biTuw .nav-item:focus,
.cid-u6331biTuw .nav-link:focus {
  outline: none;
}
.cid-u6331biTuw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u6331biTuw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u6331biTuw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u6331biTuw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u6331biTuw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u6331biTuw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u6331biTuw .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-u6331biTuw .navbar.opened {
  transition: all 0.3s;
}
.cid-u6331biTuw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u6331biTuw .navbar .navbar-logo img {
  width: auto;
}
.cid-u6331biTuw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u6331biTuw .navbar.collapsed {
  justify-content: center;
}
.cid-u6331biTuw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u6331biTuw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u6331biTuw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u6331biTuw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u6331biTuw .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-u6331biTuw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u6331biTuw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u6331biTuw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u6331biTuw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u6331biTuw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u6331biTuw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u6331biTuw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u6331biTuw .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-u6331biTuw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u6331biTuw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u6331biTuw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u6331biTuw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u6331biTuw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u6331biTuw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u6331biTuw .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u6331biTuw .navbar.navbar-short {
  min-height: 60px;
}
.cid-u6331biTuw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u6331biTuw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u6331biTuw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u6331biTuw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u6331biTuw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u6331biTuw .dropdown-item.active,
.cid-u6331biTuw .dropdown-item:active {
  background-color: transparent;
}
.cid-u6331biTuw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u6331biTuw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u6331biTuw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u6331biTuw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u6331biTuw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u6331biTuw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u6331biTuw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u6331biTuw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u6331biTuw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u6331biTuw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u6331biTuw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u6331biTuw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u6331biTuw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u6331biTuw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u6331biTuw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u6331biTuw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u6331biTuw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u6331biTuw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u6331biTuw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u6331biTuw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u6331biTuw .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-u6331biTuw .navbar {
    height: 70px;
  }
  .cid-u6331biTuw .navbar.opened {
    height: auto;
  }
  .cid-u6331biTuw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u6331bDs1C {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u6331bDs1C .mbr-fallback-image.disabled {
  display: none;
}
.cid-u6331bDs1C .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u6331bT4VQ {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u6331c3CMJ {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-u6331c3CMJ .mbr-text {
  color: #fafafa;
}
.cid-u6331c3CMJ .mbr-section-subtitle {
  color: #fafafa;
}
.cid-u6331ccl44 {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #232323;
  overflow: hidden;
}
.cid-u6331ccl44 .media-container-row .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-u633pqqIql {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u633pqqIql nav.navbar {
  position: fixed;
}
.cid-u633pqqIql .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-u633pqqIql .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u633pqqIql .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u633pqqIql .dropdown-item:hover,
.cid-u633pqqIql .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-u633pqqIql .dropdown-item:hover span {
  color: white;
}
.cid-u633pqqIql .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u633pqqIql .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u633pqqIql .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u633pqqIql .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u633pqqIql .nav-link {
  position: relative;
}
.cid-u633pqqIql .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u633pqqIql .container {
    flex-wrap: nowrap;
  }
}
.cid-u633pqqIql .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u633pqqIql .dropdown-menu,
.cid-u633pqqIql .navbar.opened {
  background: #ffffff !important;
}
.cid-u633pqqIql .nav-item:focus,
.cid-u633pqqIql .nav-link:focus {
  outline: none;
}
.cid-u633pqqIql .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u633pqqIql .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u633pqqIql .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u633pqqIql .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u633pqqIql .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u633pqqIql .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u633pqqIql .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-u633pqqIql .navbar.opened {
  transition: all 0.3s;
}
.cid-u633pqqIql .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u633pqqIql .navbar .navbar-logo img {
  width: auto;
}
.cid-u633pqqIql .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u633pqqIql .navbar.collapsed {
  justify-content: center;
}
.cid-u633pqqIql .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u633pqqIql .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u633pqqIql .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u633pqqIql .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u633pqqIql .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-u633pqqIql .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u633pqqIql .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u633pqqIql .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u633pqqIql .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u633pqqIql .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u633pqqIql .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u633pqqIql .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u633pqqIql .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-u633pqqIql .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u633pqqIql .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u633pqqIql .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u633pqqIql .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u633pqqIql .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u633pqqIql .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u633pqqIql .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u633pqqIql .navbar.navbar-short {
  min-height: 60px;
}
.cid-u633pqqIql .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u633pqqIql .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u633pqqIql .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u633pqqIql .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u633pqqIql .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u633pqqIql .dropdown-item.active,
.cid-u633pqqIql .dropdown-item:active {
  background-color: transparent;
}
.cid-u633pqqIql .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u633pqqIql .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u633pqqIql .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u633pqqIql .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u633pqqIql .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u633pqqIql .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u633pqqIql ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u633pqqIql .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u633pqqIql button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u633pqqIql button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u633pqqIql button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u633pqqIql button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u633pqqIql button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u633pqqIql button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u633pqqIql nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u633pqqIql nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u633pqqIql nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u633pqqIql nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u633pqqIql .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u633pqqIql a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u633pqqIql .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-u633pqqIql .navbar {
    height: 70px;
  }
  .cid-u633pqqIql .navbar.opened {
    height: auto;
  }
  .cid-u633pqqIql .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u633pqH9XU {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u633pqH9XU .mbr-fallback-image.disabled {
  display: none;
}
.cid-u633pqH9XU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u633pqUyJf {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u633pr4dFO {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-u633pr4dFO .mbr-text {
  color: #fafafa;
}
.cid-u633pr4dFO .mbr-section-subtitle {
  color: #fafafa;
}
.cid-u633prbqZF {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #232323;
  overflow: hidden;
}
.cid-u633prbqZF .media-container-row .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-u633JJMclY {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u633JJMclY nav.navbar {
  position: fixed;
}
.cid-u633JJMclY .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-u633JJMclY .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u633JJMclY .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u633JJMclY .dropdown-item:hover,
.cid-u633JJMclY .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-u633JJMclY .dropdown-item:hover span {
  color: white;
}
.cid-u633JJMclY .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u633JJMclY .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u633JJMclY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u633JJMclY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u633JJMclY .nav-link {
  position: relative;
}
.cid-u633JJMclY .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u633JJMclY .container {
    flex-wrap: nowrap;
  }
}
.cid-u633JJMclY .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u633JJMclY .dropdown-menu,
.cid-u633JJMclY .navbar.opened {
  background: #ffffff !important;
}
.cid-u633JJMclY .nav-item:focus,
.cid-u633JJMclY .nav-link:focus {
  outline: none;
}
.cid-u633JJMclY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u633JJMclY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u633JJMclY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u633JJMclY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u633JJMclY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u633JJMclY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u633JJMclY .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-u633JJMclY .navbar.opened {
  transition: all 0.3s;
}
.cid-u633JJMclY .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u633JJMclY .navbar .navbar-logo img {
  width: auto;
}
.cid-u633JJMclY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u633JJMclY .navbar.collapsed {
  justify-content: center;
}
.cid-u633JJMclY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u633JJMclY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u633JJMclY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u633JJMclY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u633JJMclY .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-u633JJMclY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u633JJMclY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u633JJMclY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u633JJMclY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u633JJMclY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u633JJMclY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u633JJMclY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u633JJMclY .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-u633JJMclY .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u633JJMclY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u633JJMclY .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u633JJMclY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u633JJMclY .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u633JJMclY .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u633JJMclY .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u633JJMclY .navbar.navbar-short {
  min-height: 60px;
}
.cid-u633JJMclY .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u633JJMclY .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u633JJMclY .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u633JJMclY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u633JJMclY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u633JJMclY .dropdown-item.active,
.cid-u633JJMclY .dropdown-item:active {
  background-color: transparent;
}
.cid-u633JJMclY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u633JJMclY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u633JJMclY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u633JJMclY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u633JJMclY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u633JJMclY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u633JJMclY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u633JJMclY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u633JJMclY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u633JJMclY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u633JJMclY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u633JJMclY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u633JJMclY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u633JJMclY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u633JJMclY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u633JJMclY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u633JJMclY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u633JJMclY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u633JJMclY .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u633JJMclY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u633JJMclY .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-u633JJMclY .navbar {
    height: 70px;
  }
  .cid-u633JJMclY .navbar.opened {
    height: auto;
  }
  .cid-u633JJMclY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u633JK12W8 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u633JK12W8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u633JK12W8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u633JKcGwW {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u633JKiBfc {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-u633JKiBfc .mbr-text {
  color: #fafafa;
}
.cid-u633JKiBfc .mbr-section-subtitle {
  color: #fafafa;
}
.cid-u633JKoi1u {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #232323;
  overflow: hidden;
}
.cid-u633JKoi1u .media-container-row .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-u6Jg9R840G {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u6Jg9R840G nav.navbar {
  position: fixed;
}
.cid-u6Jg9R840G .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-u6Jg9R840G .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u6Jg9R840G .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u6Jg9R840G .dropdown-item:hover,
.cid-u6Jg9R840G .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-u6Jg9R840G .dropdown-item:hover span {
  color: white;
}
.cid-u6Jg9R840G .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u6Jg9R840G .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u6Jg9R840G .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u6Jg9R840G .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u6Jg9R840G .nav-link {
  position: relative;
}
.cid-u6Jg9R840G .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u6Jg9R840G .container {
    flex-wrap: nowrap;
  }
}
.cid-u6Jg9R840G .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u6Jg9R840G .dropdown-menu,
.cid-u6Jg9R840G .navbar.opened {
  background: #ffffff !important;
}
.cid-u6Jg9R840G .nav-item:focus,
.cid-u6Jg9R840G .nav-link:focus {
  outline: none;
}
.cid-u6Jg9R840G .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u6Jg9R840G .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u6Jg9R840G .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u6Jg9R840G .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u6Jg9R840G .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u6Jg9R840G .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u6Jg9R840G .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-u6Jg9R840G .navbar.opened {
  transition: all 0.3s;
}
.cid-u6Jg9R840G .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u6Jg9R840G .navbar .navbar-logo img {
  width: auto;
}
.cid-u6Jg9R840G .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u6Jg9R840G .navbar.collapsed {
  justify-content: center;
}
.cid-u6Jg9R840G .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u6Jg9R840G .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u6Jg9R840G .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u6Jg9R840G .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u6Jg9R840G .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-u6Jg9R840G .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u6Jg9R840G .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u6Jg9R840G .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u6Jg9R840G .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u6Jg9R840G .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u6Jg9R840G .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u6Jg9R840G .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u6Jg9R840G .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-u6Jg9R840G .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u6Jg9R840G .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u6Jg9R840G .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u6Jg9R840G .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u6Jg9R840G .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u6Jg9R840G .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u6Jg9R840G .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u6Jg9R840G .navbar.navbar-short {
  min-height: 60px;
}
.cid-u6Jg9R840G .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u6Jg9R840G .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u6Jg9R840G .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u6Jg9R840G .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u6Jg9R840G .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u6Jg9R840G .dropdown-item.active,
.cid-u6Jg9R840G .dropdown-item:active {
  background-color: transparent;
}
.cid-u6Jg9R840G .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u6Jg9R840G .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u6Jg9R840G .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u6Jg9R840G .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u6Jg9R840G .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u6Jg9R840G .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u6Jg9R840G ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u6Jg9R840G .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u6Jg9R840G button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u6Jg9R840G button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u6Jg9R840G button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u6Jg9R840G button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u6Jg9R840G button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u6Jg9R840G button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u6Jg9R840G nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u6Jg9R840G nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u6Jg9R840G nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u6Jg9R840G nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u6Jg9R840G .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u6Jg9R840G a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u6Jg9R840G .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-u6Jg9R840G .navbar {
    height: 70px;
  }
  .cid-u6Jg9R840G .navbar.opened {
    height: auto;
  }
  .cid-u6Jg9R840G .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u6JgpCqbec {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u6Jg9SokW4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-u6Jg9SokW4 .mbr-text {
  color: #fafafa;
}
.cid-u6Jg9SokW4 .mbr-section-subtitle {
  color: #fafafa;
}
.cid-u6Jg9SvAK0 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-u6Jg9SvAK0 .media-container-row .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-u6JgUuzRH1 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u6JgUuzRH1 nav.navbar {
  position: fixed;
}
.cid-u6JgUuzRH1 .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-u6JgUuzRH1 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u6JgUuzRH1 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u6JgUuzRH1 .dropdown-item:hover,
.cid-u6JgUuzRH1 .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-u6JgUuzRH1 .dropdown-item:hover span {
  color: white;
}
.cid-u6JgUuzRH1 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u6JgUuzRH1 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u6JgUuzRH1 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u6JgUuzRH1 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u6JgUuzRH1 .nav-link {
  position: relative;
}
.cid-u6JgUuzRH1 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u6JgUuzRH1 .container {
    flex-wrap: nowrap;
  }
}
.cid-u6JgUuzRH1 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u6JgUuzRH1 .dropdown-menu,
.cid-u6JgUuzRH1 .navbar.opened {
  background: #ffffff !important;
}
.cid-u6JgUuzRH1 .nav-item:focus,
.cid-u6JgUuzRH1 .nav-link:focus {
  outline: none;
}
.cid-u6JgUuzRH1 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u6JgUuzRH1 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u6JgUuzRH1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u6JgUuzRH1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u6JgUuzRH1 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u6JgUuzRH1 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u6JgUuzRH1 .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-u6JgUuzRH1 .navbar.opened {
  transition: all 0.3s;
}
.cid-u6JgUuzRH1 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u6JgUuzRH1 .navbar .navbar-logo img {
  width: auto;
}
.cid-u6JgUuzRH1 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u6JgUuzRH1 .navbar.collapsed {
  justify-content: center;
}
.cid-u6JgUuzRH1 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u6JgUuzRH1 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u6JgUuzRH1 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u6JgUuzRH1 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u6JgUuzRH1 .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-u6JgUuzRH1 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u6JgUuzRH1 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u6JgUuzRH1 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u6JgUuzRH1 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u6JgUuzRH1 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u6JgUuzRH1 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u6JgUuzRH1 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u6JgUuzRH1 .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-u6JgUuzRH1 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u6JgUuzRH1 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u6JgUuzRH1 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u6JgUuzRH1 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u6JgUuzRH1 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u6JgUuzRH1 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u6JgUuzRH1 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u6JgUuzRH1 .navbar.navbar-short {
  min-height: 60px;
}
.cid-u6JgUuzRH1 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u6JgUuzRH1 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u6JgUuzRH1 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u6JgUuzRH1 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u6JgUuzRH1 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u6JgUuzRH1 .dropdown-item.active,
.cid-u6JgUuzRH1 .dropdown-item:active {
  background-color: transparent;
}
.cid-u6JgUuzRH1 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u6JgUuzRH1 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u6JgUuzRH1 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u6JgUuzRH1 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u6JgUuzRH1 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u6JgUuzRH1 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u6JgUuzRH1 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u6JgUuzRH1 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u6JgUuzRH1 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u6JgUuzRH1 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u6JgUuzRH1 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u6JgUuzRH1 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u6JgUuzRH1 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u6JgUuzRH1 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u6JgUuzRH1 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u6JgUuzRH1 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u6JgUuzRH1 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u6JgUuzRH1 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u6JgUuzRH1 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u6JgUuzRH1 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u6JgUuzRH1 .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-u6JgUuzRH1 .navbar {
    height: 70px;
  }
  .cid-u6JgUuzRH1 .navbar.opened {
    height: auto;
  }
  .cid-u6JgUuzRH1 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u6Jh5aZXyL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u6JgUuUuW9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-u6JgUuUuW9 .mbr-text {
  color: #fafafa;
}
.cid-u6JgUuUuW9 .mbr-section-subtitle {
  color: #fafafa;
}
.cid-u6JgUv0mZb {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-u6JgUv0mZb .media-container-row .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-u6Ji0rWf7g {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u6Ji0rWf7g nav.navbar {
  position: fixed;
}
.cid-u6Ji0rWf7g .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-u6Ji0rWf7g .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u6Ji0rWf7g .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u6Ji0rWf7g .dropdown-item:hover,
.cid-u6Ji0rWf7g .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-u6Ji0rWf7g .dropdown-item:hover span {
  color: white;
}
.cid-u6Ji0rWf7g .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u6Ji0rWf7g .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u6Ji0rWf7g .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u6Ji0rWf7g .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u6Ji0rWf7g .nav-link {
  position: relative;
}
.cid-u6Ji0rWf7g .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u6Ji0rWf7g .container {
    flex-wrap: nowrap;
  }
}
.cid-u6Ji0rWf7g .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u6Ji0rWf7g .dropdown-menu,
.cid-u6Ji0rWf7g .navbar.opened {
  background: #ffffff !important;
}
.cid-u6Ji0rWf7g .nav-item:focus,
.cid-u6Ji0rWf7g .nav-link:focus {
  outline: none;
}
.cid-u6Ji0rWf7g .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u6Ji0rWf7g .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u6Ji0rWf7g .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u6Ji0rWf7g .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u6Ji0rWf7g .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u6Ji0rWf7g .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u6Ji0rWf7g .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-u6Ji0rWf7g .navbar.opened {
  transition: all 0.3s;
}
.cid-u6Ji0rWf7g .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u6Ji0rWf7g .navbar .navbar-logo img {
  width: auto;
}
.cid-u6Ji0rWf7g .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u6Ji0rWf7g .navbar.collapsed {
  justify-content: center;
}
.cid-u6Ji0rWf7g .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u6Ji0rWf7g .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u6Ji0rWf7g .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u6Ji0rWf7g .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u6Ji0rWf7g .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-u6Ji0rWf7g .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u6Ji0rWf7g .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u6Ji0rWf7g .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u6Ji0rWf7g .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u6Ji0rWf7g .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u6Ji0rWf7g .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u6Ji0rWf7g .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u6Ji0rWf7g .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-u6Ji0rWf7g .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u6Ji0rWf7g .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u6Ji0rWf7g .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u6Ji0rWf7g .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u6Ji0rWf7g .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u6Ji0rWf7g .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u6Ji0rWf7g .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u6Ji0rWf7g .navbar.navbar-short {
  min-height: 60px;
}
.cid-u6Ji0rWf7g .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u6Ji0rWf7g .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u6Ji0rWf7g .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u6Ji0rWf7g .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u6Ji0rWf7g .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u6Ji0rWf7g .dropdown-item.active,
.cid-u6Ji0rWf7g .dropdown-item:active {
  background-color: transparent;
}
.cid-u6Ji0rWf7g .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u6Ji0rWf7g .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u6Ji0rWf7g .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u6Ji0rWf7g .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u6Ji0rWf7g .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u6Ji0rWf7g .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u6Ji0rWf7g ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u6Ji0rWf7g .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u6Ji0rWf7g button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u6Ji0rWf7g button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u6Ji0rWf7g button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u6Ji0rWf7g button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u6Ji0rWf7g button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u6Ji0rWf7g button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u6Ji0rWf7g nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u6Ji0rWf7g nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u6Ji0rWf7g nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u6Ji0rWf7g nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u6Ji0rWf7g .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u6Ji0rWf7g a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u6Ji0rWf7g .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-u6Ji0rWf7g .navbar {
    height: 70px;
  }
  .cid-u6Ji0rWf7g .navbar.opened {
    height: auto;
  }
  .cid-u6Ji0rWf7g .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u6Ji8l5qtm {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u6Ji0sjgQi {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-u6Ji0sjgQi .mbr-text {
  color: #fafafa;
}
.cid-u6Ji0sjgQi .mbr-section-subtitle {
  color: #fafafa;
}
.cid-u6Ji0soHJC {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-u6Ji0soHJC .media-container-row .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-u6JiRBycvp {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u6JiRBycvp nav.navbar {
  position: fixed;
}
.cid-u6JiRBycvp .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-u6JiRBycvp .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u6JiRBycvp .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u6JiRBycvp .dropdown-item:hover,
.cid-u6JiRBycvp .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-u6JiRBycvp .dropdown-item:hover span {
  color: white;
}
.cid-u6JiRBycvp .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u6JiRBycvp .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u6JiRBycvp .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u6JiRBycvp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u6JiRBycvp .nav-link {
  position: relative;
}
.cid-u6JiRBycvp .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u6JiRBycvp .container {
    flex-wrap: nowrap;
  }
}
.cid-u6JiRBycvp .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u6JiRBycvp .dropdown-menu,
.cid-u6JiRBycvp .navbar.opened {
  background: #ffffff !important;
}
.cid-u6JiRBycvp .nav-item:focus,
.cid-u6JiRBycvp .nav-link:focus {
  outline: none;
}
.cid-u6JiRBycvp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u6JiRBycvp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u6JiRBycvp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u6JiRBycvp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u6JiRBycvp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u6JiRBycvp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u6JiRBycvp .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-u6JiRBycvp .navbar.opened {
  transition: all 0.3s;
}
.cid-u6JiRBycvp .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u6JiRBycvp .navbar .navbar-logo img {
  width: auto;
}
.cid-u6JiRBycvp .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u6JiRBycvp .navbar.collapsed {
  justify-content: center;
}
.cid-u6JiRBycvp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u6JiRBycvp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u6JiRBycvp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u6JiRBycvp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u6JiRBycvp .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-u6JiRBycvp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u6JiRBycvp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u6JiRBycvp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u6JiRBycvp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u6JiRBycvp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u6JiRBycvp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u6JiRBycvp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u6JiRBycvp .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-u6JiRBycvp .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u6JiRBycvp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u6JiRBycvp .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u6JiRBycvp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u6JiRBycvp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u6JiRBycvp .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u6JiRBycvp .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u6JiRBycvp .navbar.navbar-short {
  min-height: 60px;
}
.cid-u6JiRBycvp .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u6JiRBycvp .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u6JiRBycvp .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u6JiRBycvp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u6JiRBycvp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u6JiRBycvp .dropdown-item.active,
.cid-u6JiRBycvp .dropdown-item:active {
  background-color: transparent;
}
.cid-u6JiRBycvp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u6JiRBycvp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u6JiRBycvp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u6JiRBycvp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u6JiRBycvp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u6JiRBycvp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u6JiRBycvp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u6JiRBycvp .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u6JiRBycvp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u6JiRBycvp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u6JiRBycvp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u6JiRBycvp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u6JiRBycvp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u6JiRBycvp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u6JiRBycvp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u6JiRBycvp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u6JiRBycvp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u6JiRBycvp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u6JiRBycvp .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u6JiRBycvp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u6JiRBycvp .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-u6JiRBycvp .navbar {
    height: 70px;
  }
  .cid-u6JiRBycvp .navbar.opened {
    height: auto;
  }
  .cid-u6JiRBycvp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u6JjTy5k91 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u6JiRBUwsD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-u6JiRBUwsD .mbr-text {
  color: #fafafa;
}
.cid-u6JiRBUwsD .mbr-section-subtitle {
  color: #fafafa;
}
.cid-u6JiRC0vrK {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-u6JiRC0vrK .media-container-row .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-u6JkxBop6N {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u6JkxBop6N nav.navbar {
  position: fixed;
}
.cid-u6JkxBop6N .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-u6JkxBop6N .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u6JkxBop6N .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u6JkxBop6N .dropdown-item:hover,
.cid-u6JkxBop6N .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-u6JkxBop6N .dropdown-item:hover span {
  color: white;
}
.cid-u6JkxBop6N .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u6JkxBop6N .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u6JkxBop6N .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u6JkxBop6N .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u6JkxBop6N .nav-link {
  position: relative;
}
.cid-u6JkxBop6N .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u6JkxBop6N .container {
    flex-wrap: nowrap;
  }
}
.cid-u6JkxBop6N .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u6JkxBop6N .dropdown-menu,
.cid-u6JkxBop6N .navbar.opened {
  background: #ffffff !important;
}
.cid-u6JkxBop6N .nav-item:focus,
.cid-u6JkxBop6N .nav-link:focus {
  outline: none;
}
.cid-u6JkxBop6N .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u6JkxBop6N .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u6JkxBop6N .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u6JkxBop6N .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u6JkxBop6N .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u6JkxBop6N .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u6JkxBop6N .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-u6JkxBop6N .navbar.opened {
  transition: all 0.3s;
}
.cid-u6JkxBop6N .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u6JkxBop6N .navbar .navbar-logo img {
  width: auto;
}
.cid-u6JkxBop6N .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u6JkxBop6N .navbar.collapsed {
  justify-content: center;
}
.cid-u6JkxBop6N .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u6JkxBop6N .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u6JkxBop6N .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u6JkxBop6N .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u6JkxBop6N .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-u6JkxBop6N .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u6JkxBop6N .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u6JkxBop6N .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u6JkxBop6N .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u6JkxBop6N .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u6JkxBop6N .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u6JkxBop6N .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u6JkxBop6N .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-u6JkxBop6N .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u6JkxBop6N .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u6JkxBop6N .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u6JkxBop6N .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u6JkxBop6N .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u6JkxBop6N .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u6JkxBop6N .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u6JkxBop6N .navbar.navbar-short {
  min-height: 60px;
}
.cid-u6JkxBop6N .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u6JkxBop6N .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u6JkxBop6N .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u6JkxBop6N .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u6JkxBop6N .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u6JkxBop6N .dropdown-item.active,
.cid-u6JkxBop6N .dropdown-item:active {
  background-color: transparent;
}
.cid-u6JkxBop6N .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u6JkxBop6N .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u6JkxBop6N .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u6JkxBop6N .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u6JkxBop6N .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u6JkxBop6N .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u6JkxBop6N ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u6JkxBop6N .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u6JkxBop6N button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u6JkxBop6N button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u6JkxBop6N button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u6JkxBop6N button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u6JkxBop6N button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u6JkxBop6N button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u6JkxBop6N nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u6JkxBop6N nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u6JkxBop6N nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u6JkxBop6N nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u6JkxBop6N .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u6JkxBop6N a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u6JkxBop6N .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-u6JkxBop6N .navbar {
    height: 70px;
  }
  .cid-u6JkxBop6N .navbar.opened {
    height: auto;
  }
  .cid-u6JkxBop6N .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u6JkKrN7cZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u6JkxBMCYF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-u6JkxBMCYF .mbr-text {
  color: #fafafa;
}
.cid-u6JkxBMCYF .mbr-section-subtitle {
  color: #fafafa;
}
.cid-u6JkxBT3tM {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-u6JkxBT3tM .media-container-row .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-u6JlxO082q {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u6JlxO082q nav.navbar {
  position: fixed;
}
.cid-u6JlxO082q .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-u6JlxO082q .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u6JlxO082q .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u6JlxO082q .dropdown-item:hover,
.cid-u6JlxO082q .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-u6JlxO082q .dropdown-item:hover span {
  color: white;
}
.cid-u6JlxO082q .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u6JlxO082q .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u6JlxO082q .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u6JlxO082q .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u6JlxO082q .nav-link {
  position: relative;
}
.cid-u6JlxO082q .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u6JlxO082q .container {
    flex-wrap: nowrap;
  }
}
.cid-u6JlxO082q .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u6JlxO082q .dropdown-menu,
.cid-u6JlxO082q .navbar.opened {
  background: #ffffff !important;
}
.cid-u6JlxO082q .nav-item:focus,
.cid-u6JlxO082q .nav-link:focus {
  outline: none;
}
.cid-u6JlxO082q .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u6JlxO082q .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u6JlxO082q .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u6JlxO082q .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u6JlxO082q .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u6JlxO082q .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u6JlxO082q .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-u6JlxO082q .navbar.opened {
  transition: all 0.3s;
}
.cid-u6JlxO082q .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u6JlxO082q .navbar .navbar-logo img {
  width: auto;
}
.cid-u6JlxO082q .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u6JlxO082q .navbar.collapsed {
  justify-content: center;
}
.cid-u6JlxO082q .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u6JlxO082q .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u6JlxO082q .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u6JlxO082q .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u6JlxO082q .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-u6JlxO082q .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u6JlxO082q .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u6JlxO082q .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u6JlxO082q .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u6JlxO082q .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u6JlxO082q .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u6JlxO082q .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u6JlxO082q .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-u6JlxO082q .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u6JlxO082q .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u6JlxO082q .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u6JlxO082q .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u6JlxO082q .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u6JlxO082q .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u6JlxO082q .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u6JlxO082q .navbar.navbar-short {
  min-height: 60px;
}
.cid-u6JlxO082q .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u6JlxO082q .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u6JlxO082q .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u6JlxO082q .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u6JlxO082q .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u6JlxO082q .dropdown-item.active,
.cid-u6JlxO082q .dropdown-item:active {
  background-color: transparent;
}
.cid-u6JlxO082q .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u6JlxO082q .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u6JlxO082q .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u6JlxO082q .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u6JlxO082q .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u6JlxO082q .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u6JlxO082q ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u6JlxO082q .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u6JlxO082q button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u6JlxO082q button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u6JlxO082q button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u6JlxO082q button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u6JlxO082q button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u6JlxO082q button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u6JlxO082q nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u6JlxO082q nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u6JlxO082q nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u6JlxO082q nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u6JlxO082q .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u6JlxO082q a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u6JlxO082q .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-u6JlxO082q .navbar {
    height: 70px;
  }
  .cid-u6JlxO082q .navbar.opened {
    height: auto;
  }
  .cid-u6JlxO082q .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u6JlItpUoo {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u6JlxOmaym {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-u6JlxOmaym .mbr-text {
  color: #fafafa;
}
.cid-u6JlxOmaym .mbr-section-subtitle {
  color: #fafafa;
}
.cid-u6JlxOsCH9 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-u6JlxOsCH9 .media-container-row .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-u6JlNU5zk5 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u6JlNU5zk5 nav.navbar {
  position: fixed;
}
.cid-u6JlNU5zk5 .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-u6JlNU5zk5 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u6JlNU5zk5 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u6JlNU5zk5 .dropdown-item:hover,
.cid-u6JlNU5zk5 .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-u6JlNU5zk5 .dropdown-item:hover span {
  color: white;
}
.cid-u6JlNU5zk5 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u6JlNU5zk5 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u6JlNU5zk5 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u6JlNU5zk5 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u6JlNU5zk5 .nav-link {
  position: relative;
}
.cid-u6JlNU5zk5 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u6JlNU5zk5 .container {
    flex-wrap: nowrap;
  }
}
.cid-u6JlNU5zk5 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u6JlNU5zk5 .dropdown-menu,
.cid-u6JlNU5zk5 .navbar.opened {
  background: #ffffff !important;
}
.cid-u6JlNU5zk5 .nav-item:focus,
.cid-u6JlNU5zk5 .nav-link:focus {
  outline: none;
}
.cid-u6JlNU5zk5 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u6JlNU5zk5 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u6JlNU5zk5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u6JlNU5zk5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u6JlNU5zk5 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u6JlNU5zk5 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u6JlNU5zk5 .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-u6JlNU5zk5 .navbar.opened {
  transition: all 0.3s;
}
.cid-u6JlNU5zk5 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u6JlNU5zk5 .navbar .navbar-logo img {
  width: auto;
}
.cid-u6JlNU5zk5 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u6JlNU5zk5 .navbar.collapsed {
  justify-content: center;
}
.cid-u6JlNU5zk5 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u6JlNU5zk5 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u6JlNU5zk5 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u6JlNU5zk5 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u6JlNU5zk5 .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-u6JlNU5zk5 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u6JlNU5zk5 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u6JlNU5zk5 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u6JlNU5zk5 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u6JlNU5zk5 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u6JlNU5zk5 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u6JlNU5zk5 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u6JlNU5zk5 .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-u6JlNU5zk5 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u6JlNU5zk5 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u6JlNU5zk5 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u6JlNU5zk5 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u6JlNU5zk5 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u6JlNU5zk5 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u6JlNU5zk5 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u6JlNU5zk5 .navbar.navbar-short {
  min-height: 60px;
}
.cid-u6JlNU5zk5 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u6JlNU5zk5 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u6JlNU5zk5 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u6JlNU5zk5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u6JlNU5zk5 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u6JlNU5zk5 .dropdown-item.active,
.cid-u6JlNU5zk5 .dropdown-item:active {
  background-color: transparent;
}
.cid-u6JlNU5zk5 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u6JlNU5zk5 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u6JlNU5zk5 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u6JlNU5zk5 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u6JlNU5zk5 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u6JlNU5zk5 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u6JlNU5zk5 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u6JlNU5zk5 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u6JlNU5zk5 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u6JlNU5zk5 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u6JlNU5zk5 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u6JlNU5zk5 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u6JlNU5zk5 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u6JlNU5zk5 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u6JlNU5zk5 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u6JlNU5zk5 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u6JlNU5zk5 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u6JlNU5zk5 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u6JlNU5zk5 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u6JlNU5zk5 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u6JlNU5zk5 .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-u6JlNU5zk5 .navbar {
    height: 70px;
  }
  .cid-u6JlNU5zk5 .navbar.opened {
    height: auto;
  }
  .cid-u6JlNU5zk5 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u6JlWHobvF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u6JlNUqx6c {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-u6JlNUqx6c .mbr-text {
  color: #fafafa;
}
.cid-u6JlNUqx6c .mbr-section-subtitle {
  color: #fafafa;
}
.cid-u6JlNUwKlJ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-u6JlNUwKlJ .media-container-row .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-u6JlZHHAod {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u6JlZHHAod nav.navbar {
  position: fixed;
}
.cid-u6JlZHHAod .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-u6JlZHHAod .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u6JlZHHAod .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u6JlZHHAod .dropdown-item:hover,
.cid-u6JlZHHAod .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-u6JlZHHAod .dropdown-item:hover span {
  color: white;
}
.cid-u6JlZHHAod .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u6JlZHHAod .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u6JlZHHAod .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u6JlZHHAod .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u6JlZHHAod .nav-link {
  position: relative;
}
.cid-u6JlZHHAod .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u6JlZHHAod .container {
    flex-wrap: nowrap;
  }
}
.cid-u6JlZHHAod .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u6JlZHHAod .dropdown-menu,
.cid-u6JlZHHAod .navbar.opened {
  background: #ffffff !important;
}
.cid-u6JlZHHAod .nav-item:focus,
.cid-u6JlZHHAod .nav-link:focus {
  outline: none;
}
.cid-u6JlZHHAod .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u6JlZHHAod .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u6JlZHHAod .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u6JlZHHAod .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u6JlZHHAod .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u6JlZHHAod .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u6JlZHHAod .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-u6JlZHHAod .navbar.opened {
  transition: all 0.3s;
}
.cid-u6JlZHHAod .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u6JlZHHAod .navbar .navbar-logo img {
  width: auto;
}
.cid-u6JlZHHAod .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u6JlZHHAod .navbar.collapsed {
  justify-content: center;
}
.cid-u6JlZHHAod .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u6JlZHHAod .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u6JlZHHAod .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u6JlZHHAod .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u6JlZHHAod .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-u6JlZHHAod .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u6JlZHHAod .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u6JlZHHAod .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u6JlZHHAod .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u6JlZHHAod .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u6JlZHHAod .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u6JlZHHAod .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u6JlZHHAod .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-u6JlZHHAod .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u6JlZHHAod .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u6JlZHHAod .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u6JlZHHAod .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u6JlZHHAod .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u6JlZHHAod .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u6JlZHHAod .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u6JlZHHAod .navbar.navbar-short {
  min-height: 60px;
}
.cid-u6JlZHHAod .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u6JlZHHAod .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u6JlZHHAod .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u6JlZHHAod .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u6JlZHHAod .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u6JlZHHAod .dropdown-item.active,
.cid-u6JlZHHAod .dropdown-item:active {
  background-color: transparent;
}
.cid-u6JlZHHAod .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u6JlZHHAod .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u6JlZHHAod .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u6JlZHHAod .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u6JlZHHAod .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u6JlZHHAod .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u6JlZHHAod ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u6JlZHHAod .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u6JlZHHAod button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u6JlZHHAod button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u6JlZHHAod button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u6JlZHHAod button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u6JlZHHAod button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u6JlZHHAod button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u6JlZHHAod nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u6JlZHHAod nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u6JlZHHAod nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u6JlZHHAod nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u6JlZHHAod .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u6JlZHHAod a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u6JlZHHAod .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-u6JlZHHAod .navbar {
    height: 70px;
  }
  .cid-u6JlZHHAod .navbar.opened {
    height: auto;
  }
  .cid-u6JlZHHAod .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u6Jm7z5UJe {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u6JlZIai7d {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-u6JlZIai7d .mbr-text {
  color: #fafafa;
}
.cid-u6JlZIai7d .mbr-section-subtitle {
  color: #fafafa;
}
.cid-u6JlZIiEEU {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-u6JlZIiEEU .media-container-row .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-u6JmhNUMpz {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u6JmhNUMpz nav.navbar {
  position: fixed;
}
.cid-u6JmhNUMpz .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-u6JmhNUMpz .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u6JmhNUMpz .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u6JmhNUMpz .dropdown-item:hover,
.cid-u6JmhNUMpz .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-u6JmhNUMpz .dropdown-item:hover span {
  color: white;
}
.cid-u6JmhNUMpz .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u6JmhNUMpz .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u6JmhNUMpz .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u6JmhNUMpz .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u6JmhNUMpz .nav-link {
  position: relative;
}
.cid-u6JmhNUMpz .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u6JmhNUMpz .container {
    flex-wrap: nowrap;
  }
}
.cid-u6JmhNUMpz .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u6JmhNUMpz .dropdown-menu,
.cid-u6JmhNUMpz .navbar.opened {
  background: #ffffff !important;
}
.cid-u6JmhNUMpz .nav-item:focus,
.cid-u6JmhNUMpz .nav-link:focus {
  outline: none;
}
.cid-u6JmhNUMpz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u6JmhNUMpz .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u6JmhNUMpz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u6JmhNUMpz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u6JmhNUMpz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u6JmhNUMpz .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u6JmhNUMpz .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-u6JmhNUMpz .navbar.opened {
  transition: all 0.3s;
}
.cid-u6JmhNUMpz .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u6JmhNUMpz .navbar .navbar-logo img {
  width: auto;
}
.cid-u6JmhNUMpz .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u6JmhNUMpz .navbar.collapsed {
  justify-content: center;
}
.cid-u6JmhNUMpz .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u6JmhNUMpz .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u6JmhNUMpz .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u6JmhNUMpz .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u6JmhNUMpz .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-u6JmhNUMpz .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u6JmhNUMpz .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u6JmhNUMpz .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u6JmhNUMpz .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u6JmhNUMpz .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u6JmhNUMpz .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u6JmhNUMpz .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u6JmhNUMpz .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-u6JmhNUMpz .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u6JmhNUMpz .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u6JmhNUMpz .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u6JmhNUMpz .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u6JmhNUMpz .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u6JmhNUMpz .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u6JmhNUMpz .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u6JmhNUMpz .navbar.navbar-short {
  min-height: 60px;
}
.cid-u6JmhNUMpz .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u6JmhNUMpz .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u6JmhNUMpz .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u6JmhNUMpz .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u6JmhNUMpz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u6JmhNUMpz .dropdown-item.active,
.cid-u6JmhNUMpz .dropdown-item:active {
  background-color: transparent;
}
.cid-u6JmhNUMpz .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u6JmhNUMpz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u6JmhNUMpz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u6JmhNUMpz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u6JmhNUMpz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u6JmhNUMpz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u6JmhNUMpz ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u6JmhNUMpz .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u6JmhNUMpz button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u6JmhNUMpz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u6JmhNUMpz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u6JmhNUMpz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u6JmhNUMpz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u6JmhNUMpz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u6JmhNUMpz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u6JmhNUMpz nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u6JmhNUMpz nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u6JmhNUMpz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u6JmhNUMpz .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u6JmhNUMpz a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u6JmhNUMpz .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-u6JmhNUMpz .navbar {
    height: 70px;
  }
  .cid-u6JmhNUMpz .navbar.opened {
    height: auto;
  }
  .cid-u6JmhNUMpz .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u6JmBtMvYt {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u6JmhOgYZ2 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-u6JmhOgYZ2 .mbr-text {
  color: #fafafa;
}
.cid-u6JmhOgYZ2 .mbr-section-subtitle {
  color: #fafafa;
}
.cid-u6JmhOmSof {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-u6JmhOmSof .media-container-row .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-u6JmKuYTPf {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u6JmKuYTPf nav.navbar {
  position: fixed;
}
.cid-u6JmKuYTPf .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-u6JmKuYTPf .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u6JmKuYTPf .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u6JmKuYTPf .dropdown-item:hover,
.cid-u6JmKuYTPf .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-u6JmKuYTPf .dropdown-item:hover span {
  color: white;
}
.cid-u6JmKuYTPf .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u6JmKuYTPf .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u6JmKuYTPf .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u6JmKuYTPf .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u6JmKuYTPf .nav-link {
  position: relative;
}
.cid-u6JmKuYTPf .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u6JmKuYTPf .container {
    flex-wrap: nowrap;
  }
}
.cid-u6JmKuYTPf .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u6JmKuYTPf .dropdown-menu,
.cid-u6JmKuYTPf .navbar.opened {
  background: #ffffff !important;
}
.cid-u6JmKuYTPf .nav-item:focus,
.cid-u6JmKuYTPf .nav-link:focus {
  outline: none;
}
.cid-u6JmKuYTPf .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u6JmKuYTPf .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u6JmKuYTPf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u6JmKuYTPf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u6JmKuYTPf .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u6JmKuYTPf .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u6JmKuYTPf .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-u6JmKuYTPf .navbar.opened {
  transition: all 0.3s;
}
.cid-u6JmKuYTPf .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u6JmKuYTPf .navbar .navbar-logo img {
  width: auto;
}
.cid-u6JmKuYTPf .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u6JmKuYTPf .navbar.collapsed {
  justify-content: center;
}
.cid-u6JmKuYTPf .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u6JmKuYTPf .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u6JmKuYTPf .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u6JmKuYTPf .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u6JmKuYTPf .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-u6JmKuYTPf .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u6JmKuYTPf .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u6JmKuYTPf .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u6JmKuYTPf .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u6JmKuYTPf .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u6JmKuYTPf .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u6JmKuYTPf .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u6JmKuYTPf .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-u6JmKuYTPf .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u6JmKuYTPf .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u6JmKuYTPf .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u6JmKuYTPf .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u6JmKuYTPf .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u6JmKuYTPf .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u6JmKuYTPf .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u6JmKuYTPf .navbar.navbar-short {
  min-height: 60px;
}
.cid-u6JmKuYTPf .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u6JmKuYTPf .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u6JmKuYTPf .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u6JmKuYTPf .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u6JmKuYTPf .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u6JmKuYTPf .dropdown-item.active,
.cid-u6JmKuYTPf .dropdown-item:active {
  background-color: transparent;
}
.cid-u6JmKuYTPf .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u6JmKuYTPf .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u6JmKuYTPf .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u6JmKuYTPf .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u6JmKuYTPf .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u6JmKuYTPf .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u6JmKuYTPf ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u6JmKuYTPf .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u6JmKuYTPf button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u6JmKuYTPf button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u6JmKuYTPf button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u6JmKuYTPf button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u6JmKuYTPf button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u6JmKuYTPf button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u6JmKuYTPf nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u6JmKuYTPf nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u6JmKuYTPf nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u6JmKuYTPf nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u6JmKuYTPf .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u6JmKuYTPf a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u6JmKuYTPf .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-u6JmKuYTPf .navbar {
    height: 70px;
  }
  .cid-u6JmKuYTPf .navbar.opened {
    height: auto;
  }
  .cid-u6JmKuYTPf .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u6JmKvcotV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u6JmKvivj7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-u6JmKvivj7 .mbr-text {
  color: #fafafa;
}
.cid-u6JmKvivj7 .mbr-section-subtitle {
  color: #fafafa;
}
.cid-u6JmKvorGI {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-u6JmKvorGI .media-container-row .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-u6JmEdbOyC {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u6JmEdbOyC nav.navbar {
  position: fixed;
}
.cid-u6JmEdbOyC .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-u6JmEdbOyC .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u6JmEdbOyC .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u6JmEdbOyC .dropdown-item:hover,
.cid-u6JmEdbOyC .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-u6JmEdbOyC .dropdown-item:hover span {
  color: white;
}
.cid-u6JmEdbOyC .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u6JmEdbOyC .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u6JmEdbOyC .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u6JmEdbOyC .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u6JmEdbOyC .nav-link {
  position: relative;
}
.cid-u6JmEdbOyC .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u6JmEdbOyC .container {
    flex-wrap: nowrap;
  }
}
.cid-u6JmEdbOyC .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u6JmEdbOyC .dropdown-menu,
.cid-u6JmEdbOyC .navbar.opened {
  background: #ffffff !important;
}
.cid-u6JmEdbOyC .nav-item:focus,
.cid-u6JmEdbOyC .nav-link:focus {
  outline: none;
}
.cid-u6JmEdbOyC .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u6JmEdbOyC .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u6JmEdbOyC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u6JmEdbOyC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u6JmEdbOyC .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u6JmEdbOyC .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u6JmEdbOyC .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-u6JmEdbOyC .navbar.opened {
  transition: all 0.3s;
}
.cid-u6JmEdbOyC .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u6JmEdbOyC .navbar .navbar-logo img {
  width: auto;
}
.cid-u6JmEdbOyC .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u6JmEdbOyC .navbar.collapsed {
  justify-content: center;
}
.cid-u6JmEdbOyC .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u6JmEdbOyC .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u6JmEdbOyC .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u6JmEdbOyC .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u6JmEdbOyC .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-u6JmEdbOyC .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u6JmEdbOyC .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u6JmEdbOyC .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u6JmEdbOyC .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u6JmEdbOyC .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u6JmEdbOyC .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u6JmEdbOyC .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u6JmEdbOyC .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-u6JmEdbOyC .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u6JmEdbOyC .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u6JmEdbOyC .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u6JmEdbOyC .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u6JmEdbOyC .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u6JmEdbOyC .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u6JmEdbOyC .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u6JmEdbOyC .navbar.navbar-short {
  min-height: 60px;
}
.cid-u6JmEdbOyC .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u6JmEdbOyC .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u6JmEdbOyC .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u6JmEdbOyC .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u6JmEdbOyC .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u6JmEdbOyC .dropdown-item.active,
.cid-u6JmEdbOyC .dropdown-item:active {
  background-color: transparent;
}
.cid-u6JmEdbOyC .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u6JmEdbOyC .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u6JmEdbOyC .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u6JmEdbOyC .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u6JmEdbOyC .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u6JmEdbOyC .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u6JmEdbOyC ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u6JmEdbOyC .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u6JmEdbOyC button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u6JmEdbOyC button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u6JmEdbOyC button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u6JmEdbOyC button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u6JmEdbOyC button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u6JmEdbOyC button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u6JmEdbOyC nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u6JmEdbOyC nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u6JmEdbOyC nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u6JmEdbOyC nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u6JmEdbOyC .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u6JmEdbOyC a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u6JmEdbOyC .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-u6JmEdbOyC .navbar {
    height: 70px;
  }
  .cid-u6JmEdbOyC .navbar.opened {
    height: auto;
  }
  .cid-u6JmEdbOyC .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u6JmEdp9Zv {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u6JmEdvm3w {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-u6JmEdvm3w .mbr-text {
  color: #fafafa;
}
.cid-u6JmEdvm3w .mbr-section-subtitle {
  color: #fafafa;
}
.cid-u6JmEdBtjc {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-u6JmEdBtjc .media-container-row .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-u6JmUc33z0 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u6JmUc33z0 nav.navbar {
  position: fixed;
}
.cid-u6JmUc33z0 .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-u6JmUc33z0 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u6JmUc33z0 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u6JmUc33z0 .dropdown-item:hover,
.cid-u6JmUc33z0 .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-u6JmUc33z0 .dropdown-item:hover span {
  color: white;
}
.cid-u6JmUc33z0 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u6JmUc33z0 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u6JmUc33z0 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u6JmUc33z0 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u6JmUc33z0 .nav-link {
  position: relative;
}
.cid-u6JmUc33z0 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u6JmUc33z0 .container {
    flex-wrap: nowrap;
  }
}
.cid-u6JmUc33z0 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u6JmUc33z0 .dropdown-menu,
.cid-u6JmUc33z0 .navbar.opened {
  background: #ffffff !important;
}
.cid-u6JmUc33z0 .nav-item:focus,
.cid-u6JmUc33z0 .nav-link:focus {
  outline: none;
}
.cid-u6JmUc33z0 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u6JmUc33z0 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u6JmUc33z0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u6JmUc33z0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u6JmUc33z0 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u6JmUc33z0 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u6JmUc33z0 .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-u6JmUc33z0 .navbar.opened {
  transition: all 0.3s;
}
.cid-u6JmUc33z0 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u6JmUc33z0 .navbar .navbar-logo img {
  width: auto;
}
.cid-u6JmUc33z0 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u6JmUc33z0 .navbar.collapsed {
  justify-content: center;
}
.cid-u6JmUc33z0 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u6JmUc33z0 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u6JmUc33z0 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u6JmUc33z0 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u6JmUc33z0 .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-u6JmUc33z0 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u6JmUc33z0 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u6JmUc33z0 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u6JmUc33z0 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u6JmUc33z0 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u6JmUc33z0 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u6JmUc33z0 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u6JmUc33z0 .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-u6JmUc33z0 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u6JmUc33z0 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u6JmUc33z0 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u6JmUc33z0 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u6JmUc33z0 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u6JmUc33z0 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u6JmUc33z0 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u6JmUc33z0 .navbar.navbar-short {
  min-height: 60px;
}
.cid-u6JmUc33z0 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u6JmUc33z0 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u6JmUc33z0 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u6JmUc33z0 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u6JmUc33z0 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u6JmUc33z0 .dropdown-item.active,
.cid-u6JmUc33z0 .dropdown-item:active {
  background-color: transparent;
}
.cid-u6JmUc33z0 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u6JmUc33z0 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u6JmUc33z0 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u6JmUc33z0 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u6JmUc33z0 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u6JmUc33z0 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u6JmUc33z0 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u6JmUc33z0 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u6JmUc33z0 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u6JmUc33z0 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u6JmUc33z0 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u6JmUc33z0 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u6JmUc33z0 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u6JmUc33z0 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u6JmUc33z0 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u6JmUc33z0 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u6JmUc33z0 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u6JmUc33z0 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u6JmUc33z0 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u6JmUc33z0 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u6JmUc33z0 .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-u6JmUc33z0 .navbar {
    height: 70px;
  }
  .cid-u6JmUc33z0 .navbar.opened {
    height: auto;
  }
  .cid-u6JmUc33z0 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u6JmUcpCiq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-u6JmUcpCiq .mbr-text {
  color: #fafafa;
}
.cid-u6JmUcpCiq .mbr-section-subtitle {
  color: #fafafa;
}
.cid-u6JmUcvj0B {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-u6JmUcvj0B .media-container-row .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-u6JnNzJBQK {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u6JnNzJBQK nav.navbar {
  position: fixed;
}
.cid-u6JnNzJBQK .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-u6JnNzJBQK .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u6JnNzJBQK .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u6JnNzJBQK .dropdown-item:hover,
.cid-u6JnNzJBQK .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-u6JnNzJBQK .dropdown-item:hover span {
  color: white;
}
.cid-u6JnNzJBQK .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u6JnNzJBQK .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u6JnNzJBQK .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u6JnNzJBQK .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u6JnNzJBQK .nav-link {
  position: relative;
}
.cid-u6JnNzJBQK .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u6JnNzJBQK .container {
    flex-wrap: nowrap;
  }
}
.cid-u6JnNzJBQK .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u6JnNzJBQK .dropdown-menu,
.cid-u6JnNzJBQK .navbar.opened {
  background: #ffffff !important;
}
.cid-u6JnNzJBQK .nav-item:focus,
.cid-u6JnNzJBQK .nav-link:focus {
  outline: none;
}
.cid-u6JnNzJBQK .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u6JnNzJBQK .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u6JnNzJBQK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u6JnNzJBQK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u6JnNzJBQK .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u6JnNzJBQK .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u6JnNzJBQK .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-u6JnNzJBQK .navbar.opened {
  transition: all 0.3s;
}
.cid-u6JnNzJBQK .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u6JnNzJBQK .navbar .navbar-logo img {
  width: auto;
}
.cid-u6JnNzJBQK .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u6JnNzJBQK .navbar.collapsed {
  justify-content: center;
}
.cid-u6JnNzJBQK .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u6JnNzJBQK .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u6JnNzJBQK .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u6JnNzJBQK .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u6JnNzJBQK .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-u6JnNzJBQK .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u6JnNzJBQK .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u6JnNzJBQK .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u6JnNzJBQK .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u6JnNzJBQK .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u6JnNzJBQK .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u6JnNzJBQK .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u6JnNzJBQK .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-u6JnNzJBQK .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u6JnNzJBQK .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u6JnNzJBQK .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u6JnNzJBQK .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u6JnNzJBQK .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u6JnNzJBQK .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u6JnNzJBQK .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u6JnNzJBQK .navbar.navbar-short {
  min-height: 60px;
}
.cid-u6JnNzJBQK .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u6JnNzJBQK .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u6JnNzJBQK .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u6JnNzJBQK .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u6JnNzJBQK .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u6JnNzJBQK .dropdown-item.active,
.cid-u6JnNzJBQK .dropdown-item:active {
  background-color: transparent;
}
.cid-u6JnNzJBQK .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u6JnNzJBQK .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u6JnNzJBQK .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u6JnNzJBQK .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u6JnNzJBQK .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u6JnNzJBQK .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u6JnNzJBQK ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u6JnNzJBQK .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u6JnNzJBQK button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u6JnNzJBQK button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u6JnNzJBQK button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u6JnNzJBQK button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u6JnNzJBQK button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u6JnNzJBQK button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u6JnNzJBQK nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u6JnNzJBQK nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u6JnNzJBQK nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u6JnNzJBQK nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u6JnNzJBQK .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u6JnNzJBQK a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u6JnNzJBQK .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-u6JnNzJBQK .navbar {
    height: 70px;
  }
  .cid-u6JnNzJBQK .navbar.opened {
    height: auto;
  }
  .cid-u6JnNzJBQK .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u6JnNA0RBw {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-u6JnNA0RBw .mbr-text {
  color: #fafafa;
}
.cid-u6JnNA0RBw .mbr-section-subtitle {
  color: #fafafa;
}
.cid-u6JnNA5qYf {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-u6JnNA5qYf .media-container-row .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-u6JnYwKuqd {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u6JnYwKuqd nav.navbar {
  position: fixed;
}
.cid-u6JnYwKuqd .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-u6JnYwKuqd .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u6JnYwKuqd .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u6JnYwKuqd .dropdown-item:hover,
.cid-u6JnYwKuqd .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-u6JnYwKuqd .dropdown-item:hover span {
  color: white;
}
.cid-u6JnYwKuqd .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u6JnYwKuqd .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u6JnYwKuqd .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u6JnYwKuqd .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u6JnYwKuqd .nav-link {
  position: relative;
}
.cid-u6JnYwKuqd .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u6JnYwKuqd .container {
    flex-wrap: nowrap;
  }
}
.cid-u6JnYwKuqd .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u6JnYwKuqd .dropdown-menu,
.cid-u6JnYwKuqd .navbar.opened {
  background: #ffffff !important;
}
.cid-u6JnYwKuqd .nav-item:focus,
.cid-u6JnYwKuqd .nav-link:focus {
  outline: none;
}
.cid-u6JnYwKuqd .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u6JnYwKuqd .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u6JnYwKuqd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u6JnYwKuqd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u6JnYwKuqd .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u6JnYwKuqd .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u6JnYwKuqd .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-u6JnYwKuqd .navbar.opened {
  transition: all 0.3s;
}
.cid-u6JnYwKuqd .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u6JnYwKuqd .navbar .navbar-logo img {
  width: auto;
}
.cid-u6JnYwKuqd .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u6JnYwKuqd .navbar.collapsed {
  justify-content: center;
}
.cid-u6JnYwKuqd .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u6JnYwKuqd .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u6JnYwKuqd .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u6JnYwKuqd .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u6JnYwKuqd .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-u6JnYwKuqd .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u6JnYwKuqd .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u6JnYwKuqd .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u6JnYwKuqd .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u6JnYwKuqd .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u6JnYwKuqd .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u6JnYwKuqd .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u6JnYwKuqd .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-u6JnYwKuqd .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u6JnYwKuqd .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u6JnYwKuqd .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u6JnYwKuqd .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u6JnYwKuqd .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u6JnYwKuqd .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u6JnYwKuqd .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u6JnYwKuqd .navbar.navbar-short {
  min-height: 60px;
}
.cid-u6JnYwKuqd .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u6JnYwKuqd .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u6JnYwKuqd .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u6JnYwKuqd .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u6JnYwKuqd .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u6JnYwKuqd .dropdown-item.active,
.cid-u6JnYwKuqd .dropdown-item:active {
  background-color: transparent;
}
.cid-u6JnYwKuqd .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u6JnYwKuqd .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u6JnYwKuqd .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u6JnYwKuqd .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u6JnYwKuqd .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u6JnYwKuqd .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u6JnYwKuqd ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u6JnYwKuqd .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u6JnYwKuqd button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u6JnYwKuqd button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u6JnYwKuqd button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u6JnYwKuqd button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u6JnYwKuqd button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u6JnYwKuqd button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u6JnYwKuqd nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u6JnYwKuqd nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u6JnYwKuqd nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u6JnYwKuqd nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u6JnYwKuqd .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u6JnYwKuqd a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u6JnYwKuqd .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-u6JnYwKuqd .navbar {
    height: 70px;
  }
  .cid-u6JnYwKuqd .navbar.opened {
    height: auto;
  }
  .cid-u6JnYwKuqd .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u6Jo3agXeB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u6JnYwZusg {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-u6JnYwZusg .mbr-text {
  color: #fafafa;
}
.cid-u6JnYwZusg .mbr-section-subtitle {
  color: #fafafa;
}
.cid-u6JnYx57nx {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-u6JnYx57nx .media-container-row .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-u6Joez22K0 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u6Joez22K0 nav.navbar {
  position: fixed;
}
.cid-u6Joez22K0 .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-u6Joez22K0 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u6Joez22K0 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u6Joez22K0 .dropdown-item:hover,
.cid-u6Joez22K0 .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-u6Joez22K0 .dropdown-item:hover span {
  color: white;
}
.cid-u6Joez22K0 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u6Joez22K0 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u6Joez22K0 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u6Joez22K0 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u6Joez22K0 .nav-link {
  position: relative;
}
.cid-u6Joez22K0 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u6Joez22K0 .container {
    flex-wrap: nowrap;
  }
}
.cid-u6Joez22K0 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u6Joez22K0 .dropdown-menu,
.cid-u6Joez22K0 .navbar.opened {
  background: #ffffff !important;
}
.cid-u6Joez22K0 .nav-item:focus,
.cid-u6Joez22K0 .nav-link:focus {
  outline: none;
}
.cid-u6Joez22K0 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u6Joez22K0 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u6Joez22K0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u6Joez22K0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u6Joez22K0 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u6Joez22K0 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u6Joez22K0 .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-u6Joez22K0 .navbar.opened {
  transition: all 0.3s;
}
.cid-u6Joez22K0 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u6Joez22K0 .navbar .navbar-logo img {
  width: auto;
}
.cid-u6Joez22K0 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u6Joez22K0 .navbar.collapsed {
  justify-content: center;
}
.cid-u6Joez22K0 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u6Joez22K0 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u6Joez22K0 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u6Joez22K0 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u6Joez22K0 .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-u6Joez22K0 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u6Joez22K0 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u6Joez22K0 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u6Joez22K0 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u6Joez22K0 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u6Joez22K0 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u6Joez22K0 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u6Joez22K0 .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-u6Joez22K0 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u6Joez22K0 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u6Joez22K0 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u6Joez22K0 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u6Joez22K0 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u6Joez22K0 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u6Joez22K0 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u6Joez22K0 .navbar.navbar-short {
  min-height: 60px;
}
.cid-u6Joez22K0 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u6Joez22K0 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u6Joez22K0 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u6Joez22K0 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u6Joez22K0 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u6Joez22K0 .dropdown-item.active,
.cid-u6Joez22K0 .dropdown-item:active {
  background-color: transparent;
}
.cid-u6Joez22K0 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u6Joez22K0 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u6Joez22K0 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u6Joez22K0 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u6Joez22K0 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u6Joez22K0 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u6Joez22K0 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u6Joez22K0 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u6Joez22K0 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u6Joez22K0 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u6Joez22K0 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u6Joez22K0 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u6Joez22K0 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u6Joez22K0 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u6Joez22K0 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u6Joez22K0 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u6Joez22K0 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u6Joez22K0 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u6Joez22K0 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u6Joez22K0 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u6Joez22K0 .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-u6Joez22K0 .navbar {
    height: 70px;
  }
  .cid-u6Joez22K0 .navbar.opened {
    height: auto;
  }
  .cid-u6Joez22K0 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u6Jol0ZcQc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u6Joezo3UJ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-u6Joezo3UJ .mbr-text {
  color: #fafafa;
}
.cid-u6Joezo3UJ .mbr-section-subtitle {
  color: #fafafa;
}
.cid-u6Joezudz9 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-u6Joezudz9 .media-container-row .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-u6JqHS1NIA {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u6JqHS1NIA nav.navbar {
  position: fixed;
}
.cid-u6JqHS1NIA .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-u6JqHS1NIA .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u6JqHS1NIA .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u6JqHS1NIA .dropdown-item:hover,
.cid-u6JqHS1NIA .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-u6JqHS1NIA .dropdown-item:hover span {
  color: white;
}
.cid-u6JqHS1NIA .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u6JqHS1NIA .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u6JqHS1NIA .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u6JqHS1NIA .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u6JqHS1NIA .nav-link {
  position: relative;
}
.cid-u6JqHS1NIA .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u6JqHS1NIA .container {
    flex-wrap: nowrap;
  }
}
.cid-u6JqHS1NIA .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u6JqHS1NIA .dropdown-menu,
.cid-u6JqHS1NIA .navbar.opened {
  background: #ffffff !important;
}
.cid-u6JqHS1NIA .nav-item:focus,
.cid-u6JqHS1NIA .nav-link:focus {
  outline: none;
}
.cid-u6JqHS1NIA .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u6JqHS1NIA .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u6JqHS1NIA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u6JqHS1NIA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u6JqHS1NIA .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u6JqHS1NIA .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u6JqHS1NIA .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-u6JqHS1NIA .navbar.opened {
  transition: all 0.3s;
}
.cid-u6JqHS1NIA .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u6JqHS1NIA .navbar .navbar-logo img {
  width: auto;
}
.cid-u6JqHS1NIA .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u6JqHS1NIA .navbar.collapsed {
  justify-content: center;
}
.cid-u6JqHS1NIA .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u6JqHS1NIA .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u6JqHS1NIA .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u6JqHS1NIA .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u6JqHS1NIA .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-u6JqHS1NIA .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u6JqHS1NIA .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u6JqHS1NIA .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u6JqHS1NIA .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u6JqHS1NIA .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u6JqHS1NIA .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u6JqHS1NIA .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u6JqHS1NIA .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-u6JqHS1NIA .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u6JqHS1NIA .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u6JqHS1NIA .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u6JqHS1NIA .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u6JqHS1NIA .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u6JqHS1NIA .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u6JqHS1NIA .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u6JqHS1NIA .navbar.navbar-short {
  min-height: 60px;
}
.cid-u6JqHS1NIA .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u6JqHS1NIA .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u6JqHS1NIA .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u6JqHS1NIA .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u6JqHS1NIA .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u6JqHS1NIA .dropdown-item.active,
.cid-u6JqHS1NIA .dropdown-item:active {
  background-color: transparent;
}
.cid-u6JqHS1NIA .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u6JqHS1NIA .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u6JqHS1NIA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u6JqHS1NIA .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u6JqHS1NIA .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u6JqHS1NIA .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u6JqHS1NIA ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u6JqHS1NIA .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u6JqHS1NIA button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u6JqHS1NIA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u6JqHS1NIA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u6JqHS1NIA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u6JqHS1NIA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u6JqHS1NIA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u6JqHS1NIA nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u6JqHS1NIA nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u6JqHS1NIA nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u6JqHS1NIA nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u6JqHS1NIA .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u6JqHS1NIA a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u6JqHS1NIA .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-u6JqHS1NIA .navbar {
    height: 70px;
  }
  .cid-u6JqHS1NIA .navbar.opened {
    height: auto;
  }
  .cid-u6JqHS1NIA .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u6JrpgoaY3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u6JqHSofaT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-u6JqHSofaT .mbr-text {
  color: #fafafa;
}
.cid-u6JqHSofaT .mbr-section-subtitle {
  color: #fafafa;
}
.cid-u6JqHSuSKa {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-u6JqHSuSKa .media-container-row .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-u6JscXd6DW {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u6JscXd6DW nav.navbar {
  position: fixed;
}
.cid-u6JscXd6DW .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-u6JscXd6DW .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u6JscXd6DW .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u6JscXd6DW .dropdown-item:hover,
.cid-u6JscXd6DW .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-u6JscXd6DW .dropdown-item:hover span {
  color: white;
}
.cid-u6JscXd6DW .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u6JscXd6DW .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u6JscXd6DW .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u6JscXd6DW .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u6JscXd6DW .nav-link {
  position: relative;
}
.cid-u6JscXd6DW .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u6JscXd6DW .container {
    flex-wrap: nowrap;
  }
}
.cid-u6JscXd6DW .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u6JscXd6DW .dropdown-menu,
.cid-u6JscXd6DW .navbar.opened {
  background: #ffffff !important;
}
.cid-u6JscXd6DW .nav-item:focus,
.cid-u6JscXd6DW .nav-link:focus {
  outline: none;
}
.cid-u6JscXd6DW .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u6JscXd6DW .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u6JscXd6DW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u6JscXd6DW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u6JscXd6DW .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u6JscXd6DW .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u6JscXd6DW .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-u6JscXd6DW .navbar.opened {
  transition: all 0.3s;
}
.cid-u6JscXd6DW .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u6JscXd6DW .navbar .navbar-logo img {
  width: auto;
}
.cid-u6JscXd6DW .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u6JscXd6DW .navbar.collapsed {
  justify-content: center;
}
.cid-u6JscXd6DW .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u6JscXd6DW .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u6JscXd6DW .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u6JscXd6DW .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u6JscXd6DW .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-u6JscXd6DW .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u6JscXd6DW .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u6JscXd6DW .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u6JscXd6DW .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u6JscXd6DW .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u6JscXd6DW .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u6JscXd6DW .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u6JscXd6DW .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-u6JscXd6DW .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u6JscXd6DW .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u6JscXd6DW .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u6JscXd6DW .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u6JscXd6DW .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u6JscXd6DW .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u6JscXd6DW .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u6JscXd6DW .navbar.navbar-short {
  min-height: 60px;
}
.cid-u6JscXd6DW .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u6JscXd6DW .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u6JscXd6DW .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u6JscXd6DW .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u6JscXd6DW .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u6JscXd6DW .dropdown-item.active,
.cid-u6JscXd6DW .dropdown-item:active {
  background-color: transparent;
}
.cid-u6JscXd6DW .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u6JscXd6DW .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u6JscXd6DW .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u6JscXd6DW .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u6JscXd6DW .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u6JscXd6DW .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u6JscXd6DW ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u6JscXd6DW .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u6JscXd6DW button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u6JscXd6DW button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u6JscXd6DW button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u6JscXd6DW button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u6JscXd6DW button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u6JscXd6DW button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u6JscXd6DW nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u6JscXd6DW nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u6JscXd6DW nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u6JscXd6DW nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u6JscXd6DW .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u6JscXd6DW a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u6JscXd6DW .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-u6JscXd6DW .navbar {
    height: 70px;
  }
  .cid-u6JscXd6DW .navbar.opened {
    height: auto;
  }
  .cid-u6JscXd6DW .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u6JsC4lZDD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u6JsInBWFv {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u6JscXzvrC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-u6JscXzvrC .mbr-text {
  color: #fafafa;
}
.cid-u6JscXzvrC .mbr-section-subtitle {
  color: #fafafa;
}
.cid-u6JscXG0iu {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-u6JscXG0iu .media-container-row .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-u6JsRtnfwC {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u6JsRtnfwC nav.navbar {
  position: fixed;
}
.cid-u6JsRtnfwC .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-u6JsRtnfwC .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u6JsRtnfwC .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u6JsRtnfwC .dropdown-item:hover,
.cid-u6JsRtnfwC .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-u6JsRtnfwC .dropdown-item:hover span {
  color: white;
}
.cid-u6JsRtnfwC .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u6JsRtnfwC .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u6JsRtnfwC .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u6JsRtnfwC .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u6JsRtnfwC .nav-link {
  position: relative;
}
.cid-u6JsRtnfwC .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u6JsRtnfwC .container {
    flex-wrap: nowrap;
  }
}
.cid-u6JsRtnfwC .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u6JsRtnfwC .dropdown-menu,
.cid-u6JsRtnfwC .navbar.opened {
  background: #ffffff !important;
}
.cid-u6JsRtnfwC .nav-item:focus,
.cid-u6JsRtnfwC .nav-link:focus {
  outline: none;
}
.cid-u6JsRtnfwC .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u6JsRtnfwC .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u6JsRtnfwC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u6JsRtnfwC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u6JsRtnfwC .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u6JsRtnfwC .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u6JsRtnfwC .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-u6JsRtnfwC .navbar.opened {
  transition: all 0.3s;
}
.cid-u6JsRtnfwC .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u6JsRtnfwC .navbar .navbar-logo img {
  width: auto;
}
.cid-u6JsRtnfwC .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u6JsRtnfwC .navbar.collapsed {
  justify-content: center;
}
.cid-u6JsRtnfwC .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u6JsRtnfwC .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u6JsRtnfwC .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u6JsRtnfwC .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u6JsRtnfwC .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-u6JsRtnfwC .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u6JsRtnfwC .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u6JsRtnfwC .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u6JsRtnfwC .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u6JsRtnfwC .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u6JsRtnfwC .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u6JsRtnfwC .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u6JsRtnfwC .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-u6JsRtnfwC .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u6JsRtnfwC .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u6JsRtnfwC .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u6JsRtnfwC .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u6JsRtnfwC .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u6JsRtnfwC .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u6JsRtnfwC .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u6JsRtnfwC .navbar.navbar-short {
  min-height: 60px;
}
.cid-u6JsRtnfwC .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u6JsRtnfwC .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u6JsRtnfwC .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u6JsRtnfwC .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u6JsRtnfwC .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u6JsRtnfwC .dropdown-item.active,
.cid-u6JsRtnfwC .dropdown-item:active {
  background-color: transparent;
}
.cid-u6JsRtnfwC .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u6JsRtnfwC .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u6JsRtnfwC .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u6JsRtnfwC .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u6JsRtnfwC .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u6JsRtnfwC .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u6JsRtnfwC ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u6JsRtnfwC .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u6JsRtnfwC button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u6JsRtnfwC button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u6JsRtnfwC button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u6JsRtnfwC button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u6JsRtnfwC button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u6JsRtnfwC button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u6JsRtnfwC nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u6JsRtnfwC nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u6JsRtnfwC nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u6JsRtnfwC nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u6JsRtnfwC .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u6JsRtnfwC a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u6JsRtnfwC .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-u6JsRtnfwC .navbar {
    height: 70px;
  }
  .cid-u6JsRtnfwC .navbar.opened {
    height: auto;
  }
  .cid-u6JsRtnfwC .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u6JtauCQV0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u6JtaPKKqf {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u6JtbbPxK8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u6Jtbuk9Jv {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u6JsRtKYjR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-u6JsRtKYjR .mbr-text {
  color: #fafafa;
}
.cid-u6JsRtKYjR .mbr-section-subtitle {
  color: #fafafa;
}
.cid-u6JsRtQpqf {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-u6JsRtQpqf .media-container-row .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-u6JteKQ04S {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u6JteKQ04S nav.navbar {
  position: fixed;
}
.cid-u6JteKQ04S .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-u6JteKQ04S .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u6JteKQ04S .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u6JteKQ04S .dropdown-item:hover,
.cid-u6JteKQ04S .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-u6JteKQ04S .dropdown-item:hover span {
  color: white;
}
.cid-u6JteKQ04S .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u6JteKQ04S .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u6JteKQ04S .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u6JteKQ04S .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u6JteKQ04S .nav-link {
  position: relative;
}
.cid-u6JteKQ04S .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u6JteKQ04S .container {
    flex-wrap: nowrap;
  }
}
.cid-u6JteKQ04S .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u6JteKQ04S .dropdown-menu,
.cid-u6JteKQ04S .navbar.opened {
  background: #ffffff !important;
}
.cid-u6JteKQ04S .nav-item:focus,
.cid-u6JteKQ04S .nav-link:focus {
  outline: none;
}
.cid-u6JteKQ04S .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u6JteKQ04S .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u6JteKQ04S .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u6JteKQ04S .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u6JteKQ04S .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u6JteKQ04S .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u6JteKQ04S .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-u6JteKQ04S .navbar.opened {
  transition: all 0.3s;
}
.cid-u6JteKQ04S .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u6JteKQ04S .navbar .navbar-logo img {
  width: auto;
}
.cid-u6JteKQ04S .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u6JteKQ04S .navbar.collapsed {
  justify-content: center;
}
.cid-u6JteKQ04S .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u6JteKQ04S .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u6JteKQ04S .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u6JteKQ04S .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u6JteKQ04S .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-u6JteKQ04S .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u6JteKQ04S .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u6JteKQ04S .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u6JteKQ04S .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u6JteKQ04S .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u6JteKQ04S .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u6JteKQ04S .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u6JteKQ04S .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-u6JteKQ04S .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u6JteKQ04S .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u6JteKQ04S .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u6JteKQ04S .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u6JteKQ04S .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u6JteKQ04S .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u6JteKQ04S .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u6JteKQ04S .navbar.navbar-short {
  min-height: 60px;
}
.cid-u6JteKQ04S .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u6JteKQ04S .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u6JteKQ04S .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u6JteKQ04S .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u6JteKQ04S .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u6JteKQ04S .dropdown-item.active,
.cid-u6JteKQ04S .dropdown-item:active {
  background-color: transparent;
}
.cid-u6JteKQ04S .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u6JteKQ04S .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u6JteKQ04S .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u6JteKQ04S .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u6JteKQ04S .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u6JteKQ04S .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u6JteKQ04S ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u6JteKQ04S .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u6JteKQ04S button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u6JteKQ04S button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u6JteKQ04S button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u6JteKQ04S button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u6JteKQ04S button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u6JteKQ04S button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u6JteKQ04S nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u6JteKQ04S nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u6JteKQ04S nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u6JteKQ04S nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u6JteKQ04S .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u6JteKQ04S a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u6JteKQ04S .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-u6JteKQ04S .navbar {
    height: 70px;
  }
  .cid-u6JteKQ04S .navbar.opened {
    height: auto;
  }
  .cid-u6JteKQ04S .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u6JtTlOt8V {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u6JtTGiWDc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u6JtU0y0Ov {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u6JtUAcA7M {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u6JtUk3sKC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u6JteLx800 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-u6JteLx800 .mbr-text {
  color: #fafafa;
}
.cid-u6JteLx800 .mbr-section-subtitle {
  color: #fafafa;
}
.cid-u6JteLCJJo {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-u6JteLCJJo .media-container-row .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-u6Jv7sYkb9 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u6Jv7sYkb9 nav.navbar {
  position: fixed;
}
.cid-u6Jv7sYkb9 .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-u6Jv7sYkb9 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u6Jv7sYkb9 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u6Jv7sYkb9 .dropdown-item:hover,
.cid-u6Jv7sYkb9 .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-u6Jv7sYkb9 .dropdown-item:hover span {
  color: white;
}
.cid-u6Jv7sYkb9 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u6Jv7sYkb9 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u6Jv7sYkb9 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u6Jv7sYkb9 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u6Jv7sYkb9 .nav-link {
  position: relative;
}
.cid-u6Jv7sYkb9 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u6Jv7sYkb9 .container {
    flex-wrap: nowrap;
  }
}
.cid-u6Jv7sYkb9 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u6Jv7sYkb9 .dropdown-menu,
.cid-u6Jv7sYkb9 .navbar.opened {
  background: #ffffff !important;
}
.cid-u6Jv7sYkb9 .nav-item:focus,
.cid-u6Jv7sYkb9 .nav-link:focus {
  outline: none;
}
.cid-u6Jv7sYkb9 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u6Jv7sYkb9 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u6Jv7sYkb9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u6Jv7sYkb9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u6Jv7sYkb9 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u6Jv7sYkb9 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u6Jv7sYkb9 .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-u6Jv7sYkb9 .navbar.opened {
  transition: all 0.3s;
}
.cid-u6Jv7sYkb9 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u6Jv7sYkb9 .navbar .navbar-logo img {
  width: auto;
}
.cid-u6Jv7sYkb9 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u6Jv7sYkb9 .navbar.collapsed {
  justify-content: center;
}
.cid-u6Jv7sYkb9 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u6Jv7sYkb9 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u6Jv7sYkb9 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u6Jv7sYkb9 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u6Jv7sYkb9 .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-u6Jv7sYkb9 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u6Jv7sYkb9 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u6Jv7sYkb9 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u6Jv7sYkb9 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u6Jv7sYkb9 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u6Jv7sYkb9 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u6Jv7sYkb9 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u6Jv7sYkb9 .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-u6Jv7sYkb9 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u6Jv7sYkb9 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u6Jv7sYkb9 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u6Jv7sYkb9 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u6Jv7sYkb9 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u6Jv7sYkb9 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u6Jv7sYkb9 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u6Jv7sYkb9 .navbar.navbar-short {
  min-height: 60px;
}
.cid-u6Jv7sYkb9 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u6Jv7sYkb9 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u6Jv7sYkb9 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u6Jv7sYkb9 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u6Jv7sYkb9 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u6Jv7sYkb9 .dropdown-item.active,
.cid-u6Jv7sYkb9 .dropdown-item:active {
  background-color: transparent;
}
.cid-u6Jv7sYkb9 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u6Jv7sYkb9 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u6Jv7sYkb9 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u6Jv7sYkb9 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u6Jv7sYkb9 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u6Jv7sYkb9 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u6Jv7sYkb9 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u6Jv7sYkb9 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u6Jv7sYkb9 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u6Jv7sYkb9 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u6Jv7sYkb9 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u6Jv7sYkb9 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u6Jv7sYkb9 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u6Jv7sYkb9 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u6Jv7sYkb9 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u6Jv7sYkb9 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u6Jv7sYkb9 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u6Jv7sYkb9 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u6Jv7sYkb9 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u6Jv7sYkb9 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u6Jv7sYkb9 .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-u6Jv7sYkb9 .navbar {
    height: 70px;
  }
  .cid-u6Jv7sYkb9 .navbar.opened {
    height: auto;
  }
  .cid-u6Jv7sYkb9 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u6JvttVXeO {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u6JvtPOPdX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u6Jv7tH5gH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-u6Jv7tH5gH .mbr-text {
  color: #fafafa;
}
.cid-u6Jv7tH5gH .mbr-section-subtitle {
  color: #fafafa;
}
.cid-u6Jv7tMtcI {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-u6Jv7tMtcI .media-container-row .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-u5H0UnW1z4 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u5H0UnW1z4 nav.navbar {
  position: fixed;
}
.cid-u5H0UnW1z4 .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-u5H0UnW1z4 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u5H0UnW1z4 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u5H0UnW1z4 .dropdown-item:hover,
.cid-u5H0UnW1z4 .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-u5H0UnW1z4 .dropdown-item:hover span {
  color: white;
}
.cid-u5H0UnW1z4 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u5H0UnW1z4 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u5H0UnW1z4 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u5H0UnW1z4 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u5H0UnW1z4 .nav-link {
  position: relative;
}
.cid-u5H0UnW1z4 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u5H0UnW1z4 .container {
    flex-wrap: nowrap;
  }
}
.cid-u5H0UnW1z4 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u5H0UnW1z4 .dropdown-menu,
.cid-u5H0UnW1z4 .navbar.opened {
  background: #ffffff !important;
}
.cid-u5H0UnW1z4 .nav-item:focus,
.cid-u5H0UnW1z4 .nav-link:focus {
  outline: none;
}
.cid-u5H0UnW1z4 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u5H0UnW1z4 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u5H0UnW1z4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u5H0UnW1z4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u5H0UnW1z4 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u5H0UnW1z4 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u5H0UnW1z4 .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-u5H0UnW1z4 .navbar.opened {
  transition: all 0.3s;
}
.cid-u5H0UnW1z4 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u5H0UnW1z4 .navbar .navbar-logo img {
  width: auto;
}
.cid-u5H0UnW1z4 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u5H0UnW1z4 .navbar.collapsed {
  justify-content: center;
}
.cid-u5H0UnW1z4 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u5H0UnW1z4 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u5H0UnW1z4 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u5H0UnW1z4 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u5H0UnW1z4 .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-u5H0UnW1z4 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u5H0UnW1z4 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u5H0UnW1z4 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u5H0UnW1z4 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u5H0UnW1z4 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u5H0UnW1z4 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u5H0UnW1z4 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u5H0UnW1z4 .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-u5H0UnW1z4 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u5H0UnW1z4 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u5H0UnW1z4 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u5H0UnW1z4 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u5H0UnW1z4 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u5H0UnW1z4 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u5H0UnW1z4 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u5H0UnW1z4 .navbar.navbar-short {
  min-height: 60px;
}
.cid-u5H0UnW1z4 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u5H0UnW1z4 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u5H0UnW1z4 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u5H0UnW1z4 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u5H0UnW1z4 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u5H0UnW1z4 .dropdown-item.active,
.cid-u5H0UnW1z4 .dropdown-item:active {
  background-color: transparent;
}
.cid-u5H0UnW1z4 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u5H0UnW1z4 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u5H0UnW1z4 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u5H0UnW1z4 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u5H0UnW1z4 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u5H0UnW1z4 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u5H0UnW1z4 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u5H0UnW1z4 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u5H0UnW1z4 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u5H0UnW1z4 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u5H0UnW1z4 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u5H0UnW1z4 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u5H0UnW1z4 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u5H0UnW1z4 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u5H0UnW1z4 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u5H0UnW1z4 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u5H0UnW1z4 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u5H0UnW1z4 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u5H0UnW1z4 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u5H0UnW1z4 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u5H0UnW1z4 .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-u5H0UnW1z4 .navbar {
    height: 70px;
  }
  .cid-u5H0UnW1z4 .navbar.opened {
    height: auto;
  }
  .cid-u5H0UnW1z4 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u5H0UocCbF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u5H0UojJm2 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u5H0UoqN3C {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u5H0Uox5R0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-u5H0Uox5R0 .mbr-section-subtitle {
  color: #fafafa;
}
.cid-u5H0Uox5R0 .mbr-text {
  color: #fafafa;
}
.cid-u5H0UoDxnr {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-u5H0UoDxnr .media-container-row .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-u6JsL9HS3E {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u6JsL9HS3E nav.navbar {
  position: fixed;
}
.cid-u6JsL9HS3E .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-u6JsL9HS3E .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u6JsL9HS3E .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u6JsL9HS3E .dropdown-item:hover,
.cid-u6JsL9HS3E .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-u6JsL9HS3E .dropdown-item:hover span {
  color: white;
}
.cid-u6JsL9HS3E .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u6JsL9HS3E .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u6JsL9HS3E .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u6JsL9HS3E .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u6JsL9HS3E .nav-link {
  position: relative;
}
.cid-u6JsL9HS3E .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u6JsL9HS3E .container {
    flex-wrap: nowrap;
  }
}
.cid-u6JsL9HS3E .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u6JsL9HS3E .dropdown-menu,
.cid-u6JsL9HS3E .navbar.opened {
  background: #ffffff !important;
}
.cid-u6JsL9HS3E .nav-item:focus,
.cid-u6JsL9HS3E .nav-link:focus {
  outline: none;
}
.cid-u6JsL9HS3E .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u6JsL9HS3E .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u6JsL9HS3E .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u6JsL9HS3E .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u6JsL9HS3E .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u6JsL9HS3E .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u6JsL9HS3E .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-u6JsL9HS3E .navbar.opened {
  transition: all 0.3s;
}
.cid-u6JsL9HS3E .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u6JsL9HS3E .navbar .navbar-logo img {
  width: auto;
}
.cid-u6JsL9HS3E .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u6JsL9HS3E .navbar.collapsed {
  justify-content: center;
}
.cid-u6JsL9HS3E .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u6JsL9HS3E .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u6JsL9HS3E .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u6JsL9HS3E .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u6JsL9HS3E .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-u6JsL9HS3E .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u6JsL9HS3E .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u6JsL9HS3E .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u6JsL9HS3E .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u6JsL9HS3E .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u6JsL9HS3E .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u6JsL9HS3E .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u6JsL9HS3E .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-u6JsL9HS3E .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u6JsL9HS3E .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u6JsL9HS3E .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u6JsL9HS3E .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u6JsL9HS3E .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u6JsL9HS3E .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u6JsL9HS3E .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u6JsL9HS3E .navbar.navbar-short {
  min-height: 60px;
}
.cid-u6JsL9HS3E .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u6JsL9HS3E .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u6JsL9HS3E .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u6JsL9HS3E .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u6JsL9HS3E .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u6JsL9HS3E .dropdown-item.active,
.cid-u6JsL9HS3E .dropdown-item:active {
  background-color: transparent;
}
.cid-u6JsL9HS3E .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u6JsL9HS3E .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u6JsL9HS3E .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u6JsL9HS3E .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u6JsL9HS3E .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u6JsL9HS3E .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u6JsL9HS3E ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u6JsL9HS3E .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u6JsL9HS3E button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u6JsL9HS3E button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u6JsL9HS3E button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u6JsL9HS3E button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u6JsL9HS3E button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u6JsL9HS3E button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u6JsL9HS3E nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u6JsL9HS3E nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u6JsL9HS3E nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u6JsL9HS3E nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u6JsL9HS3E .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u6JsL9HS3E a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u6JsL9HS3E .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-u6JsL9HS3E .navbar {
    height: 70px;
  }
  .cid-u6JsL9HS3E .navbar.opened {
    height: auto;
  }
  .cid-u6JsL9HS3E .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u6JsLa3rZ2 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u6JsLa8KW4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-u6JsLa8KW4 .mbr-text {
  color: #fafafa;
}
.cid-u6JsLa8KW4 .mbr-section-subtitle {
  color: #fafafa;
}
.cid-u6JsLagjJF {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-u6JsLagjJF .media-container-row .mbr-text {
  color: #fafafa;
  text-align: left;
}
