.btn {
  border-width: 2px;
}
body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 2.5rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 3.125rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 2.3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 2.875rem;
}
.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: 1.5rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 1.875rem;
}
.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: 2rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 1.75rem;
    font-size: calc( 1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.84rem;
    font-size: calc( 1.455rem + (2.3 - 1.455) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.455rem + (2.3 - 1.455) * ((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.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((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: #f0b342 !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: #f0b342 !important;
  border-color: #f0b342 !important;
  color: #ffffff !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: #ffffff !important;
  background-color: #cb8a10 !important;
  border-color: #cb8a10 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #cb8a10 !important;
  border-color: #cb8a10 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #6592e6;
  color: #6592e6;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #2260d2 !important;
  background-color: transparent!important;
  border-color: #2260d2 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #ff6666;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: #ff0f0f !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #47b5ed;
  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: #148cca !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: #40b0bf;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: #2a747e !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #f0b342;
  color: #f0b342;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #cb8a10 !important;
  background-color: transparent!important;
  border-color: #cb8a10 !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #f0b342 !important;
  border-color: #f0b342 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #ff9966;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: #ff5f0f !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: #cfcfcf !important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #6592e6 !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #f0b342 !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: #bd800f !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: #f0b342;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #6592e6;
  border-color: #6592e6;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #6592e6;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #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 a {
  border-radius: 100px;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #6592e6 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #6592e6;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #6592e6;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #6592e6;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #6592e6;
  border-bottom-color: #6592e6;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #6592e6 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ff6666 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%236592e6' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
*:focus-visible {
  outline: red solid 2px !important;
  outline-offset: 2px !important;
  transition: outline 0.2s ease-in-out;
}
.cid-tBBq4A6ZPr {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tBBq4A6ZPr nav.navbar {
  position: fixed;
}
.cid-tBBq4A6ZPr .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-tBBq4A6ZPr .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tBBq4A6ZPr .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tBBq4A6ZPr .dropdown-item:hover,
.cid-tBBq4A6ZPr .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tBBq4A6ZPr .dropdown-item:hover span {
  color: white;
}
.cid-tBBq4A6ZPr .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tBBq4A6ZPr .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tBBq4A6ZPr .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tBBq4A6ZPr .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tBBq4A6ZPr .nav-link {
  position: relative;
}
.cid-tBBq4A6ZPr .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tBBq4A6ZPr .container {
    flex-wrap: wrap;
  }
}
.cid-tBBq4A6ZPr .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tBBq4A6ZPr .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tBBq4A6ZPr .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tBBq4A6ZPr .dropdown-menu,
.cid-tBBq4A6ZPr .navbar.opened {
  background: #002245 !important;
}
.cid-tBBq4A6ZPr .nav-item:focus,
.cid-tBBq4A6ZPr .nav-link:focus {
  outline: none;
}
.cid-tBBq4A6ZPr .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tBBq4A6ZPr .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tBBq4A6ZPr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tBBq4A6ZPr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tBBq4A6ZPr .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tBBq4A6ZPr .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tBBq4A6ZPr .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: #002245;
}
.cid-tBBq4A6ZPr .navbar.opened {
  transition: all 0.3s;
}
.cid-tBBq4A6ZPr .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tBBq4A6ZPr .navbar .navbar-logo img {
  width: auto;
}
.cid-tBBq4A6ZPr .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tBBq4A6ZPr .navbar.collapsed {
  justify-content: center;
}
.cid-tBBq4A6ZPr .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tBBq4A6ZPr .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tBBq4A6ZPr .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-tBBq4A6ZPr .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tBBq4A6ZPr .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tBBq4A6ZPr .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-tBBq4A6ZPr .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tBBq4A6ZPr .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tBBq4A6ZPr .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tBBq4A6ZPr .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tBBq4A6ZPr .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tBBq4A6ZPr .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tBBq4A6ZPr .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tBBq4A6ZPr .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-tBBq4A6ZPr .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tBBq4A6ZPr .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tBBq4A6ZPr .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tBBq4A6ZPr .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tBBq4A6ZPr .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tBBq4A6ZPr .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tBBq4A6ZPr .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tBBq4A6ZPr .navbar.navbar-short {
  min-height: 60px;
}
.cid-tBBq4A6ZPr .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tBBq4A6ZPr .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tBBq4A6ZPr .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-tBBq4A6ZPr .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tBBq4A6ZPr .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tBBq4A6ZPr .dropdown-item.active,
.cid-tBBq4A6ZPr .dropdown-item:active {
  background-color: transparent;
}
.cid-tBBq4A6ZPr .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tBBq4A6ZPr .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tBBq4A6ZPr .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tBBq4A6ZPr .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #002245;
}
.cid-tBBq4A6ZPr .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tBBq4A6ZPr .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tBBq4A6ZPr ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tBBq4A6ZPr .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tBBq4A6ZPr button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tBBq4A6ZPr button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #bbbbbb;
}
.cid-tBBq4A6ZPr button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tBBq4A6ZPr button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tBBq4A6ZPr button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tBBq4A6ZPr button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tBBq4A6ZPr nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tBBq4A6ZPr nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tBBq4A6ZPr nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tBBq4A6ZPr nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tBBq4A6ZPr .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tBBq4A6ZPr a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tBBq4A6ZPr .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-tBBq4A6ZPr .navbar {
    height: 70px;
  }
  .cid-tBBq4A6ZPr .navbar.opened {
    height: auto;
  }
  .cid-tBBq4A6ZPr .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
#custom-html-t {
  /* Type valid CSS here */
}
#custom-html-t div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-t p {
  font-size: 60px;
  color: #777;
}
#custom-html-t #Header {
  height: 65px;
  width: auto;
  margin: 0px;
  padding: 0px;
  background-image: url(../../../assets/images/index-800x65-up-800x65.jpg);
  background-repeat: repeat-x;
  background-size: contain;
  background-position: center;
}
.cid-tBGdkcX1FP .modal-body .close {
  background: #1b1b1b;
}
.cid-tBGdkcX1FP .modal-body .close span {
  font-style: normal;
}
.cid-tBGdkcX1FP .carousel-inner > .active,
.cid-tBGdkcX1FP .carousel-inner > .next,
.cid-tBGdkcX1FP .carousel-inner > .prev {
  display: table;
}
.cid-tBGdkcX1FP .mbr-iconfont {
  font-family: 'Moririse2' !important;
}
.cid-tBGdkcX1FP .mbri-right:before {
  content: "\e909";
  font-weight: 900;
  padding-left: 5px;
}
.cid-tBGdkcX1FP .mbri-left:before {
  content: "\e90a";
  font-weight: 900;
  padding-right: 5px;
}
.cid-tBGdkcX1FP .carousel-control,
.cid-tBGdkcX1FP .carousel-indicators li {
  background-color: #6592e6 !important;
  opacity: 0.7!important;
  border: none;
}
.cid-tBGdkcX1FP .carousel-control:hover,
.cid-tBGdkcX1FP .carousel-indicators li:hover {
  transform: scale(1.1);
  opacity: 1!important;
}
.cid-tBGdkcX1FP .carousel-control .active,
.cid-tBGdkcX1FP .carousel-indicators li .active {
  transform: scale(1.1);
  opacity: 1!important;
}
.cid-tBGdkcX1FP .carousel-indicators .active {
  transform: scale(1.1);
  opacity: 1!important;
}
.cid-tBGdkcX1FP .carousel-control .icon-next,
.cid-tBGdkcX1FP .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-tBGdkcX1FP .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tBGdkcX1FP .col-10 {
  max-width: 900px;
  margin: auto;
}
@media (max-width: 992px) {
  .cid-tBGdkcX1FP .col-10 {
    max-width: 500px;
  }
}
@media (max-width: 576px) {
  .cid-tBGdkcX1FP .carousel-control {
    width: 40px!important;
    height: 40px!important;
  }
  .cid-tBGdkcX1FP .mbr-iconfont {
    font-size: 1rem!important;
  }
}
@media (max-width: 767px) {
  .cid-tBGdkcX1FP .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tBGdkcX1FP .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-tBGdkcX1FP .boxed-slider > div {
  position: relative;
}
.cid-tBGdkcX1FP .container img {
  width: 100%;
}
.cid-tBGdkcX1FP .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-tBGdkcX1FP .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-tBGdkcX1FP .mbr-table-cell {
  padding: 0;
}
.cid-tBGdkcX1FP .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tBGdkcX1FP .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: -webkit-flex;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-align-items: center;
}
.cid-tBGdkcX1FP .container-slide.container {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-tBGdkcX1FP .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  -o-transition: -o-transform 0.6s ease-in-out;
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}
@media (max-width: 576px) {
  .cid-tBGdkcX1FP .carousel-item .container {
    width: 100%;
  }
}
.cid-tBGdkcX1FP .carousel-item-next.carousel-item-left,
.cid-tBGdkcX1FP .carousel-item-prev.carousel-item-right {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.cid-tBGdkcX1FP .mbr-slider .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 35px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  transition: all .3s;
}
.cid-tBGdkcX1FP .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tBGdkcX1FP .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tBGdkcX1FP .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-tBGdkcX1FP .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tBGdkcX1FP .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-tBGdkcX1FP .mbr-slider .carousel-indicators li {
  max-width: 20px;
  width: 20px;
  height: 20px;
  max-height: 20px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 0px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-tBGdkcX1FP .mbr-slider .carousel-indicators li.active,
.cid-tBGdkcX1FP .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-tBGdkcX1FP .mbr-slider .carousel-indicators li::after,
.cid-tBGdkcX1FP .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-tBGdkcX1FP .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-tBGdkcX1FP .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-tBGdkcX1FP .mbr-slider > .container img {
  width: 100%;
}
.cid-tBGdkcX1FP .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-tBGdkcX1FP .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-tBGdkcX1FP .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tBGdkcX1FP .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-tBGdkcX1FP .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-tBGdkcX1FP .carousel-item .container.container-slide {
  position: initial;
  width: auto;
  min-height: 0;
}
.cid-tBGdkcX1FP .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-tBGdkcX1FP .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-tBGdkcX1FP .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-tBGdkcX1FP .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-tBGdkcX1FP .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-tBGdkcX1FP .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-tBGdkcX1FP .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-usxqYe1KC8 {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-usxqYe1KC8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-usxqYe1KC8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uscOcUmKcT {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uscOcUmKcT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uscOcUmKcT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uscOcUmKcT .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uscOcUmKcT .row {
  flex-direction: row-reverse;
}
.cid-uscOcUmKcT img {
  width: 100%;
}
.cid-usxr01v80j {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uutwaxtgop {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uutwaxtgop .img-wrapper {
  text-align: center;
}
.cid-uutwaxtgop img {
  margin: auto;
  max-width: 200px;
}
.cid-uutwaxtgop .row {
  align-items: flex-start;
}
.cid-uutwaxtgop .card-title {
  color: #666666;
}
.cid-uutwaxtgop .text {
  color: #666666;
}
.cid-uutwaxtgop .card-wrapper {
  margin: 0 32px;
}
.cid-uutwaxtgop .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uutwaxtgop .carousel-item.active,
.cid-uutwaxtgop .carousel-item-next,
.cid-uutwaxtgop .carousel-item-prev {
  display: flex;
}
.cid-uutwaxtgop .carousel-indicators {
  margin: 20px auto 0;
  align-items: center;
  bottom: -25px;
}
.cid-uutwaxtgop .carousel-indicators .active {
  opacity: 1;
  border: 0;
  background-color: #012b3a;
}
.cid-uutwaxtgop .carousel-indicators li {
  margin: 0 10px;
  height: 8px;
  width: 8px;
  border-radius: 50%;
  border: 1px solid #75dbcd;
  transition: opacity .5s;
  background-color: #75dbcd;
  font-size: 2rem;
  opacity: .5;
  border-width: 0px;
}
.cid-uutwaxtgop .carousel-indicators li:hover {
  opacity: 1;
}
.cid-uutwaxtgop .carousel-controls {
  display: none;
}
@media (max-width: 991px) {
  .cid-uutwaxtgop .carousel-controls {
    display: none;
  }
  .cid-uutwaxtgop .carousel-controls a {
    transition: opacity .5s;
    font-size: 2rem;
  }
  .cid-uutwaxtgop .carousel-controls a span {
    padding: 10px;
    border-radius: 50%;
    opacity: .9;
    color: #ffffff;
    background: #444444;
  }
  .cid-uutwaxtgop .carousel-controls a:hover span {
    opacity: 1;
  }
}
@media (max-width: 540px) {
  .cid-uutwaxtgop .text-element {
    padding: 1rem;
  }
  .cid-uutwaxtgop .carousel-controls {
    display: none;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uutwaxtgop .image-element {
    min-width: 50%;
  }
  .cid-uutwaxtgop .media-container-row {
    width: 100%;
  }
}
@media (max-width: 1000px) {
  .cid-uutwaxtgop .card-wrapper {
    margin: 0 15px;
  }
}
@media (max-width: 576px) {
  .cid-uutwaxtgop .card {
    display: none;
  }
  .cid-uutwaxtgop .card:nth-child(1) {
    display: block;
  }
}
.cid-uutwaxtgop .card {
  margin-bottom: 30px;
}
.cid-uutwaxtgop .card:last-child {
  margin-bottom: 0;
}
#custom-html-8o {
  /* Type valid CSS here */
}
#custom-html-8o div {
  padding: 20px 0;
  color: #777;
  text-align: center;
}
#custom-html-8o p {
  font-size: 60px;
  color: #777;
}
.cid-u3OAH9aNwJ {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-u3OAH9aNwJ img,
.cid-u3OAH9aNwJ .item-img {
  width: 100%;
}
.cid-u3OAH9aNwJ .item:focus,
.cid-u3OAH9aNwJ span:focus {
  outline: none;
}
.cid-u3OAH9aNwJ .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u3OAH9aNwJ .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u3OAH9aNwJ .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-u3OAH9aNwJ .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u3OAH9aNwJ .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-u3OAH9aNwJ .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-u3OAH9aNwJ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u3OAH9aNwJ .mbr-section-title {
  color: #232323;
}
.cid-u3OAH9aNwJ .mbr-text,
.cid-u3OAH9aNwJ .mbr-section-btn {
  text-align: left;
}
.cid-u3OAH9aNwJ .item-title {
  text-align: left;
}
.cid-u3OAH9aNwJ .item-subtitle {
  text-align: left;
}
.cid-u4QsD70JyH {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-u4QsD70JyH img,
.cid-u4QsD70JyH .item-img {
  width: 100%;
}
.cid-u4QsD70JyH .item:focus,
.cid-u4QsD70JyH span:focus {
  outline: none;
}
.cid-u4QsD70JyH .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u4QsD70JyH .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u4QsD70JyH .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-u4QsD70JyH .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u4QsD70JyH .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-u4QsD70JyH .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-u4QsD70JyH .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u4QsD70JyH .mbr-section-title {
  color: #232323;
}
.cid-u4QsD70JyH .mbr-text,
.cid-u4QsD70JyH .mbr-section-btn {
  text-align: left;
}
.cid-u4QsD70JyH .item-title {
  text-align: left;
}
.cid-u4QsD70JyH .item-subtitle {
  text-align: left;
}
.cid-u4QsD70JyH P {
  text-align: center;
}
#custom-html-9x {
  /* Type valid CSS here */
}
#custom-html-9x div {
  padding: 20px 0;
  color: #777;
  text-align: center;
}
#custom-html-9x p {
  font-size: 60px;
  color: #777;
}
.cid-uscwDs86VI {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uscwDs86VI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uscwDs86VI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uscwDs86VI .mbr-section-subtitle {
  text-align: center;
}
.cid-uscwBePdta {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uscwBePdta .img-wrapper {
  text-align: center;
}
.cid-uscwBePdta img {
  margin: auto;
  max-width: 200px;
}
.cid-uscwBePdta .row {
  align-items: flex-start;
}
.cid-uscwBePdta .card-title {
  color: #666666;
}
.cid-uscwBePdta .text {
  color: #666666;
}
.cid-uscwBePdta .card-wrapper {
  margin: 0 32px;
}
.cid-uscwBePdta .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uscwBePdta .carousel-item.active,
.cid-uscwBePdta .carousel-item-next,
.cid-uscwBePdta .carousel-item-prev {
  display: flex;
}
.cid-uscwBePdta .carousel-indicators {
  margin: 20px auto 0;
  align-items: center;
  bottom: -25px;
}
.cid-uscwBePdta .carousel-indicators .active {
  opacity: 1;
  border: 0;
  background-color: #012b3a;
}
.cid-uscwBePdta .carousel-indicators li {
  margin: 0 10px;
  height: 8px;
  width: 8px;
  border-radius: 50%;
  border: 1px solid #75dbcd;
  transition: opacity .5s;
  background-color: #75dbcd;
  font-size: 2rem;
  opacity: .5;
  border-width: 0px;
}
.cid-uscwBePdta .carousel-indicators li:hover {
  opacity: 1;
}
.cid-uscwBePdta .carousel-controls {
  display: none;
}
@media (max-width: 991px) {
  .cid-uscwBePdta .carousel-controls {
    display: none;
  }
  .cid-uscwBePdta .carousel-controls a {
    transition: opacity .5s;
    font-size: 2rem;
  }
  .cid-uscwBePdta .carousel-controls a span {
    padding: 10px;
    border-radius: 50%;
    opacity: .9;
    color: #ffffff;
    background: #444444;
  }
  .cid-uscwBePdta .carousel-controls a:hover span {
    opacity: 1;
  }
}
@media (max-width: 540px) {
  .cid-uscwBePdta .text-element {
    padding: 1rem;
  }
  .cid-uscwBePdta .carousel-controls {
    display: none;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uscwBePdta .image-element {
    min-width: 50%;
  }
  .cid-uscwBePdta .media-container-row {
    width: 100%;
  }
}
@media (max-width: 1000px) {
  .cid-uscwBePdta .card-wrapper {
    margin: 0 15px;
  }
}
@media (max-width: 576px) {
  .cid-uscwBePdta .card {
    display: none;
  }
  .cid-uscwBePdta .card:nth-child(1) {
    display: block;
  }
}
.cid-uscwBePdta .card {
  margin-bottom: 30px;
}
.cid-uscwBePdta .card:last-child {
  margin-bottom: 0;
}
#custom-html-u {
  /* Type valid CSS here */
}
#custom-html-u div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-u p {
  font-size: 60px;
  color: #777;
}
#custom-html-u #Header {
  height: 65px;
  width: auto;
  margin: 0px;
  padding: 0px;
  background-image: url(../../../assets/images/index-800x65-down-800x65.jpg);
  background-repeat: repeat-x;
  background-size: contain;
  background-position: center;
}
.cid-uFpWvTsheb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #002245;
}
.cid-uFpWvTsheb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFpWvTsheb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFpWvTsheb .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uFpWvTsheb .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uFpWvTsheb .row {
    text-align: center;
  }
  .cid-uFpWvTsheb .row > div {
    margin: auto;
  }
  .cid-uFpWvTsheb .social-row {
    justify-content: center;
  }
}
.cid-uFpWvTsheb .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uFpWvTsheb .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uFpWvTsheb .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uFpWvTsheb .list {
    margin-bottom: 0rem;
  }
}
.cid-uFpWvTsheb .mbr-text {
  color: #ffffff;
}
.cid-uFpWvTsheb .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uFpWvTsheb .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uFpWvTsheb div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-vcEH1jrslV.popup-builder {
  background-color: #ffffff;
}
.cid-vcEH1jrslV.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-vcEH1jrslV.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-vcEH1jrslV .modal-content,
.cid-vcEH1jrslV .modal-dialog {
  height: auto;
}
.cid-vcEH1jrslV .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-vcEH1jrslV .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-vcEH1jrslV .form-wrapper .mbr-form .form-group,
  .cid-vcEH1jrslV .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-vcEH1jrslV .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-vcEH1jrslV .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-vcEH1jrslV .mbr-text {
  text-align: center;
}
.cid-vcEH1jrslV .pt-0 {
  padding-top: 0 !important;
}
.cid-vcEH1jrslV .pb-0 {
  padding-bottom: 0 !important;
}
.cid-vcEH1jrslV .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-vcEH1jrslV .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-vcEH1jrslV .modal-open {
  overflow: hidden;
}
.cid-vcEH1jrslV .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-vcEH1jrslV .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-vcEH1jrslV .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-vcEH1jrslV .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-vcEH1jrslV .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-vcEH1jrslV .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-vcEH1jrslV .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-vcEH1jrslV .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-vcEH1jrslV .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-vcEH1jrslV .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-vcEH1jrslV .modal-backdrop.fade {
  opacity: 0;
}
.cid-vcEH1jrslV .modal-backdrop.show {
  opacity: .5;
}
.cid-vcEH1jrslV .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-vcEH1jrslV .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-vcEH1jrslV .modal-header {
    padding: 1rem;
  }
}
.cid-vcEH1jrslV .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-vcEH1jrslV .modal-header .close svg {
  fill: #353535;
}
.cid-vcEH1jrslV .modal-header .close:hover {
  opacity: 1;
}
.cid-vcEH1jrslV .modal-header .close:focus {
  outline: none;
}
.cid-vcEH1jrslV .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-vcEH1jrslV .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-vcEH1jrslV .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vcEH1jrslV .modal-body {
    padding: 1rem;
  }
}
.cid-vcEH1jrslV .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-vcEH1jrslV .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vcEH1jrslV .modal-footer {
    padding: 1rem;
  }
}
.cid-vcEH1jrslV .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-vcEH1jrslV .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-vcEH1jrslV .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-vcEH1jrslV .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-vcEH1jrslV .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-vcEH1jrslV .modal-lg,
  .cid-vcEH1jrslV .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-vcEH1jrslV .modal-xl {
    max-width: 1140px;
  }
}
.cid-vcEH1jrslV .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-vcEH1jrslV .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-vcEH1jrslV .form-group {
  margin-bottom: 1rem;
}
.cid-vcEH1jrslV .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-vcEH1jrslV .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-vcEH1jrslV .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-vcEH1jrslV .mbr-section-btn {
  margin: 0;
}
.cid-vcEH1jrslV .mbr-section-btn .btn {
  margin: 0;
}
.cid-tBBu7y1weh {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tBBu7y1weh nav.navbar {
  position: fixed;
}
.cid-tBBu7y1weh .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-tBBu7y1weh .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tBBu7y1weh .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tBBu7y1weh .dropdown-item:hover,
.cid-tBBu7y1weh .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tBBu7y1weh .dropdown-item:hover span {
  color: white;
}
.cid-tBBu7y1weh .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tBBu7y1weh .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tBBu7y1weh .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tBBu7y1weh .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tBBu7y1weh .nav-link {
  position: relative;
}
.cid-tBBu7y1weh .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tBBu7y1weh .container {
    flex-wrap: wrap;
  }
}
.cid-tBBu7y1weh .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tBBu7y1weh .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tBBu7y1weh .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tBBu7y1weh .dropdown-menu,
.cid-tBBu7y1weh .navbar.opened {
  background: #002245 !important;
}
.cid-tBBu7y1weh .nav-item:focus,
.cid-tBBu7y1weh .nav-link:focus {
  outline: none;
}
.cid-tBBu7y1weh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tBBu7y1weh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tBBu7y1weh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tBBu7y1weh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tBBu7y1weh .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tBBu7y1weh .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tBBu7y1weh .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: #002245;
}
.cid-tBBu7y1weh .navbar.opened {
  transition: all 0.3s;
}
.cid-tBBu7y1weh .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tBBu7y1weh .navbar .navbar-logo img {
  width: auto;
}
.cid-tBBu7y1weh .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tBBu7y1weh .navbar.collapsed {
  justify-content: center;
}
.cid-tBBu7y1weh .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tBBu7y1weh .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tBBu7y1weh .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-tBBu7y1weh .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tBBu7y1weh .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tBBu7y1weh .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-tBBu7y1weh .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tBBu7y1weh .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tBBu7y1weh .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tBBu7y1weh .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tBBu7y1weh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tBBu7y1weh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tBBu7y1weh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tBBu7y1weh .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-tBBu7y1weh .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tBBu7y1weh .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tBBu7y1weh .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tBBu7y1weh .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tBBu7y1weh .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tBBu7y1weh .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tBBu7y1weh .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tBBu7y1weh .navbar.navbar-short {
  min-height: 60px;
}
.cid-tBBu7y1weh .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tBBu7y1weh .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tBBu7y1weh .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-tBBu7y1weh .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tBBu7y1weh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tBBu7y1weh .dropdown-item.active,
.cid-tBBu7y1weh .dropdown-item:active {
  background-color: transparent;
}
.cid-tBBu7y1weh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tBBu7y1weh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tBBu7y1weh .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tBBu7y1weh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #002245;
}
.cid-tBBu7y1weh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tBBu7y1weh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tBBu7y1weh ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tBBu7y1weh .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tBBu7y1weh button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tBBu7y1weh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #bbbbbb;
}
.cid-tBBu7y1weh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tBBu7y1weh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tBBu7y1weh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tBBu7y1weh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tBBu7y1weh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tBBu7y1weh nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tBBu7y1weh nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tBBu7y1weh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tBBu7y1weh .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tBBu7y1weh a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tBBu7y1weh .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-tBBu7y1weh .navbar {
    height: 70px;
  }
  .cid-tBBu7y1weh .navbar.opened {
    height: auto;
  }
  .cid-tBBu7y1weh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
