body {
  font-family: Inter;
}
.display-1 {
  font-family: 'Inter', sans-serif;
  font-size: 5rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 6.25rem;
}
.display-2 {
  font-family: 'Inter', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5625rem;
}
/* ---- 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: 4rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.5rem;
    font-size: calc( 2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1rem;
    font-size: calc( 1.0875rem + (1.25 - 1.0875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0875rem + (1.25 - 1.0875) * ((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: #0a1862 !important;
}
.bg-success {
  background-color: #522c67 !important;
}
.bg-info {
  background-color: #ffbf4f !important;
}
.bg-warning {
  background-color: #5ec049 !important;
}
.bg-danger {
  background-color: #338ba0 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #0a1862 !important;
  border-color: #0a1862 !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: #020513 !important;
  border-color: #020513 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #020513 !important;
  border-color: #020513 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #b22b35 !important;
  border-color: #b22b35 !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: #6c1a20 !important;
  border-color: #6c1a20 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #6c1a20 !important;
  border-color: #6c1a20 !important;
}
.btn-info,
.btn-info:active {
  background-color: #ffbf4f !important;
  border-color: #ffbf4f !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: #f79d00 !important;
  border-color: #f79d00 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #f79d00 !important;
  border-color: #f79d00 !important;
}
.btn-success,
.btn-success:active {
  background-color: #522c67 !important;
  border-color: #522c67 !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: #22122a !important;
  border-color: #22122a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #22122a !important;
  border-color: #22122a !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #5ec049 !important;
  border-color: #5ec049 !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: #3d842e !important;
  border-color: #3d842e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #3d842e !important;
  border-color: #3d842e !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #338ba0 !important;
  border-color: #338ba0 !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: #1e525e !important;
  border-color: #1e525e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #1e525e !important;
  border-color: #1e525e !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #0a1862;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #020513 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #0a1862 !important;
  border-color: #0a1862 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #b22b35;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #6c1a20 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #b22b35 !important;
  border-color: #b22b35 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffbf4f;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #f79d00 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #ffbf4f !important;
  border-color: #ffbf4f !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #522c67;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #22122a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #522c67 !important;
  border-color: #522c67 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #5ec049;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #3d842e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #5ec049 !important;
  border-color: #5ec049 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #338ba0;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #1e525e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #338ba0 !important;
  border-color: #338ba0 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #0a1862 !important;
}
.text-secondary {
  color: #b22b35 !important;
}
.text-success {
  color: #522c67 !important;
}
.text-info {
  color: #ffbf4f !important;
}
.text-warning {
  color: #5ec049 !important;
}
.text-danger {
  color: #338ba0 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #010105 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #60171d !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #190d20 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #e89400 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #38792a !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #1a4853 !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: #0a1862;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #ffbf4f;
}
.alert-warning {
  background-color: #5ec049;
}
.alert-danger {
  background-color: #338ba0;
}
.mbr-gallery-filter li.active .btn {
  background-color: #0a1862;
  border-color: #0a1862;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #0a1862;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #1634d6;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #975ab9;
}
.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: #b2e1a8;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #7dc4d6;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.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: #0a1862 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #0a1862;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #0a1862;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #0a1862;
}
.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: #0a1862;
  border-bottom-color: #0a1862;
}
.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: #0a1862 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #b22b35 !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='%230a1862' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-uttd3KWv2J {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uttd3KWv2J nav.navbar {
  position: fixed;
}
.cid-uttd3KWv2J .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-uttd3KWv2J .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uttd3KWv2J .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uttd3KWv2J .dropdown-item:hover,
.cid-uttd3KWv2J .dropdown-item:focus {
  background: #0a1862 !important;
  color: white !important;
}
.cid-uttd3KWv2J .dropdown-item:hover span {
  color: white;
}
.cid-uttd3KWv2J .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uttd3KWv2J .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uttd3KWv2J .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uttd3KWv2J .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uttd3KWv2J .nav-link {
  position: relative;
}
.cid-uttd3KWv2J .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uttd3KWv2J .container {
    flex-wrap: wrap;
  }
}
.cid-uttd3KWv2J .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uttd3KWv2J .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uttd3KWv2J .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uttd3KWv2J .dropdown-menu,
.cid-uttd3KWv2J .navbar.opened {
  background: #ffffff !important;
}
.cid-uttd3KWv2J .nav-item:focus,
.cid-uttd3KWv2J .nav-link:focus {
  outline: none;
}
.cid-uttd3KWv2J .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uttd3KWv2J .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uttd3KWv2J .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uttd3KWv2J .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uttd3KWv2J .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uttd3KWv2J .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uttd3KWv2J .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uttd3KWv2J .navbar.opened {
  transition: all 0.3s;
}
.cid-uttd3KWv2J .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uttd3KWv2J .navbar .navbar-logo img {
  width: auto;
}
.cid-uttd3KWv2J .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uttd3KWv2J .navbar.collapsed {
  justify-content: center;
}
.cid-uttd3KWv2J .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uttd3KWv2J .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uttd3KWv2J .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uttd3KWv2J .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uttd3KWv2J .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-uttd3KWv2J .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uttd3KWv2J .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uttd3KWv2J .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uttd3KWv2J .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uttd3KWv2J .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uttd3KWv2J .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uttd3KWv2J .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uttd3KWv2J .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-uttd3KWv2J .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uttd3KWv2J .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uttd3KWv2J .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uttd3KWv2J .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uttd3KWv2J .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uttd3KWv2J .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uttd3KWv2J .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uttd3KWv2J .navbar.navbar-short {
  min-height: 60px;
}
.cid-uttd3KWv2J .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uttd3KWv2J .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uttd3KWv2J .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-uttd3KWv2J .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uttd3KWv2J .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uttd3KWv2J .dropdown-item.active,
.cid-uttd3KWv2J .dropdown-item:active {
  background-color: transparent;
}
.cid-uttd3KWv2J .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uttd3KWv2J .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uttd3KWv2J .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uttd3KWv2J .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uttd3KWv2J .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uttd3KWv2J .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uttd3KWv2J ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uttd3KWv2J .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uttd3KWv2J button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uttd3KWv2J button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uttd3KWv2J button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uttd3KWv2J button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uttd3KWv2J button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uttd3KWv2J button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uttd3KWv2J nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uttd3KWv2J nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uttd3KWv2J nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uttd3KWv2J nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uttd3KWv2J .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uttd3KWv2J a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uttd3KWv2J .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-uttd3KWv2J .navbar {
    height: 70px;
  }
  .cid-uttd3KWv2J .navbar.opened {
    height: auto;
  }
  .cid-uttd3KWv2J .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uwEGliQDRu {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/background1.jpg");
}
@media (max-width: 991px) {
  .cid-uwEGliQDRu .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uwEGliQDRu .row {
  flex-direction: row-reverse;
}
.cid-uwEGliQDRu img {
  width: 100%;
  border-radius: 10px;
}
.cid-uttelH9S7x {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #e7ebff;
}
.cid-uttelH9S7x .row {
  flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-uttelH9S7x .text-wrapper {
    padding: 2rem;
  }
}
.cid-uttelH9S7x .image-wrapper img {
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
}
@media (max-width: 767px) {
  .cid-uttelH9S7x .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uttelH9S7x .name {
  color: #ffffff;
}
.cid-uttelH9S7x .mbr-text {
  padding: 0;
  margin: 0;
  padding-top: 25px;
  color: #04081d;
}
.cid-uttfrTAC83 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #4f5da2;
}
.cid-uttfrTAC83 .media-container-row .mbr-text {
  text-align: left;
}
.cid-utZSGgjP9Y {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-utZSGgjP9Y nav.navbar {
  position: fixed;
}
.cid-utZSGgjP9Y .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-utZSGgjP9Y .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-utZSGgjP9Y .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-utZSGgjP9Y .dropdown-item:hover,
.cid-utZSGgjP9Y .dropdown-item:focus {
  background: #0a1862 !important;
  color: white !important;
}
.cid-utZSGgjP9Y .dropdown-item:hover span {
  color: white;
}
.cid-utZSGgjP9Y .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-utZSGgjP9Y .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-utZSGgjP9Y .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-utZSGgjP9Y .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-utZSGgjP9Y .nav-link {
  position: relative;
}
.cid-utZSGgjP9Y .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-utZSGgjP9Y .container {
    flex-wrap: wrap;
  }
}
.cid-utZSGgjP9Y .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-utZSGgjP9Y .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-utZSGgjP9Y .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-utZSGgjP9Y .dropdown-menu,
.cid-utZSGgjP9Y .navbar.opened {
  background: #ffffff !important;
}
.cid-utZSGgjP9Y .nav-item:focus,
.cid-utZSGgjP9Y .nav-link:focus {
  outline: none;
}
.cid-utZSGgjP9Y .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-utZSGgjP9Y .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-utZSGgjP9Y .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-utZSGgjP9Y .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-utZSGgjP9Y .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-utZSGgjP9Y .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-utZSGgjP9Y .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-utZSGgjP9Y .navbar.opened {
  transition: all 0.3s;
}
.cid-utZSGgjP9Y .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-utZSGgjP9Y .navbar .navbar-logo img {
  width: auto;
}
.cid-utZSGgjP9Y .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-utZSGgjP9Y .navbar.collapsed {
  justify-content: center;
}
.cid-utZSGgjP9Y .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-utZSGgjP9Y .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-utZSGgjP9Y .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-utZSGgjP9Y .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-utZSGgjP9Y .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-utZSGgjP9Y .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-utZSGgjP9Y .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-utZSGgjP9Y .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-utZSGgjP9Y .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-utZSGgjP9Y .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-utZSGgjP9Y .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-utZSGgjP9Y .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-utZSGgjP9Y .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-utZSGgjP9Y .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-utZSGgjP9Y .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-utZSGgjP9Y .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-utZSGgjP9Y .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-utZSGgjP9Y .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-utZSGgjP9Y .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-utZSGgjP9Y .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-utZSGgjP9Y .navbar.navbar-short {
  min-height: 60px;
}
.cid-utZSGgjP9Y .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-utZSGgjP9Y .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-utZSGgjP9Y .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-utZSGgjP9Y .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-utZSGgjP9Y .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-utZSGgjP9Y .dropdown-item.active,
.cid-utZSGgjP9Y .dropdown-item:active {
  background-color: transparent;
}
.cid-utZSGgjP9Y .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-utZSGgjP9Y .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-utZSGgjP9Y .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-utZSGgjP9Y .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-utZSGgjP9Y .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-utZSGgjP9Y .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-utZSGgjP9Y ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-utZSGgjP9Y .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-utZSGgjP9Y button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-utZSGgjP9Y button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-utZSGgjP9Y button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-utZSGgjP9Y button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-utZSGgjP9Y button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-utZSGgjP9Y button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-utZSGgjP9Y nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-utZSGgjP9Y nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-utZSGgjP9Y nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-utZSGgjP9Y nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-utZSGgjP9Y .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-utZSGgjP9Y a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-utZSGgjP9Y .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-utZSGgjP9Y .navbar {
    height: 70px;
  }
  .cid-utZSGgjP9Y .navbar.opened {
    height: auto;
  }
  .cid-utZSGgjP9Y .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uwEPWeCoEX {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/background1.jpg");
}
@media (max-width: 991px) {
  .cid-uwEPWeCoEX .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uwEPWeCoEX .row {
  flex-direction: row-reverse;
}
.cid-uwEPWeCoEX img {
  width: 100%;
  border-radius: 10px;
}
.cid-uv7eQQHB9O {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #4f5da2;
}
.cid-uv7eQQHB9O .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uv7eQQHB9O .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uv7eQQHB9O .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uu1o2b37cJ {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-uu1o2b37cJ .button-padding {
  padding: 0;
}
.cid-uu1o2b37cJ .btn {
  margin: 0;
}
.cid-uu1o2b37cJ .title {
  padding-bottom: 30px;
  margin-bottom: 0px;
}
.cid-uu1o2b37cJ .mbr-text {
  padding-bottom: 30px;
  margin-bottom: 0;
}
.cid-uu1o2b37cJ .card-title {
  padding-bottom: 5px;
  margin: 0;
  color: #0a1862;
}
.cid-uv6ZTXJjk8 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uv6ZTXJjk8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uv6ZTXJjk8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uv6ZTXJjk8 .container,
.cid-uv6ZTXJjk8 .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uv6ZTXJjk8 .container,
  .cid-uv6ZTXJjk8 .container-fluid {
    padding: 0 20px;
  }
}
.cid-uv6ZTXJjk8 .row {
  justify-content: center;
}
.cid-uv6ZTXJjk8 .title-wrapper {
  position: relative;
  z-index: 1;
}
.cid-uv6ZTXJjk8 .title-wrapper .mbr-section-title {
  margin-bottom: 85px;
}
@media (max-width: 992px) {
  .cid-uv6ZTXJjk8 .title-wrapper .mbr-section-title {
    margin-bottom: 50px;
  }
}
.cid-uv6ZTXJjk8 .item {
  margin-bottom: 40px;
}
.cid-uv6ZTXJjk8 .item .item-wrapper .item-img img {
  height: 130px;
  object-fit: contain;
}
.cid-uv6ZTXJjk8 .mbr-section-title {
  color: #3d4045;
}
.cid-utZSGkjHCH {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #4f5da2;
}
.cid-utZSGkjHCH .media-container-row .mbr-text {
  text-align: left;
}
.cid-uuAsBYiot0 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uuAsBYiot0 nav.navbar {
  position: fixed;
}
.cid-uuAsBYiot0 .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-uuAsBYiot0 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uuAsBYiot0 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uuAsBYiot0 .dropdown-item:hover,
.cid-uuAsBYiot0 .dropdown-item:focus {
  background: #0a1862 !important;
  color: white !important;
}
.cid-uuAsBYiot0 .dropdown-item:hover span {
  color: white;
}
.cid-uuAsBYiot0 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uuAsBYiot0 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uuAsBYiot0 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uuAsBYiot0 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uuAsBYiot0 .nav-link {
  position: relative;
}
.cid-uuAsBYiot0 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uuAsBYiot0 .container {
    flex-wrap: wrap;
  }
}
.cid-uuAsBYiot0 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uuAsBYiot0 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uuAsBYiot0 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uuAsBYiot0 .dropdown-menu,
.cid-uuAsBYiot0 .navbar.opened {
  background: #ffffff !important;
}
.cid-uuAsBYiot0 .nav-item:focus,
.cid-uuAsBYiot0 .nav-link:focus {
  outline: none;
}
.cid-uuAsBYiot0 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uuAsBYiot0 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uuAsBYiot0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uuAsBYiot0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uuAsBYiot0 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uuAsBYiot0 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uuAsBYiot0 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uuAsBYiot0 .navbar.opened {
  transition: all 0.3s;
}
.cid-uuAsBYiot0 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uuAsBYiot0 .navbar .navbar-logo img {
  width: auto;
}
.cid-uuAsBYiot0 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uuAsBYiot0 .navbar.collapsed {
  justify-content: center;
}
.cid-uuAsBYiot0 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uuAsBYiot0 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uuAsBYiot0 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uuAsBYiot0 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uuAsBYiot0 .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-uuAsBYiot0 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uuAsBYiot0 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uuAsBYiot0 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uuAsBYiot0 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uuAsBYiot0 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uuAsBYiot0 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uuAsBYiot0 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uuAsBYiot0 .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-uuAsBYiot0 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uuAsBYiot0 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uuAsBYiot0 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uuAsBYiot0 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uuAsBYiot0 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uuAsBYiot0 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uuAsBYiot0 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uuAsBYiot0 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uuAsBYiot0 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uuAsBYiot0 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uuAsBYiot0 .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-uuAsBYiot0 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uuAsBYiot0 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uuAsBYiot0 .dropdown-item.active,
.cid-uuAsBYiot0 .dropdown-item:active {
  background-color: transparent;
}
.cid-uuAsBYiot0 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uuAsBYiot0 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uuAsBYiot0 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uuAsBYiot0 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uuAsBYiot0 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uuAsBYiot0 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uuAsBYiot0 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uuAsBYiot0 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uuAsBYiot0 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uuAsBYiot0 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uuAsBYiot0 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uuAsBYiot0 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uuAsBYiot0 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uuAsBYiot0 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uuAsBYiot0 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uuAsBYiot0 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uuAsBYiot0 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uuAsBYiot0 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uuAsBYiot0 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uuAsBYiot0 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uuAsBYiot0 .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-uuAsBYiot0 .navbar {
    height: 70px;
  }
  .cid-uuAsBYiot0 .navbar.opened {
    height: auto;
  }
  .cid-uuAsBYiot0 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uwEUDlvkP5 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/background1.jpg");
}
@media (max-width: 991px) {
  .cid-uwEUDlvkP5 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uwEUDlvkP5 .row {
  flex-direction: row-reverse;
}
.cid-uwEUDlvkP5 img {
  width: 100%;
  border-radius: 10px;
}
.cid-uv7etl9Ljc {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #4f5da2;
}
.cid-uv7etl9Ljc .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uv7etl9Ljc .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uv7etl9Ljc .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uv7bLZAfiW {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #04081d;
}
.cid-uv7bLZAfiW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uv7bLZAfiW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uv7bLZAfiW .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uv7bLZAfiW .container-fluid {
    padding: 0 20px;
  }
}
.cid-uv7bLZAfiW .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uv7bLZAfiW .container {
    padding: 0 20px;
  }
}
.cid-uv7bLZAfiW .row {
  justify-content: center;
}
.cid-uv7bLZAfiW .image-wrapper {
  display: flex;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uv7bLZAfiW .image-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uv7bLZAfiW .image-wrapper img {
  height: 500px;
  border-bottom-right-radius: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-uv7bLZAfiW .image-wrapper img {
    height: 300px;
  }
}
.cid-uv7bLZAfiW .card:nth-child(2) .image-wrapper img {
  height: 450px;
}
@media (max-width: 768px) {
  .cid-uv7bLZAfiW .card:nth-child(2) .image-wrapper img {
    height: 250px;
  }
}
.cid-uv7bLZAfiW .card:nth-child(3) .image-wrapper img {
  height: 400px;
}
@media (max-width: 768px) {
  .cid-uv7bLZAfiW .card:nth-child(3) .image-wrapper img {
    height: 200px;
  }
}
.cid-uv7bLZAfiW .card:last-child .image-wrapper img {
  height: 350px;
}
@media (max-width: 768px) {
  .cid-uv7bLZAfiW .card:last-child .image-wrapper img {
    height: 150px;
  }
}
.cid-uuAsBZsFSQ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-uuAsBZsFSQ .button-padding {
  padding: 0;
}
.cid-uuAsBZsFSQ .btn {
  margin: 0;
}
.cid-uuAsBZsFSQ .title {
  padding-bottom: 30px;
  margin-bottom: 0px;
}
.cid-uuAsBZsFSQ .mbr-text {
  padding-bottom: 30px;
  margin-bottom: 0;
}
.cid-uuAsBZsFSQ .card-title {
  padding-bottom: 5px;
  margin: 0;
  color: #000000;
}
.cid-uwENTe9mkG {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uwENTe9mkG .button-padding {
  padding: 0;
}
.cid-uwENTe9mkG .btn {
  margin: 0;
}
.cid-uwENTe9mkG .button-top {
  margin-top: 20px;
  padding: 0;
}
.cid-uwENTe9mkG .mbr-text {
  padding-bottom: 30px;
  margin: 0;
}
.cid-uwENTe9mkG .card-title {
  padding-bottom: 50px;
  margin: 0;
}
.cid-uuAsC0ol2E {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #4f5da2;
}
.cid-uuAsC0ol2E .media-container-row .mbr-text {
  text-align: left;
}
.cid-uv75hwHGtn {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uv75hwHGtn nav.navbar {
  position: fixed;
}
.cid-uv75hwHGtn .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-uv75hwHGtn .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uv75hwHGtn .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uv75hwHGtn .dropdown-item:hover,
.cid-uv75hwHGtn .dropdown-item:focus {
  background: #0a1862 !important;
  color: white !important;
}
.cid-uv75hwHGtn .dropdown-item:hover span {
  color: white;
}
.cid-uv75hwHGtn .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uv75hwHGtn .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uv75hwHGtn .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uv75hwHGtn .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uv75hwHGtn .nav-link {
  position: relative;
}
.cid-uv75hwHGtn .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uv75hwHGtn .container {
    flex-wrap: wrap;
  }
}
.cid-uv75hwHGtn .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uv75hwHGtn .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uv75hwHGtn .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uv75hwHGtn .dropdown-menu,
.cid-uv75hwHGtn .navbar.opened {
  background: #ffffff !important;
}
.cid-uv75hwHGtn .nav-item:focus,
.cid-uv75hwHGtn .nav-link:focus {
  outline: none;
}
.cid-uv75hwHGtn .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uv75hwHGtn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uv75hwHGtn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uv75hwHGtn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uv75hwHGtn .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uv75hwHGtn .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uv75hwHGtn .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uv75hwHGtn .navbar.opened {
  transition: all 0.3s;
}
.cid-uv75hwHGtn .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uv75hwHGtn .navbar .navbar-logo img {
  width: auto;
}
.cid-uv75hwHGtn .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uv75hwHGtn .navbar.collapsed {
  justify-content: center;
}
.cid-uv75hwHGtn .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uv75hwHGtn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uv75hwHGtn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uv75hwHGtn .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uv75hwHGtn .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-uv75hwHGtn .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uv75hwHGtn .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uv75hwHGtn .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uv75hwHGtn .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uv75hwHGtn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uv75hwHGtn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uv75hwHGtn .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uv75hwHGtn .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-uv75hwHGtn .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uv75hwHGtn .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uv75hwHGtn .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uv75hwHGtn .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uv75hwHGtn .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uv75hwHGtn .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uv75hwHGtn .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uv75hwHGtn .navbar.navbar-short {
  min-height: 60px;
}
.cid-uv75hwHGtn .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uv75hwHGtn .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uv75hwHGtn .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-uv75hwHGtn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uv75hwHGtn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uv75hwHGtn .dropdown-item.active,
.cid-uv75hwHGtn .dropdown-item:active {
  background-color: transparent;
}
.cid-uv75hwHGtn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uv75hwHGtn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uv75hwHGtn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uv75hwHGtn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uv75hwHGtn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uv75hwHGtn .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uv75hwHGtn ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uv75hwHGtn .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uv75hwHGtn button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uv75hwHGtn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uv75hwHGtn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uv75hwHGtn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uv75hwHGtn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uv75hwHGtn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uv75hwHGtn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uv75hwHGtn nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uv75hwHGtn nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uv75hwHGtn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uv75hwHGtn .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uv75hwHGtn a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uv75hwHGtn .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-uv75hwHGtn .navbar {
    height: 70px;
  }
  .cid-uv75hwHGtn .navbar.opened {
    height: auto;
  }
  .cid-uv75hwHGtn .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uwEUpkRn04 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/background1.jpg");
}
@media (max-width: 991px) {
  .cid-uwEUpkRn04 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uwEUpkRn04 .row {
  flex-direction: row-reverse;
}
.cid-uwEUpkRn04 img {
  width: 100%;
  border-radius: 10px;
}
.cid-uv76crvU7I {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #4f5da2;
}
.cid-uv76crvU7I .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uv76crvU7I .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uv76crvU7I .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uv75hzM9hl {
  padding-top: 5rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/nipost-2000x701.jpg");
}
.cid-uv75hzM9hl .row {
  flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-uv75hzM9hl .text-wrapper {
    padding: 2rem;
  }
}
.cid-uv75hzM9hl .image-wrapper img {
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
}
@media (max-width: 767px) {
  .cid-uv75hzM9hl .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uv75hzM9hl .name {
  color: #ffffff;
}
.cid-uv75hzM9hl .mbr-text {
  padding: 0;
  margin: 0;
  padding-top: 25px;
  color: #ffffff;
}
.cid-uv75hAfSWc {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #4f5da2;
}
.cid-uv75hAfSWc .media-container-row .mbr-text {
  text-align: left;
}
.cid-uvvXPJ4xot {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uvvXPJ4xot nav.navbar {
  position: fixed;
}
.cid-uvvXPJ4xot .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-uvvXPJ4xot .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uvvXPJ4xot .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uvvXPJ4xot .dropdown-item:hover,
.cid-uvvXPJ4xot .dropdown-item:focus {
  background: #0a1862 !important;
  color: white !important;
}
.cid-uvvXPJ4xot .dropdown-item:hover span {
  color: white;
}
.cid-uvvXPJ4xot .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uvvXPJ4xot .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uvvXPJ4xot .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uvvXPJ4xot .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uvvXPJ4xot .nav-link {
  position: relative;
}
.cid-uvvXPJ4xot .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uvvXPJ4xot .container {
    flex-wrap: wrap;
  }
}
.cid-uvvXPJ4xot .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uvvXPJ4xot .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uvvXPJ4xot .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uvvXPJ4xot .dropdown-menu,
.cid-uvvXPJ4xot .navbar.opened {
  background: #ffffff !important;
}
.cid-uvvXPJ4xot .nav-item:focus,
.cid-uvvXPJ4xot .nav-link:focus {
  outline: none;
}
.cid-uvvXPJ4xot .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uvvXPJ4xot .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uvvXPJ4xot .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uvvXPJ4xot .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uvvXPJ4xot .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uvvXPJ4xot .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uvvXPJ4xot .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uvvXPJ4xot .navbar.opened {
  transition: all 0.3s;
}
.cid-uvvXPJ4xot .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uvvXPJ4xot .navbar .navbar-logo img {
  width: auto;
}
.cid-uvvXPJ4xot .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uvvXPJ4xot .navbar.collapsed {
  justify-content: center;
}
.cid-uvvXPJ4xot .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uvvXPJ4xot .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uvvXPJ4xot .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uvvXPJ4xot .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uvvXPJ4xot .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-uvvXPJ4xot .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uvvXPJ4xot .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uvvXPJ4xot .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uvvXPJ4xot .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uvvXPJ4xot .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uvvXPJ4xot .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uvvXPJ4xot .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uvvXPJ4xot .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-uvvXPJ4xot .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uvvXPJ4xot .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uvvXPJ4xot .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uvvXPJ4xot .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uvvXPJ4xot .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uvvXPJ4xot .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uvvXPJ4xot .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uvvXPJ4xot .navbar.navbar-short {
  min-height: 60px;
}
.cid-uvvXPJ4xot .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uvvXPJ4xot .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uvvXPJ4xot .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-uvvXPJ4xot .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uvvXPJ4xot .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uvvXPJ4xot .dropdown-item.active,
.cid-uvvXPJ4xot .dropdown-item:active {
  background-color: transparent;
}
.cid-uvvXPJ4xot .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uvvXPJ4xot .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uvvXPJ4xot .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uvvXPJ4xot .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uvvXPJ4xot .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uvvXPJ4xot .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uvvXPJ4xot ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uvvXPJ4xot .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uvvXPJ4xot button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uvvXPJ4xot button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uvvXPJ4xot button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uvvXPJ4xot button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uvvXPJ4xot button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uvvXPJ4xot button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uvvXPJ4xot nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uvvXPJ4xot nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uvvXPJ4xot nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uvvXPJ4xot nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uvvXPJ4xot .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uvvXPJ4xot a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uvvXPJ4xot .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-uvvXPJ4xot .navbar {
    height: 70px;
  }
  .cid-uvvXPJ4xot .navbar.opened {
    height: auto;
  }
  .cid-uvvXPJ4xot .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uwEQezCSVK {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/background1.jpg");
}
@media (max-width: 991px) {
  .cid-uwEQezCSVK .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uwEQezCSVK .row {
  flex-direction: row-reverse;
}
.cid-uwEQezCSVK img {
  width: 100%;
  border-radius: 10px;
}
.cid-uvvXPKcYX1 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #4f5da2;
}
.cid-uvvXPKcYX1 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uvvXPKcYX1 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uvvXPKcYX1 .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uwLkXUcZ6w {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background: #e8e8e8;
}
.cid-uwLkXUcZ6w .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwLkXUcZ6w .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwLkXUcZ6w .container-fluid {
  margin: 0;
  padding: 0 0 0 72px;
}
@media (max-width: 992px) {
  .cid-uwLkXUcZ6w .container-fluid {
    padding: 0 20px;
  }
}
.cid-uwLkXUcZ6w .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uwLkXUcZ6w .container {
    padding: 0 20px;
  }
  .cid-uwLkXUcZ6w .container .row {
    padding: 0;
  }
}
.cid-uwLkXUcZ6w .mbr-section-btn {
  margin-bottom: 70px;
  padding-right: 72px;
  text-align: right;
}
@media (max-width: 992px) {
  .cid-uwLkXUcZ6w .mbr-section-btn {
    padding-right: 0;
  }
}
.cid-uwLkXUcZ6w .mbr-section-btn .btn .mbr-iconfont {
  color: #c6a38f;
}
.cid-uwLkXUcZ6w .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 800px;
  max-width: 800px;
}
@media (max-width: 768px) {
  .cid-uwLkXUcZ6w .embla__slide {
    min-width: 100%;
    max-width: 100%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-uwLkXUcZ6w .embla__slide a {
  width: 100%;
}
.cid-uwLkXUcZ6w .embla__slide a .card-wrap .item-wrapper .image-wrap {
  margin-bottom: 20px;
}
.cid-uwLkXUcZ6w .embla__slide a .card-wrap .item-wrapper .image-wrap img {
  height: 620px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-uwLkXUcZ6w .embla__slide a .card-wrap .item-wrapper .image-wrap img {
    height: 320px;
  }
}
.cid-uwLkXUcZ6w .embla__slide a .card-wrap .mbr-desc {
  margin-bottom: 0;
}
.cid-uwLkXUcZ6w .embla__button--next,
.cid-uwLkXUcZ6w .embla__button--prev {
  display: flex;
}
.cid-uwLkXUcZ6w .embla__button {
  top: -2rem;
  width: 20px;
  height: 20px;
  margin-top: -1.5rem;
  font-size: 18px;
  background-color: transparent;
  color: #0a1862;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
@media (max-width: 768px) {
  .cid-uwLkXUcZ6w .embla__button {
    display: none;
  }
}
.cid-uwLkXUcZ6w .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uwLkXUcZ6w .embla__button:hover {
  background-color: transparent;
  color: #0a1862;
}
.cid-uwLkXUcZ6w .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uwLkXUcZ6w .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uwLkXUcZ6w .embla__button {
    top: -2rem;
  }
}
.cid-uwLkXUcZ6w .embla {
  position: relative;
  width: 100%;
}
.cid-uwLkXUcZ6w .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-uwLkXUcZ6w .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uwLkXUcZ6w .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uwLkXUcZ6w .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uwLkXUcZ6w .mbr-desc {
  color: #222222;
  text-align: left;
}
.cid-uvvXPMoQD1 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #4f5da2;
}
.cid-uvvXPMoQD1 .media-container-row .mbr-text {
  text-align: left;
}
.cid-uvw7XG6e1n {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uvw7XG6e1n nav.navbar {
  position: fixed;
}
.cid-uvw7XG6e1n .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-uvw7XG6e1n .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uvw7XG6e1n .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uvw7XG6e1n .dropdown-item:hover,
.cid-uvw7XG6e1n .dropdown-item:focus {
  background: #0a1862 !important;
  color: white !important;
}
.cid-uvw7XG6e1n .dropdown-item:hover span {
  color: white;
}
.cid-uvw7XG6e1n .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uvw7XG6e1n .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uvw7XG6e1n .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uvw7XG6e1n .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uvw7XG6e1n .nav-link {
  position: relative;
}
.cid-uvw7XG6e1n .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uvw7XG6e1n .container {
    flex-wrap: wrap;
  }
}
.cid-uvw7XG6e1n .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uvw7XG6e1n .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uvw7XG6e1n .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uvw7XG6e1n .dropdown-menu,
.cid-uvw7XG6e1n .navbar.opened {
  background: #ffffff !important;
}
.cid-uvw7XG6e1n .nav-item:focus,
.cid-uvw7XG6e1n .nav-link:focus {
  outline: none;
}
.cid-uvw7XG6e1n .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uvw7XG6e1n .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uvw7XG6e1n .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uvw7XG6e1n .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uvw7XG6e1n .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uvw7XG6e1n .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uvw7XG6e1n .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uvw7XG6e1n .navbar.opened {
  transition: all 0.3s;
}
.cid-uvw7XG6e1n .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uvw7XG6e1n .navbar .navbar-logo img {
  width: auto;
}
.cid-uvw7XG6e1n .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uvw7XG6e1n .navbar.collapsed {
  justify-content: center;
}
.cid-uvw7XG6e1n .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uvw7XG6e1n .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uvw7XG6e1n .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uvw7XG6e1n .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uvw7XG6e1n .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-uvw7XG6e1n .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uvw7XG6e1n .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uvw7XG6e1n .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uvw7XG6e1n .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uvw7XG6e1n .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uvw7XG6e1n .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uvw7XG6e1n .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uvw7XG6e1n .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-uvw7XG6e1n .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uvw7XG6e1n .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uvw7XG6e1n .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uvw7XG6e1n .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uvw7XG6e1n .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uvw7XG6e1n .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uvw7XG6e1n .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uvw7XG6e1n .navbar.navbar-short {
  min-height: 60px;
}
.cid-uvw7XG6e1n .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uvw7XG6e1n .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uvw7XG6e1n .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-uvw7XG6e1n .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uvw7XG6e1n .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uvw7XG6e1n .dropdown-item.active,
.cid-uvw7XG6e1n .dropdown-item:active {
  background-color: transparent;
}
.cid-uvw7XG6e1n .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uvw7XG6e1n .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uvw7XG6e1n .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uvw7XG6e1n .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uvw7XG6e1n .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uvw7XG6e1n .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uvw7XG6e1n ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uvw7XG6e1n .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uvw7XG6e1n button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uvw7XG6e1n button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uvw7XG6e1n button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uvw7XG6e1n button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uvw7XG6e1n button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uvw7XG6e1n button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uvw7XG6e1n nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uvw7XG6e1n nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uvw7XG6e1n nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uvw7XG6e1n nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uvw7XG6e1n .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uvw7XG6e1n a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uvw7XG6e1n .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-uvw7XG6e1n .navbar {
    height: 70px;
  }
  .cid-uvw7XG6e1n .navbar.opened {
    height: auto;
  }
  .cid-uvw7XG6e1n .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uwESxo6XJT {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/background1.jpg");
}
@media (max-width: 991px) {
  .cid-uwESxo6XJT .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uwESxo6XJT .row {
  flex-direction: row-reverse;
}
.cid-uwESxo6XJT img {
  width: 100%;
  border-radius: 10px;
}
.cid-uvw7XIojuL {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #4f5da2;
}
.cid-uvw7XIojuL .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uvw7XIojuL .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uvw7XIojuL .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uwLopVZ4w0 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background: #e8e8e8;
}
.cid-uwLopVZ4w0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwLopVZ4w0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwLopVZ4w0 .container-fluid {
  margin: 0;
  padding: 0 0 0 72px;
}
@media (max-width: 992px) {
  .cid-uwLopVZ4w0 .container-fluid {
    padding: 0 20px;
  }
}
.cid-uwLopVZ4w0 .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uwLopVZ4w0 .container {
    padding: 0 20px;
  }
  .cid-uwLopVZ4w0 .container .row {
    padding: 0;
  }
}
.cid-uwLopVZ4w0 .mbr-section-btn {
  margin-bottom: 70px;
  padding-right: 72px;
  text-align: right;
}
@media (max-width: 992px) {
  .cid-uwLopVZ4w0 .mbr-section-btn {
    padding-right: 0;
  }
}
.cid-uwLopVZ4w0 .mbr-section-btn .btn .mbr-iconfont {
  color: #c6a38f;
}
.cid-uwLopVZ4w0 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 800px;
  max-width: 800px;
}
@media (max-width: 768px) {
  .cid-uwLopVZ4w0 .embla__slide {
    min-width: 100%;
    max-width: 100%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-uwLopVZ4w0 .embla__slide a {
  width: 100%;
}
.cid-uwLopVZ4w0 .embla__slide a .card-wrap .item-wrapper .image-wrap {
  margin-bottom: 20px;
}
.cid-uwLopVZ4w0 .embla__slide a .card-wrap .item-wrapper .image-wrap img {
  height: 620px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-uwLopVZ4w0 .embla__slide a .card-wrap .item-wrapper .image-wrap img {
    height: 320px;
  }
}
.cid-uwLopVZ4w0 .embla__slide a .card-wrap .mbr-desc {
  margin-bottom: 0;
}
.cid-uwLopVZ4w0 .embla__button--next,
.cid-uwLopVZ4w0 .embla__button--prev {
  display: flex;
}
.cid-uwLopVZ4w0 .embla__button {
  top: -2rem;
  width: 20px;
  height: 20px;
  margin-top: -1.5rem;
  font-size: 18px;
  background-color: transparent;
  color: #0a1862;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
@media (max-width: 768px) {
  .cid-uwLopVZ4w0 .embla__button {
    display: none;
  }
}
.cid-uwLopVZ4w0 .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uwLopVZ4w0 .embla__button:hover {
  background-color: transparent;
  color: #0a1862;
}
.cid-uwLopVZ4w0 .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uwLopVZ4w0 .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uwLopVZ4w0 .embla__button {
    top: -2rem;
  }
}
.cid-uwLopVZ4w0 .embla {
  position: relative;
  width: 100%;
}
.cid-uwLopVZ4w0 .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-uwLopVZ4w0 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uwLopVZ4w0 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uwLopVZ4w0 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uwLopVZ4w0 .mbr-desc {
  color: #222222;
  text-align: left;
}
.cid-uvw7XK8ThJ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #4f5da2;
}
.cid-uvw7XK8ThJ .media-container-row .mbr-text {
  text-align: left;
}
.cid-uvBq1BjrLq {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uvBq1BjrLq nav.navbar {
  position: fixed;
}
.cid-uvBq1BjrLq .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-uvBq1BjrLq .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uvBq1BjrLq .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uvBq1BjrLq .dropdown-item:hover,
.cid-uvBq1BjrLq .dropdown-item:focus {
  background: #0a1862 !important;
  color: white !important;
}
.cid-uvBq1BjrLq .dropdown-item:hover span {
  color: white;
}
.cid-uvBq1BjrLq .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uvBq1BjrLq .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uvBq1BjrLq .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uvBq1BjrLq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uvBq1BjrLq .nav-link {
  position: relative;
}
.cid-uvBq1BjrLq .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uvBq1BjrLq .container {
    flex-wrap: wrap;
  }
}
.cid-uvBq1BjrLq .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uvBq1BjrLq .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uvBq1BjrLq .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uvBq1BjrLq .dropdown-menu,
.cid-uvBq1BjrLq .navbar.opened {
  background: #ffffff !important;
}
.cid-uvBq1BjrLq .nav-item:focus,
.cid-uvBq1BjrLq .nav-link:focus {
  outline: none;
}
.cid-uvBq1BjrLq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uvBq1BjrLq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uvBq1BjrLq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uvBq1BjrLq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uvBq1BjrLq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uvBq1BjrLq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uvBq1BjrLq .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uvBq1BjrLq .navbar.opened {
  transition: all 0.3s;
}
.cid-uvBq1BjrLq .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uvBq1BjrLq .navbar .navbar-logo img {
  width: auto;
}
.cid-uvBq1BjrLq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uvBq1BjrLq .navbar.collapsed {
  justify-content: center;
}
.cid-uvBq1BjrLq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uvBq1BjrLq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uvBq1BjrLq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uvBq1BjrLq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uvBq1BjrLq .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-uvBq1BjrLq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uvBq1BjrLq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uvBq1BjrLq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uvBq1BjrLq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uvBq1BjrLq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uvBq1BjrLq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uvBq1BjrLq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uvBq1BjrLq .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-uvBq1BjrLq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uvBq1BjrLq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uvBq1BjrLq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uvBq1BjrLq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uvBq1BjrLq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uvBq1BjrLq .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uvBq1BjrLq .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uvBq1BjrLq .navbar.navbar-short {
  min-height: 60px;
}
.cid-uvBq1BjrLq .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uvBq1BjrLq .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uvBq1BjrLq .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-uvBq1BjrLq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uvBq1BjrLq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uvBq1BjrLq .dropdown-item.active,
.cid-uvBq1BjrLq .dropdown-item:active {
  background-color: transparent;
}
.cid-uvBq1BjrLq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uvBq1BjrLq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uvBq1BjrLq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uvBq1BjrLq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uvBq1BjrLq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uvBq1BjrLq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uvBq1BjrLq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uvBq1BjrLq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uvBq1BjrLq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uvBq1BjrLq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uvBq1BjrLq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uvBq1BjrLq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uvBq1BjrLq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uvBq1BjrLq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uvBq1BjrLq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uvBq1BjrLq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uvBq1BjrLq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uvBq1BjrLq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uvBq1BjrLq .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uvBq1BjrLq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uvBq1BjrLq .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-uvBq1BjrLq .navbar {
    height: 70px;
  }
  .cid-uvBq1BjrLq .navbar.opened {
    height: auto;
  }
  .cid-uvBq1BjrLq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uwEQZyBakj {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/background1.jpg");
}
@media (max-width: 991px) {
  .cid-uwEQZyBakj .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uwEQZyBakj .row {
  flex-direction: row-reverse;
}
.cid-uwEQZyBakj img {
  width: 100%;
  border-radius: 10px;
}
.cid-uvBq1EL1lf {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #4f5da2;
}
.cid-uvBq1EL1lf .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uvBq1EL1lf .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uvBq1EL1lf .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uwLjbks4UA {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background: #e8e8e8;
}
.cid-uwLjbks4UA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwLjbks4UA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwLjbks4UA .container-fluid {
  margin: 0;
  padding: 0 0 0 72px;
}
@media (max-width: 992px) {
  .cid-uwLjbks4UA .container-fluid {
    padding: 0 20px;
  }
}
.cid-uwLjbks4UA .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uwLjbks4UA .container {
    padding: 0 20px;
  }
  .cid-uwLjbks4UA .container .row {
    padding: 0;
  }
}
.cid-uwLjbks4UA .mbr-section-btn {
  margin-bottom: 70px;
  padding-right: 72px;
  text-align: right;
}
@media (max-width: 992px) {
  .cid-uwLjbks4UA .mbr-section-btn {
    padding-right: 0;
  }
}
.cid-uwLjbks4UA .mbr-section-btn .btn .mbr-iconfont {
  color: #c6a38f;
}
.cid-uwLjbks4UA .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 800px;
  max-width: 800px;
}
@media (max-width: 768px) {
  .cid-uwLjbks4UA .embla__slide {
    min-width: 100%;
    max-width: 100%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-uwLjbks4UA .embla__slide a {
  width: 100%;
}
.cid-uwLjbks4UA .embla__slide a .card-wrap .item-wrapper .image-wrap {
  margin-bottom: 20px;
}
.cid-uwLjbks4UA .embla__slide a .card-wrap .item-wrapper .image-wrap img {
  height: 620px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-uwLjbks4UA .embla__slide a .card-wrap .item-wrapper .image-wrap img {
    height: 320px;
  }
}
.cid-uwLjbks4UA .embla__slide a .card-wrap .mbr-desc {
  margin-bottom: 0;
}
.cid-uwLjbks4UA .embla__button--next,
.cid-uwLjbks4UA .embla__button--prev {
  display: flex;
}
.cid-uwLjbks4UA .embla__button {
  top: -2rem;
  width: 20px;
  height: 20px;
  margin-top: -1.5rem;
  font-size: 18px;
  background-color: transparent;
  color: #0a1862;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
@media (max-width: 768px) {
  .cid-uwLjbks4UA .embla__button {
    display: none;
  }
}
.cid-uwLjbks4UA .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uwLjbks4UA .embla__button:hover {
  background-color: transparent;
  color: #0a1862;
}
.cid-uwLjbks4UA .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uwLjbks4UA .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uwLjbks4UA .embla__button {
    top: -2rem;
  }
}
.cid-uwLjbks4UA .embla {
  position: relative;
  width: 100%;
}
.cid-uwLjbks4UA .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-uwLjbks4UA .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uwLjbks4UA .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uwLjbks4UA .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uwLjbks4UA .mbr-desc {
  color: #222222;
  text-align: left;
}
.cid-uvBq1HJf2G {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #4f5da2;
}
.cid-uvBq1HJf2G .media-container-row .mbr-text {
  text-align: left;
}
.cid-uvBtJeJzIp {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uvBtJeJzIp nav.navbar {
  position: fixed;
}
.cid-uvBtJeJzIp .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-uvBtJeJzIp .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uvBtJeJzIp .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uvBtJeJzIp .dropdown-item:hover,
.cid-uvBtJeJzIp .dropdown-item:focus {
  background: #0a1862 !important;
  color: white !important;
}
.cid-uvBtJeJzIp .dropdown-item:hover span {
  color: white;
}
.cid-uvBtJeJzIp .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uvBtJeJzIp .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uvBtJeJzIp .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uvBtJeJzIp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uvBtJeJzIp .nav-link {
  position: relative;
}
.cid-uvBtJeJzIp .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uvBtJeJzIp .container {
    flex-wrap: wrap;
  }
}
.cid-uvBtJeJzIp .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uvBtJeJzIp .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uvBtJeJzIp .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uvBtJeJzIp .dropdown-menu,
.cid-uvBtJeJzIp .navbar.opened {
  background: #ffffff !important;
}
.cid-uvBtJeJzIp .nav-item:focus,
.cid-uvBtJeJzIp .nav-link:focus {
  outline: none;
}
.cid-uvBtJeJzIp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uvBtJeJzIp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uvBtJeJzIp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uvBtJeJzIp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uvBtJeJzIp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uvBtJeJzIp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uvBtJeJzIp .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uvBtJeJzIp .navbar.opened {
  transition: all 0.3s;
}
.cid-uvBtJeJzIp .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uvBtJeJzIp .navbar .navbar-logo img {
  width: auto;
}
.cid-uvBtJeJzIp .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uvBtJeJzIp .navbar.collapsed {
  justify-content: center;
}
.cid-uvBtJeJzIp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uvBtJeJzIp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uvBtJeJzIp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uvBtJeJzIp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uvBtJeJzIp .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-uvBtJeJzIp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uvBtJeJzIp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uvBtJeJzIp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uvBtJeJzIp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uvBtJeJzIp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uvBtJeJzIp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uvBtJeJzIp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uvBtJeJzIp .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-uvBtJeJzIp .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uvBtJeJzIp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uvBtJeJzIp .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uvBtJeJzIp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uvBtJeJzIp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uvBtJeJzIp .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uvBtJeJzIp .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uvBtJeJzIp .navbar.navbar-short {
  min-height: 60px;
}
.cid-uvBtJeJzIp .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uvBtJeJzIp .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uvBtJeJzIp .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-uvBtJeJzIp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uvBtJeJzIp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uvBtJeJzIp .dropdown-item.active,
.cid-uvBtJeJzIp .dropdown-item:active {
  background-color: transparent;
}
.cid-uvBtJeJzIp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uvBtJeJzIp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uvBtJeJzIp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uvBtJeJzIp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uvBtJeJzIp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uvBtJeJzIp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uvBtJeJzIp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uvBtJeJzIp .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uvBtJeJzIp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uvBtJeJzIp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uvBtJeJzIp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uvBtJeJzIp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uvBtJeJzIp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uvBtJeJzIp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uvBtJeJzIp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uvBtJeJzIp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uvBtJeJzIp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uvBtJeJzIp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uvBtJeJzIp .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uvBtJeJzIp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uvBtJeJzIp .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-uvBtJeJzIp .navbar {
    height: 70px;
  }
  .cid-uvBtJeJzIp .navbar.opened {
    height: auto;
  }
  .cid-uvBtJeJzIp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uwERULnrSx {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/background1.jpg");
}
@media (max-width: 991px) {
  .cid-uwERULnrSx .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uwERULnrSx .row {
  flex-direction: row-reverse;
}
.cid-uwERULnrSx img {
  width: 100%;
  border-radius: 10px;
}
.cid-uvBtJjvQrW {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #4f5da2;
}
.cid-uvBtJjvQrW .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uvBtJjvQrW .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uvBtJjvQrW .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uwLlQOvnsy {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background: #e8e8e8;
}
.cid-uwLlQOvnsy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwLlQOvnsy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwLlQOvnsy .container-fluid {
  margin: 0;
  padding: 0 0 0 72px;
}
@media (max-width: 992px) {
  .cid-uwLlQOvnsy .container-fluid {
    padding: 0 20px;
  }
}
.cid-uwLlQOvnsy .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uwLlQOvnsy .container {
    padding: 0 20px;
  }
  .cid-uwLlQOvnsy .container .row {
    padding: 0;
  }
}
.cid-uwLlQOvnsy .mbr-section-btn {
  margin-bottom: 70px;
  padding-right: 72px;
  text-align: right;
}
@media (max-width: 992px) {
  .cid-uwLlQOvnsy .mbr-section-btn {
    padding-right: 0;
  }
}
.cid-uwLlQOvnsy .mbr-section-btn .btn .mbr-iconfont {
  color: #c6a38f;
}
.cid-uwLlQOvnsy .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 800px;
  max-width: 800px;
}
@media (max-width: 768px) {
  .cid-uwLlQOvnsy .embla__slide {
    min-width: 100%;
    max-width: 100%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-uwLlQOvnsy .embla__slide a {
  width: 100%;
}
.cid-uwLlQOvnsy .embla__slide a .card-wrap .item-wrapper .image-wrap {
  margin-bottom: 20px;
}
.cid-uwLlQOvnsy .embla__slide a .card-wrap .item-wrapper .image-wrap img {
  height: 620px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-uwLlQOvnsy .embla__slide a .card-wrap .item-wrapper .image-wrap img {
    height: 320px;
  }
}
.cid-uwLlQOvnsy .embla__slide a .card-wrap .mbr-desc {
  margin-bottom: 0;
}
.cid-uwLlQOvnsy .embla__button--next,
.cid-uwLlQOvnsy .embla__button--prev {
  display: flex;
}
.cid-uwLlQOvnsy .embla__button {
  top: -2rem;
  width: 20px;
  height: 20px;
  margin-top: -1.5rem;
  font-size: 18px;
  background-color: transparent;
  color: #0a1862;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
@media (max-width: 768px) {
  .cid-uwLlQOvnsy .embla__button {
    display: none;
  }
}
.cid-uwLlQOvnsy .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uwLlQOvnsy .embla__button:hover {
  background-color: transparent;
  color: #0a1862;
}
.cid-uwLlQOvnsy .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uwLlQOvnsy .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uwLlQOvnsy .embla__button {
    top: -2rem;
  }
}
.cid-uwLlQOvnsy .embla {
  position: relative;
  width: 100%;
}
.cid-uwLlQOvnsy .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-uwLlQOvnsy .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uwLlQOvnsy .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uwLlQOvnsy .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uwLlQOvnsy .mbr-desc {
  color: #222222;
  text-align: left;
}
.cid-uvBtJo80Ne {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #4f5da2;
}
.cid-uvBtJo80Ne .media-container-row .mbr-text {
  text-align: left;
}
.cid-uvBxWQ0Pmq {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uvBxWQ0Pmq nav.navbar {
  position: fixed;
}
.cid-uvBxWQ0Pmq .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-uvBxWQ0Pmq .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uvBxWQ0Pmq .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uvBxWQ0Pmq .dropdown-item:hover,
.cid-uvBxWQ0Pmq .dropdown-item:focus {
  background: #0a1862 !important;
  color: white !important;
}
.cid-uvBxWQ0Pmq .dropdown-item:hover span {
  color: white;
}
.cid-uvBxWQ0Pmq .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uvBxWQ0Pmq .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uvBxWQ0Pmq .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uvBxWQ0Pmq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uvBxWQ0Pmq .nav-link {
  position: relative;
}
.cid-uvBxWQ0Pmq .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uvBxWQ0Pmq .container {
    flex-wrap: wrap;
  }
}
.cid-uvBxWQ0Pmq .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uvBxWQ0Pmq .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uvBxWQ0Pmq .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uvBxWQ0Pmq .dropdown-menu,
.cid-uvBxWQ0Pmq .navbar.opened {
  background: #ffffff !important;
}
.cid-uvBxWQ0Pmq .nav-item:focus,
.cid-uvBxWQ0Pmq .nav-link:focus {
  outline: none;
}
.cid-uvBxWQ0Pmq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uvBxWQ0Pmq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uvBxWQ0Pmq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uvBxWQ0Pmq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uvBxWQ0Pmq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uvBxWQ0Pmq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uvBxWQ0Pmq .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uvBxWQ0Pmq .navbar.opened {
  transition: all 0.3s;
}
.cid-uvBxWQ0Pmq .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uvBxWQ0Pmq .navbar .navbar-logo img {
  width: auto;
}
.cid-uvBxWQ0Pmq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uvBxWQ0Pmq .navbar.collapsed {
  justify-content: center;
}
.cid-uvBxWQ0Pmq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uvBxWQ0Pmq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uvBxWQ0Pmq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uvBxWQ0Pmq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uvBxWQ0Pmq .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-uvBxWQ0Pmq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uvBxWQ0Pmq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uvBxWQ0Pmq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uvBxWQ0Pmq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uvBxWQ0Pmq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uvBxWQ0Pmq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uvBxWQ0Pmq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uvBxWQ0Pmq .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-uvBxWQ0Pmq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uvBxWQ0Pmq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uvBxWQ0Pmq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uvBxWQ0Pmq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uvBxWQ0Pmq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uvBxWQ0Pmq .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uvBxWQ0Pmq .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uvBxWQ0Pmq .navbar.navbar-short {
  min-height: 60px;
}
.cid-uvBxWQ0Pmq .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uvBxWQ0Pmq .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uvBxWQ0Pmq .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-uvBxWQ0Pmq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uvBxWQ0Pmq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uvBxWQ0Pmq .dropdown-item.active,
.cid-uvBxWQ0Pmq .dropdown-item:active {
  background-color: transparent;
}
.cid-uvBxWQ0Pmq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uvBxWQ0Pmq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uvBxWQ0Pmq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uvBxWQ0Pmq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uvBxWQ0Pmq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uvBxWQ0Pmq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uvBxWQ0Pmq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uvBxWQ0Pmq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uvBxWQ0Pmq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uvBxWQ0Pmq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uvBxWQ0Pmq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uvBxWQ0Pmq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uvBxWQ0Pmq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uvBxWQ0Pmq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uvBxWQ0Pmq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uvBxWQ0Pmq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uvBxWQ0Pmq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uvBxWQ0Pmq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uvBxWQ0Pmq .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uvBxWQ0Pmq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uvBxWQ0Pmq .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-uvBxWQ0Pmq .navbar {
    height: 70px;
  }
  .cid-uvBxWQ0Pmq .navbar.opened {
    height: auto;
  }
  .cid-uvBxWQ0Pmq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uwEUbFwIL5 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/background1.jpg");
}
@media (max-width: 991px) {
  .cid-uwEUbFwIL5 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uwEUbFwIL5 .row {
  flex-direction: row-reverse;
}
.cid-uwEUbFwIL5 img {
  width: 100%;
  border-radius: 10px;
}
.cid-uvBxWTjSRJ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #4f5da2;
}
.cid-uvBxWTjSRJ .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uvBxWTjSRJ .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uvBxWTjSRJ .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uwLpF3XS68 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background: #e8e8e8;
}
.cid-uwLpF3XS68 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwLpF3XS68 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwLpF3XS68 .container-fluid {
  margin: 0;
  padding: 0 0 0 72px;
}
@media (max-width: 992px) {
  .cid-uwLpF3XS68 .container-fluid {
    padding: 0 20px;
  }
}
.cid-uwLpF3XS68 .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uwLpF3XS68 .container {
    padding: 0 20px;
  }
  .cid-uwLpF3XS68 .container .row {
    padding: 0;
  }
}
.cid-uwLpF3XS68 .mbr-section-btn {
  margin-bottom: 70px;
  padding-right: 72px;
  text-align: right;
}
@media (max-width: 992px) {
  .cid-uwLpF3XS68 .mbr-section-btn {
    padding-right: 0;
  }
}
.cid-uwLpF3XS68 .mbr-section-btn .btn .mbr-iconfont {
  color: #c6a38f;
}
.cid-uwLpF3XS68 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 800px;
  max-width: 800px;
}
@media (max-width: 768px) {
  .cid-uwLpF3XS68 .embla__slide {
    min-width: 100%;
    max-width: 100%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-uwLpF3XS68 .embla__slide a {
  width: 100%;
}
.cid-uwLpF3XS68 .embla__slide a .card-wrap .item-wrapper .image-wrap {
  margin-bottom: 20px;
}
.cid-uwLpF3XS68 .embla__slide a .card-wrap .item-wrapper .image-wrap img {
  height: 620px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-uwLpF3XS68 .embla__slide a .card-wrap .item-wrapper .image-wrap img {
    height: 320px;
  }
}
.cid-uwLpF3XS68 .embla__slide a .card-wrap .mbr-desc {
  margin-bottom: 0;
}
.cid-uwLpF3XS68 .embla__button--next,
.cid-uwLpF3XS68 .embla__button--prev {
  display: flex;
}
.cid-uwLpF3XS68 .embla__button {
  top: -2rem;
  width: 20px;
  height: 20px;
  margin-top: -1.5rem;
  font-size: 18px;
  background-color: transparent;
  color: #0a1862;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
@media (max-width: 768px) {
  .cid-uwLpF3XS68 .embla__button {
    display: none;
  }
}
.cid-uwLpF3XS68 .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uwLpF3XS68 .embla__button:hover {
  background-color: transparent;
  color: #0a1862;
}
.cid-uwLpF3XS68 .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uwLpF3XS68 .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uwLpF3XS68 .embla__button {
    top: -2rem;
  }
}
.cid-uwLpF3XS68 .embla {
  position: relative;
  width: 100%;
}
.cid-uwLpF3XS68 .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-uwLpF3XS68 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uwLpF3XS68 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uwLpF3XS68 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uwLpF3XS68 .mbr-desc {
  color: #222222;
  text-align: left;
}
.cid-uvBxWYjkTh {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #4f5da2;
}
.cid-uvBxWYjkTh .media-container-row .mbr-text {
  text-align: left;
}