#custom-html-10 {
  /* Type valid CSS here */
}
#custom-html-10 div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-10 p {
  font-size: 60px;
  color: #777;
}
#custom-html-10 #Header {
  height: 65px;
  width: auto;
  margin: 0px;
  padding: 0px;
  background-image: url(../../../assets/images/index-800x65-up-800x65.jpg);
  background-repeat: repeat-x;
  background-size: contain;
  background-position: center;
}
.cid-tDngwK4N71 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tDngwK4N71 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDngwK4N71 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tDngwK4N71 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tDngwK4N71 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tDngwK4N71 .text-wrapper {
    padding: 2rem;
  }
}
.cid-u3NXAFY1jP {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-u3NXAFY1jP img,
.cid-u3NXAFY1jP .item-img {
  width: 100%;
}
.cid-u3NXAFY1jP .item:focus,
.cid-u3NXAFY1jP span:focus {
  outline: none;
}
.cid-u3NXAFY1jP .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u3NXAFY1jP .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u3NXAFY1jP .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-u3NXAFY1jP .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u3NXAFY1jP .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-u3NXAFY1jP .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-u3NXAFY1jP .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u3NXAFY1jP .mbr-section-title {
  color: #232323;
}
.cid-u3NXAFY1jP .mbr-text,
.cid-u3NXAFY1jP .mbr-section-btn {
  text-align: left;
}
.cid-u3NXAFY1jP .item-title {
  text-align: left;
}
.cid-u3NXAFY1jP .item-subtitle {
  text-align: left;
}
#custom-html-11 {
  /* Type valid CSS here */
}
#custom-html-11 div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-11 p {
  font-size: 60px;
  color: #777;
}
#custom-html-11 #Header {
  height: 65px;
  width: auto;
  margin: 0px;
  padding: 0px;
  background-image: url(../../../assets/images/index-800x65-down-800x65.jpg);
  background-repeat: repeat-x;
  background-size: contain;
  background-position: center;
}
.cid-uFpWvTsheb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #002245;
}
.cid-uFpWvTsheb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFpWvTsheb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFpWvTsheb .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uFpWvTsheb .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uFpWvTsheb .row {
    text-align: center;
  }
  .cid-uFpWvTsheb .row > div {
    margin: auto;
  }
  .cid-uFpWvTsheb .social-row {
    justify-content: center;
  }
}
.cid-uFpWvTsheb .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uFpWvTsheb .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uFpWvTsheb .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uFpWvTsheb .list {
    margin-bottom: 0rem;
  }
}
.cid-uFpWvTsheb .mbr-text {
  color: #ffffff;
}
.cid-uFpWvTsheb .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uFpWvTsheb .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uFpWvTsheb div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-u2c47pW6uX {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u2c47pW6uX nav.navbar {
  position: fixed;
}
.cid-u2c47pW6uX .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-u2c47pW6uX .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u2c47pW6uX .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u2c47pW6uX .dropdown-item:hover,
.cid-u2c47pW6uX .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-u2c47pW6uX .dropdown-item:hover span {
  color: white;
}
.cid-u2c47pW6uX .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u2c47pW6uX .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u2c47pW6uX .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u2c47pW6uX .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u2c47pW6uX .nav-link {
  position: relative;
}
.cid-u2c47pW6uX .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-u2c47pW6uX .container {
    flex-wrap: wrap;
  }
}
.cid-u2c47pW6uX .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-u2c47pW6uX .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-u2c47pW6uX .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u2c47pW6uX .dropdown-menu,
.cid-u2c47pW6uX .navbar.opened {
  background: #002245 !important;
}
.cid-u2c47pW6uX .nav-item:focus,
.cid-u2c47pW6uX .nav-link:focus {
  outline: none;
}
.cid-u2c47pW6uX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u2c47pW6uX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u2c47pW6uX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u2c47pW6uX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u2c47pW6uX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u2c47pW6uX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u2c47pW6uX .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: #002245;
}
.cid-u2c47pW6uX .navbar.opened {
  transition: all 0.3s;
}
.cid-u2c47pW6uX .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u2c47pW6uX .navbar .navbar-logo img {
  width: auto;
}
.cid-u2c47pW6uX .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u2c47pW6uX .navbar.collapsed {
  justify-content: center;
}
.cid-u2c47pW6uX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u2c47pW6uX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u2c47pW6uX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-u2c47pW6uX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u2c47pW6uX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u2c47pW6uX .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-u2c47pW6uX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u2c47pW6uX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u2c47pW6uX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u2c47pW6uX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u2c47pW6uX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u2c47pW6uX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u2c47pW6uX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u2c47pW6uX .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-u2c47pW6uX .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u2c47pW6uX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u2c47pW6uX .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u2c47pW6uX .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u2c47pW6uX .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u2c47pW6uX .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u2c47pW6uX .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u2c47pW6uX .navbar.navbar-short {
  min-height: 60px;
}
.cid-u2c47pW6uX .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u2c47pW6uX .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u2c47pW6uX .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-u2c47pW6uX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u2c47pW6uX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u2c47pW6uX .dropdown-item.active,
.cid-u2c47pW6uX .dropdown-item:active {
  background-color: transparent;
}
.cid-u2c47pW6uX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u2c47pW6uX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u2c47pW6uX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u2c47pW6uX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #002245;
}
.cid-u2c47pW6uX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u2c47pW6uX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u2c47pW6uX ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u2c47pW6uX .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u2c47pW6uX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u2c47pW6uX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #bbbbbb;
}
.cid-u2c47pW6uX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u2c47pW6uX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u2c47pW6uX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u2c47pW6uX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u2c47pW6uX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u2c47pW6uX nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u2c47pW6uX nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u2c47pW6uX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u2c47pW6uX .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u2c47pW6uX a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u2c47pW6uX .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-u2c47pW6uX .navbar {
    height: 70px;
  }
  .cid-u2c47pW6uX .navbar.opened {
    height: auto;
  }
  .cid-u2c47pW6uX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
#custom-html-25 {
  /* Type valid CSS here */
}
#custom-html-25 div {
  padding: 65px 0;
  color: #777;
  text-align: center;
}
#custom-html-25 p {
  font-size: 60px;
  color: #777;
}
#custom-html-25 #Header {
  height: 65px;
  width: auto;
  margin: 0px;
  padding: 0px;
  background-image: url(../../../assets/images/index-800x65-up-800x65.jpg);
  background-repeat: repeat-x;
  background-size: contain;
  background-position: center;
}
.cid-u3N1wq5uiV {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u3N1wq5uiV .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3N1wq5uiV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3N1wq5uiV .mbr-section-subtitle {
  text-align: left;
}
.cid-u3N1x3Ssyp {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-u3N1x3Ssyp .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3N1x3Ssyp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3N1x3Ssyp .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-u3N1x3Ssyp .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u3N1x3Ssyp .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-u3N1x3Ssyp .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u3N1x3Ssyp .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-u3N1x3Ssyp .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-u3N1x3Ssyp .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-u2c47s5Hla {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-u2c47s5Hla .mbr-text {
  text-align: center;
}
.cid-u2c47s5Hla .mbr-section-subtitle {
  text-align: center;
}
.cid-u2c7Iv8RdJ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-u2c7Iv8RdJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2c7Iv8RdJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2c7Iv8RdJ .item {
  padding-bottom: 2rem;
}
.cid-u2c7Iv8RdJ .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-u2c7Iv8RdJ .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-u2c7Iv8RdJ .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-u2c7Iv8RdJ .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-u2c7Iv8RdJ .carousel-control,
.cid-u2c7Iv8RdJ .close {
  background: #1b1b1b;
}
.cid-u2c7Iv8RdJ .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-u2c7Iv8RdJ .carousel-control-prev span {
  margin-right: 5px;
}
.cid-u2c7Iv8RdJ .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-u2c7Iv8RdJ .carousel-control-next span {
  margin-left: 5px;
}
.cid-u2c7Iv8RdJ .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-u2c7Iv8RdJ .close::before {
  content: '\e91a';
}
.cid-u2c7Iv8RdJ .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-u2c7Iv8RdJ .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-u2c7Iv8RdJ .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u2c7Iv8RdJ .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u2c7Iv8RdJ .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-u2c7Iv8RdJ .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-u2c7Iv8RdJ .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-u2c7Iv8RdJ .carousel-indicators li.active,
.cid-u2c7Iv8RdJ .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-u2c7Iv8RdJ .carousel-indicators li::after,
.cid-u2c7Iv8RdJ .carousel-indicators li::before {
  content: none;
}
.cid-u2c7Iv8RdJ .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-u2c7Iv8RdJ .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-u2c7Iv8RdJ .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-u2c7Iv8RdJ .carousel-indicators {
    display: none;
  }
}
.cid-u2c7Iv8RdJ .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-u2c7Iv8RdJ .carousel-inner > .active {
  display: block;
}
.cid-u2c7Iv8RdJ .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u2c7Iv8RdJ .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u2c7Iv8RdJ .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-u2c7Iv8RdJ .carousel-control,
  .cid-u2c7Iv8RdJ .carousel-indicators,
  .cid-u2c7Iv8RdJ .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-u2c7Iv8RdJ .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-u2c7Iv8RdJ .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-u2c7Iv8RdJ .carousel-indicators .active,
.cid-u2c7Iv8RdJ .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-u2c7Iv8RdJ .carousel-indicators .active {
  background: #fff;
}
.cid-u2c7Iv8RdJ .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-u2c7Iv8RdJ .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-u2c7Iv8RdJ .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-u2c7Iv8RdJ .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-u2c7Iv8RdJ .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-u2c7Iv8RdJ .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-u2c7Iv8RdJ .carousel {
  width: 100%;
}
.cid-u2c7Iv8RdJ .modal-backdrop.in {
  opacity: 0.8;
}
.cid-u2c7Iv8RdJ .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-u2c7Iv8RdJ .modal.fade .modal-dialog,
.cid-u2c7Iv8RdJ .modal.in .modal-dialog {
  transform: none;
}
.cid-u2c7Iv8RdJ .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-u2c7Iv8RdJ H6 {
  text-align: center;
}
#custom-html-8a {
  /* Type valid CSS here */
}
#custom-html-8a div {
  padding: 20px 0;
  color: #777;
  text-align: center;
}
#custom-html-8a p {
  font-size: 60px;
  color: #777;
}
.cid-u3N3iL4S3p {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-u3N3iL4S3p img,
.cid-u3N3iL4S3p .item-img {
  width: 100%;
}
.cid-u3N3iL4S3p .item:focus,
.cid-u3N3iL4S3p span:focus {
  outline: none;
}
.cid-u3N3iL4S3p .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u3N3iL4S3p .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u3N3iL4S3p .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-u3N3iL4S3p .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u3N3iL4S3p .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-u3N3iL4S3p .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-u3N3iL4S3p .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u3N3iL4S3p .mbr-section-title {
  color: #232323;
}
.cid-u3N3iL4S3p .mbr-text,
.cid-u3N3iL4S3p .mbr-section-btn {
  text-align: left;
}
.cid-u3N3iL4S3p .item-title {
  text-align: left;
}
.cid-u3N3iL4S3p .item-subtitle {
  text-align: left;
}
#custom-html-2d {
  /* Type valid CSS here */
}
#custom-html-2d div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-2d p {
  font-size: 60px;
  color: #777;
}
#custom-html-2d #Header {
  height: 65px;
  width: auto;
  margin: 0px;
  padding: 0px;
  background-image: url(../../../assets/images/index-800x65-down-800x65.jpg);
  background-repeat: repeat-x;
  background-size: contain;
  background-position: center;
}
.cid-uFpWvTsheb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #002245;
}
.cid-uFpWvTsheb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFpWvTsheb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFpWvTsheb .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uFpWvTsheb .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uFpWvTsheb .row {
    text-align: center;
  }
  .cid-uFpWvTsheb .row > div {
    margin: auto;
  }
  .cid-uFpWvTsheb .social-row {
    justify-content: center;
  }
}
.cid-uFpWvTsheb .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uFpWvTsheb .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uFpWvTsheb .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uFpWvTsheb .list {
    margin-bottom: 0rem;
  }
}
.cid-uFpWvTsheb .mbr-text {
  color: #ffffff;
}
.cid-uFpWvTsheb .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uFpWvTsheb .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uFpWvTsheb div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-u2cba1n7Ea {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u2cba1n7Ea nav.navbar {
  position: fixed;
}
.cid-u2cba1n7Ea .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-u2cba1n7Ea .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u2cba1n7Ea .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u2cba1n7Ea .dropdown-item:hover,
.cid-u2cba1n7Ea .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-u2cba1n7Ea .dropdown-item:hover span {
  color: white;
}
.cid-u2cba1n7Ea .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u2cba1n7Ea .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u2cba1n7Ea .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u2cba1n7Ea .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u2cba1n7Ea .nav-link {
  position: relative;
}
.cid-u2cba1n7Ea .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-u2cba1n7Ea .container {
    flex-wrap: wrap;
  }
}
.cid-u2cba1n7Ea .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-u2cba1n7Ea .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-u2cba1n7Ea .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u2cba1n7Ea .dropdown-menu,
.cid-u2cba1n7Ea .navbar.opened {
  background: #002245 !important;
}
.cid-u2cba1n7Ea .nav-item:focus,
.cid-u2cba1n7Ea .nav-link:focus {
  outline: none;
}
.cid-u2cba1n7Ea .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u2cba1n7Ea .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u2cba1n7Ea .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u2cba1n7Ea .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u2cba1n7Ea .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u2cba1n7Ea .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u2cba1n7Ea .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: #002245;
}
.cid-u2cba1n7Ea .navbar.opened {
  transition: all 0.3s;
}
.cid-u2cba1n7Ea .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u2cba1n7Ea .navbar .navbar-logo img {
  width: auto;
}
.cid-u2cba1n7Ea .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u2cba1n7Ea .navbar.collapsed {
  justify-content: center;
}
.cid-u2cba1n7Ea .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u2cba1n7Ea .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u2cba1n7Ea .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-u2cba1n7Ea .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u2cba1n7Ea .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u2cba1n7Ea .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-u2cba1n7Ea .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u2cba1n7Ea .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u2cba1n7Ea .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u2cba1n7Ea .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u2cba1n7Ea .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u2cba1n7Ea .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u2cba1n7Ea .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u2cba1n7Ea .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-u2cba1n7Ea .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u2cba1n7Ea .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u2cba1n7Ea .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u2cba1n7Ea .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u2cba1n7Ea .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u2cba1n7Ea .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u2cba1n7Ea .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u2cba1n7Ea .navbar.navbar-short {
  min-height: 60px;
}
.cid-u2cba1n7Ea .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u2cba1n7Ea .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u2cba1n7Ea .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-u2cba1n7Ea .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u2cba1n7Ea .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u2cba1n7Ea .dropdown-item.active,
.cid-u2cba1n7Ea .dropdown-item:active {
  background-color: transparent;
}
.cid-u2cba1n7Ea .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u2cba1n7Ea .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u2cba1n7Ea .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u2cba1n7Ea .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #002245;
}
.cid-u2cba1n7Ea .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u2cba1n7Ea .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u2cba1n7Ea ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u2cba1n7Ea .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u2cba1n7Ea button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u2cba1n7Ea button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #bbbbbb;
}
.cid-u2cba1n7Ea button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u2cba1n7Ea button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u2cba1n7Ea button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u2cba1n7Ea button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u2cba1n7Ea nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u2cba1n7Ea nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u2cba1n7Ea nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u2cba1n7Ea nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u2cba1n7Ea .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u2cba1n7Ea a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u2cba1n7Ea .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-u2cba1n7Ea .navbar {
    height: 70px;
  }
  .cid-u2cba1n7Ea .navbar.opened {
    height: auto;
  }
  .cid-u2cba1n7Ea .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
#custom-html-2i {
  /* Type valid CSS here */
}
#custom-html-2i div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-2i p {
  font-size: 60px;
  color: #777;
}
#custom-html-2i #Header {
  height: 65px;
  width: auto;
  margin: 0px;
  padding: 0px;
  background-image: url(../../../assets/images/index-800x65-up-800x65.jpg);
  background-repeat: repeat-x;
  background-size: contain;
  background-position: center;
}
.cid-u3MZImusAT {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u3MZImusAT .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3MZImusAT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3MZImusAT .mbr-section-subtitle {
  text-align: left;
}
.cid-u3MZIWxNQE {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-u3MZIWxNQE .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3MZIWxNQE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3MZIWxNQE .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-u3MZIWxNQE .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u3MZIWxNQE .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-u3MZIWxNQE .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u3MZIWxNQE .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-u3MZIWxNQE .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-u3MZIWxNQE .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-u2cba3mfL7 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-u2cba3mfL7 .mbr-text {
  text-align: center;
}
.cid-u2cba3mfL7 .mbr-section-subtitle {
  text-align: center;
}
.cid-u2cba3PwE3 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-u2cba3PwE3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2cba3PwE3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2cba3PwE3 .item {
  padding-bottom: 2rem;
}
.cid-u2cba3PwE3 .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-u2cba3PwE3 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-u2cba3PwE3 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-u2cba3PwE3 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-u2cba3PwE3 .carousel-control,
.cid-u2cba3PwE3 .close {
  background: #1b1b1b;
}
.cid-u2cba3PwE3 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-u2cba3PwE3 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-u2cba3PwE3 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-u2cba3PwE3 .carousel-control-next span {
  margin-left: 5px;
}
.cid-u2cba3PwE3 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-u2cba3PwE3 .close::before {
  content: '\e91a';
}
.cid-u2cba3PwE3 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-u2cba3PwE3 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-u2cba3PwE3 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u2cba3PwE3 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u2cba3PwE3 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-u2cba3PwE3 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-u2cba3PwE3 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-u2cba3PwE3 .carousel-indicators li.active,
.cid-u2cba3PwE3 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-u2cba3PwE3 .carousel-indicators li::after,
.cid-u2cba3PwE3 .carousel-indicators li::before {
  content: none;
}
.cid-u2cba3PwE3 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-u2cba3PwE3 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-u2cba3PwE3 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-u2cba3PwE3 .carousel-indicators {
    display: none;
  }
}
.cid-u2cba3PwE3 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-u2cba3PwE3 .carousel-inner > .active {
  display: block;
}
.cid-u2cba3PwE3 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u2cba3PwE3 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u2cba3PwE3 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-u2cba3PwE3 .carousel-control,
  .cid-u2cba3PwE3 .carousel-indicators,
  .cid-u2cba3PwE3 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-u2cba3PwE3 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-u2cba3PwE3 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-u2cba3PwE3 .carousel-indicators .active,
.cid-u2cba3PwE3 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-u2cba3PwE3 .carousel-indicators .active {
  background: #fff;
}
.cid-u2cba3PwE3 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-u2cba3PwE3 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-u2cba3PwE3 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-u2cba3PwE3 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-u2cba3PwE3 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-u2cba3PwE3 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-u2cba3PwE3 .carousel {
  width: 100%;
}
.cid-u2cba3PwE3 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-u2cba3PwE3 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-u2cba3PwE3 .modal.fade .modal-dialog,
.cid-u2cba3PwE3 .modal.in .modal-dialog {
  transform: none;
}
.cid-u2cba3PwE3 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-u2cba3PwE3 H6 {
  text-align: center;
}
#custom-html-89 {
  /* Type valid CSS here */
}
#custom-html-89 div {
  padding: 20px 0;
  color: #777;
  text-align: center;
}
#custom-html-89 p {
  font-size: 60px;
  color: #777;
}
.cid-u3N3mklC0f {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-u3N3mklC0f img,
.cid-u3N3mklC0f .item-img {
  width: 100%;
}
.cid-u3N3mklC0f .item:focus,
.cid-u3N3mklC0f span:focus {
  outline: none;
}
.cid-u3N3mklC0f .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u3N3mklC0f .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u3N3mklC0f .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-u3N3mklC0f .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u3N3mklC0f .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-u3N3mklC0f .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-u3N3mklC0f .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u3N3mklC0f .mbr-section-title {
  color: #232323;
}
.cid-u3N3mklC0f .mbr-text,
.cid-u3N3mklC0f .mbr-section-btn {
  text-align: left;
}
.cid-u3N3mklC0f .item-title {
  text-align: left;
}
.cid-u3N3mklC0f .item-subtitle {
  text-align: left;
}
#custom-html-2o {
  /* Type valid CSS here */
}
#custom-html-2o div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-2o p {
  font-size: 60px;
  color: #777;
}
#custom-html-2o #Header {
  height: 65px;
  width: auto;
  margin: 0px;
  padding: 0px;
  background-image: url(../../../assets/images/index-800x65-down-800x65.jpg);
  background-repeat: repeat-x;
  background-size: contain;
  background-position: center;
}
.cid-uFpWvTsheb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #002245;
}
.cid-uFpWvTsheb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFpWvTsheb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFpWvTsheb .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uFpWvTsheb .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uFpWvTsheb .row {
    text-align: center;
  }
  .cid-uFpWvTsheb .row > div {
    margin: auto;
  }
  .cid-uFpWvTsheb .social-row {
    justify-content: center;
  }
}
.cid-uFpWvTsheb .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uFpWvTsheb .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uFpWvTsheb .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uFpWvTsheb .list {
    margin-bottom: 0rem;
  }
}
.cid-uFpWvTsheb .mbr-text {
  color: #ffffff;
}
.cid-uFpWvTsheb .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uFpWvTsheb .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uFpWvTsheb div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-u2ce9nRIHy {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u2ce9nRIHy nav.navbar {
  position: fixed;
}
.cid-u2ce9nRIHy .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-u2ce9nRIHy .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u2ce9nRIHy .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u2ce9nRIHy .dropdown-item:hover,
.cid-u2ce9nRIHy .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-u2ce9nRIHy .dropdown-item:hover span {
  color: white;
}
.cid-u2ce9nRIHy .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u2ce9nRIHy .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u2ce9nRIHy .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u2ce9nRIHy .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u2ce9nRIHy .nav-link {
  position: relative;
}
.cid-u2ce9nRIHy .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-u2ce9nRIHy .container {
    flex-wrap: wrap;
  }
}
.cid-u2ce9nRIHy .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-u2ce9nRIHy .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-u2ce9nRIHy .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u2ce9nRIHy .dropdown-menu,
.cid-u2ce9nRIHy .navbar.opened {
  background: #002245 !important;
}
.cid-u2ce9nRIHy .nav-item:focus,
.cid-u2ce9nRIHy .nav-link:focus {
  outline: none;
}
.cid-u2ce9nRIHy .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u2ce9nRIHy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u2ce9nRIHy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u2ce9nRIHy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u2ce9nRIHy .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u2ce9nRIHy .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u2ce9nRIHy .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: #002245;
}
.cid-u2ce9nRIHy .navbar.opened {
  transition: all 0.3s;
}
.cid-u2ce9nRIHy .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u2ce9nRIHy .navbar .navbar-logo img {
  width: auto;
}
.cid-u2ce9nRIHy .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u2ce9nRIHy .navbar.collapsed {
  justify-content: center;
}
.cid-u2ce9nRIHy .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u2ce9nRIHy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u2ce9nRIHy .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-u2ce9nRIHy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u2ce9nRIHy .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u2ce9nRIHy .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-u2ce9nRIHy .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u2ce9nRIHy .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u2ce9nRIHy .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u2ce9nRIHy .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u2ce9nRIHy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u2ce9nRIHy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u2ce9nRIHy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u2ce9nRIHy .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-u2ce9nRIHy .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u2ce9nRIHy .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u2ce9nRIHy .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u2ce9nRIHy .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u2ce9nRIHy .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u2ce9nRIHy .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u2ce9nRIHy .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u2ce9nRIHy .navbar.navbar-short {
  min-height: 60px;
}
.cid-u2ce9nRIHy .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u2ce9nRIHy .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u2ce9nRIHy .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-u2ce9nRIHy .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u2ce9nRIHy .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u2ce9nRIHy .dropdown-item.active,
.cid-u2ce9nRIHy .dropdown-item:active {
  background-color: transparent;
}
.cid-u2ce9nRIHy .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u2ce9nRIHy .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u2ce9nRIHy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u2ce9nRIHy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #002245;
}
.cid-u2ce9nRIHy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u2ce9nRIHy .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u2ce9nRIHy ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u2ce9nRIHy .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u2ce9nRIHy button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u2ce9nRIHy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #bbbbbb;
}
.cid-u2ce9nRIHy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u2ce9nRIHy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u2ce9nRIHy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u2ce9nRIHy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u2ce9nRIHy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u2ce9nRIHy nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u2ce9nRIHy nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u2ce9nRIHy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u2ce9nRIHy .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u2ce9nRIHy a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u2ce9nRIHy .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-u2ce9nRIHy .navbar {
    height: 70px;
  }
  .cid-u2ce9nRIHy .navbar.opened {
    height: auto;
  }
  .cid-u2ce9nRIHy .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
#custom-html-39 {
  /* Type valid CSS here */
}
#custom-html-39 div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-39 p {
  font-size: 60px;
  color: #777;
}
#custom-html-39 #Header {
  height: 65px;
  width: auto;
  margin: 0px;
  padding: 0px;
  background-image: url(../../../assets/images/index-800x65-up-800x65.jpg);
  background-repeat: repeat-x;
  background-size: contain;
  background-position: center;
}
.cid-u3MBDdDIDX {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u3MBDdDIDX .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3MBDdDIDX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3MBDdDIDX .mbr-section-subtitle {
  text-align: left;
}
.cid-u3ME3aN0Yy {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-u3ME3aN0Yy .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3ME3aN0Yy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3ME3aN0Yy .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-u3ME3aN0Yy .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u3ME3aN0Yy .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-u3ME3aN0Yy .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u3ME3aN0Yy .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-u3ME3aN0Yy .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-u3ME3aN0Yy .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
#custom-html-8f {
  /* Type valid CSS here */
}
#custom-html-8f div {
  padding: 20px 0;
  color: #777;
  text-align: center;
}
#custom-html-8f p {
  font-size: 60px;
  color: #777;
}
.cid-vcDw55hi9l {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-vcDw55hi9l img,
.cid-vcDw55hi9l .item-img {
  width: 100%;
}
.cid-vcDw55hi9l .item:focus,
.cid-vcDw55hi9l span:focus {
  outline: none;
}
.cid-vcDw55hi9l .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-vcDw55hi9l .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-vcDw55hi9l .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-vcDw55hi9l .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vcDw55hi9l .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-vcDw55hi9l .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-vcDw55hi9l .mbr-section-btn {
  margin-top: auto !important;
}
.cid-vcDw55hi9l .mbr-section-title {
  color: #232323;
}
.cid-vcDw55hi9l .mbr-text,
.cid-vcDw55hi9l .mbr-section-btn {
  text-align: left;
}
.cid-vcDw55hi9l .item-title {
  text-align: left;
}
.cid-vcDw55hi9l .item-subtitle {
  text-align: left;
}
.cid-vcDw5XBPU5 {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-vcDw5XBPU5 img,
.cid-vcDw5XBPU5 .item-img {
  width: 100%;
}
.cid-vcDw5XBPU5 .item:focus,
.cid-vcDw5XBPU5 span:focus {
  outline: none;
}
.cid-vcDw5XBPU5 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-vcDw5XBPU5 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-vcDw5XBPU5 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-vcDw5XBPU5 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vcDw5XBPU5 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-vcDw5XBPU5 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-vcDw5XBPU5 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-vcDw5XBPU5 .mbr-section-title {
  color: #232323;
}
.cid-vcDw5XBPU5 .mbr-text,
.cid-vcDw5XBPU5 .mbr-section-btn {
  text-align: left;
}
.cid-vcDw5XBPU5 .item-title {
  text-align: left;
}
.cid-vcDw5XBPU5 .item-subtitle {
  text-align: left;
}
#custom-html-3f {
  /* Type valid CSS here */
}
#custom-html-3f div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-3f p {
  font-size: 60px;
  color: #777;
}
#custom-html-3f #Header {
  height: 65px;
  width: auto;
  margin: 0px;
  padding: 0px;
  background-image: url(../../../assets/images/index-800x65-down-800x65.jpg);
  background-repeat: repeat-x;
  background-size: contain;
  background-position: center;
}
.cid-uFpWvTsheb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #002245;
}
.cid-uFpWvTsheb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFpWvTsheb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFpWvTsheb .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uFpWvTsheb .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uFpWvTsheb .row {
    text-align: center;
  }
  .cid-uFpWvTsheb .row > div {
    margin: auto;
  }
  .cid-uFpWvTsheb .social-row {
    justify-content: center;
  }
}
.cid-uFpWvTsheb .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uFpWvTsheb .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uFpWvTsheb .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uFpWvTsheb .list {
    margin-bottom: 0rem;
  }
}
.cid-uFpWvTsheb .mbr-text {
  color: #ffffff;
}
.cid-uFpWvTsheb .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uFpWvTsheb .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uFpWvTsheb div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-u2cpmdHBtE {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u2cpmdHBtE nav.navbar {
  position: fixed;
}
.cid-u2cpmdHBtE .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-u2cpmdHBtE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u2cpmdHBtE .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u2cpmdHBtE .dropdown-item:hover,
.cid-u2cpmdHBtE .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-u2cpmdHBtE .dropdown-item:hover span {
  color: white;
}
.cid-u2cpmdHBtE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u2cpmdHBtE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u2cpmdHBtE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u2cpmdHBtE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u2cpmdHBtE .nav-link {
  position: relative;
}
.cid-u2cpmdHBtE .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-u2cpmdHBtE .container {
    flex-wrap: wrap;
  }
}
.cid-u2cpmdHBtE .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-u2cpmdHBtE .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-u2cpmdHBtE .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u2cpmdHBtE .dropdown-menu,
.cid-u2cpmdHBtE .navbar.opened {
  background: #002245 !important;
}
.cid-u2cpmdHBtE .nav-item:focus,
.cid-u2cpmdHBtE .nav-link:focus {
  outline: none;
}
.cid-u2cpmdHBtE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u2cpmdHBtE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u2cpmdHBtE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u2cpmdHBtE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u2cpmdHBtE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u2cpmdHBtE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u2cpmdHBtE .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: #002245;
}
.cid-u2cpmdHBtE .navbar.opened {
  transition: all 0.3s;
}
.cid-u2cpmdHBtE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u2cpmdHBtE .navbar .navbar-logo img {
  width: auto;
}
.cid-u2cpmdHBtE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u2cpmdHBtE .navbar.collapsed {
  justify-content: center;
}
.cid-u2cpmdHBtE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u2cpmdHBtE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u2cpmdHBtE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-u2cpmdHBtE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u2cpmdHBtE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u2cpmdHBtE .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-u2cpmdHBtE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u2cpmdHBtE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u2cpmdHBtE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u2cpmdHBtE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u2cpmdHBtE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u2cpmdHBtE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u2cpmdHBtE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u2cpmdHBtE .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-u2cpmdHBtE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u2cpmdHBtE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u2cpmdHBtE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u2cpmdHBtE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u2cpmdHBtE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u2cpmdHBtE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u2cpmdHBtE .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u2cpmdHBtE .navbar.navbar-short {
  min-height: 60px;
}
.cid-u2cpmdHBtE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u2cpmdHBtE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u2cpmdHBtE .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-u2cpmdHBtE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u2cpmdHBtE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u2cpmdHBtE .dropdown-item.active,
.cid-u2cpmdHBtE .dropdown-item:active {
  background-color: transparent;
}
.cid-u2cpmdHBtE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u2cpmdHBtE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u2cpmdHBtE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u2cpmdHBtE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #002245;
}
.cid-u2cpmdHBtE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u2cpmdHBtE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u2cpmdHBtE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u2cpmdHBtE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u2cpmdHBtE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u2cpmdHBtE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #bbbbbb;
}
.cid-u2cpmdHBtE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u2cpmdHBtE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u2cpmdHBtE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u2cpmdHBtE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u2cpmdHBtE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u2cpmdHBtE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u2cpmdHBtE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u2cpmdHBtE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u2cpmdHBtE .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u2cpmdHBtE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u2cpmdHBtE .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-u2cpmdHBtE .navbar {
    height: 70px;
  }
  .cid-u2cpmdHBtE .navbar.opened {
    height: auto;
  }
  .cid-u2cpmdHBtE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
#custom-html-3j {
  /* Type valid CSS here */
}
#custom-html-3j div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-3j p {
  font-size: 60px;
  color: #777;
}
#custom-html-3j #Header {
  height: 65px;
  width: auto;
  margin: 0px;
  padding: 0px;
  background-image: url(../../../assets/images/index-800x65-up-800x65.jpg);
  background-repeat: repeat-x;
  background-size: contain;
  background-position: center;
}
.cid-u2cpKW5Do8 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-u2cpKW5Do8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2cpKW5Do8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3qBOuHVN8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-u3qBOuHVN8 img,
.cid-u3qBOuHVN8 .item-img {
  width: 100%;
}
.cid-u3qBOuHVN8 .item:focus,
.cid-u3qBOuHVN8 span:focus {
  outline: none;
}
.cid-u3qBOuHVN8 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u3qBOuHVN8 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u3qBOuHVN8 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-u3qBOuHVN8 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u3qBOuHVN8 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-u3qBOuHVN8 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-u3qBOuHVN8 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u3qBOuHVN8 .mbr-section-title {
  color: #232323;
}
.cid-u3qBOuHVN8 .mbr-text,
.cid-u3qBOuHVN8 .mbr-section-btn {
  text-align: left;
}
.cid-u3qBOuHVN8 .item-title {
  text-align: left;
}
.cid-u3qBOuHVN8 .item-subtitle {
  text-align: left;
}
#custom-html-6a {
  /* Type valid CSS here */
}
#custom-html-6a div {
  padding: 20px 0;
  color: #777;
  text-align: center;
}
#custom-html-6a p {
  font-size: 60px;
  color: #777;
}
.cid-u2cpzfYm14 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-u2cpzfYm14 img,
.cid-u2cpzfYm14 .item-img {
  width: 100%;
}
.cid-u2cpzfYm14 .item:focus,
.cid-u2cpzfYm14 span:focus {
  outline: none;
}
.cid-u2cpzfYm14 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u2cpzfYm14 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u2cpzfYm14 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-u2cpzfYm14 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u2cpzfYm14 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-u2cpzfYm14 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-u2cpzfYm14 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u2cpzfYm14 .mbr-section-title {
  color: #232323;
}
.cid-u2cpzfYm14 .mbr-text,
.cid-u2cpzfYm14 .mbr-section-btn {
  text-align: left;
}
.cid-u2cpzfYm14 .item-title {
  text-align: left;
}
.cid-u2cpzfYm14 .item-subtitle {
  text-align: left;
}
#custom-html-6b {
  /* Type valid CSS here */
}
#custom-html-6b div {
  padding: 20px 0;
  color: #777;
  text-align: center;
}
#custom-html-6b p {
  font-size: 60px;
  color: #777;
}
.cid-u2cpAZfcYl {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-u2cpAZfcYl img,
.cid-u2cpAZfcYl .item-img {
  width: 100%;
}
.cid-u2cpAZfcYl .item:focus,
.cid-u2cpAZfcYl span:focus {
  outline: none;
}
.cid-u2cpAZfcYl .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u2cpAZfcYl .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u2cpAZfcYl .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-u2cpAZfcYl .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u2cpAZfcYl .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-u2cpAZfcYl .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-u2cpAZfcYl .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u2cpAZfcYl .mbr-section-title {
  color: #232323;
}
.cid-u2cpAZfcYl .mbr-text,
.cid-u2cpAZfcYl .mbr-section-btn {
  text-align: left;
}
.cid-u2cpAZfcYl .item-title {
  text-align: left;
}
.cid-u2cpAZfcYl .item-subtitle {
  text-align: left;
}
.cid-u3NxmzsHkY {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-u3NxmzsHkY img,
.cid-u3NxmzsHkY .item-img {
  width: 100%;
}
.cid-u3NxmzsHkY .item:focus,
.cid-u3NxmzsHkY span:focus {
  outline: none;
}
.cid-u3NxmzsHkY .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u3NxmzsHkY .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u3NxmzsHkY .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-u3NxmzsHkY .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u3NxmzsHkY .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-u3NxmzsHkY .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-u3NxmzsHkY .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u3NxmzsHkY .mbr-section-title {
  color: #232323;
}
.cid-u3NxmzsHkY .mbr-text,
.cid-u3NxmzsHkY .mbr-section-btn {
  text-align: left;
}
.cid-u3NxmzsHkY .item-title {
  text-align: left;
}
.cid-u3NxmzsHkY .item-subtitle {
  text-align: left;
}
#custom-html-3o {
  /* Type valid CSS here */
}
#custom-html-3o div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-3o p {
  font-size: 60px;
  color: #777;
}
#custom-html-3o #Header {
  height: 65px;
  width: auto;
  margin: 0px;
  padding: 0px;
  background-image: url(../../../assets/images/index-800x65-down-800x65.jpg);
  background-repeat: repeat-x;
  background-size: contain;
  background-position: center;
}
.cid-uFpWvTsheb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #002245;
}
.cid-uFpWvTsheb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFpWvTsheb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFpWvTsheb .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uFpWvTsheb .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uFpWvTsheb .row {
    text-align: center;
  }
  .cid-uFpWvTsheb .row > div {
    margin: auto;
  }
  .cid-uFpWvTsheb .social-row {
    justify-content: center;
  }
}
.cid-uFpWvTsheb .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uFpWvTsheb .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uFpWvTsheb .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uFpWvTsheb .list {
    margin-bottom: 0rem;
  }
}
.cid-uFpWvTsheb .mbr-text {
  color: #ffffff;
}
.cid-uFpWvTsheb .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uFpWvTsheb .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uFpWvTsheb div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tBBx4E40vx {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tBBx4E40vx nav.navbar {
  position: fixed;
}
.cid-tBBx4E40vx .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-tBBx4E40vx .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tBBx4E40vx .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tBBx4E40vx .dropdown-item:hover,
.cid-tBBx4E40vx .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tBBx4E40vx .dropdown-item:hover span {
  color: white;
}
.cid-tBBx4E40vx .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tBBx4E40vx .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tBBx4E40vx .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tBBx4E40vx .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tBBx4E40vx .nav-link {
  position: relative;
}
.cid-tBBx4E40vx .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tBBx4E40vx .container {
    flex-wrap: wrap;
  }
}
.cid-tBBx4E40vx .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tBBx4E40vx .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tBBx4E40vx .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tBBx4E40vx .dropdown-menu,
.cid-tBBx4E40vx .navbar.opened {
  background: #002245 !important;
}
.cid-tBBx4E40vx .nav-item:focus,
.cid-tBBx4E40vx .nav-link:focus {
  outline: none;
}
.cid-tBBx4E40vx .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tBBx4E40vx .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tBBx4E40vx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tBBx4E40vx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tBBx4E40vx .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tBBx4E40vx .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tBBx4E40vx .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: #002245;
}
.cid-tBBx4E40vx .navbar.opened {
  transition: all 0.3s;
}
.cid-tBBx4E40vx .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tBBx4E40vx .navbar .navbar-logo img {
  width: auto;
}
.cid-tBBx4E40vx .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tBBx4E40vx .navbar.collapsed {
  justify-content: center;
}
.cid-tBBx4E40vx .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tBBx4E40vx .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tBBx4E40vx .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-tBBx4E40vx .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tBBx4E40vx .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tBBx4E40vx .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-tBBx4E40vx .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tBBx4E40vx .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tBBx4E40vx .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tBBx4E40vx .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tBBx4E40vx .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tBBx4E40vx .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tBBx4E40vx .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tBBx4E40vx .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-tBBx4E40vx .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tBBx4E40vx .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tBBx4E40vx .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tBBx4E40vx .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tBBx4E40vx .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tBBx4E40vx .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tBBx4E40vx .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tBBx4E40vx .navbar.navbar-short {
  min-height: 60px;
}
.cid-tBBx4E40vx .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tBBx4E40vx .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tBBx4E40vx .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-tBBx4E40vx .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tBBx4E40vx .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tBBx4E40vx .dropdown-item.active,
.cid-tBBx4E40vx .dropdown-item:active {
  background-color: transparent;
}
.cid-tBBx4E40vx .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tBBx4E40vx .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tBBx4E40vx .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tBBx4E40vx .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #002245;
}
.cid-tBBx4E40vx .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tBBx4E40vx .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tBBx4E40vx ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tBBx4E40vx .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tBBx4E40vx button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tBBx4E40vx button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #bbbbbb;
}
.cid-tBBx4E40vx button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tBBx4E40vx button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tBBx4E40vx button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tBBx4E40vx button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tBBx4E40vx nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tBBx4E40vx nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tBBx4E40vx nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tBBx4E40vx nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tBBx4E40vx .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tBBx4E40vx a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tBBx4E40vx .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-tBBx4E40vx .navbar {
    height: 70px;
  }
  .cid-tBBx4E40vx .navbar.opened {
    height: auto;
  }
  .cid-tBBx4E40vx .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
#custom-html-16 {
  /* Type valid CSS here */
}
#custom-html-16 div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-16 p {
  font-size: 60px;
  color: #777;
}
#custom-html-16 #Header {
  height: 65px;
  width: auto;
  margin: 0px;
  padding: 0px;
  background-image: url(../../../assets/images/index-800x65-up-800x65.jpg);
  background-repeat: repeat-x;
  background-size: contain;
  background-position: center;
}
.cid-tBBxbs1r5b {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
.cid-tBBxbs1r5b .mbr-fallback-image.disabled {
  display: none;
}
.cid-tBBxbs1r5b .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-tBBxbs1r5b .row {
    flex-direction: column-reverse;
  }
  .cid-tBBxbs1r5b .row .map-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tBBxbs1r5b .google-map {
  height: 100%;
  position: relative;
}
.cid-tBBxbs1r5b .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tBBxbs1r5b .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tBBxbs1r5b .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tBBxbs1r5b .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tBBxbs1r5b .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-tBBxbs1r5b .card-wrapper {
  display: flex;
  border-radius: 4px;
  background: #fafafa;
}
.cid-tBBxbs1r5b .card-wrapper:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .cid-tBBxbs1r5b .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tBBxbs1r5b .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-tBBxbs1r5b .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #6592e6;
}
.cid-tDneigUwXW {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tDneigUwXW .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-tDneigUwXW H4 {
  text-align: left;
}
#custom-html-17 {
  /* Type valid CSS here */
}
#custom-html-17 div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-17 p {
  font-size: 60px;
  color: #777;
}
#custom-html-17 #Header {
  height: 65px;
  width: auto;
  margin: 0px;
  padding: 0px;
  background-image: url(../../../assets/images/index-800x65-down-800x65.jpg);
  background-repeat: repeat-x;
  background-size: contain;
  background-position: center;
}
.cid-uFpWvTsheb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #002245;
}
.cid-uFpWvTsheb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFpWvTsheb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFpWvTsheb .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uFpWvTsheb .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uFpWvTsheb .row {
    text-align: center;
  }
  .cid-uFpWvTsheb .row > div {
    margin: auto;
  }
  .cid-uFpWvTsheb .social-row {
    justify-content: center;
  }
}
.cid-uFpWvTsheb .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uFpWvTsheb .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uFpWvTsheb .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uFpWvTsheb .list {
    margin-bottom: 0rem;
  }
}
.cid-uFpWvTsheb .mbr-text {
  color: #ffffff;
}
.cid-uFpWvTsheb .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uFpWvTsheb .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uFpWvTsheb div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tBIPj403Gy {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tBIPj403Gy nav.navbar {
  position: fixed;
}
.cid-tBIPj403Gy .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-tBIPj403Gy .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tBIPj403Gy .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tBIPj403Gy .dropdown-item:hover,
.cid-tBIPj403Gy .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tBIPj403Gy .dropdown-item:hover span {
  color: white;
}
.cid-tBIPj403Gy .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tBIPj403Gy .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tBIPj403Gy .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tBIPj403Gy .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tBIPj403Gy .nav-link {
  position: relative;
}
.cid-tBIPj403Gy .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tBIPj403Gy .container {
    flex-wrap: wrap;
  }
}
.cid-tBIPj403Gy .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tBIPj403Gy .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tBIPj403Gy .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tBIPj403Gy .dropdown-menu,
.cid-tBIPj403Gy .navbar.opened {
  background: #002245 !important;
}
.cid-tBIPj403Gy .nav-item:focus,
.cid-tBIPj403Gy .nav-link:focus {
  outline: none;
}
.cid-tBIPj403Gy .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tBIPj403Gy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tBIPj403Gy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tBIPj403Gy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tBIPj403Gy .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tBIPj403Gy .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tBIPj403Gy .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: #002245;
}
.cid-tBIPj403Gy .navbar.opened {
  transition: all 0.3s;
}
.cid-tBIPj403Gy .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tBIPj403Gy .navbar .navbar-logo img {
  width: auto;
}
.cid-tBIPj403Gy .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tBIPj403Gy .navbar.collapsed {
  justify-content: center;
}
.cid-tBIPj403Gy .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tBIPj403Gy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tBIPj403Gy .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-tBIPj403Gy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tBIPj403Gy .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tBIPj403Gy .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-tBIPj403Gy .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tBIPj403Gy .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tBIPj403Gy .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tBIPj403Gy .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tBIPj403Gy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tBIPj403Gy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tBIPj403Gy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tBIPj403Gy .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-tBIPj403Gy .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tBIPj403Gy .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tBIPj403Gy .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tBIPj403Gy .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tBIPj403Gy .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tBIPj403Gy .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tBIPj403Gy .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tBIPj403Gy .navbar.navbar-short {
  min-height: 60px;
}
.cid-tBIPj403Gy .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tBIPj403Gy .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tBIPj403Gy .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-tBIPj403Gy .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tBIPj403Gy .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tBIPj403Gy .dropdown-item.active,
.cid-tBIPj403Gy .dropdown-item:active {
  background-color: transparent;
}
.cid-tBIPj403Gy .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tBIPj403Gy .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tBIPj403Gy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tBIPj403Gy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #002245;
}
.cid-tBIPj403Gy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tBIPj403Gy .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tBIPj403Gy ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tBIPj403Gy .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tBIPj403Gy button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tBIPj403Gy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #bbbbbb;
}
.cid-tBIPj403Gy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tBIPj403Gy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tBIPj403Gy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tBIPj403Gy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tBIPj403Gy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tBIPj403Gy nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tBIPj403Gy nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tBIPj403Gy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tBIPj403Gy .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tBIPj403Gy a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tBIPj403Gy .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-tBIPj403Gy .navbar {
    height: 70px;
  }
  .cid-tBIPj403Gy .navbar.opened {
    height: auto;
  }
  .cid-tBIPj403Gy .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
#custom-html-1m {
  /* Type valid CSS here */
}
#custom-html-1m div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-1m p {
  font-size: 60px;
  color: #777;
}
#custom-html-1m #Header {
  height: 65px;
  width: auto;
  margin: 0px;
  padding: 0px;
  background-image: url(../../../assets/images/index-800x65-up-800x65.jpg);
  background-repeat: repeat-x;
  background-size: contain;
  background-position: center;
}
.cid-tBIPGHtbk7 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tBIPGHtbk7 img,
.cid-tBIPGHtbk7 .item-img {
  width: 100%;
}
.cid-tBIPGHtbk7 .item:focus,
.cid-tBIPGHtbk7 span:focus {
  outline: none;
}
.cid-tBIPGHtbk7 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tBIPGHtbk7 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tBIPGHtbk7 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tBIPGHtbk7 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tBIPGHtbk7 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tBIPGHtbk7 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tBIPGHtbk7 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tBIPGHtbk7 .mbr-section-title {
  color: #232323;
}
.cid-tBIPGHtbk7 .mbr-text,
.cid-tBIPGHtbk7 .mbr-section-btn {
  text-align: left;
}
.cid-tBIPGHtbk7 .item-title {
  text-align: left;
}
.cid-tBIPGHtbk7 .item-subtitle {
  text-align: left;
}
.cid-tBIR1v4HV7 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tBIR1v4HV7 img,
.cid-tBIR1v4HV7 .item-img {
  width: 100%;
}
.cid-tBIR1v4HV7 .item:focus,
.cid-tBIR1v4HV7 span:focus {
  outline: none;
}
.cid-tBIR1v4HV7 .item-wrapper {
  position: relative;
}
.cid-tBIR1v4HV7 .slide-content {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tBIR1v4HV7 .slide-content .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tBIR1v4HV7 .slide-content .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tBIR1v4HV7 .slide-content .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tBIR1v4HV7 .slide-content .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tBIR1v4HV7 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tBIR1v4HV7 .mbr-section-title {
  color: #232323;
}
.cid-tBIR1v4HV7 .mbr-text,
.cid-tBIR1v4HV7 .mbr-section-btn {
  text-align: left;
}
.cid-tBIR1v4HV7 .item-title {
  text-align: left;
}
.cid-tBIR1v4HV7 .item-subtitle {
  text-align: left;
}
.cid-tBIR1v4HV7 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-tBIR1v4HV7 .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-tBIR1v4HV7 .embla__button--next,
.cid-tBIR1v4HV7 .embla__button--prev {
  display: flex;
}
.cid-tBIR1v4HV7 .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .cid-tBIR1v4HV7 .embla__button {
    display: none;
  }
}
.cid-tBIR1v4HV7 .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tBIR1v4HV7 .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-tBIR1v4HV7 .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tBIR1v4HV7 .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tBIR1v4HV7 .embla__button {
    top: auto;
  }
}
.cid-tBIR1v4HV7 .embla {
  position: relative;
  width: 100%;
}
.cid-tBIR1v4HV7 .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-tBIR1v4HV7 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tBIR1v4HV7 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tBIR1v4HV7 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tBIR2ov3tA {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tBIR2ov3tA img,
.cid-tBIR2ov3tA .item-img {
  width: 100%;
}
.cid-tBIR2ov3tA .item:focus,
.cid-tBIR2ov3tA span:focus {
  outline: none;
}
.cid-tBIR2ov3tA .item-wrapper {
  position: relative;
}
.cid-tBIR2ov3tA .slide-content {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tBIR2ov3tA .slide-content .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tBIR2ov3tA .slide-content .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tBIR2ov3tA .slide-content .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tBIR2ov3tA .slide-content .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tBIR2ov3tA .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tBIR2ov3tA .mbr-section-title {
  color: #232323;
}
.cid-tBIR2ov3tA .mbr-text,
.cid-tBIR2ov3tA .mbr-section-btn {
  text-align: left;
}
.cid-tBIR2ov3tA .item-title {
  text-align: left;
}
.cid-tBIR2ov3tA .item-subtitle {
  text-align: left;
}
.cid-tBIR2ov3tA .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-tBIR2ov3tA .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-tBIR2ov3tA .embla__button--next,
.cid-tBIR2ov3tA .embla__button--prev {
  display: flex;
}
.cid-tBIR2ov3tA .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .cid-tBIR2ov3tA .embla__button {
    display: none;
  }
}
.cid-tBIR2ov3tA .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tBIR2ov3tA .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-tBIR2ov3tA .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tBIR2ov3tA .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tBIR2ov3tA .embla__button {
    top: auto;
  }
}
.cid-tBIR2ov3tA .embla {
  position: relative;
  width: 100%;
}
.cid-tBIR2ov3tA .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-tBIR2ov3tA .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tBIR2ov3tA .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tBIR2ov3tA .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tBIR35We98 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tBIR35We98 img,
.cid-tBIR35We98 .item-img {
  width: 100%;
}
.cid-tBIR35We98 .item:focus,
.cid-tBIR35We98 span:focus {
  outline: none;
}
.cid-tBIR35We98 .item-wrapper {
  position: relative;
}
.cid-tBIR35We98 .slide-content {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tBIR35We98 .slide-content .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tBIR35We98 .slide-content .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tBIR35We98 .slide-content .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tBIR35We98 .slide-content .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tBIR35We98 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tBIR35We98 .mbr-section-title {
  color: #232323;
}
.cid-tBIR35We98 .mbr-text,
.cid-tBIR35We98 .mbr-section-btn {
  text-align: left;
}
.cid-tBIR35We98 .item-title {
  text-align: left;
}
.cid-tBIR35We98 .item-subtitle {
  text-align: left;
}
.cid-tBIR35We98 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-tBIR35We98 .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-tBIR35We98 .embla__button--next,
.cid-tBIR35We98 .embla__button--prev {
  display: flex;
}
.cid-tBIR35We98 .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .cid-tBIR35We98 .embla__button {
    display: none;
  }
}
.cid-tBIR35We98 .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tBIR35We98 .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-tBIR35We98 .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tBIR35We98 .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tBIR35We98 .embla__button {
    top: auto;
  }
}
.cid-tBIR35We98 .embla {
  position: relative;
  width: 100%;
}
.cid-tBIR35We98 .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-tBIR35We98 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tBIR35We98 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tBIR35We98 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
#custom-html-1p {
  /* Type valid CSS here */
}
#custom-html-1p div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-1p p {
  font-size: 60px;
  color: #777;
}
#custom-html-1p #Header {
  height: 65px;
  width: auto;
  margin: 0px;
  padding: 0px;
  background-image: url(../../../assets/images/index-800x65-down-800x65.jpg);
  background-repeat: repeat-x;
  background-size: contain;
  background-position: center;
}
.cid-uFpWvTsheb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #002245;
}
.cid-uFpWvTsheb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFpWvTsheb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFpWvTsheb .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uFpWvTsheb .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uFpWvTsheb .row {
    text-align: center;
  }
  .cid-uFpWvTsheb .row > div {
    margin: auto;
  }
  .cid-uFpWvTsheb .social-row {
    justify-content: center;
  }
}
.cid-uFpWvTsheb .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uFpWvTsheb .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uFpWvTsheb .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uFpWvTsheb .list {
    margin-bottom: 0rem;
  }
}
.cid-uFpWvTsheb .mbr-text {
  color: #ffffff;
}
.cid-uFpWvTsheb .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uFpWvTsheb .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uFpWvTsheb div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-u2cq2dfHAC {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u2cq2dfHAC nav.navbar {
  position: fixed;
}
.cid-u2cq2dfHAC .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-u2cq2dfHAC .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u2cq2dfHAC .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u2cq2dfHAC .dropdown-item:hover,
.cid-u2cq2dfHAC .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-u2cq2dfHAC .dropdown-item:hover span {
  color: white;
}
.cid-u2cq2dfHAC .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u2cq2dfHAC .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u2cq2dfHAC .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u2cq2dfHAC .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u2cq2dfHAC .nav-link {
  position: relative;
}
.cid-u2cq2dfHAC .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-u2cq2dfHAC .container {
    flex-wrap: wrap;
  }
}
.cid-u2cq2dfHAC .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-u2cq2dfHAC .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-u2cq2dfHAC .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u2cq2dfHAC .dropdown-menu,
.cid-u2cq2dfHAC .navbar.opened {
  background: #002245 !important;
}
.cid-u2cq2dfHAC .nav-item:focus,
.cid-u2cq2dfHAC .nav-link:focus {
  outline: none;
}
.cid-u2cq2dfHAC .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u2cq2dfHAC .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u2cq2dfHAC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u2cq2dfHAC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u2cq2dfHAC .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u2cq2dfHAC .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u2cq2dfHAC .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: #002245;
}
.cid-u2cq2dfHAC .navbar.opened {
  transition: all 0.3s;
}
.cid-u2cq2dfHAC .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u2cq2dfHAC .navbar .navbar-logo img {
  width: auto;
}
.cid-u2cq2dfHAC .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u2cq2dfHAC .navbar.collapsed {
  justify-content: center;
}
.cid-u2cq2dfHAC .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u2cq2dfHAC .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u2cq2dfHAC .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-u2cq2dfHAC .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u2cq2dfHAC .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u2cq2dfHAC .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-u2cq2dfHAC .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u2cq2dfHAC .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u2cq2dfHAC .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u2cq2dfHAC .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u2cq2dfHAC .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u2cq2dfHAC .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u2cq2dfHAC .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u2cq2dfHAC .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-u2cq2dfHAC .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u2cq2dfHAC .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u2cq2dfHAC .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u2cq2dfHAC .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u2cq2dfHAC .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u2cq2dfHAC .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u2cq2dfHAC .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u2cq2dfHAC .navbar.navbar-short {
  min-height: 60px;
}
.cid-u2cq2dfHAC .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u2cq2dfHAC .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u2cq2dfHAC .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-u2cq2dfHAC .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u2cq2dfHAC .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u2cq2dfHAC .dropdown-item.active,
.cid-u2cq2dfHAC .dropdown-item:active {
  background-color: transparent;
}
.cid-u2cq2dfHAC .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u2cq2dfHAC .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u2cq2dfHAC .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u2cq2dfHAC .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #002245;
}
.cid-u2cq2dfHAC .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u2cq2dfHAC .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u2cq2dfHAC ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u2cq2dfHAC .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u2cq2dfHAC button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u2cq2dfHAC button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #bbbbbb;
}
.cid-u2cq2dfHAC button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u2cq2dfHAC button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u2cq2dfHAC button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u2cq2dfHAC button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u2cq2dfHAC nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u2cq2dfHAC nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u2cq2dfHAC nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u2cq2dfHAC nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u2cq2dfHAC .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u2cq2dfHAC a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u2cq2dfHAC .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-u2cq2dfHAC .navbar {
    height: 70px;
  }
  .cid-u2cq2dfHAC .navbar.opened {
    height: auto;
  }
  .cid-u2cq2dfHAC .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
#custom-html-3u {
  /* Type valid CSS here */
}
#custom-html-3u div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-3u p {
  font-size: 60px;
  color: #777;
}
#custom-html-3u #Header {
  height: 65px;
  width: auto;
  margin: 0px;
  padding: 0px;
  background-image: url(../../../assets/images/index-800x65-up-800x65.jpg);
  background-repeat: repeat-x;
  background-size: contain;
  background-position: center;
}
.cid-u3OcxB4AIW {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-u3OcxB4AIW .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3OcxB4AIW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3OdZClYLL {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-u3OdZClYLL .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3OdZClYLL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3OdZClYLL .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-u3OdZClYLL .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u3OdZClYLL .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-u3OdZClYLL .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u3OdZClYLL .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-u3OdZClYLL .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-u3OdZClYLL .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
#custom-html-84 {
  /* Type valid CSS here */
}
#custom-html-84 div {
  padding: 20px 0;
  color: #777;
  text-align: center;
}
#custom-html-84 p {
  font-size: 60px;
  color: #777;
}
.cid-u4UkY6ohqF {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-u4UkY6ohqF .mbr-fallback-image.disabled {
  display: none;
}
.cid-u4UkY6ohqF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u4UkY6ohqF .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-u4UkY6ohqF .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-u4UkY6ohqF .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u4UkY6ohqF .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-u4UkY6ohqF .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u4UkY6ohqF .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-u4UkY6ohqF .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-u4UkY6ohqF .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-u4UlVF5BIg {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-u4UlVF5BIg img,
.cid-u4UlVF5BIg .item-img {
  width: 100%;
}
.cid-u4UlVF5BIg .item:focus,
.cid-u4UlVF5BIg span:focus {
  outline: none;
}
.cid-u4UlVF5BIg .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u4UlVF5BIg .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u4UlVF5BIg .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-u4UlVF5BIg .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u4UlVF5BIg .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-u4UlVF5BIg .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-u4UlVF5BIg .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u4UlVF5BIg .mbr-section-title {
  color: #232323;
}
.cid-u4UlVF5BIg .mbr-text,
.cid-u4UlVF5BIg .mbr-section-btn {
  text-align: left;
}
.cid-u4UlVF5BIg .item-title {
  text-align: left;
}
.cid-u4UlVF5BIg .item-subtitle {
  text-align: left;
}
#custom-html-6h {
  /* Type valid CSS here */
}
#custom-html-6h div {
  padding: 20px 0;
  color: #777;
  text-align: center;
}
#custom-html-6h p {
  font-size: 60px;
  color: #777;
}
.cid-u4Ulo6WCtR {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-u4Ulo6WCtR img,
.cid-u4Ulo6WCtR .item-img {
  width: 100%;
}
.cid-u4Ulo6WCtR .item:focus,
.cid-u4Ulo6WCtR span:focus {
  outline: none;
}
.cid-u4Ulo6WCtR .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u4Ulo6WCtR .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u4Ulo6WCtR .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-u4Ulo6WCtR .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u4Ulo6WCtR .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-u4Ulo6WCtR .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-u4Ulo6WCtR .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u4Ulo6WCtR .mbr-section-title {
  color: #232323;
}
.cid-u4Ulo6WCtR .mbr-text,
.cid-u4Ulo6WCtR .mbr-section-btn {
  text-align: left;
}
.cid-u4Ulo6WCtR .item-title {
  text-align: left;
}
.cid-u4Ulo6WCtR .item-subtitle {
  text-align: left;
}
.cid-u4UlpDTmde {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-u4UlpDTmde img,
.cid-u4UlpDTmde .item-img {
  width: 100%;
}
.cid-u4UlpDTmde .item:focus,
.cid-u4UlpDTmde span:focus {
  outline: none;
}
.cid-u4UlpDTmde .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u4UlpDTmde .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u4UlpDTmde .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-u4UlpDTmde .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u4UlpDTmde .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-u4UlpDTmde .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-u4UlpDTmde .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u4UlpDTmde .mbr-section-title {
  color: #232323;
}
.cid-u4UlpDTmde .mbr-text,
.cid-u4UlpDTmde .mbr-section-btn {
  text-align: left;
}
.cid-u4UlpDTmde .item-title {
  text-align: left;
}
.cid-u4UlpDTmde .item-subtitle {
  text-align: left;
}
#custom-html-47 {
  /* Type valid CSS here */
}
#custom-html-47 div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-47 p {
  font-size: 60px;
  color: #777;
}
#custom-html-47 #Header {
  height: 65px;
  width: auto;
  margin: 0px;
  padding: 0px;
  background-image: url(../../../assets/images/index-800x65-down-800x65.jpg);
  background-repeat: repeat-x;
  background-size: contain;
  background-position: center;
}
.cid-uFpWvTsheb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #002245;
}
.cid-uFpWvTsheb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFpWvTsheb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFpWvTsheb .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uFpWvTsheb .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uFpWvTsheb .row {
    text-align: center;
  }
  .cid-uFpWvTsheb .row > div {
    margin: auto;
  }
  .cid-uFpWvTsheb .social-row {
    justify-content: center;
  }
}
.cid-uFpWvTsheb .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uFpWvTsheb .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uFpWvTsheb .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uFpWvTsheb .list {
    margin-bottom: 0rem;
  }
}
.cid-uFpWvTsheb .mbr-text {
  color: #ffffff;
}
.cid-uFpWvTsheb .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uFpWvTsheb .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uFpWvTsheb div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-u3Mt5fVzUR {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u3Mt5fVzUR nav.navbar {
  position: fixed;
}
.cid-u3Mt5fVzUR .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-u3Mt5fVzUR .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u3Mt5fVzUR .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u3Mt5fVzUR .dropdown-item:hover,
.cid-u3Mt5fVzUR .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-u3Mt5fVzUR .dropdown-item:hover span {
  color: white;
}
.cid-u3Mt5fVzUR .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u3Mt5fVzUR .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u3Mt5fVzUR .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u3Mt5fVzUR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u3Mt5fVzUR .nav-link {
  position: relative;
}
.cid-u3Mt5fVzUR .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-u3Mt5fVzUR .container {
    flex-wrap: wrap;
  }
}
.cid-u3Mt5fVzUR .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-u3Mt5fVzUR .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-u3Mt5fVzUR .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u3Mt5fVzUR .dropdown-menu,
.cid-u3Mt5fVzUR .navbar.opened {
  background: #002245 !important;
}
.cid-u3Mt5fVzUR .nav-item:focus,
.cid-u3Mt5fVzUR .nav-link:focus {
  outline: none;
}
.cid-u3Mt5fVzUR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u3Mt5fVzUR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u3Mt5fVzUR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u3Mt5fVzUR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u3Mt5fVzUR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u3Mt5fVzUR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u3Mt5fVzUR .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: #002245;
}
.cid-u3Mt5fVzUR .navbar.opened {
  transition: all 0.3s;
}
.cid-u3Mt5fVzUR .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u3Mt5fVzUR .navbar .navbar-logo img {
  width: auto;
}
.cid-u3Mt5fVzUR .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u3Mt5fVzUR .navbar.collapsed {
  justify-content: center;
}
.cid-u3Mt5fVzUR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u3Mt5fVzUR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u3Mt5fVzUR .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-u3Mt5fVzUR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u3Mt5fVzUR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u3Mt5fVzUR .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-u3Mt5fVzUR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u3Mt5fVzUR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u3Mt5fVzUR .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u3Mt5fVzUR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u3Mt5fVzUR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u3Mt5fVzUR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u3Mt5fVzUR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u3Mt5fVzUR .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-u3Mt5fVzUR .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u3Mt5fVzUR .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u3Mt5fVzUR .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u3Mt5fVzUR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u3Mt5fVzUR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u3Mt5fVzUR .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u3Mt5fVzUR .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u3Mt5fVzUR .navbar.navbar-short {
  min-height: 60px;
}
.cid-u3Mt5fVzUR .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u3Mt5fVzUR .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u3Mt5fVzUR .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-u3Mt5fVzUR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u3Mt5fVzUR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u3Mt5fVzUR .dropdown-item.active,
.cid-u3Mt5fVzUR .dropdown-item:active {
  background-color: transparent;
}
.cid-u3Mt5fVzUR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u3Mt5fVzUR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u3Mt5fVzUR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u3Mt5fVzUR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #002245;
}
.cid-u3Mt5fVzUR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u3Mt5fVzUR .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u3Mt5fVzUR ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u3Mt5fVzUR .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u3Mt5fVzUR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u3Mt5fVzUR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #bbbbbb;
}
.cid-u3Mt5fVzUR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u3Mt5fVzUR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u3Mt5fVzUR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u3Mt5fVzUR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u3Mt5fVzUR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u3Mt5fVzUR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u3Mt5fVzUR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u3Mt5fVzUR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u3Mt5fVzUR .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u3Mt5fVzUR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u3Mt5fVzUR .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-u3Mt5fVzUR .navbar {
    height: 70px;
  }
  .cid-u3Mt5fVzUR .navbar.opened {
    height: auto;
  }
  .cid-u3Mt5fVzUR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
#custom-html-4o {
  /* Type valid CSS here */
}
#custom-html-4o div {
  padding: 65px 0;
  color: #777;
  text-align: center;
}
#custom-html-4o p {
  font-size: 60px;
  color: #777;
}
#custom-html-4o #Header {
  height: 65px;
  width: auto;
  margin: 0px;
  padding: 0px;
  background-image: url(../../../assets/images/index-800x65-up-800x65.jpg);
  background-repeat: repeat-x;
  background-size: contain;
  background-position: center;
}
.cid-u3MZz5xNA2 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u3MZz5xNA2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3MZz5xNA2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3MZz5xNA2 .mbr-section-subtitle {
  text-align: left;
}
.cid-u3MZ5oRQz5 {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-u3MZ5oRQz5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3MZ5oRQz5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3MZ5oRQz5 .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-u3MZ5oRQz5 .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u3MZ5oRQz5 .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-u3MZ5oRQz5 .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u3MZ5oRQz5 .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-u3MZ5oRQz5 .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-u3MZ5oRQz5 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-u3MYGSoXqK {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
#custom-html-88 {
  /* Type valid CSS here */
}
#custom-html-88 div {
  padding: 20px 0;
  color: #777;
  text-align: center;
}
#custom-html-88 p {
  font-size: 60px;
  color: #777;
}
.cid-u3N3phgKSA {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-u3N3phgKSA img,
.cid-u3N3phgKSA .item-img {
  width: 100%;
}
.cid-u3N3phgKSA .item:focus,
.cid-u3N3phgKSA span:focus {
  outline: none;
}
.cid-u3N3phgKSA .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u3N3phgKSA .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u3N3phgKSA .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-u3N3phgKSA .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u3N3phgKSA .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-u3N3phgKSA .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-u3N3phgKSA .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u3N3phgKSA .mbr-section-title {
  color: #232323;
}
.cid-u3N3phgKSA .mbr-text,
.cid-u3N3phgKSA .mbr-section-btn {
  text-align: left;
}
.cid-u3N3phgKSA .item-title {
  text-align: left;
}
.cid-u3N3phgKSA .item-subtitle {
  text-align: left;
}
#custom-html-4u {
  /* Type valid CSS here */
}
#custom-html-4u div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-4u p {
  font-size: 60px;
  color: #777;
}
#custom-html-4u #Header {
  height: 65px;
  width: auto;
  margin: 0px;
  padding: 0px;
  background-image: url(../../../assets/images/index-800x65-down-800x65.jpg);
  background-repeat: repeat-x;
  background-size: contain;
  background-position: center;
}
.cid-uFpWvTsheb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #002245;
}
.cid-uFpWvTsheb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFpWvTsheb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFpWvTsheb .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uFpWvTsheb .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uFpWvTsheb .row {
    text-align: center;
  }
  .cid-uFpWvTsheb .row > div {
    margin: auto;
  }
  .cid-uFpWvTsheb .social-row {
    justify-content: center;
  }
}
.cid-uFpWvTsheb .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uFpWvTsheb .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uFpWvTsheb .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uFpWvTsheb .list {
    margin-bottom: 0rem;
  }
}
.cid-uFpWvTsheb .mbr-text {
  color: #ffffff;
}
.cid-uFpWvTsheb .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uFpWvTsheb .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uFpWvTsheb div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-u2ce87nMkt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u2ce87nMkt nav.navbar {
  position: fixed;
}
.cid-u2ce87nMkt .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-u2ce87nMkt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u2ce87nMkt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u2ce87nMkt .dropdown-item:hover,
.cid-u2ce87nMkt .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-u2ce87nMkt .dropdown-item:hover span {
  color: white;
}
.cid-u2ce87nMkt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u2ce87nMkt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u2ce87nMkt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u2ce87nMkt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u2ce87nMkt .nav-link {
  position: relative;
}
.cid-u2ce87nMkt .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-u2ce87nMkt .container {
    flex-wrap: wrap;
  }
}
.cid-u2ce87nMkt .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-u2ce87nMkt .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-u2ce87nMkt .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u2ce87nMkt .dropdown-menu,
.cid-u2ce87nMkt .navbar.opened {
  background: #002245 !important;
}
.cid-u2ce87nMkt .nav-item:focus,
.cid-u2ce87nMkt .nav-link:focus {
  outline: none;
}
.cid-u2ce87nMkt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u2ce87nMkt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u2ce87nMkt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u2ce87nMkt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u2ce87nMkt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u2ce87nMkt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u2ce87nMkt .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: #002245;
}
.cid-u2ce87nMkt .navbar.opened {
  transition: all 0.3s;
}
.cid-u2ce87nMkt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u2ce87nMkt .navbar .navbar-logo img {
  width: auto;
}
.cid-u2ce87nMkt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u2ce87nMkt .navbar.collapsed {
  justify-content: center;
}
.cid-u2ce87nMkt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u2ce87nMkt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u2ce87nMkt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-u2ce87nMkt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u2ce87nMkt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u2ce87nMkt .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-u2ce87nMkt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u2ce87nMkt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u2ce87nMkt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u2ce87nMkt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u2ce87nMkt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u2ce87nMkt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u2ce87nMkt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u2ce87nMkt .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-u2ce87nMkt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u2ce87nMkt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u2ce87nMkt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u2ce87nMkt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u2ce87nMkt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u2ce87nMkt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u2ce87nMkt .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u2ce87nMkt .navbar.navbar-short {
  min-height: 60px;
}
.cid-u2ce87nMkt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u2ce87nMkt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u2ce87nMkt .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-u2ce87nMkt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u2ce87nMkt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u2ce87nMkt .dropdown-item.active,
.cid-u2ce87nMkt .dropdown-item:active {
  background-color: transparent;
}
.cid-u2ce87nMkt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u2ce87nMkt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u2ce87nMkt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u2ce87nMkt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #002245;
}
.cid-u2ce87nMkt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u2ce87nMkt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u2ce87nMkt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u2ce87nMkt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u2ce87nMkt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u2ce87nMkt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #bbbbbb;
}
.cid-u2ce87nMkt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u2ce87nMkt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u2ce87nMkt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u2ce87nMkt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u2ce87nMkt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u2ce87nMkt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u2ce87nMkt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u2ce87nMkt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u2ce87nMkt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u2ce87nMkt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u2ce87nMkt .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-u2ce87nMkt .navbar {
    height: 70px;
  }
  .cid-u2ce87nMkt .navbar.opened {
    height: auto;
  }
  .cid-u2ce87nMkt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
#custom-html-30 {
  /* Type valid CSS here */
}
#custom-html-30 div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-30 p {
  font-size: 60px;
  color: #777;
}
#custom-html-30 #Header {
  height: 65px;
  width: auto;
  margin: 0px;
  padding: 0px;
  background-image: url(../../../assets/images/index-800x65-up-800x65.jpg);
  background-repeat: repeat-x;
  background-size: contain;
  background-position: center;
}
.cid-u3MSdps2nZ {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u3MSdps2nZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3MSdps2nZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3MSdps2nZ .mbr-section-subtitle {
  text-align: left;
}
.cid-u3MSe5nzaO {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-u3MSe5nzaO .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3MSe5nzaO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3MSe5nzaO .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-u3MSe5nzaO .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u3MSe5nzaO .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-u3MSe5nzaO .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u3MSe5nzaO .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-u3MSe5nzaO .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-u3MSe5nzaO .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
#custom-html-8d {
  /* Type valid CSS here */
}
#custom-html-8d div {
  padding: 20px 0;
  color: #777;
  text-align: center;
}
#custom-html-8d p {
  font-size: 60px;
  color: #777;
}
.cid-vcDwpk0NYG {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-vcDwpk0NYG img,
.cid-vcDwpk0NYG .item-img {
  width: 100%;
}
.cid-vcDwpk0NYG .item:focus,
.cid-vcDwpk0NYG span:focus {
  outline: none;
}
.cid-vcDwpk0NYG .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-vcDwpk0NYG .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-vcDwpk0NYG .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-vcDwpk0NYG .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vcDwpk0NYG .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-vcDwpk0NYG .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-vcDwpk0NYG .mbr-section-btn {
  margin-top: auto !important;
}
.cid-vcDwpk0NYG .mbr-section-title {
  color: #232323;
}
.cid-vcDwpk0NYG .mbr-text,
.cid-vcDwpk0NYG .mbr-section-btn {
  text-align: left;
}
.cid-vcDwpk0NYG .item-title {
  text-align: left;
}
.cid-vcDwpk0NYG .item-subtitle {
  text-align: left;
}
.cid-vcDwqCjB1n {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-vcDwqCjB1n img,
.cid-vcDwqCjB1n .item-img {
  width: 100%;
}
.cid-vcDwqCjB1n .item:focus,
.cid-vcDwqCjB1n span:focus {
  outline: none;
}
.cid-vcDwqCjB1n .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-vcDwqCjB1n .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-vcDwqCjB1n .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-vcDwqCjB1n .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vcDwqCjB1n .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-vcDwqCjB1n .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-vcDwqCjB1n .mbr-section-btn {
  margin-top: auto !important;
}
.cid-vcDwqCjB1n .mbr-section-title {
  color: #232323;
}
.cid-vcDwqCjB1n .mbr-text,
.cid-vcDwqCjB1n .mbr-section-btn {
  text-align: left;
}
.cid-vcDwqCjB1n .item-title {
  text-align: left;
}
.cid-vcDwqCjB1n .item-subtitle {
  text-align: left;
}
#custom-html-36 {
  /* Type valid CSS here */
}
#custom-html-36 div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-36 p {
  font-size: 60px;
  color: #777;
}
#custom-html-36 #Header {
  height: 65px;
  width: auto;
  margin: 0px;
  padding: 0px;
  background-image: url(../../../assets/images/index-800x65-down-800x65.jpg);
  background-repeat: repeat-x;
  background-size: contain;
  background-position: center;
}
.cid-uFpWvTsheb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #002245;
}
.cid-uFpWvTsheb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFpWvTsheb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFpWvTsheb .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uFpWvTsheb .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uFpWvTsheb .row {
    text-align: center;
  }
  .cid-uFpWvTsheb .row > div {
    margin: auto;
  }
  .cid-uFpWvTsheb .social-row {
    justify-content: center;
  }
}
.cid-uFpWvTsheb .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uFpWvTsheb .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uFpWvTsheb .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uFpWvTsheb .list {
    margin-bottom: 0rem;
  }
}
.cid-uFpWvTsheb .mbr-text {
  color: #ffffff;
}
.cid-uFpWvTsheb .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uFpWvTsheb .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uFpWvTsheb div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-u2ce6xOFnh {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u2ce6xOFnh nav.navbar {
  position: fixed;
}
.cid-u2ce6xOFnh .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-u2ce6xOFnh .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u2ce6xOFnh .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u2ce6xOFnh .dropdown-item:hover,
.cid-u2ce6xOFnh .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-u2ce6xOFnh .dropdown-item:hover span {
  color: white;
}
.cid-u2ce6xOFnh .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u2ce6xOFnh .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u2ce6xOFnh .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u2ce6xOFnh .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u2ce6xOFnh .nav-link {
  position: relative;
}
.cid-u2ce6xOFnh .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-u2ce6xOFnh .container {
    flex-wrap: wrap;
  }
}
.cid-u2ce6xOFnh .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-u2ce6xOFnh .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-u2ce6xOFnh .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u2ce6xOFnh .dropdown-menu,
.cid-u2ce6xOFnh .navbar.opened {
  background: #002245 !important;
}
.cid-u2ce6xOFnh .nav-item:focus,
.cid-u2ce6xOFnh .nav-link:focus {
  outline: none;
}
.cid-u2ce6xOFnh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u2ce6xOFnh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u2ce6xOFnh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u2ce6xOFnh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u2ce6xOFnh .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u2ce6xOFnh .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u2ce6xOFnh .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: #002245;
}
.cid-u2ce6xOFnh .navbar.opened {
  transition: all 0.3s;
}
.cid-u2ce6xOFnh .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u2ce6xOFnh .navbar .navbar-logo img {
  width: auto;
}
.cid-u2ce6xOFnh .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u2ce6xOFnh .navbar.collapsed {
  justify-content: center;
}
.cid-u2ce6xOFnh .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u2ce6xOFnh .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u2ce6xOFnh .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-u2ce6xOFnh .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u2ce6xOFnh .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u2ce6xOFnh .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-u2ce6xOFnh .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u2ce6xOFnh .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u2ce6xOFnh .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u2ce6xOFnh .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u2ce6xOFnh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u2ce6xOFnh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u2ce6xOFnh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u2ce6xOFnh .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-u2ce6xOFnh .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u2ce6xOFnh .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u2ce6xOFnh .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u2ce6xOFnh .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u2ce6xOFnh .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u2ce6xOFnh .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u2ce6xOFnh .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u2ce6xOFnh .navbar.navbar-short {
  min-height: 60px;
}
.cid-u2ce6xOFnh .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u2ce6xOFnh .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u2ce6xOFnh .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-u2ce6xOFnh .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u2ce6xOFnh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u2ce6xOFnh .dropdown-item.active,
.cid-u2ce6xOFnh .dropdown-item:active {
  background-color: transparent;
}
.cid-u2ce6xOFnh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u2ce6xOFnh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u2ce6xOFnh .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u2ce6xOFnh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #002245;
}
.cid-u2ce6xOFnh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u2ce6xOFnh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u2ce6xOFnh ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u2ce6xOFnh .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u2ce6xOFnh button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u2ce6xOFnh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #bbbbbb;
}
.cid-u2ce6xOFnh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u2ce6xOFnh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u2ce6xOFnh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u2ce6xOFnh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u2ce6xOFnh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u2ce6xOFnh nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u2ce6xOFnh nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u2ce6xOFnh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u2ce6xOFnh .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u2ce6xOFnh a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u2ce6xOFnh .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-u2ce6xOFnh .navbar {
    height: 70px;
  }
  .cid-u2ce6xOFnh .navbar.opened {
    height: auto;
  }
  .cid-u2ce6xOFnh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
#custom-html-2r {
  /* Type valid CSS here */
}
#custom-html-2r div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-2r p {
  font-size: 60px;
  color: #777;
}
#custom-html-2r #Header {
  height: 65px;
  width: auto;
  margin: 0px;
  padding: 0px;
  background-image: url(../../../assets/images/index-800x65-up-800x65.jpg);
  background-repeat: repeat-x;
  background-size: contain;
  background-position: center;
}
.cid-u3MRBzsBC3 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u3MRBzsBC3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3MRBzsBC3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3MRBzsBC3 .mbr-section-subtitle {
  text-align: left;
}
.cid-u3MRAIuuXU {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-u3MRAIuuXU .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3MRAIuuXU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3MRAIuuXU .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-u3MRAIuuXU .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u3MRAIuuXU .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-u3MRAIuuXU .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u3MRAIuuXU .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-u3MRAIuuXU .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-u3MRAIuuXU .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
#custom-html-8b {
  /* Type valid CSS here */
}
#custom-html-8b div {
  padding: 20px 0;
  color: #777;
  text-align: center;
}
#custom-html-8b p {
  font-size: 60px;
  color: #777;
}
.cid-usBOc44gx0 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-usBOc44gx0 img,
.cid-usBOc44gx0 .item-img {
  width: 100%;
}
.cid-usBOc44gx0 .item:focus,
.cid-usBOc44gx0 span:focus {
  outline: none;
}
.cid-usBOc44gx0 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-usBOc44gx0 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-usBOc44gx0 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-usBOc44gx0 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-usBOc44gx0 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-usBOc44gx0 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-usBOc44gx0 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-usBOc44gx0 .mbr-section-title {
  color: #232323;
}
.cid-usBOc44gx0 .mbr-text,
.cid-usBOc44gx0 .mbr-section-btn {
  text-align: left;
}
.cid-usBOc44gx0 .item-title {
  text-align: left;
}
.cid-usBOc44gx0 .item-subtitle {
  text-align: left;
}
.cid-usBOcXWwgC {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-usBOcXWwgC img,
.cid-usBOcXWwgC .item-img {
  width: 100%;
}
.cid-usBOcXWwgC .item:focus,
.cid-usBOcXWwgC span:focus {
  outline: none;
}
.cid-usBOcXWwgC .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-usBOcXWwgC .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-usBOcXWwgC .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-usBOcXWwgC .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-usBOcXWwgC .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-usBOcXWwgC .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-usBOcXWwgC .mbr-section-btn {
  margin-top: auto !important;
}
.cid-usBOcXWwgC .mbr-section-title {
  color: #232323;
}
.cid-usBOcXWwgC .mbr-text,
.cid-usBOcXWwgC .mbr-section-btn {
  text-align: left;
}
.cid-usBOcXWwgC .item-title {
  text-align: left;
}
.cid-usBOcXWwgC .item-subtitle {
  text-align: left;
}
#custom-html-2x {
  /* Type valid CSS here */
}
#custom-html-2x div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-2x p {
  font-size: 60px;
  color: #777;
}
#custom-html-2x #Header {
  height: 65px;
  width: auto;
  margin: 0px;
  padding: 0px;
  background-image: url(../../../assets/images/index-800x65-down-800x65.jpg);
  background-repeat: repeat-x;
  background-size: contain;
  background-position: center;
}
.cid-uFpWvTsheb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #002245;
}
.cid-uFpWvTsheb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFpWvTsheb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFpWvTsheb .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uFpWvTsheb .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uFpWvTsheb .row {
    text-align: center;
  }
  .cid-uFpWvTsheb .row > div {
    margin: auto;
  }
  .cid-uFpWvTsheb .social-row {
    justify-content: center;
  }
}
.cid-uFpWvTsheb .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uFpWvTsheb .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uFpWvTsheb .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uFpWvTsheb .list {
    margin-bottom: 0rem;
  }
}
.cid-uFpWvTsheb .mbr-text {
  color: #ffffff;
}
.cid-uFpWvTsheb .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uFpWvTsheb .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uFpWvTsheb div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-u3Mwo8hxGw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u3Mwo8hxGw nav.navbar {
  position: fixed;
}
.cid-u3Mwo8hxGw .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-u3Mwo8hxGw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u3Mwo8hxGw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u3Mwo8hxGw .dropdown-item:hover,
.cid-u3Mwo8hxGw .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-u3Mwo8hxGw .dropdown-item:hover span {
  color: white;
}
.cid-u3Mwo8hxGw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u3Mwo8hxGw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u3Mwo8hxGw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u3Mwo8hxGw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u3Mwo8hxGw .nav-link {
  position: relative;
}
.cid-u3Mwo8hxGw .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-u3Mwo8hxGw .container {
    flex-wrap: wrap;
  }
}
.cid-u3Mwo8hxGw .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-u3Mwo8hxGw .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-u3Mwo8hxGw .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u3Mwo8hxGw .dropdown-menu,
.cid-u3Mwo8hxGw .navbar.opened {
  background: #002245 !important;
}
.cid-u3Mwo8hxGw .nav-item:focus,
.cid-u3Mwo8hxGw .nav-link:focus {
  outline: none;
}
.cid-u3Mwo8hxGw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u3Mwo8hxGw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u3Mwo8hxGw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u3Mwo8hxGw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u3Mwo8hxGw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u3Mwo8hxGw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u3Mwo8hxGw .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: #002245;
}
.cid-u3Mwo8hxGw .navbar.opened {
  transition: all 0.3s;
}
.cid-u3Mwo8hxGw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u3Mwo8hxGw .navbar .navbar-logo img {
  width: auto;
}
.cid-u3Mwo8hxGw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u3Mwo8hxGw .navbar.collapsed {
  justify-content: center;
}
.cid-u3Mwo8hxGw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u3Mwo8hxGw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u3Mwo8hxGw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-u3Mwo8hxGw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u3Mwo8hxGw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u3Mwo8hxGw .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-u3Mwo8hxGw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u3Mwo8hxGw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u3Mwo8hxGw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u3Mwo8hxGw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u3Mwo8hxGw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u3Mwo8hxGw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u3Mwo8hxGw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u3Mwo8hxGw .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-u3Mwo8hxGw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u3Mwo8hxGw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u3Mwo8hxGw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u3Mwo8hxGw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u3Mwo8hxGw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u3Mwo8hxGw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u3Mwo8hxGw .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u3Mwo8hxGw .navbar.navbar-short {
  min-height: 60px;
}
.cid-u3Mwo8hxGw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u3Mwo8hxGw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u3Mwo8hxGw .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-u3Mwo8hxGw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u3Mwo8hxGw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u3Mwo8hxGw .dropdown-item.active,
.cid-u3Mwo8hxGw .dropdown-item:active {
  background-color: transparent;
}
.cid-u3Mwo8hxGw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u3Mwo8hxGw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u3Mwo8hxGw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u3Mwo8hxGw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #002245;
}
.cid-u3Mwo8hxGw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u3Mwo8hxGw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u3Mwo8hxGw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u3Mwo8hxGw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u3Mwo8hxGw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u3Mwo8hxGw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #bbbbbb;
}
.cid-u3Mwo8hxGw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u3Mwo8hxGw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u3Mwo8hxGw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u3Mwo8hxGw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u3Mwo8hxGw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u3Mwo8hxGw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u3Mwo8hxGw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u3Mwo8hxGw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u3Mwo8hxGw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u3Mwo8hxGw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u3Mwo8hxGw .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-u3Mwo8hxGw .navbar {
    height: 70px;
  }
  .cid-u3Mwo8hxGw .navbar.opened {
    height: auto;
  }
  .cid-u3Mwo8hxGw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
#custom-html-4x {
  /* Type valid CSS here */
}
#custom-html-4x div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-4x p {
  font-size: 60px;
  color: #777;
}
#custom-html-4x #Header {
  height: 65px;
  width: auto;
  margin: 0px;
  padding: 0px;
  background-image: url(../../../assets/images/index-800x65-up-800x65.jpg);
  background-repeat: repeat-x;
  background-size: contain;
  background-position: center;
}
.cid-u3MCz8OeQq {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u3MCz8OeQq .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3MCz8OeQq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3MCz8OeQq .mbr-section-subtitle {
  text-align: left;
}
.cid-u3MDm643mn {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-u3MDm643mn .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3MDm643mn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3MDm643mn .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-u3MDm643mn .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u3MDm643mn .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-u3MDm643mn .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u3MDm643mn .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-u3MDm643mn .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-u3MDm643mn .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
#custom-html-8e {
  /* Type valid CSS here */
}
#custom-html-8e div {
  padding: 20px 0;
  color: #777;
  text-align: center;
}
#custom-html-8e p {
  font-size: 60px;
  color: #777;
}
.cid-vcDwCuSrqO {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-vcDwCuSrqO img,
.cid-vcDwCuSrqO .item-img {
  width: 100%;
}
.cid-vcDwCuSrqO .item:focus,
.cid-vcDwCuSrqO span:focus {
  outline: none;
}
.cid-vcDwCuSrqO .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-vcDwCuSrqO .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-vcDwCuSrqO .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-vcDwCuSrqO .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vcDwCuSrqO .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-vcDwCuSrqO .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-vcDwCuSrqO .mbr-section-btn {
  margin-top: auto !important;
}
.cid-vcDwCuSrqO .mbr-section-title {
  color: #232323;
}
.cid-vcDwCuSrqO .mbr-text,
.cid-vcDwCuSrqO .mbr-section-btn {
  text-align: left;
}
.cid-vcDwCuSrqO .item-title {
  text-align: left;
}
.cid-vcDwCuSrqO .item-subtitle {
  text-align: left;
}
.cid-vcDwDvj5JD {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-vcDwDvj5JD img,
.cid-vcDwDvj5JD .item-img {
  width: 100%;
}
.cid-vcDwDvj5JD .item:focus,
.cid-vcDwDvj5JD span:focus {
  outline: none;
}
.cid-vcDwDvj5JD .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-vcDwDvj5JD .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-vcDwDvj5JD .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-vcDwDvj5JD .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vcDwDvj5JD .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-vcDwDvj5JD .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-vcDwDvj5JD .mbr-section-btn {
  margin-top: auto !important;
}
.cid-vcDwDvj5JD .mbr-section-title {
  color: #232323;
}
.cid-vcDwDvj5JD .mbr-text,
.cid-vcDwDvj5JD .mbr-section-btn {
  text-align: left;
}
.cid-vcDwDvj5JD .item-title {
  text-align: left;
}
.cid-vcDwDvj5JD .item-subtitle {
  text-align: left;
}
#custom-html-53 {
  /* Type valid CSS here */
}
#custom-html-53 div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-53 p {
  font-size: 60px;
  color: #777;
}
#custom-html-53 #Header {
  height: 65px;
  width: auto;
  margin: 0px;
  padding: 0px;
  background-image: url(../../../assets/images/index-800x65-down-800x65.jpg);
  background-repeat: repeat-x;
  background-size: contain;
  background-position: center;
}
.cid-uFpWvTsheb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #002245;
}
.cid-uFpWvTsheb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFpWvTsheb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFpWvTsheb .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uFpWvTsheb .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uFpWvTsheb .row {
    text-align: center;
  }
  .cid-uFpWvTsheb .row > div {
    margin: auto;
  }
  .cid-uFpWvTsheb .social-row {
    justify-content: center;
  }
}
.cid-uFpWvTsheb .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uFpWvTsheb .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uFpWvTsheb .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uFpWvTsheb .list {
    margin-bottom: 0rem;
  }
}
.cid-uFpWvTsheb .mbr-text {
  color: #ffffff;
}
.cid-uFpWvTsheb .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uFpWvTsheb .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uFpWvTsheb div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-u3My8snYZA {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u3My8snYZA nav.navbar {
  position: fixed;
}
.cid-u3My8snYZA .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-u3My8snYZA .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u3My8snYZA .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u3My8snYZA .dropdown-item:hover,
.cid-u3My8snYZA .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-u3My8snYZA .dropdown-item:hover span {
  color: white;
}
.cid-u3My8snYZA .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u3My8snYZA .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u3My8snYZA .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u3My8snYZA .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u3My8snYZA .nav-link {
  position: relative;
}
.cid-u3My8snYZA .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-u3My8snYZA .container {
    flex-wrap: wrap;
  }
}
.cid-u3My8snYZA .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-u3My8snYZA .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-u3My8snYZA .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u3My8snYZA .dropdown-menu,
.cid-u3My8snYZA .navbar.opened {
  background: #002245 !important;
}
.cid-u3My8snYZA .nav-item:focus,
.cid-u3My8snYZA .nav-link:focus {
  outline: none;
}
.cid-u3My8snYZA .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u3My8snYZA .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u3My8snYZA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u3My8snYZA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u3My8snYZA .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u3My8snYZA .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u3My8snYZA .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: #002245;
}
.cid-u3My8snYZA .navbar.opened {
  transition: all 0.3s;
}
.cid-u3My8snYZA .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u3My8snYZA .navbar .navbar-logo img {
  width: auto;
}
.cid-u3My8snYZA .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u3My8snYZA .navbar.collapsed {
  justify-content: center;
}
.cid-u3My8snYZA .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u3My8snYZA .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u3My8snYZA .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-u3My8snYZA .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u3My8snYZA .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u3My8snYZA .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-u3My8snYZA .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u3My8snYZA .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u3My8snYZA .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u3My8snYZA .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u3My8snYZA .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u3My8snYZA .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u3My8snYZA .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u3My8snYZA .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-u3My8snYZA .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u3My8snYZA .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u3My8snYZA .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u3My8snYZA .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u3My8snYZA .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u3My8snYZA .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u3My8snYZA .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u3My8snYZA .navbar.navbar-short {
  min-height: 60px;
}
.cid-u3My8snYZA .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u3My8snYZA .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u3My8snYZA .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-u3My8snYZA .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u3My8snYZA .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u3My8snYZA .dropdown-item.active,
.cid-u3My8snYZA .dropdown-item:active {
  background-color: transparent;
}
.cid-u3My8snYZA .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u3My8snYZA .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u3My8snYZA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u3My8snYZA .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #002245;
}
.cid-u3My8snYZA .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u3My8snYZA .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u3My8snYZA ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u3My8snYZA .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u3My8snYZA button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u3My8snYZA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #bbbbbb;
}
.cid-u3My8snYZA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u3My8snYZA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u3My8snYZA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u3My8snYZA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u3My8snYZA nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u3My8snYZA nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u3My8snYZA nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u3My8snYZA nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u3My8snYZA .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u3My8snYZA a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u3My8snYZA .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-u3My8snYZA .navbar {
    height: 70px;
  }
  .cid-u3My8snYZA .navbar.opened {
    height: auto;
  }
  .cid-u3My8snYZA .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
#custom-html-56 {
  /* Type valid CSS here */
}
#custom-html-56 div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-56 p {
  font-size: 60px;
  color: #777;
}
#custom-html-56 #Header {
  height: 65px;
  width: auto;
  margin: 0px;
  padding: 0px;
  background-image: url(../../../assets/images/index-800x65-up-800x65.jpg);
  background-repeat: repeat-x;
  background-size: contain;
  background-position: center;
}
.cid-u3MARXdk4z {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u3MARXdk4z .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3MARXdk4z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3MARXdk4z .mbr-section-subtitle {
  text-align: left;
}
.cid-u3MEtTXylK {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-u3MEtTXylK .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3MEtTXylK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3MEtTXylK .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-u3MEtTXylK .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u3MEtTXylK .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-u3MEtTXylK .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u3MEtTXylK .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-u3MEtTXylK .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-u3MEtTXylK .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
#custom-html-8c {
  /* Type valid CSS here */
}
#custom-html-8c div {
  padding: 20px 0;
  color: #777;
  text-align: center;
}
#custom-html-8c p {
  font-size: 60px;
  color: #777;
}
.cid-vcDx4jzz7P {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-vcDx4jzz7P img,
.cid-vcDx4jzz7P .item-img {
  width: 100%;
}
.cid-vcDx4jzz7P .item:focus,
.cid-vcDx4jzz7P span:focus {
  outline: none;
}
.cid-vcDx4jzz7P .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-vcDx4jzz7P .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-vcDx4jzz7P .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-vcDx4jzz7P .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vcDx4jzz7P .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-vcDx4jzz7P .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-vcDx4jzz7P .mbr-section-btn {
  margin-top: auto !important;
}
.cid-vcDx4jzz7P .mbr-section-title {
  color: #232323;
}
.cid-vcDx4jzz7P .mbr-text,
.cid-vcDx4jzz7P .mbr-section-btn {
  text-align: left;
}
.cid-vcDx4jzz7P .item-title {
  text-align: left;
}
.cid-vcDx4jzz7P .item-subtitle {
  text-align: left;
}
.cid-vcDx5d4Cr6 {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-vcDx5d4Cr6 img,
.cid-vcDx5d4Cr6 .item-img {
  width: 100%;
}
.cid-vcDx5d4Cr6 .item:focus,
.cid-vcDx5d4Cr6 span:focus {
  outline: none;
}
.cid-vcDx5d4Cr6 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-vcDx5d4Cr6 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-vcDx5d4Cr6 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-vcDx5d4Cr6 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vcDx5d4Cr6 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-vcDx5d4Cr6 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-vcDx5d4Cr6 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-vcDx5d4Cr6 .mbr-section-title {
  color: #232323;
}
.cid-vcDx5d4Cr6 .mbr-text,
.cid-vcDx5d4Cr6 .mbr-section-btn {
  text-align: left;
}
.cid-vcDx5d4Cr6 .item-title {
  text-align: left;
}
.cid-vcDx5d4Cr6 .item-subtitle {
  text-align: left;
}
#custom-html-5c {
  /* Type valid CSS here */
}
#custom-html-5c div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-5c p {
  font-size: 60px;
  color: #777;
}
#custom-html-5c #Header {
  height: 65px;
  width: auto;
  margin: 0px;
  padding: 0px;
  background-image: url(../../../assets/images/index-800x65-down-800x65.jpg);
  background-repeat: repeat-x;
  background-size: contain;
  background-position: center;
}
.cid-uFpWvTsheb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #002245;
}
.cid-uFpWvTsheb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFpWvTsheb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFpWvTsheb .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uFpWvTsheb .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uFpWvTsheb .row {
    text-align: center;
  }
  .cid-uFpWvTsheb .row > div {
    margin: auto;
  }
  .cid-uFpWvTsheb .social-row {
    justify-content: center;
  }
}
.cid-uFpWvTsheb .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uFpWvTsheb .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uFpWvTsheb .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uFpWvTsheb .list {
    margin-bottom: 0rem;
  }
}
.cid-uFpWvTsheb .mbr-text {
  color: #ffffff;
}
.cid-uFpWvTsheb .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uFpWvTsheb .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uFpWvTsheb div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-u3NUmb5HW8 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u3NUmb5HW8 nav.navbar {
  position: fixed;
}
.cid-u3NUmb5HW8 .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-u3NUmb5HW8 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u3NUmb5HW8 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u3NUmb5HW8 .dropdown-item:hover,
.cid-u3NUmb5HW8 .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-u3NUmb5HW8 .dropdown-item:hover span {
  color: white;
}
.cid-u3NUmb5HW8 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u3NUmb5HW8 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u3NUmb5HW8 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u3NUmb5HW8 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u3NUmb5HW8 .nav-link {
  position: relative;
}
.cid-u3NUmb5HW8 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-u3NUmb5HW8 .container {
    flex-wrap: wrap;
  }
}
.cid-u3NUmb5HW8 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-u3NUmb5HW8 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-u3NUmb5HW8 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u3NUmb5HW8 .dropdown-menu,
.cid-u3NUmb5HW8 .navbar.opened {
  background: #002245 !important;
}
.cid-u3NUmb5HW8 .nav-item:focus,
.cid-u3NUmb5HW8 .nav-link:focus {
  outline: none;
}
.cid-u3NUmb5HW8 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u3NUmb5HW8 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u3NUmb5HW8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u3NUmb5HW8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u3NUmb5HW8 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u3NUmb5HW8 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u3NUmb5HW8 .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: #002245;
}
.cid-u3NUmb5HW8 .navbar.opened {
  transition: all 0.3s;
}
.cid-u3NUmb5HW8 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u3NUmb5HW8 .navbar .navbar-logo img {
  width: auto;
}
.cid-u3NUmb5HW8 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u3NUmb5HW8 .navbar.collapsed {
  justify-content: center;
}
.cid-u3NUmb5HW8 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u3NUmb5HW8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u3NUmb5HW8 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-u3NUmb5HW8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u3NUmb5HW8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u3NUmb5HW8 .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-u3NUmb5HW8 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u3NUmb5HW8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u3NUmb5HW8 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u3NUmb5HW8 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u3NUmb5HW8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u3NUmb5HW8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u3NUmb5HW8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u3NUmb5HW8 .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-u3NUmb5HW8 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u3NUmb5HW8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u3NUmb5HW8 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u3NUmb5HW8 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u3NUmb5HW8 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u3NUmb5HW8 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u3NUmb5HW8 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u3NUmb5HW8 .navbar.navbar-short {
  min-height: 60px;
}
.cid-u3NUmb5HW8 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u3NUmb5HW8 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u3NUmb5HW8 .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-u3NUmb5HW8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u3NUmb5HW8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u3NUmb5HW8 .dropdown-item.active,
.cid-u3NUmb5HW8 .dropdown-item:active {
  background-color: transparent;
}
.cid-u3NUmb5HW8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u3NUmb5HW8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u3NUmb5HW8 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u3NUmb5HW8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #002245;
}
.cid-u3NUmb5HW8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u3NUmb5HW8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u3NUmb5HW8 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u3NUmb5HW8 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u3NUmb5HW8 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u3NUmb5HW8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #bbbbbb;
}
.cid-u3NUmb5HW8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u3NUmb5HW8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u3NUmb5HW8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u3NUmb5HW8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u3NUmb5HW8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u3NUmb5HW8 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u3NUmb5HW8 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u3NUmb5HW8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u3NUmb5HW8 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u3NUmb5HW8 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u3NUmb5HW8 .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-u3NUmb5HW8 .navbar {
    height: 70px;
  }
  .cid-u3NUmb5HW8 .navbar.opened {
    height: auto;
  }
  .cid-u3NUmb5HW8 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
#custom-html-7h {
  /* Type valid CSS here */
}
#custom-html-7h div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-7h p {
  font-size: 60px;
  color: #777;
}
#custom-html-7h #Header {
  height: 65px;
  width: auto;
  margin: 0px;
  padding: 0px;
  background-image: url(../../../assets/images/index-800x65-up-800x65.jpg);
  background-repeat: repeat-x;
  background-size: contain;
  background-position: center;
}
.cid-u3NUmcaDvZ {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u3NUmcaDvZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3NUmcaDvZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3NUmcaDvZ .mbr-section-subtitle {
  text-align: left;
}
.cid-u3NUmcTzlC {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-u3NUmcTzlC .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3NUmcTzlC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3NUmcTzlC .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-u3NUmcTzlC .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u3NUmcTzlC .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-u3NUmcTzlC .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u3NUmcTzlC .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-u3NUmcTzlC .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-u3NUmcTzlC .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
#custom-html-7m {
  /* Type valid CSS here */
}
#custom-html-7m div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-7m p {
  font-size: 60px;
  color: #777;
}
#custom-html-7m #Header {
  height: 65px;
  width: auto;
  margin: 0px;
  padding: 0px;
  background-image: url(../../../assets/images/index-800x65-up-800x65.jpg);
  background-repeat: repeat-x;
  background-size: contain;
  background-position: center;
}
#custom-html-7n {
  /* Type valid CSS here */
}
#custom-html-7n div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-7n p {
  font-size: 60px;
  color: #777;
}
#custom-html-7n #Header {
  height: 65px;
  width: auto;
  margin: 0px;
  padding: 0px;
  background-image: url(../../../assets/images/index-800x65-down-800x65.jpg);
  background-repeat: repeat-x;
  background-size: contain;
  background-position: center;
}
.cid-uFpWvTsheb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #002245;
}
.cid-uFpWvTsheb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFpWvTsheb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFpWvTsheb .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uFpWvTsheb .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uFpWvTsheb .row {
    text-align: center;
  }
  .cid-uFpWvTsheb .row > div {
    margin: auto;
  }
  .cid-uFpWvTsheb .social-row {
    justify-content: center;
  }
}
.cid-uFpWvTsheb .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uFpWvTsheb .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uFpWvTsheb .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uFpWvTsheb .list {
    margin-bottom: 0rem;
  }
}
.cid-uFpWvTsheb .mbr-text {
  color: #ffffff;
}
.cid-uFpWvTsheb .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uFpWvTsheb .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uFpWvTsheb div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-u3NPrSA0Pr {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u3NPrSA0Pr nav.navbar {
  position: fixed;
}
.cid-u3NPrSA0Pr .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-u3NPrSA0Pr .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u3NPrSA0Pr .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u3NPrSA0Pr .dropdown-item:hover,
.cid-u3NPrSA0Pr .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-u3NPrSA0Pr .dropdown-item:hover span {
  color: white;
}
.cid-u3NPrSA0Pr .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u3NPrSA0Pr .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u3NPrSA0Pr .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u3NPrSA0Pr .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u3NPrSA0Pr .nav-link {
  position: relative;
}
.cid-u3NPrSA0Pr .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-u3NPrSA0Pr .container {
    flex-wrap: wrap;
  }
}
.cid-u3NPrSA0Pr .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-u3NPrSA0Pr .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-u3NPrSA0Pr .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u3NPrSA0Pr .dropdown-menu,
.cid-u3NPrSA0Pr .navbar.opened {
  background: #002245 !important;
}
.cid-u3NPrSA0Pr .nav-item:focus,
.cid-u3NPrSA0Pr .nav-link:focus {
  outline: none;
}
.cid-u3NPrSA0Pr .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u3NPrSA0Pr .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u3NPrSA0Pr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u3NPrSA0Pr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u3NPrSA0Pr .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u3NPrSA0Pr .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u3NPrSA0Pr .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: #002245;
}
.cid-u3NPrSA0Pr .navbar.opened {
  transition: all 0.3s;
}
.cid-u3NPrSA0Pr .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u3NPrSA0Pr .navbar .navbar-logo img {
  width: auto;
}
.cid-u3NPrSA0Pr .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u3NPrSA0Pr .navbar.collapsed {
  justify-content: center;
}
.cid-u3NPrSA0Pr .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u3NPrSA0Pr .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u3NPrSA0Pr .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-u3NPrSA0Pr .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u3NPrSA0Pr .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u3NPrSA0Pr .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-u3NPrSA0Pr .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u3NPrSA0Pr .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u3NPrSA0Pr .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u3NPrSA0Pr .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u3NPrSA0Pr .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u3NPrSA0Pr .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u3NPrSA0Pr .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u3NPrSA0Pr .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-u3NPrSA0Pr .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u3NPrSA0Pr .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u3NPrSA0Pr .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u3NPrSA0Pr .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u3NPrSA0Pr .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u3NPrSA0Pr .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u3NPrSA0Pr .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u3NPrSA0Pr .navbar.navbar-short {
  min-height: 60px;
}
.cid-u3NPrSA0Pr .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u3NPrSA0Pr .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u3NPrSA0Pr .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-u3NPrSA0Pr .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u3NPrSA0Pr .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u3NPrSA0Pr .dropdown-item.active,
.cid-u3NPrSA0Pr .dropdown-item:active {
  background-color: transparent;
}
.cid-u3NPrSA0Pr .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u3NPrSA0Pr .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u3NPrSA0Pr .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u3NPrSA0Pr .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #002245;
}
.cid-u3NPrSA0Pr .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u3NPrSA0Pr .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u3NPrSA0Pr ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u3NPrSA0Pr .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u3NPrSA0Pr button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u3NPrSA0Pr button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #bbbbbb;
}
.cid-u3NPrSA0Pr button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u3NPrSA0Pr button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u3NPrSA0Pr button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u3NPrSA0Pr button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u3NPrSA0Pr nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u3NPrSA0Pr nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u3NPrSA0Pr nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u3NPrSA0Pr nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u3NPrSA0Pr .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u3NPrSA0Pr a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u3NPrSA0Pr .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-u3NPrSA0Pr .navbar {
    height: 70px;
  }
  .cid-u3NPrSA0Pr .navbar.opened {
    height: auto;
  }
  .cid-u3NPrSA0Pr .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
#custom-html-6u {
  /* Type valid CSS here */
}
#custom-html-6u div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-6u p {
  font-size: 60px;
  color: #777;
}
#custom-html-6u #Header {
  height: 65px;
  width: auto;
  margin: 0px;
  padding: 0px;
  background-image: url(../../../assets/images/index-800x65-up-800x65.jpg);
  background-repeat: repeat-x;
  background-size: contain;
  background-position: center;
}
.cid-u3NSx92TO9 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u3NSx92TO9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3NSx92TO9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3NSx92TO9 .mbr-section-subtitle {
  text-align: left;
}
.cid-u3NSbe0YWX {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-u3NSbe0YWX .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3NSbe0YWX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3NSbe0YWX .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-u3NSbe0YWX .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u3NSbe0YWX .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-u3NSbe0YWX .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u3NSbe0YWX .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-u3NSbe0YWX .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-u3NSbe0YWX .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
#custom-html-7e {
  /* Type valid CSS here */
}
#custom-html-7e div {
  padding: 20px 0;
  color: #777;
  text-align: center;
}
#custom-html-7e p {
  font-size: 60px;
  color: #777;
}
.cid-u3NTJbE5VC {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-u3NTJbE5VC .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3NTJbE5VC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3NTJbE5VC .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-u3NTJbE5VC .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u3NTJbE5VC .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-u3NTJbE5VC .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u3NTJbE5VC .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-u3NTJbE5VC .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-u3NTJbE5VC .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
#custom-html-7d {
  /* Type valid CSS here */
}
#custom-html-7d div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-7d p {
  font-size: 60px;
  color: #777;
}
#custom-html-7d #Header {
  height: 65px;
  width: auto;
  margin: 0px;
  padding: 0px;
  background-image: url(../../../assets/images/index-800x65-up-800x65.jpg);
  background-repeat: repeat-x;
  background-size: contain;
  background-position: center;
}
#custom-html-6x {
  /* Type valid CSS here */
}
#custom-html-6x div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-6x p {
  font-size: 60px;
  color: #777;
}
#custom-html-6x #Header {
  height: 65px;
  width: auto;
  margin: 0px;
  padding: 0px;
  background-image: url(../../../assets/images/index-800x65-down-800x65.jpg);
  background-repeat: repeat-x;
  background-size: contain;
  background-position: center;
}
.cid-uFpWvTsheb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #002245;
}
.cid-uFpWvTsheb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFpWvTsheb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFpWvTsheb .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uFpWvTsheb .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uFpWvTsheb .row {
    text-align: center;
  }
  .cid-uFpWvTsheb .row > div {
    margin: auto;
  }
  .cid-uFpWvTsheb .social-row {
    justify-content: center;
  }
}
.cid-uFpWvTsheb .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uFpWvTsheb .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uFpWvTsheb .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uFpWvTsheb .list {
    margin-bottom: 0rem;
  }
}
.cid-uFpWvTsheb .mbr-text {
  color: #ffffff;
}
.cid-uFpWvTsheb .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uFpWvTsheb .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uFpWvTsheb div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-u3NUIQoWA1 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u3NUIQoWA1 nav.navbar {
  position: fixed;
}
.cid-u3NUIQoWA1 .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-u3NUIQoWA1 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u3NUIQoWA1 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u3NUIQoWA1 .dropdown-item:hover,
.cid-u3NUIQoWA1 .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-u3NUIQoWA1 .dropdown-item:hover span {
  color: white;
}
.cid-u3NUIQoWA1 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u3NUIQoWA1 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u3NUIQoWA1 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u3NUIQoWA1 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u3NUIQoWA1 .nav-link {
  position: relative;
}
.cid-u3NUIQoWA1 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-u3NUIQoWA1 .container {
    flex-wrap: wrap;
  }
}
.cid-u3NUIQoWA1 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-u3NUIQoWA1 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-u3NUIQoWA1 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u3NUIQoWA1 .dropdown-menu,
.cid-u3NUIQoWA1 .navbar.opened {
  background: #002245 !important;
}
.cid-u3NUIQoWA1 .nav-item:focus,
.cid-u3NUIQoWA1 .nav-link:focus {
  outline: none;
}
.cid-u3NUIQoWA1 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u3NUIQoWA1 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u3NUIQoWA1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u3NUIQoWA1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u3NUIQoWA1 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u3NUIQoWA1 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u3NUIQoWA1 .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: #002245;
}
.cid-u3NUIQoWA1 .navbar.opened {
  transition: all 0.3s;
}
.cid-u3NUIQoWA1 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u3NUIQoWA1 .navbar .navbar-logo img {
  width: auto;
}
.cid-u3NUIQoWA1 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u3NUIQoWA1 .navbar.collapsed {
  justify-content: center;
}
.cid-u3NUIQoWA1 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u3NUIQoWA1 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u3NUIQoWA1 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-u3NUIQoWA1 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u3NUIQoWA1 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u3NUIQoWA1 .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-u3NUIQoWA1 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u3NUIQoWA1 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u3NUIQoWA1 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u3NUIQoWA1 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u3NUIQoWA1 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u3NUIQoWA1 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u3NUIQoWA1 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u3NUIQoWA1 .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-u3NUIQoWA1 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u3NUIQoWA1 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u3NUIQoWA1 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u3NUIQoWA1 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u3NUIQoWA1 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u3NUIQoWA1 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u3NUIQoWA1 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u3NUIQoWA1 .navbar.navbar-short {
  min-height: 60px;
}
.cid-u3NUIQoWA1 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u3NUIQoWA1 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u3NUIQoWA1 .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-u3NUIQoWA1 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u3NUIQoWA1 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u3NUIQoWA1 .dropdown-item.active,
.cid-u3NUIQoWA1 .dropdown-item:active {
  background-color: transparent;
}
.cid-u3NUIQoWA1 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u3NUIQoWA1 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u3NUIQoWA1 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u3NUIQoWA1 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #002245;
}
.cid-u3NUIQoWA1 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u3NUIQoWA1 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u3NUIQoWA1 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u3NUIQoWA1 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u3NUIQoWA1 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u3NUIQoWA1 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #bbbbbb;
}
.cid-u3NUIQoWA1 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u3NUIQoWA1 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u3NUIQoWA1 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u3NUIQoWA1 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u3NUIQoWA1 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u3NUIQoWA1 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u3NUIQoWA1 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u3NUIQoWA1 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u3NUIQoWA1 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u3NUIQoWA1 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u3NUIQoWA1 .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-u3NUIQoWA1 .navbar {
    height: 70px;
  }
  .cid-u3NUIQoWA1 .navbar.opened {
    height: auto;
  }
  .cid-u3NUIQoWA1 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
#custom-html-7q {
  /* Type valid CSS here */
}
#custom-html-7q div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-7q p {
  font-size: 60px;
  color: #777;
}
#custom-html-7q #Header {
  height: 65px;
  width: auto;
  margin: 0px;
  padding: 0px;
  background-image: url(../../../assets/images/index-800x65-up-800x65.jpg);
  background-repeat: repeat-x;
  background-size: contain;
  background-position: center;
}
.cid-u3NUIR6cdu {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u3NUIR6cdu .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3NUIR6cdu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3NUIR6cdu .mbr-section-subtitle {
  text-align: left;
}
.cid-u3NUISmrJy {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-u3NUISmrJy .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3NUISmrJy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3NUISmrJy .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-u3NUISmrJy .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u3NUISmrJy .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-u3NUISmrJy .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u3NUISmrJy .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-u3NUISmrJy .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-u3NUISmrJy .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
#custom-html-7v {
  /* Type valid CSS here */
}
#custom-html-7v div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-7v p {
  font-size: 60px;
  color: #777;
}
#custom-html-7v #Header {
  height: 65px;
  width: auto;
  margin: 0px;
  padding: 0px;
  background-image: url(../../../assets/images/index-800x65-up-800x65.jpg);
  background-repeat: repeat-x;
  background-size: contain;
  background-position: center;
}
#custom-html-7w {
  /* Type valid CSS here */
}
#custom-html-7w div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-7w p {
  font-size: 60px;
  color: #777;
}
#custom-html-7w #Header {
  height: 65px;
  width: auto;
  margin: 0px;
  padding: 0px;
  background-image: url(../../../assets/images/index-800x65-down-800x65.jpg);
  background-repeat: repeat-x;
  background-size: contain;
  background-position: center;
}
.cid-uFpWvTsheb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #002245;
}
.cid-uFpWvTsheb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFpWvTsheb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFpWvTsheb .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uFpWvTsheb .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uFpWvTsheb .row {
    text-align: center;
  }
  .cid-uFpWvTsheb .row > div {
    margin: auto;
  }
  .cid-uFpWvTsheb .social-row {
    justify-content: center;
  }
}
.cid-uFpWvTsheb .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uFpWvTsheb .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uFpWvTsheb .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uFpWvTsheb .list {
    margin-bottom: 0rem;
  }
}
.cid-uFpWvTsheb .mbr-text {
  color: #ffffff;
}
.cid-uFpWvTsheb .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uFpWvTsheb .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uFpWvTsheb div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tBBB5NgnFG {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tBBB5NgnFG nav.navbar {
  position: fixed;
}
.cid-tBBB5NgnFG .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-tBBB5NgnFG .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tBBB5NgnFG .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tBBB5NgnFG .dropdown-item:hover,
.cid-tBBB5NgnFG .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tBBB5NgnFG .dropdown-item:hover span {
  color: white;
}
.cid-tBBB5NgnFG .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tBBB5NgnFG .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tBBB5NgnFG .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tBBB5NgnFG .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tBBB5NgnFG .nav-link {
  position: relative;
}
.cid-tBBB5NgnFG .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tBBB5NgnFG .container {
    flex-wrap: wrap;
  }
}
.cid-tBBB5NgnFG .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tBBB5NgnFG .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tBBB5NgnFG .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tBBB5NgnFG .dropdown-menu,
.cid-tBBB5NgnFG .navbar.opened {
  background: #002245 !important;
}
.cid-tBBB5NgnFG .nav-item:focus,
.cid-tBBB5NgnFG .nav-link:focus {
  outline: none;
}
.cid-tBBB5NgnFG .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tBBB5NgnFG .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tBBB5NgnFG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tBBB5NgnFG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tBBB5NgnFG .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tBBB5NgnFG .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tBBB5NgnFG .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: #002245;
}
.cid-tBBB5NgnFG .navbar.opened {
  transition: all 0.3s;
}
.cid-tBBB5NgnFG .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tBBB5NgnFG .navbar .navbar-logo img {
  width: auto;
}
.cid-tBBB5NgnFG .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tBBB5NgnFG .navbar.collapsed {
  justify-content: center;
}
.cid-tBBB5NgnFG .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tBBB5NgnFG .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tBBB5NgnFG .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-tBBB5NgnFG .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tBBB5NgnFG .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tBBB5NgnFG .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-tBBB5NgnFG .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tBBB5NgnFG .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tBBB5NgnFG .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tBBB5NgnFG .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tBBB5NgnFG .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tBBB5NgnFG .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tBBB5NgnFG .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tBBB5NgnFG .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-tBBB5NgnFG .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tBBB5NgnFG .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tBBB5NgnFG .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tBBB5NgnFG .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tBBB5NgnFG .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tBBB5NgnFG .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tBBB5NgnFG .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tBBB5NgnFG .navbar.navbar-short {
  min-height: 60px;
}
.cid-tBBB5NgnFG .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tBBB5NgnFG .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tBBB5NgnFG .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-tBBB5NgnFG .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tBBB5NgnFG .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tBBB5NgnFG .dropdown-item.active,
.cid-tBBB5NgnFG .dropdown-item:active {
  background-color: transparent;
}
.cid-tBBB5NgnFG .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tBBB5NgnFG .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tBBB5NgnFG .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tBBB5NgnFG .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #002245;
}
.cid-tBBB5NgnFG .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tBBB5NgnFG .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tBBB5NgnFG ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tBBB5NgnFG .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tBBB5NgnFG button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tBBB5NgnFG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #bbbbbb;
}
.cid-tBBB5NgnFG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tBBB5NgnFG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tBBB5NgnFG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tBBB5NgnFG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tBBB5NgnFG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tBBB5NgnFG nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tBBB5NgnFG nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tBBB5NgnFG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tBBB5NgnFG .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tBBB5NgnFG a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tBBB5NgnFG .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-tBBB5NgnFG .navbar {
    height: 70px;
  }
  .cid-tBBB5NgnFG .navbar.opened {
    height: auto;
  }
  .cid-tBBB5NgnFG .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
#custom-html-12 {
  /* Type valid CSS here */
}
#custom-html-12 div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-12 p {
  font-size: 60px;
  color: #777;
}
#custom-html-12 #Header {
  height: 65px;
  width: auto;
  margin: 0px;
  padding: 0px;
  background-image: url(../../../assets/images/index-800x65-up-800x65.jpg);
  background-repeat: repeat-x;
  background-size: contain;
  background-position: center;
}
.cid-tBIImWKmLo {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tBIImWKmLo img,
.cid-tBIImWKmLo .item-img {
  width: 100%;
}
.cid-tBIImWKmLo .item:focus,
.cid-tBIImWKmLo span:focus {
  outline: none;
}
.cid-tBIImWKmLo .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tBIImWKmLo .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tBIImWKmLo .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tBIImWKmLo .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tBIImWKmLo .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tBIImWKmLo .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tBIImWKmLo .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tBIImWKmLo .mbr-section-title {
  color: #232323;
}
.cid-tBIImWKmLo .mbr-text,
.cid-tBIImWKmLo .mbr-section-btn {
  text-align: left;
}
.cid-tBIImWKmLo .item-title {
  text-align: left;
}
.cid-tBIImWKmLo .item-subtitle {
  text-align: left;
}
.cid-tBIK7Kdtfu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tBIK7Kdtfu .mbr-fallback-image.disabled {
  display: none;
}
.cid-tBIK7Kdtfu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tBIK8qc179 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tBDe58rl2o {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tBDe58rl2o img,
.cid-tBDe58rl2o .item-img {
  width: 100%;
}
.cid-tBDe58rl2o .item:focus,
.cid-tBDe58rl2o span:focus {
  outline: none;
}
.cid-tBDe58rl2o .item-wrapper {
  position: relative;
}
.cid-tBDe58rl2o .slide-content {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tBDe58rl2o .slide-content .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tBDe58rl2o .slide-content .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tBDe58rl2o .slide-content .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tBDe58rl2o .slide-content .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tBDe58rl2o .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tBDe58rl2o .mbr-section-title {
  color: #232323;
}
.cid-tBDe58rl2o .mbr-text,
.cid-tBDe58rl2o .mbr-section-btn {
  text-align: left;
}
.cid-tBDe58rl2o .item-title {
  text-align: left;
}
.cid-tBDe58rl2o .item-subtitle {
  text-align: left;
}
.cid-tBDe58rl2o .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-tBDe58rl2o .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-tBDe58rl2o .embla__button--next,
.cid-tBDe58rl2o .embla__button--prev {
  display: flex;
}
.cid-tBDe58rl2o .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .cid-tBDe58rl2o .embla__button {
    display: none;
  }
}
.cid-tBDe58rl2o .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tBDe58rl2o .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-tBDe58rl2o .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tBDe58rl2o .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tBDe58rl2o .embla__button {
    top: auto;
  }
}
.cid-tBDe58rl2o .embla {
  position: relative;
  width: 100%;
}
.cid-tBDe58rl2o .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-tBDe58rl2o .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tBDe58rl2o .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tBDe58rl2o .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tBIK9kUao0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tBIK9kUao0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tBIK9kUao0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tBIKa3tHuO {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tBILYiP5ay {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tBHY2r2hDS {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tBHY2r2hDS img,
.cid-tBHY2r2hDS .item-img {
  width: 100%;
}
.cid-tBHY2r2hDS .item:focus,
.cid-tBHY2r2hDS span:focus {
  outline: none;
}
.cid-tBHY2r2hDS .item-wrapper {
  position: relative;
}
.cid-tBHY2r2hDS .slide-content {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tBHY2r2hDS .slide-content .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tBHY2r2hDS .slide-content .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tBHY2r2hDS .slide-content .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tBHY2r2hDS .slide-content .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tBHY2r2hDS .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tBHY2r2hDS .mbr-section-title {
  color: #232323;
}
.cid-tBHY2r2hDS .mbr-text,
.cid-tBHY2r2hDS .mbr-section-btn {
  text-align: left;
}
.cid-tBHY2r2hDS .item-title {
  text-align: left;
}
.cid-tBHY2r2hDS .item-subtitle {
  text-align: left;
}
.cid-tBHY2r2hDS .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-tBHY2r2hDS .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-tBHY2r2hDS .embla__button--next,
.cid-tBHY2r2hDS .embla__button--prev {
  display: flex;
}
.cid-tBHY2r2hDS .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .cid-tBHY2r2hDS .embla__button {
    display: none;
  }
}
.cid-tBHY2r2hDS .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tBHY2r2hDS .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-tBHY2r2hDS .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tBHY2r2hDS .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tBHY2r2hDS .embla__button {
    top: auto;
  }
}
.cid-tBHY2r2hDS .embla {
  position: relative;
  width: 100%;
}
.cid-tBHY2r2hDS .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-tBHY2r2hDS .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tBHY2r2hDS .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tBHY2r2hDS .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tBIKcgrOaL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tBIKcgrOaL .mbr-fallback-image.disabled {
  display: none;
}
.cid-tBIKcgrOaL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tBIKd0HHYU {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tBINdWxSuQ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tBINdWxSuQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tBINdWxSuQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tBINdWxSuQ .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-tBINdWxSuQ .card {
    margin-bottom: 2rem!important;
  }
  .cid-tBINdWxSuQ .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tBINdWxSuQ .link-wrap {
    align-items: center;
  }
}
.cid-tBINdWxSuQ .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tBHYkUkvRI {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tBHYkUkvRI img,
.cid-tBHYkUkvRI .item-img {
  width: 100%;
}
.cid-tBHYkUkvRI .item:focus,
.cid-tBHYkUkvRI span:focus {
  outline: none;
}
.cid-tBHYkUkvRI .item-wrapper {
  position: relative;
}
.cid-tBHYkUkvRI .slide-content {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tBHYkUkvRI .slide-content .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tBHYkUkvRI .slide-content .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tBHYkUkvRI .slide-content .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tBHYkUkvRI .slide-content .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tBHYkUkvRI .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tBHYkUkvRI .mbr-section-title {
  color: #232323;
}
.cid-tBHYkUkvRI .mbr-text,
.cid-tBHYkUkvRI .mbr-section-btn {
  text-align: left;
}
.cid-tBHYkUkvRI .item-title {
  text-align: left;
}
.cid-tBHYkUkvRI .item-subtitle {
  text-align: left;
}
.cid-tBHYkUkvRI .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-tBHYkUkvRI .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-tBHYkUkvRI .embla__button--next,
.cid-tBHYkUkvRI .embla__button--prev {
  display: flex;
}
.cid-tBHYkUkvRI .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .cid-tBHYkUkvRI .embla__button {
    display: none;
  }
}
.cid-tBHYkUkvRI .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tBHYkUkvRI .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-tBHYkUkvRI .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tBHYkUkvRI .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tBHYkUkvRI .embla__button {
    top: auto;
  }
}
.cid-tBHYkUkvRI .embla {
  position: relative;
  width: 100%;
}
.cid-tBHYkUkvRI .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-tBHYkUkvRI .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tBHYkUkvRI .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tBHYkUkvRI .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
#custom-html-13 {
  /* Type valid CSS here */
}
#custom-html-13 div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-13 p {
  font-size: 60px;
  color: #777;
}
#custom-html-13 #Header {
  height: 65px;
  width: auto;
  margin: 0px;
  padding: 0px;
  background-image: url(../../../assets/images/index-800x65-down-800x65.jpg);
  background-repeat: repeat-x;
  background-size: contain;
  background-position: center;
}
.cid-uFpWvTsheb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #002245;
}
.cid-uFpWvTsheb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFpWvTsheb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFpWvTsheb .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uFpWvTsheb .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uFpWvTsheb .row {
    text-align: center;
  }
  .cid-uFpWvTsheb .row > div {
    margin: auto;
  }
  .cid-uFpWvTsheb .social-row {
    justify-content: center;
  }
}
.cid-uFpWvTsheb .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uFpWvTsheb .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uFpWvTsheb .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uFpWvTsheb .list {
    margin-bottom: 0rem;
  }
}
.cid-uFpWvTsheb .mbr-text {
  color: #ffffff;
}
.cid-uFpWvTsheb .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uFpWvTsheb .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uFpWvTsheb div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-urKTMrG5CZ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-urKTMrG5CZ nav.navbar {
  position: fixed;
}
.cid-urKTMrG5CZ .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-urKTMrG5CZ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-urKTMrG5CZ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-urKTMrG5CZ .dropdown-item:hover,
.cid-urKTMrG5CZ .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-urKTMrG5CZ .dropdown-item:hover span {
  color: white;
}
.cid-urKTMrG5CZ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-urKTMrG5CZ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-urKTMrG5CZ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-urKTMrG5CZ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-urKTMrG5CZ .nav-link {
  position: relative;
}
.cid-urKTMrG5CZ .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-urKTMrG5CZ .container {
    flex-wrap: wrap;
  }
}
.cid-urKTMrG5CZ .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-urKTMrG5CZ .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-urKTMrG5CZ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-urKTMrG5CZ .dropdown-menu,
.cid-urKTMrG5CZ .navbar.opened {
  background: #002245 !important;
}
.cid-urKTMrG5CZ .nav-item:focus,
.cid-urKTMrG5CZ .nav-link:focus {
  outline: none;
}
.cid-urKTMrG5CZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-urKTMrG5CZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-urKTMrG5CZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-urKTMrG5CZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-urKTMrG5CZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-urKTMrG5CZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-urKTMrG5CZ .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: #002245;
}
.cid-urKTMrG5CZ .navbar.opened {
  transition: all 0.3s;
}
.cid-urKTMrG5CZ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-urKTMrG5CZ .navbar .navbar-logo img {
  width: auto;
}
.cid-urKTMrG5CZ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-urKTMrG5CZ .navbar.collapsed {
  justify-content: center;
}
.cid-urKTMrG5CZ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-urKTMrG5CZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-urKTMrG5CZ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-urKTMrG5CZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-urKTMrG5CZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-urKTMrG5CZ .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-urKTMrG5CZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-urKTMrG5CZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-urKTMrG5CZ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-urKTMrG5CZ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-urKTMrG5CZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-urKTMrG5CZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-urKTMrG5CZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-urKTMrG5CZ .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-urKTMrG5CZ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-urKTMrG5CZ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-urKTMrG5CZ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-urKTMrG5CZ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-urKTMrG5CZ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-urKTMrG5CZ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-urKTMrG5CZ .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-urKTMrG5CZ .navbar.navbar-short {
  min-height: 60px;
}
.cid-urKTMrG5CZ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-urKTMrG5CZ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-urKTMrG5CZ .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-urKTMrG5CZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-urKTMrG5CZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-urKTMrG5CZ .dropdown-item.active,
.cid-urKTMrG5CZ .dropdown-item:active {
  background-color: transparent;
}
.cid-urKTMrG5CZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-urKTMrG5CZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-urKTMrG5CZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-urKTMrG5CZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #002245;
}
.cid-urKTMrG5CZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-urKTMrG5CZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-urKTMrG5CZ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-urKTMrG5CZ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-urKTMrG5CZ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-urKTMrG5CZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #bbbbbb;
}
.cid-urKTMrG5CZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-urKTMrG5CZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-urKTMrG5CZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-urKTMrG5CZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-urKTMrG5CZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-urKTMrG5CZ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-urKTMrG5CZ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-urKTMrG5CZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-urKTMrG5CZ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-urKTMrG5CZ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-urKTMrG5CZ .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-urKTMrG5CZ .navbar {
    height: 70px;
  }
  .cid-urKTMrG5CZ .navbar.opened {
    height: auto;
  }
  .cid-urKTMrG5CZ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
#custom-html-9t {
  /* Type valid CSS here */
}
#custom-html-9t div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-9t p {
  font-size: 60px;
  color: #777;
}
#custom-html-9t #Header {
  height: 65px;
  width: auto;
  margin: 0px;
  padding: 0px;
  background-image: url(../../../assets/images/index-800x65-up-800x65.jpg);
  background-repeat: repeat-x;
  background-size: contain;
  background-position: center;
}
.cid-urKTMshBDg {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-urKTMshBDg .mbr-fallback-image.disabled {
  display: none;
}
.cid-urKTMshBDg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urKTMshBDg .item-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-urKTMshBDg .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-urKTMshBDg .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-urKTMshBDg .card {
    margin-bottom: 2rem;
  }
  .cid-urKTMshBDg .card-wrapper {
    margin-bottom: 2rem;
  }
  .cid-urKTMshBDg .item-wrapper {
    margin-bottom: 2rem;
  }
}
#custom-html-9u {
  /* Type valid CSS here */
}
#custom-html-9u div {
  padding: 20px 0;
  color: #777;
  text-align: center;
}
#custom-html-9u p {
  font-size: 60px;
  color: #777;
}
.cid-urKTMsATGV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-urKTMsATGV .mbr-fallback-image.disabled {
  display: none;
}
.cid-urKTMsATGV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urKTMsATGV ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-urKTMsATGV li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-urKTMsATGV ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #6592e6;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-utwrqpLGAV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-utwrqpLGAV .mbr-fallback-image.disabled {
  display: none;
}
.cid-utwrqpLGAV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utwrqpLGAV .timeline-element {
  position: relative;
}
.cid-utwrqpLGAV .timelines-container {
  display: flex;
  flex-wrap: wrap;
}
.cid-utwrqpLGAV .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-utwrqpLGAV .mbr-section-title,
.cid-utwrqpLGAV .mbr-section-subtitle,
.cid-utwrqpLGAV .timeline-date {
  text-align: center;
}
.cid-utwrqpLGAV .iconBackground {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #6592e6;
  margin-left: -9px;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-utwrqpLGAV .iconBackground {
    left: 15px;
    top: 30px;
  }
}
@media (min-width: 768px) {
  .cid-utwrqpLGAV .iconBackground {
    top: 70px;
    left: 50%;
  }
}
.cid-utwrqpLGAV .row:after {
  content: "";
  position: absolute;
  background-color: #6592e6;
  width: 2px;
}
@media (max-width: 767px) {
  .cid-utwrqpLGAV .row:after {
    height: calc(100% + 30px);
    top: 50px;
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-utwrqpLGAV .row:after {
    height: calc(100% - 20px);
    top: 90px;
    left: 50%;
  }
}
@media (max-width: 767px) {
  .cid-utwrqpLGAV .timeline-date-wrapper,
  .cid-utwrqpLGAV .timeline-text-wrapper,
  .cid-utwrqpLGAV .image-wrapper {
    padding: 0rem;
    padding-left: 2rem;
  }
  .cid-utwrqpLGAV .mbr-timeline-date {
    text-align: left !important;
  }
  .cid-utwrqpLGAV .mbr-timeline-title {
    text-align: left;
    margin-top: 1rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-utwrqpLGAV .timeline-date-wrapper,
  .cid-utwrqpLGAV .timeline-text-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-utwrqpLGAV .timeline-date-wrapper,
  .cid-utwrqpLGAV .timeline-text-wrapper,
  .cid-utwrqpLGAV .image-wrapper {
    padding: 2rem;
  }
}
#custom-html-9v {
  /* Type valid CSS here */
}
#custom-html-9v div {
  padding: 20px 0;
  color: #777;
  text-align: center;
}
#custom-html-9v p {
  font-size: 60px;
  color: #777;
}
#custom-html-9w {
  /* Type valid CSS here */
}
#custom-html-9w div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-9w p {
  font-size: 60px;
  color: #777;
}
#custom-html-9w #Header {
  height: 65px;
  width: auto;
  margin: 0px;
  padding: 0px;
  background-image: url(../../../assets/images/index-800x65-down-800x65.jpg);
  background-repeat: repeat-x;
  background-size: contain;
  background-position: center;
}
.cid-uFpWvTsheb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #002245;
}
.cid-uFpWvTsheb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFpWvTsheb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFpWvTsheb .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uFpWvTsheb .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uFpWvTsheb .row {
    text-align: center;
  }
  .cid-uFpWvTsheb .row > div {
    margin: auto;
  }
  .cid-uFpWvTsheb .social-row {
    justify-content: center;
  }
}
.cid-uFpWvTsheb .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uFpWvTsheb .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uFpWvTsheb .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uFpWvTsheb .list {
    margin-bottom: 0rem;
  }
}
.cid-uFpWvTsheb .mbr-text {
  color: #ffffff;
}
.cid-uFpWvTsheb .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uFpWvTsheb .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uFpWvTsheb div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-usBIDIlRkr {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-usBIDIlRkr nav.navbar {
  position: fixed;
}
.cid-usBIDIlRkr .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-usBIDIlRkr .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-usBIDIlRkr .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-usBIDIlRkr .dropdown-item:hover,
.cid-usBIDIlRkr .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-usBIDIlRkr .dropdown-item:hover span {
  color: white;
}
.cid-usBIDIlRkr .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-usBIDIlRkr .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-usBIDIlRkr .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-usBIDIlRkr .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-usBIDIlRkr .nav-link {
  position: relative;
}
.cid-usBIDIlRkr .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-usBIDIlRkr .container {
    flex-wrap: wrap;
  }
}
.cid-usBIDIlRkr .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-usBIDIlRkr .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-usBIDIlRkr .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-usBIDIlRkr .dropdown-menu,
.cid-usBIDIlRkr .navbar.opened {
  background: #002245 !important;
}
.cid-usBIDIlRkr .nav-item:focus,
.cid-usBIDIlRkr .nav-link:focus {
  outline: none;
}
.cid-usBIDIlRkr .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-usBIDIlRkr .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-usBIDIlRkr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-usBIDIlRkr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-usBIDIlRkr .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-usBIDIlRkr .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-usBIDIlRkr .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: #002245;
}
.cid-usBIDIlRkr .navbar.opened {
  transition: all 0.3s;
}
.cid-usBIDIlRkr .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-usBIDIlRkr .navbar .navbar-logo img {
  width: auto;
}
.cid-usBIDIlRkr .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-usBIDIlRkr .navbar.collapsed {
  justify-content: center;
}
.cid-usBIDIlRkr .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-usBIDIlRkr .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-usBIDIlRkr .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-usBIDIlRkr .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-usBIDIlRkr .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-usBIDIlRkr .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-usBIDIlRkr .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-usBIDIlRkr .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-usBIDIlRkr .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-usBIDIlRkr .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-usBIDIlRkr .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-usBIDIlRkr .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-usBIDIlRkr .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-usBIDIlRkr .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-usBIDIlRkr .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-usBIDIlRkr .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-usBIDIlRkr .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-usBIDIlRkr .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-usBIDIlRkr .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-usBIDIlRkr .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-usBIDIlRkr .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-usBIDIlRkr .navbar.navbar-short {
  min-height: 60px;
}
.cid-usBIDIlRkr .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-usBIDIlRkr .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-usBIDIlRkr .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-usBIDIlRkr .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-usBIDIlRkr .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-usBIDIlRkr .dropdown-item.active,
.cid-usBIDIlRkr .dropdown-item:active {
  background-color: transparent;
}
.cid-usBIDIlRkr .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-usBIDIlRkr .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-usBIDIlRkr .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-usBIDIlRkr .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #002245;
}
.cid-usBIDIlRkr .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-usBIDIlRkr .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-usBIDIlRkr ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-usBIDIlRkr .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-usBIDIlRkr button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-usBIDIlRkr button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #bbbbbb;
}
.cid-usBIDIlRkr button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-usBIDIlRkr button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-usBIDIlRkr button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-usBIDIlRkr button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-usBIDIlRkr nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-usBIDIlRkr nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-usBIDIlRkr nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-usBIDIlRkr nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-usBIDIlRkr .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-usBIDIlRkr a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-usBIDIlRkr .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-usBIDIlRkr .navbar {
    height: 70px;
  }
  .cid-usBIDIlRkr .navbar.opened {
    height: auto;
  }
  .cid-usBIDIlRkr .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
#custom-html-ae {
  /* Type valid CSS here */
}
#custom-html-ae div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-ae p {
  font-size: 60px;
  color: #777;
}
#custom-html-ae #Header {
  height: 65px;
  width: auto;
  margin: 0px;
  padding: 0px;
  background-image: url(../../../assets/images/index-800x65-up-800x65.jpg);
  background-repeat: repeat-x;
  background-size: contain;
  background-position: center;
}
.cid-usBIDJ4StB {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-usBIDJ4StB .mbr-fallback-image.disabled {
  display: none;
}
.cid-usBIDJ4StB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usBIDJ4StB .mbr-section-subtitle {
  text-align: left;
}
.cid-usBIDJvtu4 {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-usBIDJvtu4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-usBIDJvtu4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usBIDJvtu4 .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-usBIDJvtu4 .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-usBIDJvtu4 .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-usBIDJvtu4 .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-usBIDJvtu4 .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-usBIDJvtu4 .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-usBIDJvtu4 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
#custom-html-ah {
  /* Type valid CSS here */
}
#custom-html-ah div {
  padding: 20px 0;
  color: #777;
  text-align: center;
}
#custom-html-ah p {
  font-size: 60px;
  color: #777;
}
.cid-vcDwPNI2oA {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-vcDwPNI2oA img,
.cid-vcDwPNI2oA .item-img {
  width: 100%;
}
.cid-vcDwPNI2oA .item:focus,
.cid-vcDwPNI2oA span:focus {
  outline: none;
}
.cid-vcDwPNI2oA .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-vcDwPNI2oA .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-vcDwPNI2oA .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-vcDwPNI2oA .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vcDwPNI2oA .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-vcDwPNI2oA .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-vcDwPNI2oA .mbr-section-btn {
  margin-top: auto !important;
}
.cid-vcDwPNI2oA .mbr-section-title {
  color: #232323;
}
.cid-vcDwPNI2oA .mbr-text,
.cid-vcDwPNI2oA .mbr-section-btn {
  text-align: left;
}
.cid-vcDwPNI2oA .item-title {
  text-align: left;
}
.cid-vcDwPNI2oA .item-subtitle {
  text-align: left;
}
.cid-vcDwQN6FT2 {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-vcDwQN6FT2 img,
.cid-vcDwQN6FT2 .item-img {
  width: 100%;
}
.cid-vcDwQN6FT2 .item:focus,
.cid-vcDwQN6FT2 span:focus {
  outline: none;
}
.cid-vcDwQN6FT2 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-vcDwQN6FT2 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-vcDwQN6FT2 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-vcDwQN6FT2 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vcDwQN6FT2 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-vcDwQN6FT2 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-vcDwQN6FT2 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-vcDwQN6FT2 .mbr-section-title {
  color: #232323;
}
.cid-vcDwQN6FT2 .mbr-text,
.cid-vcDwQN6FT2 .mbr-section-btn {
  text-align: left;
}
.cid-vcDwQN6FT2 .item-title {
  text-align: left;
}
.cid-vcDwQN6FT2 .item-subtitle {
  text-align: left;
}
#custom-html-ak {
  /* Type valid CSS here */
}
#custom-html-ak div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-ak p {
  font-size: 60px;
  color: #777;
}
#custom-html-ak #Header {
  height: 65px;
  width: auto;
  margin: 0px;
  padding: 0px;
  background-image: url(../../../assets/images/index-800x65-down-800x65.jpg);
  background-repeat: repeat-x;
  background-size: contain;
  background-position: center;
}
.cid-uFpWvTsheb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #002245;
}
.cid-uFpWvTsheb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFpWvTsheb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFpWvTsheb .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uFpWvTsheb .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uFpWvTsheb .row {
    text-align: center;
  }
  .cid-uFpWvTsheb .row > div {
    margin: auto;
  }
  .cid-uFpWvTsheb .social-row {
    justify-content: center;
  }
}
.cid-uFpWvTsheb .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uFpWvTsheb .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uFpWvTsheb .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uFpWvTsheb .list {
    margin-bottom: 0rem;
  }
}
.cid-uFpWvTsheb .mbr-text {
  color: #ffffff;
}
.cid-uFpWvTsheb .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uFpWvTsheb .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uFpWvTsheb div > *:last-child {
    margin-top: 0 !important;
  }
}
