body {
  font-family: Montserrat;
}
.display-1 {
  font-family: 'Roboto', sans-serif;
  font-size: 2.9rem;
}
.display-1 > .mbr-iconfont {
  font-size: 4.64rem;
}
.display-2 {
  font-family: 'Barlow', sans-serif;
  font-size: 1.8rem;
}
.display-2 > .mbr-iconfont {
  font-size: 2.88rem;
}
.display-4 {
  font-family: 'Barlow', sans-serif;
  font-size: 1rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.6rem;
}
.display-5 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.2rem;
}
.display-5 > .mbr-iconfont {
  font-size: 1.92rem;
}
.display-7 {
  font-family: 'Roboto', sans-serif;
  font-size: 0.9rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.44rem;
}
/* ---- 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: 768px) {
  .display-1 {
    font-size: 2.32rem;
    font-size: calc( 1.665rem + (2.9 - 1.665) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.665rem + (2.9 - 1.665) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.44rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.28rem + (1.8 - 1.28) * ((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: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.8rem 2rem;
  border-radius: 0.25rem;
}
.btn-sm {
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
}
.btn-md {
  padding: 0.8rem 2rem;
  border-radius: 0.25rem;
}
.btn-lg {
  padding: 0.8rem 2rem;
  border-radius: 0.25rem;
}
.bg-primary {
  background-color: #04367c !important;
}
.bg-success {
  background-color: #1dc9cb !important;
}
.bg-info {
  background-color: #51aafa !important;
}
.bg-warning {
  background-color: #c1c1c1 !important;
}
.bg-danger {
  background-color: #444444 !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #04367c !important;
  border-color: #04367c !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #021632 !important;
  border-color: #021632 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #021632 !important;
  border-color: #021632 !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #188ef4 !important;
  border-color: #188ef4 !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #0966b7 !important;
  border-color: #0966b7 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #0966b7 !important;
  border-color: #0966b7 !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #51aafa !important;
  border-color: #51aafa !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #0786f7 !important;
  border-color: #0786f7 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #0786f7 !important;
  border-color: #0786f7 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #1dc9cb !important;
  border-color: #1dc9cb !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #138788 !important;
  border-color: #138788 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #138788 !important;
  border-color: #138788 !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #c1c1c1 !important;
  border-color: #c1c1c1 !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #9b9b9b !important;
  border-color: #9b9b9b !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #9b9b9b !important;
  border-color: #9b9b9b !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #444444 !important;
  border-color: #444444 !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #1e1e1e !important;
  border-color: #1e1e1e !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #1e1e1e !important;
  border-color: #1e1e1e !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  transition: all .5s;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  transition: all .5s;
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none !important;
  border-color: #010b19 !important;
  color: #010b19 !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #04367c !important;
  border-color: #04367c !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #04367c !important;
  border-color: #04367c !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none !important;
  border-color: #08589e !important;
  color: #08589e !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #188ef4 !important;
  border-color: #188ef4 !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #188ef4 !important;
  border-color: #188ef4 !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none !important;
  border-color: #0678df !important;
  color: #0678df !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #51aafa !important;
  border-color: #51aafa !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #51aafa !important;
  border-color: #51aafa !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none !important;
  border-color: #107172 !important;
  color: #107172 !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #1dc9cb !important;
  border-color: #1dc9cb !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #1dc9cb !important;
  border-color: #1dc9cb !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none !important;
  border-color: #8e8e8e !important;
  color: #8e8e8e !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff !important;
  background-color: #c1c1c1 !important;
  border-color: #c1c1c1 !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #c1c1c1 !important;
  border-color: #c1c1c1 !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none !important;
  border-color: #111111 !important;
  color: #111111 !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff !important;
  background-color: #444444 !important;
  border-color: #444444 !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #444444 !important;
  border-color: #444444 !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none !important;
  border-color: #000000 !important;
  color: #000000 !important;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #04367c !important;
}
.text-secondary {
  color: #188ef4 !important;
}
.text-success {
  color: #1dc9cb !important;
}
.text-info {
  color: #51aafa !important;
}
.text-warning {
  color: #c1c1c1 !important;
}
.text-danger {
  color: #444444 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #010b19 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #08589e !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #107172 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #0678df !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #8e8e8e !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #111111 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #1dc9cb;
}
.alert-info {
  background-color: #51aafa;
}
.alert-warning {
  background-color: #c1c1c1;
}
.alert-danger {
  background-color: #444444;
}
.mbr-section-btn a.btn:hover,
.mbr-section-btn a.btn:focus {
  box-shadow: none !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #04367c;
  border-color: #04367c;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #04367c;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #086cf7;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #bef5f6;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #b7b7b7;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.mbr-arrow-up a {
  width: 61px;
  height: 61px;
}
#scrollToTop a {
  background: #188ef4;
}
#scrollToTop a i:before {
  content: '';
  position: absolute;
  height: 40%;
  top: 25%;
  background: #ffffff;
  width: 3%;
  left: calc(50% - 1px);
}
#scrollToTop a i:after {
  content: '';
  position: absolute;
  display: block;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  width: 40%;
  height: 40%;
  left: 30%;
  bottom: 30%;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
.mbr-arrow i {
  color: #188ef4;
}
.form-control {
  font-family: 'Roboto', sans-serif;
  font-size: 0.9rem;
}
.form-control > .mbr-iconfont {
  font-size: 1.44rem;
}
blockquote {
  border-color: #04367c;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
@media (max-width: 767px) {
  .btn {
    font-size: .75rem !important;
  }
  .btn .mbr-iconfont {
    font-size: 1rem !important;
  }
}
/* Social block */
.btn-social {
  font-size: 20px;
  border-radius: 50%;
  padding: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  position: relative;
  border: 2px solid #c0a375;
  border-color: #04367c;
  color: #232323;
  cursor: pointer;
}
.btn-social i {
  top: 0;
  line-height: 44px;
  width: 44px;
}
.btn-social:hover {
  color: #fff;
  background: #04367c;
}
.btn-social + .btn {
  margin-left: .1rem;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #04367c;
  color: #ffffff;
}
.jq-number__spin {
  background-color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #04367c;
  border-bottom-color: #04367c;
}
.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: #04367c !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: #188ef4 !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%;
}
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='%2304367c' %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;
}
.cid-uFMh2eyzqq {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uFMh2eyzqq .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uFMh2eyzqq .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-uFMh2eyzqq .iconfont-wrapper {
  color: #103178 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-uFMh2eyzqq .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-uFMh2eyzqq .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-uFMh2eyzqq .container {
    padding: 0 1rem;
  }
}
.cid-uFMh2eyzqq .menu-tite {
  background: #04367c;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-uFMh2eyzqq .nav-link {
  position: relative;
}
.cid-uFMh2eyzqq .nav-link:hover {
  color: #51aafa !important;
}
.cid-uFMh2eyzqq nav.navbar {
  position: fixed;
}
.cid-uFMh2eyzqq .navbar {
  padding: 0!important;
  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-uFMh2eyzqq .navbar.opened {
  transition: all 0.3s;
}
.cid-uFMh2eyzqq .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uFMh2eyzqq .navbar .navbar-logo img {
  width: auto;
}
.cid-uFMh2eyzqq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uFMh2eyzqq .navbar.collapsed {
  justify-content: center;
}
.cid-uFMh2eyzqq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uFMh2eyzqq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uFMh2eyzqq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uFMh2eyzqq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uFMh2eyzqq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uFMh2eyzqq .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-uFMh2eyzqq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uFMh2eyzqq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uFMh2eyzqq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uFMh2eyzqq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uFMh2eyzqq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uFMh2eyzqq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uFMh2eyzqq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uFMh2eyzqq .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-uFMh2eyzqq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uFMh2eyzqq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uFMh2eyzqq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uFMh2eyzqq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uFMh2eyzqq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uFMh2eyzqq .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uFMh2eyzqq .navbar.navbar-short {
  min-height: 60px;
}
.cid-uFMh2eyzqq .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uFMh2eyzqq .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uFMh2eyzqq .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-uFMh2eyzqq .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uFMh2eyzqq .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uFMh2eyzqq .dropdown-item:hover,
.cid-uFMh2eyzqq .dropdown-item:focus {
  background: #04367c !important;
  color: white !important;
}
.cid-uFMh2eyzqq .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uFMh2eyzqq .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uFMh2eyzqq .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-uFMh2eyzqq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uFMh2eyzqq .dropdown-menu,
.cid-uFMh2eyzqq .navbar.opened {
  background: #ffffff !important;
}
.cid-uFMh2eyzqq .nav-item:focus,
.cid-uFMh2eyzqq .nav-link:focus {
  outline: none;
}
.cid-uFMh2eyzqq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uFMh2eyzqq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uFMh2eyzqq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uFMh2eyzqq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uFMh2eyzqq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uFMh2eyzqq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uFMh2eyzqq .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uFMh2eyzqq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uFMh2eyzqq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uFMh2eyzqq .dropdown-item.active,
.cid-uFMh2eyzqq .dropdown-item:active {
  background-color: transparent;
}
.cid-uFMh2eyzqq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uFMh2eyzqq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uFMh2eyzqq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uFMh2eyzqq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uFMh2eyzqq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uFMh2eyzqq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uFMh2eyzqq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uFMh2eyzqq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uFMh2eyzqq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uFMh2eyzqq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uFMh2eyzqq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uFMh2eyzqq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFMh2eyzqq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFMh2eyzqq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uFMh2eyzqq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFMh2eyzqq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uFMh2eyzqq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uFMh2eyzqq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFMh2eyzqq .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uFMh2eyzqq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uFMh2eyzqq .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-uFMh2eyzqq .navbar {
    height: 70px;
  }
  .cid-uFMh2eyzqq .navbar.opened {
    height: auto;
  }
  .cid-uFMh2eyzqq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uMipW0x73Z {
  overflow: hidden !important;
  padding-top: 105px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/mbr-1920x1159.jpg");
}
.cid-uMipW0x73Z .animated-element {
  color: #f7fff7;
}
.cid-uMipW0x73Z .img-block {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uMipW0x73Z .mbr-section-subtitle {
  color: #ffe66d;
}
@media (min-width: 992px) {
  .cid-uMipW0x73Z .img-block {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uMipW0x73Z .mbr-figure {
    margin-top: 1rem;
  }
}
@media (max-width: 768px) {
  .cid-uMipW0x73Z .img-block {
    padding-bottom: 2rem;
  }
}
.cid-uFMmDoNSUD {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uFMmDoNSUD .stats-item {
  padding: 80px 10px;
  background-color: #04367c;
  display: flex;
  justify-content: center;
}
.cid-uFMmDoNSUD .stats-item:hover .mbr-iconfont::before {
  -webkit-animation: updown 0.45s ease-in-out 0.1s;
  animation: updown 0.45s ease-in-out 0.1s;
  display: block;
}
.cid-uFMmDoNSUD .stats-item > span {
  transition: all 0.3s ease-in-out;
}
.cid-uFMmDoNSUD .heading {
  color: #ffffff;
}
.cid-uFMmDoNSUD .counter {
  text-align: center;
  color: #ffffff;
}
.cid-uFMmDoNSUD .mbr-iconfont {
  font-size: 45px;
  align-self: center;
  margin-bottom: 22px;
  border: 2px dashed #ffffff;
  border-radius: 50%;
  padding: 35.5px;
}
.cid-uFMmDoNSUD .mbr-card-title,
.cid-uFMmDoNSUD .mbr-iconfont {
  text-align: center;
  color: #ffffff;
  display: block;
}
@media (max-width: 768px) {
  .cid-uFMmDoNSUD .stats-item {
    padding: 30px 25px;
  }
}
@-webkit-keyframes updown {
  0% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes updown {
  0% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0);
  }
}
.cid-uFMmDoNSUD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFMmDoNSUD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLljbPV3FV {
  padding-top: 75px;
  padding-bottom: 90px;
  background: linear-gradient(to bottom, #cccccc, #ffffff);
}
.cid-uLljbPV3FV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLljbPV3FV .card-link {
  position: relative;
  width: fit-content;
}
.cid-uLljbPV3FV .card-link:before {
  content: '';
  position: absolute;
  width: 100%;
  transition: all 0.3s;
  height: 1px;
  background: currentColor;
  left: 0;
  bottom: 0;
}
.cid-uLljbPV3FV .item-wrapper {
  margin-bottom: 0rem;
  padding: 2.5rem 2rem;
  margin-top: 2rem;
  background: #ffffff;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .cid-uLljbPV3FV .item-wrapper {
    margin-bottom: 0rem;
    padding: 1rem;
  }
}
.cid-uLljbPV3FV .item-wrapper:hover {
  background: #188ef4;
  transform: translateY(-5px);
}
.cid-uLljbPV3FV .item-wrapper:hover .card-title,
.cid-uLljbPV3FV .item-wrapper:hover .card-text {
  color: white !important;
}
.cid-uLljbPV3FV .item-wrapper:hover span,
.cid-uLljbPV3FV .item-wrapper:hover .card-link,
.cid-uLljbPV3FV .item-wrapper:hover .card-link a {
  color: #04367c !important;
}
.cid-uLljbPV3FV .item-wrapper:hover .card-link:before {
  width: 0%;
}
.cid-uLljbPV3FV .card-title,
.cid-uLljbPV3FV .card-text,
.cid-uLljbPV3FV .card-link,
.cid-uLljbPV3FV .card-link a {
  transition: all 0.3s;
}
.cid-uLljbPV3FV .link-wrapper {
  display: inline-flex;
  align-items: center;
}
.cid-uLljbPV3FV .link-wrapper .link-icon {
  color: currentColor;
  font-size: 1rem;
  padding-left: .5rem;
  padding-bottom: 4px;
  transition: all 0.3s;
}
.cid-uLljbPV3FV .link-wrapper:hover {
  cursor: pointer;
}
.cid-uLljbPV3FV .iconfont-wrapper .mbr-iconfont {
  display: inline-flex;
  font-size: 5rem;
  color: #188ef4;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  margin-bottom: 1.5rem;
}
@media (max-width: 767px) {
  .cid-uLljbPV3FV .iconfont-wrapper .mbr-iconfont {
    font-size: 4rem;
  }
}
.cid-uLljbPV3FV .card-title,
.cid-uLljbPV3FV .iconfont-wrapper {
  color: #000000;
}
.cid-uLljbPV3FV .card-text {
  color: #232323;
}
.cid-uLljbPV3FV .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uLljbPV3FV .card-link,
.cid-uLljbPV3FV .link-icon,
.cid-uLljbPV3FV .link-align {
  color: #000000;
}
.cid-uLljbPV3FV .mbr-section-subtitle {
  text-align: left;
}
.cid-uK1Xnok8wS {
  padding-top: 75px;
  padding-bottom: 45px;
  background-color: #04367c;
}
.cid-uK1Xnok8wS .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uK1Xnok8wS .mbr-section-title {
  text-align: center;
  color: #ffe66d;
}
.cid-uO9ByZmq32 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #1b61a1;
}
.cid-uO9ByZmq32 .container {
  display: flex;
  justify-content: center;
}
.cid-uO9ByZmq32 .row {
  display: flex;
  align-items: stretch;
  max-width: 1194px;
  width: 100%;
}
.cid-uO9ByZmq32 .col-brand {
  margin-bottom: 40px;
}
.cid-uO9ByZmq32 .col-link {
  margin-bottom: 30px;
}
.cid-uO9ByZmq32 .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 25px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
}
.cid-uO9ByZmq32 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uO9ByZmq32 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uO9ByZmq32 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uO9ByZmq32 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uO9ByZmq32 .mbr-section-subtitle {
  color: #ffffff;
  margin-bottom: 20px;
}
.cid-uO9ByZmq32 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uO9ByZmq32 .mbr-iconfont {
  font-size: 16px;
  color: #3b668d;
}
.cid-uO9ByZmq32 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background-color: #eef4fb;
  margin-right: 10px;
  margin-bottom: 10px;
  padding: 5px;
  min-height: 30px;
  min-width: 30px;
}
.cid-uO9ByZmq32 .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uO9ByZmq32 .soc-item:hover {
  background-color: #738bae;
}
.cid-uO9ByZmq32 .soc-item:hover .mbr-iconfont {
  color: #FFFFFF !important;
}
.cid-uO9ByZmq32 .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #010d4c;
}
.cid-uO9ByZmq32 .list li {
  min-height: 44px;
  display: flex;
  align-items: center;
}
.cid-uO9ByZmq32 .list a {
  min-height: 44px;
  display: flex;
  align-items: center;
}
.cid-uO9ByZmq32 .brand-text {
  margin-bottom: 35px;
  color: #ffffff;
  opacity: 0.8;
}
.cid-uO9ByZmq32 .mbr-text {
  color: #00284E;
  opacity: 0.8;
}
.cid-uO9ByZmq32 .mbr-text .text-black {
  color: #00284E !important;
}
.cid-uO9ByZmq32 .mbr-text a {
  opacity: 0.8;
}
.cid-uO9ByZmq32 .mbr-text a:hover {
  opacity: 1;
  color: #04367c !important;
}
.cid-uO9ByZmq32 .col-copyright {
  margin-top: 44px;
}
.cid-uO9ByZmq32 .copyright {
  color: #ffffff;
  opacity: 0.8;
}
@media (max-width: 991px) {
  .cid-uO9ByZmq32 .copyright {
    text-align: center !important;
  }
}
.cid-uO9ByZmq32 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uO9ByZmq32 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFMh2eyzqq {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uFMh2eyzqq .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uFMh2eyzqq .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-uFMh2eyzqq .iconfont-wrapper {
  color: #103178 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-uFMh2eyzqq .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-uFMh2eyzqq .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-uFMh2eyzqq .container {
    padding: 0 1rem;
  }
}
.cid-uFMh2eyzqq .menu-tite {
  background: #04367c;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-uFMh2eyzqq .nav-link {
  position: relative;
}
.cid-uFMh2eyzqq .nav-link:hover {
  color: #51aafa !important;
}
.cid-uFMh2eyzqq nav.navbar {
  position: fixed;
}
.cid-uFMh2eyzqq .navbar {
  padding: 0!important;
  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-uFMh2eyzqq .navbar.opened {
  transition: all 0.3s;
}
.cid-uFMh2eyzqq .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uFMh2eyzqq .navbar .navbar-logo img {
  width: auto;
}
.cid-uFMh2eyzqq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uFMh2eyzqq .navbar.collapsed {
  justify-content: center;
}
.cid-uFMh2eyzqq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uFMh2eyzqq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uFMh2eyzqq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uFMh2eyzqq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uFMh2eyzqq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uFMh2eyzqq .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-uFMh2eyzqq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uFMh2eyzqq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uFMh2eyzqq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uFMh2eyzqq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uFMh2eyzqq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uFMh2eyzqq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uFMh2eyzqq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uFMh2eyzqq .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-uFMh2eyzqq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uFMh2eyzqq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uFMh2eyzqq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uFMh2eyzqq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uFMh2eyzqq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uFMh2eyzqq .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uFMh2eyzqq .navbar.navbar-short {
  min-height: 60px;
}
.cid-uFMh2eyzqq .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uFMh2eyzqq .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uFMh2eyzqq .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-uFMh2eyzqq .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uFMh2eyzqq .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uFMh2eyzqq .dropdown-item:hover,
.cid-uFMh2eyzqq .dropdown-item:focus {
  background: #04367c !important;
  color: white !important;
}
.cid-uFMh2eyzqq .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uFMh2eyzqq .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uFMh2eyzqq .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-uFMh2eyzqq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uFMh2eyzqq .dropdown-menu,
.cid-uFMh2eyzqq .navbar.opened {
  background: #ffffff !important;
}
.cid-uFMh2eyzqq .nav-item:focus,
.cid-uFMh2eyzqq .nav-link:focus {
  outline: none;
}
.cid-uFMh2eyzqq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uFMh2eyzqq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uFMh2eyzqq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uFMh2eyzqq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uFMh2eyzqq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uFMh2eyzqq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uFMh2eyzqq .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uFMh2eyzqq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uFMh2eyzqq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uFMh2eyzqq .dropdown-item.active,
.cid-uFMh2eyzqq .dropdown-item:active {
  background-color: transparent;
}
.cid-uFMh2eyzqq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uFMh2eyzqq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uFMh2eyzqq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uFMh2eyzqq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uFMh2eyzqq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uFMh2eyzqq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uFMh2eyzqq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uFMh2eyzqq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uFMh2eyzqq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uFMh2eyzqq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uFMh2eyzqq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uFMh2eyzqq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFMh2eyzqq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFMh2eyzqq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uFMh2eyzqq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFMh2eyzqq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uFMh2eyzqq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uFMh2eyzqq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFMh2eyzqq .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uFMh2eyzqq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uFMh2eyzqq .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-uFMh2eyzqq .navbar {
    height: 70px;
  }
  .cid-uFMh2eyzqq .navbar.opened {
    height: auto;
  }
  .cid-uFMh2eyzqq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uHRR34t2IN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/mbr-1-938x529.jpg");
}
.cid-uHRR34t2IN .iconfont-wrapper {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.cid-uHRR34t2IN .card-box {
  z-index: 2;
  position: relative;
}
.cid-uHRR34t2IN .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
  background: #04367c;
  width: 80px;
  padding: 10px;
  border-radius: 6px;
  text-align: center;
}
.cid-uHRR34t2IN .mbr-iconfont-big {
  font-size: 16rem;
  color: #04367c;
  position: absolute;
  bottom: -5rem;
  right: -4rem;
  z-index: -1;
  transition: all 0.6s;
  opacity: 0.1;
}
.cid-uHRR34t2IN .card-title,
.cid-uHRR34t2IN .card-text {
  transition: all 0.3s;
}
.cid-uHRR34t2IN .card-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  padding: 4rem 3rem;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
  background: #ffa55c;
  transition: all 0.3s;
}
.cid-uHRR34t2IN .card-wrapper:hover .mbr-iconfont-big {
  transform: rotate(-20deg);
}
@media (max-width: 767px) {
  .cid-uHRR34t2IN .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-uHRR34t2IN .card-title,
.cid-uHRR34t2IN .iconfont-wrapper {
  color: #ffffff;
}
.cid-uHRR34t2IN .card-text {
  color: #bbbbbb;
}
.cid-uHRR34t2IN .mbr-section-title {
  color: #ffffff;
}
.cid-uHRR34t2IN .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uHRR34t2IN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHRR34t2IN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHRH4MyhSV {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uHRH4MyhSV .container-fluid {
  padding: 0 3rem;
}
.cid-uHRH4MyhSV .mbr-section-subtitle {
  color: #767676;
}
.cid-uHRH4MyhSV .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-uHRH4MyhSV .table-wrapper {
  margin: 0 auto;
}
.cid-uHRH4MyhSV table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-uHRH4MyhSV table thead tr {
  border: none !important;
}
.cid-uHRH4MyhSV table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  border-top: none;
  border-bottom: 1px solid #5b5b5b;
  color: white;
  vertical-align: middle;
  background: #ffffff;
}
.cid-uHRH4MyhSV table tr {
  border-bottom: 1px solid #c1c1c1;
  border-top: none;
}
.cid-uHRH4MyhSV table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  border: none;
}
.cid-uHRH4MyhSV table.table {
  background: #ffffff;
}
.cid-uHRH4MyhSV tr:hover {
  background-color: #ffa55c !important;
}
.cid-uHRH4MyhSV .head-item:after,
.cid-uHRH4MyhSV .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 767px) {
  .cid-uHRH4MyhSV table th,
  .cid-uHRH4MyhSV table td {
    padding: .75rem;
  }
}
.cid-uHRH4MyhSV .body-item {
  text-align: center;
}
.cid-uHRH4MyhSV .head-item {
  color: #000000;
}
.cid-uHRH4MyhSV .mbr-text {
  color: #767676;
}
.cid-uHRH4MyhSV .mbr-section-title,
.cid-uHRH4MyhSV .underline {
  color: #ffa55c;
  text-align: left;
}
.cid-rF9B8VPGTT {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rF9B8VPGTT .container-fluid {
  padding: 0 3rem;
}
.cid-rF9B8VPGTT .mbr-section-subtitle {
  color: #767676;
  text-align: left;
}
.cid-rF9B8VPGTT .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-rF9B8VPGTT .table-wrapper {
  margin: 0 auto;
}
.cid-rF9B8VPGTT table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-rF9B8VPGTT table thead tr {
  border: none !important;
}
.cid-rF9B8VPGTT table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  border-top: none;
  border-bottom: 1px solid #5b5b5b;
  color: white;
  vertical-align: middle;
  background: #ffffff;
}
.cid-rF9B8VPGTT table tr {
  border-bottom: 1px solid #c1c1c1;
  border-top: none;
}
.cid-rF9B8VPGTT table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  border: none;
}
.cid-rF9B8VPGTT table.table {
  background: #ffffff;
}
.cid-rF9B8VPGTT tr:hover {
  background-color: #ffa55c !important;
}
.cid-rF9B8VPGTT .head-item:after,
.cid-rF9B8VPGTT .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 767px) {
  .cid-rF9B8VPGTT table th,
  .cid-rF9B8VPGTT table td {
    padding: .75rem;
  }
}
.cid-rF9B8VPGTT .body-item {
  text-align: left;
}
.cid-rF9B8VPGTT .head-item {
  color: #000000;
  text-align: left;
}
.cid-rF9B8VPGTT .mbr-text {
  color: #767676;
}
.cid-rF9B8VPGTT .mbr-section-title,
.cid-rF9B8VPGTT .underline {
  color: #ffa55c;
  text-align: left;
}
.cid-uNf16Nfyxd {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #04367c;
}
.cid-uNf16Nfyxd .mbr-text {
  color: #ffffff;
}
.cid-uNf16Nfyxd .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uNf16Nfyxd .mbr-section-title {
  color: #ffffff;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1rem;
}
.cid-uO9ByZmq32 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #1b61a1;
}
.cid-uO9ByZmq32 .container {
  display: flex;
  justify-content: center;
}
.cid-uO9ByZmq32 .row {
  display: flex;
  align-items: stretch;
  max-width: 1194px;
  width: 100%;
}
.cid-uO9ByZmq32 .col-brand {
  margin-bottom: 40px;
}
.cid-uO9ByZmq32 .col-link {
  margin-bottom: 30px;
}
.cid-uO9ByZmq32 .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 25px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
}
.cid-uO9ByZmq32 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uO9ByZmq32 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uO9ByZmq32 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uO9ByZmq32 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uO9ByZmq32 .mbr-section-subtitle {
  color: #ffffff;
  margin-bottom: 20px;
}
.cid-uO9ByZmq32 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uO9ByZmq32 .mbr-iconfont {
  font-size: 16px;
  color: #3b668d;
}
.cid-uO9ByZmq32 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background-color: #eef4fb;
  margin-right: 10px;
  margin-bottom: 10px;
  padding: 5px;
  min-height: 30px;
  min-width: 30px;
}
.cid-uO9ByZmq32 .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uO9ByZmq32 .soc-item:hover {
  background-color: #738bae;
}
.cid-uO9ByZmq32 .soc-item:hover .mbr-iconfont {
  color: #FFFFFF !important;
}
.cid-uO9ByZmq32 .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #010d4c;
}
.cid-uO9ByZmq32 .list li {
  min-height: 44px;
  display: flex;
  align-items: center;
}
.cid-uO9ByZmq32 .list a {
  min-height: 44px;
  display: flex;
  align-items: center;
}
.cid-uO9ByZmq32 .brand-text {
  margin-bottom: 35px;
  color: #ffffff;
  opacity: 0.8;
}
.cid-uO9ByZmq32 .mbr-text {
  color: #00284E;
  opacity: 0.8;
}
.cid-uO9ByZmq32 .mbr-text .text-black {
  color: #00284E !important;
}
.cid-uO9ByZmq32 .mbr-text a {
  opacity: 0.8;
}
.cid-uO9ByZmq32 .mbr-text a:hover {
  opacity: 1;
  color: #04367c !important;
}
.cid-uO9ByZmq32 .col-copyright {
  margin-top: 44px;
}
.cid-uO9ByZmq32 .copyright {
  color: #ffffff;
  opacity: 0.8;
}
@media (max-width: 991px) {
  .cid-uO9ByZmq32 .copyright {
    text-align: center !important;
  }
}
.cid-uO9ByZmq32 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uO9ByZmq32 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFMh2eyzqq {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uFMh2eyzqq .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uFMh2eyzqq .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-uFMh2eyzqq .iconfont-wrapper {
  color: #103178 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-uFMh2eyzqq .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-uFMh2eyzqq .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-uFMh2eyzqq .container {
    padding: 0 1rem;
  }
}
.cid-uFMh2eyzqq .menu-tite {
  background: #04367c;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-uFMh2eyzqq .nav-link {
  position: relative;
}
.cid-uFMh2eyzqq .nav-link:hover {
  color: #51aafa !important;
}
.cid-uFMh2eyzqq nav.navbar {
  position: fixed;
}
.cid-uFMh2eyzqq .navbar {
  padding: 0!important;
  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-uFMh2eyzqq .navbar.opened {
  transition: all 0.3s;
}
.cid-uFMh2eyzqq .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uFMh2eyzqq .navbar .navbar-logo img {
  width: auto;
}
.cid-uFMh2eyzqq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uFMh2eyzqq .navbar.collapsed {
  justify-content: center;
}
.cid-uFMh2eyzqq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uFMh2eyzqq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uFMh2eyzqq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uFMh2eyzqq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uFMh2eyzqq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uFMh2eyzqq .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-uFMh2eyzqq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uFMh2eyzqq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uFMh2eyzqq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uFMh2eyzqq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uFMh2eyzqq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uFMh2eyzqq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uFMh2eyzqq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uFMh2eyzqq .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-uFMh2eyzqq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uFMh2eyzqq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uFMh2eyzqq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uFMh2eyzqq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uFMh2eyzqq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uFMh2eyzqq .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uFMh2eyzqq .navbar.navbar-short {
  min-height: 60px;
}
.cid-uFMh2eyzqq .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uFMh2eyzqq .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uFMh2eyzqq .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-uFMh2eyzqq .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uFMh2eyzqq .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uFMh2eyzqq .dropdown-item:hover,
.cid-uFMh2eyzqq .dropdown-item:focus {
  background: #04367c !important;
  color: white !important;
}
.cid-uFMh2eyzqq .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uFMh2eyzqq .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uFMh2eyzqq .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-uFMh2eyzqq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uFMh2eyzqq .dropdown-menu,
.cid-uFMh2eyzqq .navbar.opened {
  background: #ffffff !important;
}
.cid-uFMh2eyzqq .nav-item:focus,
.cid-uFMh2eyzqq .nav-link:focus {
  outline: none;
}
.cid-uFMh2eyzqq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uFMh2eyzqq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uFMh2eyzqq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uFMh2eyzqq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uFMh2eyzqq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uFMh2eyzqq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uFMh2eyzqq .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uFMh2eyzqq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uFMh2eyzqq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uFMh2eyzqq .dropdown-item.active,
.cid-uFMh2eyzqq .dropdown-item:active {
  background-color: transparent;
}
.cid-uFMh2eyzqq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uFMh2eyzqq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uFMh2eyzqq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uFMh2eyzqq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uFMh2eyzqq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uFMh2eyzqq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uFMh2eyzqq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uFMh2eyzqq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uFMh2eyzqq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uFMh2eyzqq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uFMh2eyzqq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uFMh2eyzqq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFMh2eyzqq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFMh2eyzqq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uFMh2eyzqq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFMh2eyzqq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uFMh2eyzqq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uFMh2eyzqq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFMh2eyzqq .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uFMh2eyzqq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uFMh2eyzqq .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-uFMh2eyzqq .navbar {
    height: 70px;
  }
  .cid-uFMh2eyzqq .navbar.opened {
    height: auto;
  }
  .cid-uFMh2eyzqq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uN9z4kxh8d {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-uN9z4kxh8d .mbr-text,
.cid-uN9z4kxh8d .mbr-section-btn {
  color: #bbbbbb;
}
.cid-uN9z4kxh8d .mbr-fallback-image.disabled {
  display: none;
}
.cid-uN9z4kxh8d .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLDJJJGd5r {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/mbr-1920x1152.jpg");
}
.cid-uK1ZV5FFB9 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #eaeff1;
}
.cid-uK1ZV5FFB9 img {
  width: 100%;
}
.cid-uK1ZV5FFB9 .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #04367c;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 26px;
}
.cid-uK1ZV5FFB9 .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-uK1ZV5FFB9 .mbr-section-subtitle {
  color: #999999;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-uK1ZV5FFB9 .contents {
  margin-top: 36px;
}
.cid-uK1ZV5FFB9 .contents .content-text {
  color: #606060;
  font-weight: 300;
}
.cid-uK1ZV5FFB9 .mbr-section-btn {
  margin-top: 8px;
}
.cid-uK1ZV5FFB9 .mbr-section-btn .btn {
  padding: 18px 26px;
}
.cid-uK1ZV5FFB9 .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-uK1ZV5FFB9 .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
.cid-uK1ZV5FFB9 .contents .mbr-text,
.cid-uK1ZV5FFB9 .mbr-section-btn {
  color: #343351;
}
.cid-uK1ZV5FFB9 .main-title {
  color: #188ef4;
}
.cid-uNNwEKiU90 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/mbr-1920x1152.jpg");
}
.cid-uftjfxx8VR {
  padding-top: 75px;
  padding-bottom: 75px;
  position: relative;
  background-color: #ffffff;
}
.cid-uftjfxx8VR .card-header {
  background: transparent;
}
.cid-uftjfxx8VR img {
  width: 90%;
  box-shadow: 0px 30px 70px 0px rgba(0, 0, 0, 0.15);
  margin: auto;
}
@media (max-width: 992px) {
  .cid-uftjfxx8VR .wrapper {
    padding: 0;
  }
  .cid-uftjfxx8VR img {
    width: 100%;
    padding: 0rem;
    margin-bottom: 2rem;
  }
}
.cid-uftjfxx8VR .mbr-iconfont {
  font-size: 1rem !important;
  font-family: "Moririse2" !important;
}
.cid-uftjfxx8VR .mbr-iconfont:before {
  content: "\e960";
}
.cid-uftjfxx8VR .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-uftjfxx8VR .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-uftjfxx8VR .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-uftjfxx8VR .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-uftjfxx8VR .card .card-header a.panel-title h5 .sign {
  padding-right: 1rem;
}
.cid-uftjfxx8VR .card .panel-body {
  color: #767676;
  padding-top: 1rem;
}
.cid-uftjfxx8VR h5 {
  flex-direction: row-reverse;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0rem;
  border-bottom: 1px solid #e5e5e5;
  padding: 1rem 0rem;
}
@media (max-width: 767px) {
  .cid-uftjfxx8VR .wrapper {
    padding: 2rem 1rem;
  }
  .cid-uftjfxx8VR h5 {
    padding: 1rem 0rem;
  }
}
.cid-uftjfxx8VR .mbr-text,
.cid-uftjfxx8VR .mbr-section-btn {
  color: #ffffff;
}
.cid-uftjfxx8VR .panel-text {
  color: #555555;
}
.cid-uftjfxx8VR H4 {
  color: #ffffff;
}
.cid-uftjfxx8VR H5 {
  color: #000000;
}
.cid-uftjfxx8VR H3 {
  color: #098484;
  text-align: left;
}
.cid-uftjfxx8VR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uftjfxx8VR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-rEWUnbjZ97 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f4f8fa;
  background: linear-gradient(0deg, #f4f8fa, #ffffff);
}
.cid-rEWUnbjZ97 .mbr-section-title {
  color: #444444;
  text-align: center;
}
.cid-rEWUnbjZ97 .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-rEWUnbjZ97 .mbr-text {
  color: #8d97ad;
}
.cid-rEWUnbjZ97 .nav {
  border: none;
}
.cid-rEWUnbjZ97 .nav-tabs {
  display: table;
  width: 100%;
}
.cid-rEWUnbjZ97 .nav-tabs .nav-item {
  display: table-cell;
}
.cid-rEWUnbjZ97 .card-img {
  overflow: hidden;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-rEWUnbjZ97 .tab-content {
  margin-top: 3rem;
}
.cid-rEWUnbjZ97 .nav-tabs .nav-link {
  display: flex;
  color: #000000;
  box-sizing: border-box;
  font-style: normal;
  background: #f4f8fa;
  font-weight: 500;
  padding: 1rem 1rem;
  border-right: 1px solid #dee2e6;
  border-top: 1px solid #dee2e6;
  border-left: 1px solid #dee2e6;
  margin: 0px;
  border-radius: 0px !important;
  border-bottom: 1px solid #dee2e6;
  transition: all .3s;
}
.cid-rEWUnbjZ97 .nav-tabs .nav-link:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-rEWUnbjZ97 .nav-tabs .nav-link.active {
  font-weight: 500;
  color: #000000;
  font-style: normal;
  background: #ffffff;
  border-bottom: none;
}
.cid-rEWUnbjZ97 .nav-tabs .nav-link span {
  margin-right: 0.5rem;
}
@media (max-width: 767px) {
  .cid-rEWUnbjZ97 .nav-item {
    display: table-row !important;
  }
}
.cid-swSyi3xXq6 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f4f8fa;
  background: linear-gradient(0deg, #f4f8fa, #ffffff);
}
.cid-swSyi3xXq6 .mbr-section-title {
  color: #444444;
}
.cid-swSyi3xXq6 .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-swSyi3xXq6 .mbr-text {
  color: #8d97ad;
}
.cid-swSyi3xXq6 .nav {
  border: none;
}
.cid-swSyi3xXq6 .nav-tabs {
  display: table;
  width: 100%;
}
.cid-swSyi3xXq6 .nav-tabs .nav-item {
  display: table-cell;
}
.cid-swSyi3xXq6 .card-img {
  overflow: hidden;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-swSyi3xXq6 .tab-content {
  margin-top: 3rem;
}
.cid-swSyi3xXq6 .nav-tabs .nav-link {
  display: flex;
  color: #000000;
  box-sizing: border-box;
  font-style: normal;
  background: #f4f8fa;
  font-weight: 500;
  padding: 1rem 1rem;
  border-right: 1px solid #dee2e6;
  border-top: 1px solid #dee2e6;
  border-left: 1px solid #dee2e6;
  margin: 0px;
  border-radius: 0px !important;
  border-bottom: 1px solid #dee2e6;
  transition: all .3s;
}
.cid-swSyi3xXq6 .nav-tabs .nav-link:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-swSyi3xXq6 .nav-tabs .nav-link.active {
  font-weight: 500;
  color: #000000;
  font-style: normal;
  background: #ffffff;
  border-bottom: none;
}
.cid-swSyi3xXq6 .nav-tabs .nav-link span {
  margin-right: 0.5rem;
}
@media (max-width: 767px) {
  .cid-swSyi3xXq6 .nav-item {
    display: table-row !important;
  }
}
.cid-swTnpmUpzl {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f4f8fa;
  background: linear-gradient(0deg, #f4f8fa, #ffffff);
}
.cid-swTnpmUpzl .mbr-section-title {
  color: #444444;
}
.cid-swTnpmUpzl .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-swTnpmUpzl .mbr-text {
  color: #8d97ad;
}
.cid-swTnpmUpzl .nav {
  border: none;
}
.cid-swTnpmUpzl .nav-tabs {
  display: table;
  width: 100%;
}
.cid-swTnpmUpzl .nav-tabs .nav-item {
  display: table-cell;
}
.cid-swTnpmUpzl .card-img {
  overflow: hidden;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-swTnpmUpzl .tab-content {
  margin-top: 3rem;
}
.cid-swTnpmUpzl .nav-tabs .nav-link {
  display: flex;
  color: #000000;
  box-sizing: border-box;
  font-style: normal;
  background: #f4f8fa;
  font-weight: 500;
  padding: 1rem 1rem;
  border-right: 1px solid #dee2e6;
  border-top: 1px solid #dee2e6;
  border-left: 1px solid #dee2e6;
  margin: 0px;
  border-radius: 0px !important;
  border-bottom: 1px solid #dee2e6;
  transition: all .3s;
}
.cid-swTnpmUpzl .nav-tabs .nav-link:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-swTnpmUpzl .nav-tabs .nav-link.active {
  font-weight: 500;
  color: #000000;
  font-style: normal;
  background: #ffffff;
  border-bottom: none;
}
.cid-swTnpmUpzl .nav-tabs .nav-link span {
  margin-right: 0.5rem;
}
@media (max-width: 767px) {
  .cid-swTnpmUpzl .nav-item {
    display: table-row !important;
  }
}
.cid-sx54uaO7VB {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f4f8fa;
  background: linear-gradient(0deg, #f4f8fa, #ffffff);
}
.cid-sx54uaO7VB .mbr-section-title {
  color: #444444;
}
.cid-sx54uaO7VB .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-sx54uaO7VB .mbr-text {
  color: #8d97ad;
}
.cid-sx54uaO7VB .nav {
  border: none;
}
.cid-sx54uaO7VB .nav-tabs {
  display: table;
  width: 100%;
}
.cid-sx54uaO7VB .nav-tabs .nav-item {
  display: table-cell;
}
.cid-sx54uaO7VB .card-img {
  overflow: hidden;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-sx54uaO7VB .tab-content {
  margin-top: 3rem;
}
.cid-sx54uaO7VB .nav-tabs .nav-link {
  display: flex;
  color: #000000;
  box-sizing: border-box;
  font-style: normal;
  background: #f4f8fa;
  font-weight: 500;
  padding: 1rem 1rem;
  border-right: 1px solid #dee2e6;
  border-top: 1px solid #dee2e6;
  border-left: 1px solid #dee2e6;
  margin: 0px;
  border-radius: 0px !important;
  border-bottom: 1px solid #dee2e6;
  transition: all .3s;
}
.cid-sx54uaO7VB .nav-tabs .nav-link:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-sx54uaO7VB .nav-tabs .nav-link.active {
  font-weight: 500;
  color: #000000;
  font-style: normal;
  background: #ffffff;
  border-bottom: none;
}
.cid-sx54uaO7VB .nav-tabs .nav-link span {
  margin-right: 0.5rem;
}
@media (max-width: 767px) {
  .cid-sx54uaO7VB .nav-item {
    display: table-row !important;
  }
}
.cid-sx4WwsAcXQ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f4f8fa;
  background: linear-gradient(0deg, #f4f8fa, #ffffff);
}
.cid-sx4WwsAcXQ .mbr-section-title {
  color: #444444;
}
.cid-sx4WwsAcXQ .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-sx4WwsAcXQ .mbr-text {
  color: #8d97ad;
}
.cid-sx4WwsAcXQ .nav {
  border: none;
}
.cid-sx4WwsAcXQ .nav-tabs {
  display: table;
  width: 100%;
}
.cid-sx4WwsAcXQ .nav-tabs .nav-item {
  display: table-cell;
}
.cid-sx4WwsAcXQ .card-img {
  overflow: hidden;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-sx4WwsAcXQ .tab-content {
  margin-top: 3rem;
}
.cid-sx4WwsAcXQ .nav-tabs .nav-link {
  display: flex;
  color: #000000;
  box-sizing: border-box;
  font-style: normal;
  background: #f4f8fa;
  font-weight: 500;
  padding: 1rem 1rem;
  border-right: 1px solid #dee2e6;
  border-top: 1px solid #dee2e6;
  border-left: 1px solid #dee2e6;
  margin: 0px;
  border-radius: 0px !important;
  border-bottom: 1px solid #dee2e6;
  transition: all .3s;
}
.cid-sx4WwsAcXQ .nav-tabs .nav-link:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-sx4WwsAcXQ .nav-tabs .nav-link.active {
  font-weight: 500;
  color: #000000;
  font-style: normal;
  background: #ffffff;
  border-bottom: none;
}
.cid-sx4WwsAcXQ .nav-tabs .nav-link span {
  margin-right: 0.5rem;
}
@media (max-width: 767px) {
  .cid-sx4WwsAcXQ .nav-item {
    display: table-row !important;
  }
}
.cid-uLDJRR26eG {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/mbr-1920x1152.jpg");
}
.cid-uLDMEyyKC3 {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uLDMEyyKC3 .card-box {
  display: flex;
  flex-direction: column;
  position: relative;
  justify-content: center;
  margin: auto auto 1rem 2rem;
  height: fit-content;
  max-width: 300px;
}
.cid-uLDMEyyKC3 .card-wrap {
  background-color: #232323;
  display: flex;
  height: 100%;
  min-height: 300px;
}
.cid-uLDMEyyKC3 .card-wrap:hover h4,
.cid-uLDMEyyKC3 .card-wrap:hover a {
  background-size: 100% 100%;
}
.cid-uLDMEyyKC3 h3 {
  position: absolute;
  transform: rotate(-90deg);
  transform-origin: top left;
  width: fit-content;
  padding: 0;
  margin: 0;
  left: 0rem;
  top: -1rem;
}
.cid-uLDMEyyKC3 h3:after {
  content: "";
  width: 30px;
  position: absolute;
  top: 50%;
  height: 1px;
  background-color: #ffffff;
  margin-left: 10px;
}
.cid-uLDMEyyKC3 img {
  width: 100%;
}
.cid-uLDMEyyKC3 h4 {
  display: inline!important;
  text-decoration: none;
  background-image: linear-gradient(transparent calc(98%), currentColor 1px);
  background-repeat: no-repeat;
  background-position: 0;
  background-size: 0% 100%;
  transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.cid-uLDMEyyKC3 h4 a {
  display: inline!important;
  text-decoration: none;
  background-image: linear-gradient(transparent calc(98%), currentColor 1px) !important;
  background-repeat: no-repeat;
  background-position: 0;
  background-size: 0% 100%;
  transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.cid-uLDMEyyKC3 .card-title1,
.cid-uLDMEyyKC3 .title-wrap1 {
  color: #ffffff;
}
.cid-uLDMEyyKC3 .card-title,
.cid-uLDMEyyKC3 .title-wrap {
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uLDMEyyKC3 .mdpb {
    padding-bottom: 2rem;
  }
  .cid-uLDMEyyKC3 .card-box {
    margin: auto auto 0rem 1rem;
  }
}
.cid-uLDMEyyKC3 H3 {
  color: #ffffff;
}
.cid-uLDK1AioVV {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uLDK1AioVV .card {
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uLDK1AioVV .card .card-img {
  width: 20%;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uLDK1AioVV .card .card-box {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  width: 80%;
  padding-left: 1rem;
}
.cid-uLDK1AioVV .card .card-img span {
  color: #767676;
  font-size: 60px;
}
.cid-uLDK1AioVV .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-uLDK1AioVV .card {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-uLDK1AioVV .card .card-img {
    width: 100%;
    padding-bottom: 1.5rem;
  }
  .cid-uLDK1AioVV .card .card-box {
    width: 100%;
    padding-left: 0;
  }
  .cid-uLDK1AioVV .card .card-box .card-title,
  .cid-uLDK1AioVV .card .card-box .mbr-text,
  .cid-uLDK1AioVV .card .card-box .link {
    text-align: center;
  }
}
@media (min-width: 768px) {
  .cid-uLDK1AioVV .card {
    padding-right: 2rem;
    padding-left: 2rem;
  }
  .cid-uLDK1AioVV .card .card-img {
    text-align: right !important;
  }
}
.cid-uLDK2mU65B {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uLDK2mU65B .mbr-overlay {
  background: #efefef;
}
.cid-uLDK2mU65B .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-uLDK2mU65B .client-name {
  color: #8d97ad;
}
.cid-uLDK2mU65B .wrap-img {
  padding-bottom: 1rem;
}
.cid-uLDK2mU65B .wrap-img img {
  max-width: 100%;
  display: inline-block;
  width: auto;
}
.cid-uLDK2mU65B .card-box p {
  color: #8d97ad;
  margin: 0;
  padding-bottom: 1.5rem;
}
.cid-uLDQ0qA1e0 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fbfbfb;
}
.cid-uLDQ0qA1e0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLDQ0qA1e0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLDQ0qA1e0 .title-col {
  width: 25%;
}
@media (max-width: 991px) {
  .cid-uLDQ0qA1e0 .title-col {
    padding-right: 2rem !important;
    padding-left: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-uLDQ0qA1e0 .title-col {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-uLDQ0qA1e0 .mbr-section-title {
  color: #727272;
  width: 80%;
}
@media (max-width: 991px) {
  .cid-uLDQ0qA1e0 .mbr-section-title {
    width: 100%;
  }
}
.cid-uLDQ0qA1e0 .mbr-section-subtitle {
  color: #727272;
  width: 80%;
}
@media (max-width: 991px) {
  .cid-uLDQ0qA1e0 .mbr-section-subtitle {
    width: 100%;
  }
}
.cid-uLDQ0qA1e0 .lists-col {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 75%;
}
@media (max-width: 767px) {
  .cid-uLDQ0qA1e0 .lists-col {
    width: 100%;
    flex-wrap: wrap;
    padding: 0 !important;
  }
}
.cid-uLDQ0qA1e0 .col-list {
  width: 46%;
}
@media (max-width: 767px) {
  .cid-uLDQ0qA1e0 .col-list {
    width: 100%;
    margin: 4rem 0;
  }
}
.cid-uLDQ0qA1e0 .list-title {
  color: #000000;
  width: 100%;
  padding-bottom: 30px;
  margin-bottom: 0;
  border-bottom: 2px solid currentColor;
}
@media (max-width: 991px) {
  .cid-uLDQ0qA1e0 .list-title {
    padding-bottom: 20px;
  }
}
.cid-uLDQ0qA1e0 .list {
  list-style: none;
  margin: 2rem 0 0 0;
  padding-left: 0;
}
.cid-uLDQ0qA1e0 li {
  position: relative;
  padding: 0.5rem 0 0.5rem 1.6rem;
  margin-bottom: 0;
}
.cid-uLDQ0qA1e0 ul li::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: flex-start;
  content: "\2022";
  color: #04367c;
  font-weight: bold;
  font-size: 1.6rem;
  width: 1.6rem;
}
.cid-uLDOHU4zji {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uLDOHU4zji .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLDOHU4zji .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLDOHU4zji .card-title {
  min-width: 250px;
}
.cid-uLDOHU4zji .card-text {
  padding-left: 4rem;
}
@media (max-width: 767px) {
  .cid-uLDOHU4zji .card-text {
    padding-left: 0rem;
  }
}
.cid-uLDOHU4zji .mbr-iconfont {
  font-size: 1rem;
  color: #188ef4;
  border-radius: 50%;
  background: #04367c;
  width: 35px;
  height: 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.cid-uLDOHU4zji .card-wrapper {
  display: flex;
  transition: all 0.3s;
  justify-content: space-between;
  align-items: center;
  background: #e8e8e8;
  margin-bottom: 1rem;
  padding: 1.5rem 1.5rem;
}
@media (max-width: 767px) {
  .cid-uLDOHU4zji .card-wrapper {
    flex-direction: column;
  }
}
.cid-uLDOHU4zji .card-wrapper:hover {
  background: #188ef4;
  color: white;
}
.cid-uLDOHU4zji .text-wrap {
  display: flex;
}
@media (max-width: 767px) {
  .cid-uLDOHU4zji .text-wrap {
    flex-direction: column;
    padding-bottom: 1rem;
  }
}
.cid-uLDOHU4zji .mbr-section-title {
  color: #04367c;
}
.cid-uO9ByZmq32 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #1b61a1;
}
.cid-uO9ByZmq32 .container {
  display: flex;
  justify-content: center;
}
.cid-uO9ByZmq32 .row {
  display: flex;
  align-items: stretch;
  max-width: 1194px;
  width: 100%;
}
.cid-uO9ByZmq32 .col-brand {
  margin-bottom: 40px;
}
.cid-uO9ByZmq32 .col-link {
  margin-bottom: 30px;
}
.cid-uO9ByZmq32 .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 25px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
}
.cid-uO9ByZmq32 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uO9ByZmq32 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uO9ByZmq32 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uO9ByZmq32 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uO9ByZmq32 .mbr-section-subtitle {
  color: #ffffff;
  margin-bottom: 20px;
}
.cid-uO9ByZmq32 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uO9ByZmq32 .mbr-iconfont {
  font-size: 16px;
  color: #3b668d;
}
.cid-uO9ByZmq32 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background-color: #eef4fb;
  margin-right: 10px;
  margin-bottom: 10px;
  padding: 5px;
  min-height: 30px;
  min-width: 30px;
}
.cid-uO9ByZmq32 .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uO9ByZmq32 .soc-item:hover {
  background-color: #738bae;
}
.cid-uO9ByZmq32 .soc-item:hover .mbr-iconfont {
  color: #FFFFFF !important;
}
.cid-uO9ByZmq32 .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #010d4c;
}
.cid-uO9ByZmq32 .list li {
  min-height: 44px;
  display: flex;
  align-items: center;
}
.cid-uO9ByZmq32 .list a {
  min-height: 44px;
  display: flex;
  align-items: center;
}
.cid-uO9ByZmq32 .brand-text {
  margin-bottom: 35px;
  color: #ffffff;
  opacity: 0.8;
}
.cid-uO9ByZmq32 .mbr-text {
  color: #00284E;
  opacity: 0.8;
}
.cid-uO9ByZmq32 .mbr-text .text-black {
  color: #00284E !important;
}
.cid-uO9ByZmq32 .mbr-text a {
  opacity: 0.8;
}
.cid-uO9ByZmq32 .mbr-text a:hover {
  opacity: 1;
  color: #04367c !important;
}
.cid-uO9ByZmq32 .col-copyright {
  margin-top: 44px;
}
.cid-uO9ByZmq32 .copyright {
  color: #ffffff;
  opacity: 0.8;
}
@media (max-width: 991px) {
  .cid-uO9ByZmq32 .copyright {
    text-align: center !important;
  }
}
.cid-uO9ByZmq32 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uO9ByZmq32 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFMh2eyzqq {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uFMh2eyzqq .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uFMh2eyzqq .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-uFMh2eyzqq .iconfont-wrapper {
  color: #103178 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-uFMh2eyzqq .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-uFMh2eyzqq .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-uFMh2eyzqq .container {
    padding: 0 1rem;
  }
}
.cid-uFMh2eyzqq .menu-tite {
  background: #04367c;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-uFMh2eyzqq .nav-link {
  position: relative;
}
.cid-uFMh2eyzqq .nav-link:hover {
  color: #51aafa !important;
}
.cid-uFMh2eyzqq nav.navbar {
  position: fixed;
}
.cid-uFMh2eyzqq .navbar {
  padding: 0!important;
  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-uFMh2eyzqq .navbar.opened {
  transition: all 0.3s;
}
.cid-uFMh2eyzqq .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uFMh2eyzqq .navbar .navbar-logo img {
  width: auto;
}
.cid-uFMh2eyzqq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uFMh2eyzqq .navbar.collapsed {
  justify-content: center;
}
.cid-uFMh2eyzqq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uFMh2eyzqq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uFMh2eyzqq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uFMh2eyzqq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uFMh2eyzqq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uFMh2eyzqq .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-uFMh2eyzqq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uFMh2eyzqq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uFMh2eyzqq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uFMh2eyzqq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uFMh2eyzqq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uFMh2eyzqq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uFMh2eyzqq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uFMh2eyzqq .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-uFMh2eyzqq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uFMh2eyzqq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uFMh2eyzqq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uFMh2eyzqq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uFMh2eyzqq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uFMh2eyzqq .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uFMh2eyzqq .navbar.navbar-short {
  min-height: 60px;
}
.cid-uFMh2eyzqq .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uFMh2eyzqq .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uFMh2eyzqq .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-uFMh2eyzqq .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uFMh2eyzqq .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uFMh2eyzqq .dropdown-item:hover,
.cid-uFMh2eyzqq .dropdown-item:focus {
  background: #04367c !important;
  color: white !important;
}
.cid-uFMh2eyzqq .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uFMh2eyzqq .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uFMh2eyzqq .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-uFMh2eyzqq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uFMh2eyzqq .dropdown-menu,
.cid-uFMh2eyzqq .navbar.opened {
  background: #ffffff !important;
}
.cid-uFMh2eyzqq .nav-item:focus,
.cid-uFMh2eyzqq .nav-link:focus {
  outline: none;
}
.cid-uFMh2eyzqq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uFMh2eyzqq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uFMh2eyzqq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uFMh2eyzqq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uFMh2eyzqq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uFMh2eyzqq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uFMh2eyzqq .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uFMh2eyzqq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uFMh2eyzqq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uFMh2eyzqq .dropdown-item.active,
.cid-uFMh2eyzqq .dropdown-item:active {
  background-color: transparent;
}
.cid-uFMh2eyzqq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uFMh2eyzqq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uFMh2eyzqq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uFMh2eyzqq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uFMh2eyzqq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uFMh2eyzqq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uFMh2eyzqq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uFMh2eyzqq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uFMh2eyzqq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uFMh2eyzqq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uFMh2eyzqq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uFMh2eyzqq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFMh2eyzqq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFMh2eyzqq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uFMh2eyzqq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFMh2eyzqq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uFMh2eyzqq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uFMh2eyzqq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFMh2eyzqq .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uFMh2eyzqq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uFMh2eyzqq .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-uFMh2eyzqq .navbar {
    height: 70px;
  }
  .cid-uFMh2eyzqq .navbar.opened {
    height: auto;
  }
  .cid-uFMh2eyzqq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rz6GdIM9vx {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/mbr-19-1920x1280.jpg");
}
.cid-rz6GdIM9vx .mbr-overlay {
  background: #8d97ad;
}
.cid-rz6GdIM9vx .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-rz6GdIM9vx H1 {
  color: #ffffff;
  text-align: center;
}
.cid-rz6GdIM9vx .mbr-section-subtitle,
.cid-rz6GdIM9vx .mbr-section-btn {
  color: #000000;
}
.cid-uJERPsFGaU {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #e8e8e8;
}
.cid-uJERPsFGaU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJERPsFGaU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJERPsFGaU .container-fluid {
  margin: 0;
  padding: 0 72px;
}
@media (max-width: 992px) {
  .cid-uJERPsFGaU .container-fluid {
    padding: 0 20px;
  }
}
.cid-uJERPsFGaU .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uJERPsFGaU .container {
    padding: 0 20px;
  }
  .cid-uJERPsFGaU .container .row {
    padding: 0;
  }
}
.cid-uJERPsFGaU .row {
  justify-content: center;
}
.cid-uJERPsFGaU .title-wrapper {
  position: relative;
}
.cid-uJERPsFGaU .title-wrapper .mbr-section-title {
  position: relative;
  margin-bottom: 90px;
}
@media (max-width: 992px) {
  .cid-uJERPsFGaU .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uJERPsFGaU .title-wrapper .container-color {
  position: absolute;
  top: 0;
  left: -60%;
  height: 100px;
  width: 100%;
  background-color: #f7f7f7;
}
@media (max-width: 992px) {
  .cid-uJERPsFGaU .title-wrapper .container-color {
    left: -20%;
  }
}
@media (max-width: 992px) {
  .cid-uJERPsFGaU .card {
    margin-bottom: 40px;
  }
}
.cid-uJERPsFGaU .card .card-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.cid-uJERPsFGaU .card .card-wrapper .text-wrap .mbr-card-title {
  margin-bottom: 20px;
}
.cid-uJERPsFGaU .card .card-wrapper .text-wrap .mbr-text {
  margin-bottom: 10px;
}
.cid-uJERPsFGaU .card .card-wrapper .mbr-section-btn .btn .mbr-iconfont {
  color: #365c9a;
}
.cid-uJERPsFGaU .mbr-section-title {
  color: #365c9a;
}
.cid-uJERPsFGaU .mbr-card-title {
  color: #222222;
}
.cid-uJERPsFGaU .mbr-text {
  color: #000000;
}
.cid-uJERPsFGaU .mbr-card-title,
.cid-uJERPsFGaU .mbr-section-btn {
  color: #365c9a;
}
.cid-rxG7t14y2s {
  padding-top: 105px;
  padding-bottom: 105px;
  background-color: #ffffff;
}
.cid-rxG7t14y2s .mbr-overlay {
  background: #efefef;
  background: linear-gradient(to right, #efefef, #51aafa);
}
.cid-rxG7t14y2s .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rxG7t14y2s .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-rxG7t14y2s .carousel-item .wrap-img {
  text-align: center;
}
.cid-rxG7t14y2s .carousel-item .wrap-img img {
  max-height: 150px;
  width: auto;
  max-width: 100%;
}
.cid-rxG7t14y2s .carousel-controls {
  position: absolute;
  width: 100%;
  top: 0;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.cid-rxG7t14y2s .carousel-controls .carousel-control {
  z-index: 2;
  background: transparent;
  position: static;
  width: 40px;
  height: 40px;
  margin-top: 2rem;
  color: #04367c;
  font-weight: bold;
}
.cid-rxG7t14y2s .carousel-controls .carousel-control.carousel-control-prev {
  left: auto;
  margin-right: 20px;
  margin-left: 0;
}
.cid-rxG7t14y2s .carousel-controls .carousel-control.carousel-control-next {
  right: auto;
  margin-right: 0;
}
.cid-rxG7t14y2s .carousel-controls .carousel-control .mbr-iconfont {
  font-size: 1.2rem;
  font-weight: bold;
}
.cid-rxG7t14y2s .cloneditem-1,
.cid-rxG7t14y2s .cloneditem-2,
.cid-rxG7t14y2s .cloneditem-3,
.cid-rxG7t14y2s .cloneditem-4,
.cid-rxG7t14y2s .cloneditem-5 {
  display: none;
}
.cid-rxG7t14y2s .col-lg-15 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  -webkit-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
  position: relative;
  min-height: 1px;
  padding-right: 10px;
  padding-left: 10px;
  width: 100%;
}
@media (min-width: 992px) {
  .cid-rxG7t14y2s .col-lg-15 {
    -ms-flex: 0 0 20%;
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    width: 20%;
  }
  .cid-rxG7t14y2s .carousel-inner {
    z-index: 1;
  }
  .cid-rxG7t14y2s .carousel-inner.slides2 > .carousel-item.active.carousel-item-right,
  .cid-rxG7t14y2s .carousel-inner.slides2 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(50%, 0, 0);
    transform: translate3d(50%, 0, 0);
  }
  .cid-rxG7t14y2s .carousel-inner.slides2 > .carousel-item.active.carousel-item-left,
  .cid-rxG7t14y2s .carousel-inner.slides2 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
  .cid-rxG7t14y2s .carousel-inner.slides2 > .carousel-item.carousel-item-left,
  .cid-rxG7t14y2s .carousel-inner.slides2 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-rxG7t14y2s .carousel-inner.slides2 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-rxG7t14y2s .carousel-inner.slides2 .cloneditem-1,
  .cid-rxG7t14y2s .carousel-inner.slides2 .cloneditem-2,
  .cid-rxG7t14y2s .carousel-inner.slides2 .cloneditem-3 {
    display: block;
  }
  .cid-rxG7t14y2s .carousel-inner.slides3 > .carousel-item.active.carousel-item-right,
  .cid-rxG7t14y2s .carousel-inner.slides3 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(33.333333%, 0, 0);
    transform: translate3d(33.333333%, 0, 0);
  }
  .cid-rxG7t14y2s .carousel-inner.slides3 > .carousel-item.active.carousel-item-left,
  .cid-rxG7t14y2s .carousel-inner.slides3 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-33.333333%, 0, 0);
    transform: translate3d(-33.333333%, 0, 0);
  }
  .cid-rxG7t14y2s .carousel-inner.slides3 > .carousel-item.carousel-item-left,
  .cid-rxG7t14y2s .carousel-inner.slides3 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-rxG7t14y2s .carousel-inner.slides3 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-rxG7t14y2s .carousel-inner.slides3 .cloneditem-1,
  .cid-rxG7t14y2s .carousel-inner.slides3 .cloneditem-2,
  .cid-rxG7t14y2s .carousel-inner.slides3 .cloneditem-3 {
    display: block;
  }
  .cid-rxG7t14y2s .carousel-inner.slides4 > .carousel-item.active.carousel-item-right,
  .cid-rxG7t14y2s .carousel-inner.slides4 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(25%, 0, 0);
    transform: translate3d(25%, 0, 0);
  }
  .cid-rxG7t14y2s .carousel-inner.slides4 > .carousel-item.active.carousel-item-left,
  .cid-rxG7t14y2s .carousel-inner.slides4 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-25%, 0, 0);
    transform: translate3d(-25%, 0, 0);
  }
  .cid-rxG7t14y2s .carousel-inner.slides4 > .carousel-item.carousel-item-left,
  .cid-rxG7t14y2s .carousel-inner.slides4 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-rxG7t14y2s .carousel-inner.slides4 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-rxG7t14y2s .carousel-inner.slides4 .cloneditem-1,
  .cid-rxG7t14y2s .carousel-inner.slides4 .cloneditem-2,
  .cid-rxG7t14y2s .carousel-inner.slides4 .cloneditem-3 {
    display: block;
  }
  .cid-rxG7t14y2s .carousel-inner.slides5 > .carousel-item.active.carousel-item-right,
  .cid-rxG7t14y2s .carousel-inner.slides5 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(20%, 0, 0);
    transform: translate3d(20%, 0, 0);
  }
  .cid-rxG7t14y2s .carousel-inner.slides5 > .carousel-item.active.carousel-item-left,
  .cid-rxG7t14y2s .carousel-inner.slides5 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-20%, 0, 0);
    transform: translate3d(-20%, 0, 0);
  }
  .cid-rxG7t14y2s .carousel-inner.slides5 > .carousel-item.carousel-item-left,
  .cid-rxG7t14y2s .carousel-inner.slides5 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-rxG7t14y2s .carousel-inner.slides5 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-rxG7t14y2s .carousel-inner.slides5 .cloneditem-1,
  .cid-rxG7t14y2s .carousel-inner.slides5 .cloneditem-2,
  .cid-rxG7t14y2s .carousel-inner.slides5 .cloneditem-3,
  .cid-rxG7t14y2s .carousel-inner.slides5 .cloneditem-4 {
    display: block;
  }
  .cid-rxG7t14y2s .carousel-inner.slides6 > .carousel-item.active.carousel-item-right,
  .cid-rxG7t14y2s .carousel-inner.slides6 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(16.666667%, 0, 0);
    transform: translate3d(16.666667%, 0, 0);
  }
  .cid-rxG7t14y2s .carousel-inner.slides6 > .carousel-item.active.carousel-item-left,
  .cid-rxG7t14y2s .carousel-inner.slides6 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-16.666667%, 0, 0);
    transform: translate3d(-16.666667%, 0, 0);
  }
  .cid-rxG7t14y2s .carousel-inner.slides6 > .carousel-item.carousel-item-left,
  .cid-rxG7t14y2s .carousel-inner.slides6 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-rxG7t14y2s .carousel-inner.slides6 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-rxG7t14y2s .carousel-inner.slides6 .cloneditem-1,
  .cid-rxG7t14y2s .carousel-inner.slides6 .cloneditem-2,
  .cid-rxG7t14y2s .carousel-inner.slides6 .cloneditem-3,
  .cid-rxG7t14y2s .carousel-inner.slides6 .cloneditem-4,
  .cid-rxG7t14y2s .carousel-inner.slides6 .cloneditem-5 {
    display: block;
  }
}
.cid-rxG7t14y2s .mbr-section-title {
  color: #8d97ad;
}
.cid-rxG7t14y2s .mbr-section-subtitle {
  color: #333333;
}
.cid-uO9ByZmq32 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #1b61a1;
}
.cid-uO9ByZmq32 .container {
  display: flex;
  justify-content: center;
}
.cid-uO9ByZmq32 .row {
  display: flex;
  align-items: stretch;
  max-width: 1194px;
  width: 100%;
}
.cid-uO9ByZmq32 .col-brand {
  margin-bottom: 40px;
}
.cid-uO9ByZmq32 .col-link {
  margin-bottom: 30px;
}
.cid-uO9ByZmq32 .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 25px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
}
.cid-uO9ByZmq32 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uO9ByZmq32 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uO9ByZmq32 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uO9ByZmq32 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uO9ByZmq32 .mbr-section-subtitle {
  color: #ffffff;
  margin-bottom: 20px;
}
.cid-uO9ByZmq32 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uO9ByZmq32 .mbr-iconfont {
  font-size: 16px;
  color: #3b668d;
}
.cid-uO9ByZmq32 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background-color: #eef4fb;
  margin-right: 10px;
  margin-bottom: 10px;
  padding: 5px;
  min-height: 30px;
  min-width: 30px;
}
.cid-uO9ByZmq32 .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uO9ByZmq32 .soc-item:hover {
  background-color: #738bae;
}
.cid-uO9ByZmq32 .soc-item:hover .mbr-iconfont {
  color: #FFFFFF !important;
}
.cid-uO9ByZmq32 .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #010d4c;
}
.cid-uO9ByZmq32 .list li {
  min-height: 44px;
  display: flex;
  align-items: center;
}
.cid-uO9ByZmq32 .list a {
  min-height: 44px;
  display: flex;
  align-items: center;
}
.cid-uO9ByZmq32 .brand-text {
  margin-bottom: 35px;
  color: #ffffff;
  opacity: 0.8;
}
.cid-uO9ByZmq32 .mbr-text {
  color: #00284E;
  opacity: 0.8;
}
.cid-uO9ByZmq32 .mbr-text .text-black {
  color: #00284E !important;
}
.cid-uO9ByZmq32 .mbr-text a {
  opacity: 0.8;
}
.cid-uO9ByZmq32 .mbr-text a:hover {
  opacity: 1;
  color: #04367c !important;
}
.cid-uO9ByZmq32 .col-copyright {
  margin-top: 44px;
}
.cid-uO9ByZmq32 .copyright {
  color: #ffffff;
  opacity: 0.8;
}
@media (max-width: 991px) {
  .cid-uO9ByZmq32 .copyright {
    text-align: center !important;
  }
}
.cid-uO9ByZmq32 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uO9ByZmq32 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFMh2eyzqq {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uFMh2eyzqq .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uFMh2eyzqq .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-uFMh2eyzqq .iconfont-wrapper {
  color: #103178 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-uFMh2eyzqq .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-uFMh2eyzqq .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-uFMh2eyzqq .container {
    padding: 0 1rem;
  }
}
.cid-uFMh2eyzqq .menu-tite {
  background: #04367c;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-uFMh2eyzqq .nav-link {
  position: relative;
}
.cid-uFMh2eyzqq .nav-link:hover {
  color: #51aafa !important;
}
.cid-uFMh2eyzqq nav.navbar {
  position: fixed;
}
.cid-uFMh2eyzqq .navbar {
  padding: 0!important;
  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-uFMh2eyzqq .navbar.opened {
  transition: all 0.3s;
}
.cid-uFMh2eyzqq .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uFMh2eyzqq .navbar .navbar-logo img {
  width: auto;
}
.cid-uFMh2eyzqq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uFMh2eyzqq .navbar.collapsed {
  justify-content: center;
}
.cid-uFMh2eyzqq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uFMh2eyzqq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uFMh2eyzqq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uFMh2eyzqq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uFMh2eyzqq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uFMh2eyzqq .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-uFMh2eyzqq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uFMh2eyzqq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uFMh2eyzqq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uFMh2eyzqq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uFMh2eyzqq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uFMh2eyzqq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uFMh2eyzqq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uFMh2eyzqq .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-uFMh2eyzqq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uFMh2eyzqq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uFMh2eyzqq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uFMh2eyzqq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uFMh2eyzqq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uFMh2eyzqq .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uFMh2eyzqq .navbar.navbar-short {
  min-height: 60px;
}
.cid-uFMh2eyzqq .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uFMh2eyzqq .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uFMh2eyzqq .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-uFMh2eyzqq .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uFMh2eyzqq .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uFMh2eyzqq .dropdown-item:hover,
.cid-uFMh2eyzqq .dropdown-item:focus {
  background: #04367c !important;
  color: white !important;
}
.cid-uFMh2eyzqq .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uFMh2eyzqq .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uFMh2eyzqq .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-uFMh2eyzqq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uFMh2eyzqq .dropdown-menu,
.cid-uFMh2eyzqq .navbar.opened {
  background: #ffffff !important;
}
.cid-uFMh2eyzqq .nav-item:focus,
.cid-uFMh2eyzqq .nav-link:focus {
  outline: none;
}
.cid-uFMh2eyzqq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uFMh2eyzqq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uFMh2eyzqq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uFMh2eyzqq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uFMh2eyzqq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uFMh2eyzqq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uFMh2eyzqq .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uFMh2eyzqq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uFMh2eyzqq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uFMh2eyzqq .dropdown-item.active,
.cid-uFMh2eyzqq .dropdown-item:active {
  background-color: transparent;
}
.cid-uFMh2eyzqq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uFMh2eyzqq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uFMh2eyzqq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uFMh2eyzqq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uFMh2eyzqq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uFMh2eyzqq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uFMh2eyzqq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uFMh2eyzqq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uFMh2eyzqq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uFMh2eyzqq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uFMh2eyzqq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uFMh2eyzqq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFMh2eyzqq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFMh2eyzqq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uFMh2eyzqq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFMh2eyzqq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uFMh2eyzqq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uFMh2eyzqq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFMh2eyzqq .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uFMh2eyzqq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uFMh2eyzqq .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-uFMh2eyzqq .navbar {
    height: 70px;
  }
  .cid-uFMh2eyzqq .navbar.opened {
    height: auto;
  }
  .cid-uFMh2eyzqq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uNTDi3b5gz {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/cloud-ai-generated-8988761-1920-1920x1069.jpg");
}
.cid-uNTDi3b5gz .mbr-overlay {
  background: #333333;
  background: linear-gradient(90deg, #333333, #04367c);
}
.cid-uNTDi3b5gz .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-uNTDi3b5gz H1 {
  color: #e0bdb6;
  text-align: center;
}
.cid-uNNPzEp1w4 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uNNPzEp1w4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNNPzEp1w4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNNPzEp1w4 a {
  font-weight: bold;
}
.cid-uNNPzEp1w4 .mbr-section-title {
  color: #04367c;
  text-align: center;
}
.cid-uNNPzEp1w4 .mbr-text,
.cid-uNNPzEp1w4 .mbr-section-btn {
  color: #151515;
  text-align: center;
}
.cid-uNNPzEp1w4 .mbr-section-subtitle {
  text-align: center;
}
.cid-uNNNEipEAx {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uNNNEipEAx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNNNEipEAx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNNNEipEAx .cards {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-uNNNEipEAx .cards .card {
  margin-bottom: 66px;
}
@media (max-width: 992px) {
  .cid-uNNNEipEAx .cards .card {
    margin-bottom: 40px;
  }
}
.cid-uNNNEipEAx .cards .card .mbr-section-title,
.cid-uNNNEipEAx .cards .card .mbr-section-title_2 {
  margin-bottom: 12px;
}
.cid-uNNNEipEAx .cards .card .mbr-text,
.cid-uNNNEipEAx .cards .card .mbr-text_2 {
  margin-bottom: 0;
}
.cid-uNNNEipEAx .icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 513px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-uNNNEipEAx .icon-wrapper {
    display: none;
  }
}
.cid-uNNNEipEAx .icon-wrapper .mbr-iconfont {
  font-size: 78px;
  color: #04367c;
  margin-top: -8rem;
}
.cid-uNNNEipEAx .icon-wrapper::before {
  content: '';
  position: absolute;
  top: -1rem;
  display: block;
  width: 1px;
  height: 75px;
  background-color: #04367c;
}
.cid-uNNNEipEAx .icon-wrapper::after {
  content: '';
  position: absolute;
  bottom: 4rem;
  display: block;
  width: 1px;
  height: 109px;
  background-color: #04367c;
}
.cid-uNNNEipEAx .mbr-section-title {
  color: #E0BDB6;
  text-align: right;
}
.cid-uNNNEipEAx .mbr-text {
  color: #747474;
  text-align: right;
}
.cid-uNNNEipEAx .mbr-section-title_2 {
  color: #e0bdb6;
}
.cid-uNNNEipEAx .mbr-text_2 {
  color: #747474;
}
.cid-uNTxOlPRWi {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uNTxOlPRWi .row {
  align-items: flex-start;
}
@media (max-width: 1024px) and (min-width: 768px) {
  .cid-uNTxOlPRWi .col-text {
    width: 100% !important;
  }
}
.cid-uNTxOlPRWi .text-container {
  padding: 7.5% 0 0 17%;
}
@media (max-width: 1024px) {
  .cid-uNTxOlPRWi .text-container {
    padding: 0;
  }
}
.cid-uNTxOlPRWi .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  padding: 0 25% 0 0;
  margin-bottom: 20px;
}
@media (max-width: 1024px) {
  .cid-uNTxOlPRWi .text-wrapper {
    padding: 0 45% 0 0;
  }
}
@media (max-width: 880px) {
  .cid-uNTxOlPRWi .text-wrapper {
    padding: 0 45% 0 1%;
  }
}
@media (max-width: 767px) {
  .cid-uNTxOlPRWi .text-wrapper {
    padding: 0;
  }
}
.cid-uNTxOlPRWi .label-text {
  width: 100%;
  margin-top: 10px;
  margin-bottom: 7px;
  color: #8A8A8A;
}
.cid-uNTxOlPRWi .mbr-section-title {
  width: 100%;
  color: #000000;
  margin-bottom: 0;
}
.cid-uNTxOlPRWi .mbr-text {
  letter-spacing: inherit;
  color: #000000;
  width: 100%;
  margin-top: 16px;
  margin-bottom: 0;
}
.cid-uNTxOlPRWi .btn-container {
  width: 100%;
}
.cid-uNTxOlPRWi .mbr-section-btn {
  margin-top: 20px;
}
.cid-uNTxOlPRWi .col-cards {
  display: flex;
  flex-wrap: wrap;
  padding-top: 24px;
}
@media (max-width: 1024px) {
  .cid-uNTxOlPRWi .col-cards {
    width: 100% !important;
    padding-top: 80px;
  }
}
.cid-uNTxOlPRWi .cards-wrap {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.cid-uNTxOlPRWi .card {
  padding: 0 15px;
  margin: 0 0 30px;
  border-radius: 0;
  transition: all 0.2s ease-in-out;
  align-items: center;
  justify-content: center;
}
@media (max-width: 680px) {
  .cid-uNTxOlPRWi .card {
    width: 100% !important;
  }
}
.cid-uNTxOlPRWi .card-wrap {
  display: flex;
  flex-direction: column;
  position: relative;
}
.cid-uNTxOlPRWi .card-wrap:hover .card-caption {
  opacity: 1;
  transform: translateY(0);
}
.cid-uNTxOlPRWi .card-caption {
  display: inline-block;
  width: 100%;
  max-width: 100%;
  position: absolute;
  z-index: 1;
  height: auto;
  left: 0;
  bottom: 100%;
  padding: 10px 10px;
  margin-bottom: -10px;
  background-color: #f9f9f9;
  opacity: 0;
  transform: translateY(30px);
  text-align: center;
  transition: opacity 0.4s ease-out, transform 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}
.cid-uNTxOlPRWi .img-container {
  display: flex;
  justify-content: center;
}
@media (max-width: 680px) {
  .cid-uNTxOlPRWi .img-container {
    max-width: 186px;
    width: 100%;
  }
}
.cid-uNTxOlPRWi .img-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.cid-uNTxOlPRWi .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uNTxOlPRWi .card-text {
  color: #8a8a8a;
}
.cid-uNTEnzi9Z4 {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #18427d;
}
@media (max-width: 992px) {
  .cid-uNTEnzi9Z4 .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uNTEnzi9Z4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNTEnzi9Z4 .mbr-iconfont {
  display: flex;
  font-size: 1.5rem;
  color: #f4f8fa;
  background: #e0bdb6;
  width: 50px;
  height: 50px;
  transition: all 0.3s;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
}
.cid-uNTEnzi9Z4 .row {
  justify-content: center;
}
.cid-uNTEnzi9Z4 .card-box {
  display: flex;
  align-items: center;
}
.cid-uNTEnzi9Z4 .card-box .iconfont-wrapper {
  margin-right: 1.5rem;
}
@media (max-width: 767px) {
  .cid-uNTEnzi9Z4 .card-box {
    flex-direction: column;
  }
  .cid-uNTEnzi9Z4 .card-box .iconfont-wrapper {
    margin-right: 0rem;
    margin-bottom: 1.5rem;
  }
}
.cid-uNTEnzi9Z4 .card-link:hover a {
  background-image: none !important;
}
.cid-uNTEnzi9Z4 .mbr-section-subtitle {
  color: #777777;
}
.cid-uNTEnzi9Z4 .card-text {
  color: #ffffff;
}
.cid-uNTEnzi9Z4 .card-title,
.cid-uNTEnzi9Z4 .iconfont-wrapper {
  color: #de9a61;
}
.cid-uNTh6N61Ak {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uNTh6N61Ak .mbr-section-title {
  margin-bottom: 0;
  margin-bottom: 60px;
  color: #de9a61;
}
.cid-uNTh6N61Ak .mbr-text {
  margin: 15px 0 60px;
  color: #919dab;
}
.cid-uNTh6N61Ak .column__one,
.cid-uNTh6N61Ak .column__two,
.cid-uNTh6N61Ak .column__three,
.cid-uNTh6N61Ak .column__four {
  padding-top: 45px;
  border: 2px solid #e0bdb6;
  border-bottom-left-radius: 10px;
  background-color: #ffffff;
  background-color: transparent;
}
.cid-uNTh6N61Ak .column__one {
  border: 2px solid #e0bdb6;
  border-radius: 10px;
}
.cid-uNTh6N61Ak .column__one {
  border-right: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.cid-uNTh6N61Ak .column__two {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}
.cid-uNTh6N61Ak .column__two {
  border-right: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.cid-uNTh6N61Ak .column__three {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}
.cid-uNTh6N61Ak .column__three {
  border-right: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.cid-uNTh6N61Ak .column__four {
  border-bottom-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
.cid-uNTh6N61Ak .column__two {
  border-bottom-left-radius: 0;
}
.cid-uNTh6N61Ak .column__three {
  border-bottom-left-radius: 0;
}
.cid-uNTh6N61Ak .column__four {
  border-bottom-left-radius: 0;
}
.cid-uNTh6N61Ak .title__table {
  margin-bottom: 0;
  padding: 0 20px;
}
.cid-uNTh6N61Ak .subtitle__table {
  color: #919dab;
  margin: 10px 0 35px;
  padding: 0 20px;
}
.cid-uNTh6N61Ak .pricing {
  padding: 0 20px;
}
.cid-uNTh6N61Ak .currency {
  vertical-align: top;
}
.cid-uNTh6N61Ak .mbr-section-btn {
  padding: 0 20px;
  margin-top: 40px;
  margin-bottom: 40px;
}
.cid-uNTh6N61Ak .mbr-section-btn .btn {
  font-weight: 500;
}
.cid-uNTh6N61Ak .item__wrapper {
  margin-top: 40px;
}
.cid-uNTh6N61Ak .item__table {
  padding: 16px 20px 14px;
  border-top: 2px solid #e0bdb6;
  margin-bottom: 0;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uNTh6N61Ak .column__one,
  .cid-uNTh6N61Ak .column__two,
  .cid-uNTh6N61Ak .column__three,
  .cid-uNTh6N61Ak .column__four {
    border-right: 2px solid #e0bdb6;
    margin: 0 auto 50px auto;
    max-width: 300px;
    border-radius: 10px;
  }
}
.cid-uNTh6N61Ak .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNTh6N61Ak .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNTjbUcQPe {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uNTjbUcQPe .mbr-section-title {
  margin-bottom: 0;
  margin-bottom: 60px;
  color: #de9a61;
}
.cid-uNTjbUcQPe .mbr-text {
  margin: 15px 0 60px;
  color: #919dab;
}
.cid-uNTjbUcQPe .column__one,
.cid-uNTjbUcQPe .column__two,
.cid-uNTjbUcQPe .column__three,
.cid-uNTjbUcQPe .column__four {
  padding-top: 45px;
  border: 2px solid #e0bdb6;
  border-bottom-left-radius: 10px;
  background-color: #ffffff;
  background-color: transparent;
}
.cid-uNTjbUcQPe .column__one {
  border: 2px solid #e0bdb6;
  border-radius: 10px;
}
.cid-uNTjbUcQPe .column__one {
  border-right: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.cid-uNTjbUcQPe .column__two {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}
.cid-uNTjbUcQPe .column__two {
  border-right: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.cid-uNTjbUcQPe .column__three {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}
.cid-uNTjbUcQPe .column__two {
  border-bottom-left-radius: 0;
}
.cid-uNTjbUcQPe .column__three {
  border-bottom-left-radius: 0;
}
.cid-uNTjbUcQPe .column__four {
  border-bottom-left-radius: 0;
}
.cid-uNTjbUcQPe .title__table {
  margin-bottom: 0;
  padding: 0 20px;
}
.cid-uNTjbUcQPe .subtitle__table {
  color: #919dab;
  margin: 10px 0 35px;
  padding: 0 20px;
}
.cid-uNTjbUcQPe .pricing {
  padding: 0 20px;
}
.cid-uNTjbUcQPe .currency {
  vertical-align: top;
}
.cid-uNTjbUcQPe .mbr-section-btn {
  padding: 0 20px;
  margin-top: 40px;
  margin-bottom: 40px;
}
.cid-uNTjbUcQPe .mbr-section-btn .btn {
  font-weight: 500;
}
.cid-uNTjbUcQPe .item__wrapper {
  margin-top: 40px;
}
.cid-uNTjbUcQPe .item__table {
  padding: 16px 20px 14px;
  border-top: 2px solid #e0bdb6;
  margin-bottom: 0;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uNTjbUcQPe .column__one,
  .cid-uNTjbUcQPe .column__two,
  .cid-uNTjbUcQPe .column__three,
  .cid-uNTjbUcQPe .column__four {
    border-right: 2px solid #e0bdb6;
    margin: 0 auto 50px auto;
    max-width: 300px;
    border-radius: 10px;
  }
}
.cid-uNTjbUcQPe .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNTjbUcQPe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNTleys9JC {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uNTleys9JC .mbr-section-title {
  margin-bottom: 0;
  margin-bottom: 60px;
  color: #08579f;
}
.cid-uNTleys9JC .mbr-text {
  margin: 15px 0 60px;
  color: #919dab;
}
.cid-uNTleys9JC .column__one,
.cid-uNTleys9JC .column__two,
.cid-uNTleys9JC .column__three,
.cid-uNTleys9JC .column__four {
  padding-top: 45px;
  border: 2px solid #08579f;
  border-bottom-left-radius: 10px;
  background-color: #ffffff;
  background-color: transparent;
}
.cid-uNTleys9JC .column__one {
  border: 2px solid #08579f;
  border-radius: 10px;
}
.cid-uNTleys9JC .column__one {
  border-right: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.cid-uNTleys9JC .column__two {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}
.cid-uNTleys9JC .column__two {
  border-bottom-left-radius: 0;
}
.cid-uNTleys9JC .column__four {
  border-bottom-left-radius: 0;
}
.cid-uNTleys9JC .title__table {
  margin-bottom: 0;
  padding: 0 20px;
}
.cid-uNTleys9JC .subtitle__table {
  color: #919dab;
  margin: 10px 0 35px;
  padding: 0 20px;
}
.cid-uNTleys9JC .pricing {
  padding: 0 20px;
}
.cid-uNTleys9JC .currency {
  vertical-align: top;
}
.cid-uNTleys9JC .mbr-section-btn {
  padding: 0 20px;
  margin-top: 40px;
  margin-bottom: 40px;
}
.cid-uNTleys9JC .mbr-section-btn .btn {
  font-weight: 500;
}
.cid-uNTleys9JC .item__wrapper {
  margin-top: 40px;
}
.cid-uNTleys9JC .item__table {
  padding: 16px 20px 14px;
  border-top: 2px solid #08579f;
  margin-bottom: 0;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uNTleys9JC .column__one,
  .cid-uNTleys9JC .column__two,
  .cid-uNTleys9JC .column__three,
  .cid-uNTleys9JC .column__four {
    border-right: 2px solid #08579f;
    margin: 0 auto 50px auto;
    max-width: 300px;
    border-radius: 10px;
  }
}
.cid-uNTleys9JC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNTleys9JC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOwV2y8dQX {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uOwV2y8dQX .mbr-section-title {
  margin-bottom: 0;
  margin-bottom: 60px;
  color: #de9a61;
}
.cid-uOwV2y8dQX .mbr-text {
  margin: 15px 0 60px;
  color: #919dab;
}
.cid-uOwV2y8dQX .column__one,
.cid-uOwV2y8dQX .column__two,
.cid-uOwV2y8dQX .column__three,
.cid-uOwV2y8dQX .column__four {
  padding-top: 45px;
  border: 2px solid #e0bdb6;
  border-bottom-left-radius: 10px;
  background-color: #ffffff;
  background-color: transparent;
}
.cid-uOwV2y8dQX .column__one {
  border: 2px solid #e0bdb6;
  border-radius: 10px;
}
.cid-uOwV2y8dQX .column__one {
  border-right: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.cid-uOwV2y8dQX .column__two {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}
.cid-uOwV2y8dQX .column__two {
  border-bottom-left-radius: 0;
}
.cid-uOwV2y8dQX .column__three {
  border-bottom-left-radius: 0;
}
.cid-uOwV2y8dQX .column__four {
  border-bottom-left-radius: 0;
}
.cid-uOwV2y8dQX .title__table {
  margin-bottom: 0;
  padding: 0 20px;
}
.cid-uOwV2y8dQX .subtitle__table {
  color: #919dab;
  margin: 10px 0 35px;
  padding: 0 20px;
}
.cid-uOwV2y8dQX .pricing {
  padding: 0 20px;
}
.cid-uOwV2y8dQX .currency {
  vertical-align: top;
}
.cid-uOwV2y8dQX .mbr-section-btn {
  padding: 0 20px;
  margin-top: 40px;
  margin-bottom: 40px;
}
.cid-uOwV2y8dQX .mbr-section-btn .btn {
  font-weight: 500;
}
.cid-uOwV2y8dQX .item__wrapper {
  margin-top: 40px;
}
.cid-uOwV2y8dQX .item__table {
  padding: 16px 20px 14px;
  border-top: 2px solid #e0bdb6;
  margin-bottom: 0;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uOwV2y8dQX .column__one,
  .cid-uOwV2y8dQX .column__two,
  .cid-uOwV2y8dQX .column__three,
  .cid-uOwV2y8dQX .column__four {
    border-right: 2px solid #e0bdb6;
    margin: 0 auto 50px auto;
    max-width: 300px;
    border-radius: 10px;
  }
}
.cid-uOwV2y8dQX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOwV2y8dQX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMFGa67Bjn {
  padding-top: 120px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-984x737.jpg");
}
.cid-uMFGa67Bjn .media-container-column .btn-bgr {
  z-index: 0;
}
.cid-uMFGa67Bjn .mbr-overlay {
  background: #333333;
  background: linear-gradient(#333333 -10%, #08579f 75%);
}
.cid-uMFGa67Bjn .mbr-section-title {
  margin: 0;
}
.cid-uMFGa67Bjn .separator {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  max-width: 125px;
  margin-left: auto;
  margin-right: auto;
}
.cid-uMFGdkSV9r {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uMFGdkSV9r .mbr-iconfont {
  font-size: 34px;
  transition: color .3s;
}
.cid-uMFGdkSV9r .mbr-section-title {
  margin: 0;
}
.cid-uMFGdkSV9r .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-uMFGdkSV9r .card-img {
  text-align: center;
}
.cid-uMFGdkSV9r .row-item {
  padding-bottom: 2rem;
  padding: 5rem 2rem;
}
.cid-uMFGdkSV9r .row-item.card1 {
  background: #08579f;
}
.cid-uMFGdkSV9r .row-item.card2 {
  background: #188ef4;
}
.cid-uMFGdkSV9r .row-item.card3 {
  background: #098484;
}
.cid-uMFGdkSV9r .row-item.card4 {
  background: #2bdc9d;
}
.cid-uMFGdkSV9r .mbr-text {
  color: #efefef;
}
@media (max-width: 767px) {
  .cid-uMFGdkSV9r .card-img,
  .cid-uMFGdkSV9r .mbr-text,
  .cid-uMFGdkSV9r .mbr-card-title,
  .cid-uMFGdkSV9r .mbr-section-subtitle,
  .cid-uMFGdkSV9r .mbr-section-title,
  .cid-uMFGdkSV9r .underline {
    text-align: center !important;
  }
}
.cid-rnI4vwBmlS {
  background-image: url("../../../assets/images/mbr-2-1920x1279.jpeg");
}
.cid-rnI4vwBmlS .column-content {
  padding-top: 120px;
  padding-bottom: 90px;
  background-color: #ffffff;
  width: 100%;
  float: right;
  position: relative;
}
.cid-rnI4vwBmlS .text-content .btn-bgr {
  z-index: 0;
}
.cid-rnI4vwBmlS .mbr-overlay {
  background: linear-gradient(#d6173f -10%, #00113e 75%);
}
.cid-rnI4vwBmlS .container-full-width {
  position: relative;
}
.cid-rnI4vwBmlS .text-content {
  width: 100%;
  padding: 0 30px;
  margin: 0 auto;
}
.cid-rnI4vwBmlS .layer {
  display: none;
  height: 101%;
  position: absolute;
  right: 49.9%;
  top: 0;
  bottom: 0;
}
.cid-rnI4vwBmlS .layer path {
  fill: #ffffff;
}
@media (min-width: 576px) {
  .cid-rnI4vwBmlS .text-content {
    width: 540px;
  }
  .cid-rnI4vwBmlS .column-content {
    width: 100%;
  }
  .cid-rnI4vwBmlS .layer {
    display: none;
  }
}
@media (min-width: 768px) {
  .cid-rnI4vwBmlS .text-content {
    width: 720px;
  }
}
@media (min-width: 992px) {
  .cid-rnI4vwBmlS .text-content {
    width: 480px;
    margin: 0;
  }
  .cid-rnI4vwBmlS .column-content {
    width: 50%;
  }
  .cid-rnI4vwBmlS .layer {
    display: block;
  }
}
@media (min-width: 1200px) {
  .cid-rnI4vwBmlS .text-content {
    width: 570px;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rnI4vwBmlS .container-full-width .layer {
    right: 2.6rem;
    height: 33rem;
  }
  .cid-rnI4vwBmlS .column-content {
    height: 33rem;
  }
}
.cid-uO9ByZmq32 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #1b61a1;
}
.cid-uO9ByZmq32 .container {
  display: flex;
  justify-content: center;
}
.cid-uO9ByZmq32 .row {
  display: flex;
  align-items: stretch;
  max-width: 1194px;
  width: 100%;
}
.cid-uO9ByZmq32 .col-brand {
  margin-bottom: 40px;
}
.cid-uO9ByZmq32 .col-link {
  margin-bottom: 30px;
}
.cid-uO9ByZmq32 .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 25px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
}
.cid-uO9ByZmq32 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uO9ByZmq32 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uO9ByZmq32 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uO9ByZmq32 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uO9ByZmq32 .mbr-section-subtitle {
  color: #ffffff;
  margin-bottom: 20px;
}
.cid-uO9ByZmq32 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uO9ByZmq32 .mbr-iconfont {
  font-size: 16px;
  color: #3b668d;
}
.cid-uO9ByZmq32 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background-color: #eef4fb;
  margin-right: 10px;
  margin-bottom: 10px;
  padding: 5px;
  min-height: 30px;
  min-width: 30px;
}
.cid-uO9ByZmq32 .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uO9ByZmq32 .soc-item:hover {
  background-color: #738bae;
}
.cid-uO9ByZmq32 .soc-item:hover .mbr-iconfont {
  color: #FFFFFF !important;
}
.cid-uO9ByZmq32 .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #010d4c;
}
.cid-uO9ByZmq32 .list li {
  min-height: 44px;
  display: flex;
  align-items: center;
}
.cid-uO9ByZmq32 .list a {
  min-height: 44px;
  display: flex;
  align-items: center;
}
.cid-uO9ByZmq32 .brand-text {
  margin-bottom: 35px;
  color: #ffffff;
  opacity: 0.8;
}
.cid-uO9ByZmq32 .mbr-text {
  color: #00284E;
  opacity: 0.8;
}
.cid-uO9ByZmq32 .mbr-text .text-black {
  color: #00284E !important;
}
.cid-uO9ByZmq32 .mbr-text a {
  opacity: 0.8;
}
.cid-uO9ByZmq32 .mbr-text a:hover {
  opacity: 1;
  color: #04367c !important;
}
.cid-uO9ByZmq32 .col-copyright {
  margin-top: 44px;
}
.cid-uO9ByZmq32 .copyright {
  color: #ffffff;
  opacity: 0.8;
}
@media (max-width: 991px) {
  .cid-uO9ByZmq32 .copyright {
    text-align: center !important;
  }
}
.cid-uO9ByZmq32 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uO9ByZmq32 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFMh2eyzqq {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uFMh2eyzqq .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uFMh2eyzqq .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-uFMh2eyzqq .iconfont-wrapper {
  color: #103178 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-uFMh2eyzqq .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-uFMh2eyzqq .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-uFMh2eyzqq .container {
    padding: 0 1rem;
  }
}
.cid-uFMh2eyzqq .menu-tite {
  background: #04367c;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-uFMh2eyzqq .nav-link {
  position: relative;
}
.cid-uFMh2eyzqq .nav-link:hover {
  color: #51aafa !important;
}
.cid-uFMh2eyzqq nav.navbar {
  position: fixed;
}
.cid-uFMh2eyzqq .navbar {
  padding: 0!important;
  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-uFMh2eyzqq .navbar.opened {
  transition: all 0.3s;
}
.cid-uFMh2eyzqq .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uFMh2eyzqq .navbar .navbar-logo img {
  width: auto;
}
.cid-uFMh2eyzqq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uFMh2eyzqq .navbar.collapsed {
  justify-content: center;
}
.cid-uFMh2eyzqq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uFMh2eyzqq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uFMh2eyzqq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uFMh2eyzqq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uFMh2eyzqq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uFMh2eyzqq .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-uFMh2eyzqq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uFMh2eyzqq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uFMh2eyzqq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uFMh2eyzqq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uFMh2eyzqq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uFMh2eyzqq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uFMh2eyzqq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uFMh2eyzqq .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-uFMh2eyzqq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uFMh2eyzqq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uFMh2eyzqq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uFMh2eyzqq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uFMh2eyzqq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uFMh2eyzqq .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uFMh2eyzqq .navbar.navbar-short {
  min-height: 60px;
}
.cid-uFMh2eyzqq .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uFMh2eyzqq .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uFMh2eyzqq .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-uFMh2eyzqq .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uFMh2eyzqq .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uFMh2eyzqq .dropdown-item:hover,
.cid-uFMh2eyzqq .dropdown-item:focus {
  background: #04367c !important;
  color: white !important;
}
.cid-uFMh2eyzqq .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uFMh2eyzqq .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uFMh2eyzqq .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-uFMh2eyzqq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uFMh2eyzqq .dropdown-menu,
.cid-uFMh2eyzqq .navbar.opened {
  background: #ffffff !important;
}
.cid-uFMh2eyzqq .nav-item:focus,
.cid-uFMh2eyzqq .nav-link:focus {
  outline: none;
}
.cid-uFMh2eyzqq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uFMh2eyzqq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uFMh2eyzqq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uFMh2eyzqq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uFMh2eyzqq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uFMh2eyzqq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uFMh2eyzqq .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uFMh2eyzqq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uFMh2eyzqq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uFMh2eyzqq .dropdown-item.active,
.cid-uFMh2eyzqq .dropdown-item:active {
  background-color: transparent;
}
.cid-uFMh2eyzqq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uFMh2eyzqq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uFMh2eyzqq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uFMh2eyzqq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uFMh2eyzqq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uFMh2eyzqq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uFMh2eyzqq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uFMh2eyzqq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uFMh2eyzqq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uFMh2eyzqq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uFMh2eyzqq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uFMh2eyzqq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFMh2eyzqq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFMh2eyzqq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uFMh2eyzqq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFMh2eyzqq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uFMh2eyzqq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uFMh2eyzqq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFMh2eyzqq .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uFMh2eyzqq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uFMh2eyzqq .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-uFMh2eyzqq .navbar {
    height: 70px;
  }
  .cid-uFMh2eyzqq .navbar.opened {
    height: auto;
  }
  .cid-uFMh2eyzqq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rkoQjFS9j8 {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/mbr-12-1920x1280.jpg");
}
.cid-rkoQjFS9j8 .mbr-overlay {
  background: #08579f;
  background: linear-gradient(90deg, #08579f, #000000);
}
.cid-rkoQjFS9j8 .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-rkoSu47v33 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #04367c;
}
.cid-rkoSu47v33 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-rkoSu47v33 .mbr-section-title {
  color: #f4f8fa;
}
.cid-riuJmEjXzc {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-riuJmEjXzc .card {
  padding: 1rem 1rem 3rem 1rem;
}
.cid-riuJmEjXzc .card-img {
  padding-bottom: 2rem;
  border-radius: .25rem;
  overflow: hidden;
}
.cid-riuJmEjXzc .card-img img {
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-riuJmEjXzc .section-text,
.cid-riuJmEjXzc .card-text {
  color: #8d97ad;
}
@media (max-width: 767px) {
  .cid-riuJmEjXzc .section-text,
  .cid-riuJmEjXzc .card-text,
  .cid-riuJmEjXzc .card-title,
  .cid-riuJmEjXzc .mbr-section-title {
    text-align: center;
  }
}
.cid-riuKRDPwZ6 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-riuKRDPwZ6 .card {
  padding: 1rem 1rem 3rem 1rem;
}
.cid-riuKRDPwZ6 .card-img {
  padding-bottom: 2rem;
  border-radius: .25rem;
  overflow: hidden;
}
.cid-riuKRDPwZ6 .card-img img {
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-riuKRDPwZ6 .section-text,
.cid-riuKRDPwZ6 .card-text {
  color: #8d97ad;
}
@media (max-width: 767px) {
  .cid-riuKRDPwZ6 .section-text,
  .cid-riuKRDPwZ6 .card-text,
  .cid-riuKRDPwZ6 .card-title,
  .cid-riuKRDPwZ6 .mbr-section-title {
    text-align: center;
  }
}
.cid-rkM7UOk8JH {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rkM7UOk8JH .card {
  padding: 1rem 1rem 3rem 1rem;
}
.cid-rkM7UOk8JH .card-img {
  padding-bottom: 2rem;
  border-radius: .25rem;
  overflow: hidden;
}
.cid-rkM7UOk8JH .card-img img {
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-rkM7UOk8JH .section-text,
.cid-rkM7UOk8JH .card-text {
  color: #8d97ad;
}
@media (max-width: 767px) {
  .cid-rkM7UOk8JH .section-text,
  .cid-rkM7UOk8JH .card-text,
  .cid-rkM7UOk8JH .card-title,
  .cid-rkM7UOk8JH .mbr-section-title {
    text-align: center;
  }
}
.cid-uO9ByZmq32 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #1b61a1;
}
.cid-uO9ByZmq32 .container {
  display: flex;
  justify-content: center;
}
.cid-uO9ByZmq32 .row {
  display: flex;
  align-items: stretch;
  max-width: 1194px;
  width: 100%;
}
.cid-uO9ByZmq32 .col-brand {
  margin-bottom: 40px;
}
.cid-uO9ByZmq32 .col-link {
  margin-bottom: 30px;
}
.cid-uO9ByZmq32 .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 25px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
}
.cid-uO9ByZmq32 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uO9ByZmq32 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uO9ByZmq32 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uO9ByZmq32 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uO9ByZmq32 .mbr-section-subtitle {
  color: #ffffff;
  margin-bottom: 20px;
}
.cid-uO9ByZmq32 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uO9ByZmq32 .mbr-iconfont {
  font-size: 16px;
  color: #3b668d;
}
.cid-uO9ByZmq32 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background-color: #eef4fb;
  margin-right: 10px;
  margin-bottom: 10px;
  padding: 5px;
  min-height: 30px;
  min-width: 30px;
}
.cid-uO9ByZmq32 .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uO9ByZmq32 .soc-item:hover {
  background-color: #738bae;
}
.cid-uO9ByZmq32 .soc-item:hover .mbr-iconfont {
  color: #FFFFFF !important;
}
.cid-uO9ByZmq32 .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #010d4c;
}
.cid-uO9ByZmq32 .list li {
  min-height: 44px;
  display: flex;
  align-items: center;
}
.cid-uO9ByZmq32 .list a {
  min-height: 44px;
  display: flex;
  align-items: center;
}
.cid-uO9ByZmq32 .brand-text {
  margin-bottom: 35px;
  color: #ffffff;
  opacity: 0.8;
}
.cid-uO9ByZmq32 .mbr-text {
  color: #00284E;
  opacity: 0.8;
}
.cid-uO9ByZmq32 .mbr-text .text-black {
  color: #00284E !important;
}
.cid-uO9ByZmq32 .mbr-text a {
  opacity: 0.8;
}
.cid-uO9ByZmq32 .mbr-text a:hover {
  opacity: 1;
  color: #04367c !important;
}
.cid-uO9ByZmq32 .col-copyright {
  margin-top: 44px;
}
.cid-uO9ByZmq32 .copyright {
  color: #ffffff;
  opacity: 0.8;
}
@media (max-width: 991px) {
  .cid-uO9ByZmq32 .copyright {
    text-align: center !important;
  }
}
.cid-uO9ByZmq32 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uO9ByZmq32 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFMh2eyzqq {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uFMh2eyzqq .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uFMh2eyzqq .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-uFMh2eyzqq .iconfont-wrapper {
  color: #103178 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-uFMh2eyzqq .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-uFMh2eyzqq .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-uFMh2eyzqq .container {
    padding: 0 1rem;
  }
}
.cid-uFMh2eyzqq .menu-tite {
  background: #04367c;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-uFMh2eyzqq .nav-link {
  position: relative;
}
.cid-uFMh2eyzqq .nav-link:hover {
  color: #51aafa !important;
}
.cid-uFMh2eyzqq nav.navbar {
  position: fixed;
}
.cid-uFMh2eyzqq .navbar {
  padding: 0!important;
  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-uFMh2eyzqq .navbar.opened {
  transition: all 0.3s;
}
.cid-uFMh2eyzqq .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uFMh2eyzqq .navbar .navbar-logo img {
  width: auto;
}
.cid-uFMh2eyzqq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uFMh2eyzqq .navbar.collapsed {
  justify-content: center;
}
.cid-uFMh2eyzqq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uFMh2eyzqq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uFMh2eyzqq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uFMh2eyzqq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uFMh2eyzqq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uFMh2eyzqq .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-uFMh2eyzqq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uFMh2eyzqq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uFMh2eyzqq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uFMh2eyzqq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uFMh2eyzqq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uFMh2eyzqq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uFMh2eyzqq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uFMh2eyzqq .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-uFMh2eyzqq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uFMh2eyzqq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uFMh2eyzqq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uFMh2eyzqq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uFMh2eyzqq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uFMh2eyzqq .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uFMh2eyzqq .navbar.navbar-short {
  min-height: 60px;
}
.cid-uFMh2eyzqq .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uFMh2eyzqq .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uFMh2eyzqq .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-uFMh2eyzqq .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uFMh2eyzqq .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uFMh2eyzqq .dropdown-item:hover,
.cid-uFMh2eyzqq .dropdown-item:focus {
  background: #04367c !important;
  color: white !important;
}
.cid-uFMh2eyzqq .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uFMh2eyzqq .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uFMh2eyzqq .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-uFMh2eyzqq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uFMh2eyzqq .dropdown-menu,
.cid-uFMh2eyzqq .navbar.opened {
  background: #ffffff !important;
}
.cid-uFMh2eyzqq .nav-item:focus,
.cid-uFMh2eyzqq .nav-link:focus {
  outline: none;
}
.cid-uFMh2eyzqq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uFMh2eyzqq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uFMh2eyzqq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uFMh2eyzqq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uFMh2eyzqq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uFMh2eyzqq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uFMh2eyzqq .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uFMh2eyzqq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uFMh2eyzqq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uFMh2eyzqq .dropdown-item.active,
.cid-uFMh2eyzqq .dropdown-item:active {
  background-color: transparent;
}
.cid-uFMh2eyzqq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uFMh2eyzqq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uFMh2eyzqq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uFMh2eyzqq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uFMh2eyzqq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uFMh2eyzqq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uFMh2eyzqq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uFMh2eyzqq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uFMh2eyzqq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uFMh2eyzqq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uFMh2eyzqq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uFMh2eyzqq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFMh2eyzqq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFMh2eyzqq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uFMh2eyzqq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFMh2eyzqq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uFMh2eyzqq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uFMh2eyzqq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFMh2eyzqq .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uFMh2eyzqq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uFMh2eyzqq .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-uFMh2eyzqq .navbar {
    height: 70px;
  }
  .cid-uFMh2eyzqq .navbar.opened {
    height: auto;
  }
  .cid-uFMh2eyzqq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rjPUfJZcYU {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/mbr-1080x809.jpg");
}
.cid-rjPUfJZcYU .mbr-overlay {
  background: #04367c;
  background: linear-gradient(90deg, #04367c, #0e8f61);
}
.cid-rjPUfJZcYU .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-rjPUfJZcYU H1 {
  color: #ffffff;
  text-align: center;
}
.cid-rjPUfJZcYU .mbr-section-subtitle,
.cid-rjPUfJZcYU .mbr-section-btn {
  color: #ffffff;
}
.cid-rjPUfJZcYU B {
  color: #ffffff;
}
.cid-uPGJqJbSDR {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #04367c;
}
.cid-uPGJqJbSDR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPGJqJbSDR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPGJqJbSDR .row {
  margin: 0 -20px;
}
.cid-uPGJqJbSDR .card {
  padding: 0 20px;
}
.cid-uPGJqJbSDR .mbr-tag {
  margin-bottom: 16px;
  color: #adadad;
}
.cid-uPGJqJbSDR .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uPGJqJbSDR .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uPGJqJbSDR .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uPGJqJbSDR .title-wrapper .main-btn .btn {
  margin-bottom: 0;
}
.cid-uPGJqJbSDR .mbr-section-btn {
  margin-top: 20px;
}
.cid-uPGJqJbSDR .mbr-section-btn .btn::after,
.cid-uPGJqJbSDR .mbr-section-btn .btn::before {
  background-image: linear-gradient(90deg, #386bb7, #5eeebb 150%);
}
.cid-uPGJqJbSDR .mbr-section-btn .btn:hover,
.cid-uPGJqJbSDR .mbr-section-btn .btn:focus {
  color: #ffffff !important;
}
.cid-uPGJqJbSDR .mbr-section-btn .btn:hover::after,
.cid-uPGJqJbSDR .mbr-section-btn .btn:focus::after {
  background-image: linear-gradient(90deg, #386bb7, #5eeebb 150%);
  opacity: 1;
}
.cid-uPGJqJbSDR .items-wrapper .item {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uPGJqJbSDR .items-wrapper .item {
    margin-bottom: 20px;
  }
}
.cid-uPGJqJbSDR .items-wrapper .item:last-child {
  margin-bottom: 0;
}
.cid-uPGJqJbSDR .items-wrapper .item .item-wrapper {
  display: flex;
  position: relative;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uPGJqJbSDR .items-wrapper .item .item-wrapper {
    display: block;
  }
}
.cid-uPGJqJbSDR .items-wrapper .item .item-wrapper .icon-wrapper {
  margin-right: 60px;
  margin-top: 10px;
}
@media (max-width: 992px) {
  .cid-uPGJqJbSDR .items-wrapper .item .item-wrapper .icon-wrapper {
    margin-bottom: 20px;
    margin-right: 0;
    margin-top: 0;
  }
}
.cid-uPGJqJbSDR .items-wrapper .item .item-wrapper .icon-wrapper .mbr-iconfont {
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(90deg, #ffffff, #cccccc);
  font-size: 80px;
}
@media (max-width: 992px) {
  .cid-uPGJqJbSDR .items-wrapper .item .item-wrapper .icon-wrapper .mbr-iconfont {
    font-size: 50px;
  }
}
.cid-uPGJqJbSDR .items-wrapper .item .item-wrapper .item-content {
  padding-bottom: 20px;
  border-bottom: 2px solid #ffffff;
  border-radius: 0 !important;
  width: 100%;
}
.cid-uPGJqJbSDR .items-wrapper .item .item-wrapper .item-content .item-title {
  margin-bottom: 16px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uPGJqJbSDR .items-wrapper .item .item-wrapper .item-content .item-title:hover,
.cid-uPGJqJbSDR .items-wrapper .item .item-wrapper .item-content .item-title:focus {
  color: #5eeebb;
}
.cid-uPGJqJbSDR .items-wrapper .item .item-wrapper .item-content .item-text {
  margin-bottom: 0;
}
.cid-uPGJqJbSDR .items-wrapper .item .item-wrapper .item-content .item-btn {
  margin-top: 20px;
}
@media (max-width: 992px) {
  .cid-uPGJqJbSDR .items-wrapper .item .item-wrapper .item-content .item-btn {
    margin-bottom: 0;
  }
}
.cid-uPGJqJbSDR .mbr-section-title {
  color: #ffffff;
}
.cid-uPGJqJbSDR .item-title {
  color: #ffffff;
}
.cid-uPGJqJbSDR .item-text {
  color: #ffffff;
}
.cid-uPGJqJbSDR .item-title,
.cid-uPGJqJbSDR .item-btn {
  color: #0e8f61;
}
.cid-uPGMccPlCq {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uPGMccPlCq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPGMccPlCq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPGMccPlCq .mbr-section-head {
  margin-bottom: 30px;
  width: 100%;
}
.cid-uPGMccPlCq .mbr-section-title {
  color: #FF014E;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .cid-uPGMccPlCq .mbr-section-title {
    margin-bottom: 10px;
  }
}
.cid-uPGMccPlCq .mbr-section-subtitle {
  color: #0e8f61;
}
.cid-uPGMccPlCq .card-row {
  align-items: stretch;
}
.cid-uPGMccPlCq .card {
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-uPGMccPlCq .card-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 35px 20px;
  overflow: hidden;
  border-radius: 13px;
  border: 1px solid rgba(9, 132, 132, 0.25);
}
.cid-uPGMccPlCq .card-box {
  height: 100%;
}
.cid-uPGMccPlCq .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: auto;
  margin-bottom: 25px;
}
.cid-uPGMccPlCq .iconfont-wrapper .mbr-iconfont {
  font-size: 45px;
  color: #0e8f61;
}
.cid-uPGMccPlCq .card-title {
  color: #04367c;
  margin-bottom: 20px;
}
.cid-uPGMccPlCq .card-text {
  color: #000000;
  margin-bottom: 0;
}
.cid-uPGMByiHs8 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uPGMByiHs8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPGMByiHs8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPGMByiHs8 .mbr-section-head {
  margin-bottom: 30px;
  width: 100%;
}
.cid-uPGMByiHs8 .mbr-section-title {
  color: #FF014E;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .cid-uPGMByiHs8 .mbr-section-title {
    margin-bottom: 10px;
  }
}
.cid-uPGMByiHs8 .mbr-section-subtitle {
  color: #0e8f61;
}
.cid-uPGMByiHs8 .card-row {
  align-items: stretch;
}
.cid-uPGMByiHs8 .card {
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-uPGMByiHs8 .card-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 35px 20px;
  overflow: hidden;
  border-radius: 13px;
  border: 1px solid rgba(14, 143, 97, 0.25);
}
.cid-uPGMByiHs8 .card-box {
  height: 100%;
}
.cid-uPGMByiHs8 .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: auto;
  margin-bottom: 25px;
}
.cid-uPGMByiHs8 .iconfont-wrapper .mbr-iconfont {
  font-size: 45px;
  color: #0e8f61;
}
.cid-uPGMByiHs8 .card-title {
  color: #04367c;
  margin-bottom: 20px;
}
.cid-uPGMByiHs8 .card-text {
  color: #000000;
  margin-bottom: 0;
}
.cid-uPGMClHJBq {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uPGMClHJBq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPGMClHJBq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPGMClHJBq .mbr-section-head {
  margin-bottom: 30px;
  width: 100%;
}
.cid-uPGMClHJBq .mbr-section-title {
  color: #FF014E;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .cid-uPGMClHJBq .mbr-section-title {
    margin-bottom: 10px;
  }
}
.cid-uPGMClHJBq .mbr-section-subtitle {
  color: #0e8f61;
}
.cid-uPGMClHJBq .card-row {
  align-items: stretch;
}
.cid-uPGMClHJBq .card {
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-uPGMClHJBq .card-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 35px 20px;
  overflow: hidden;
  border-radius: 13px;
  border: 1px solid rgba(14, 143, 97, 0.25);
}
.cid-uPGMClHJBq .card-box {
  height: 100%;
}
.cid-uPGMClHJBq .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: auto;
  margin-bottom: 25px;
}
.cid-uPGMClHJBq .iconfont-wrapper .mbr-iconfont {
  font-size: 45px;
  color: #0e8f61;
}
.cid-uPGMClHJBq .card-title {
  color: #04367c;
  margin-bottom: 20px;
}
.cid-uPGMClHJBq .card-text {
  color: #000000;
  margin-bottom: 0;
}
.cid-uPF7t9vhH5 {
  padding-top: 4rem;
  padding-bottom: 3rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uPF7t9vhH5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPF7t9vhH5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPF7t9vhH5 .row {
  justify-content: center;
}
.cid-uPF7t9vhH5 .col-title {
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .cid-uPF7t9vhH5 .col-title {
    margin-bottom: 20px;
  }
}
.cid-uPF7t9vhH5 .mbr-section-title {
  color: #0e8f61;
  opacity: 0.85;
}
.cid-uPF7t9vhH5 .mbr-section-subtitle {
  color: #000000;
  opacity: 0.85;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uPF7t9vhH5 .mbr-section-subtitle {
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
  }
}
.cid-uPF7t9vhH5 .card-row {
  align-items: stretch;
}
.cid-uPF7t9vhH5 .card {
  padding: 10px;
}
.cid-uPF7t9vhH5 .card-box {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  padding: 33px 38px 33px 38px;
  background-color: #ffffff;
  transition: .3s all;
  border: 2px solid #098484;
}
.cid-uPF7t9vhH5 .mbr-iconfont {
  display: block;
  font-size: 40px;
  color: #105cc6;
}
.cid-uPF7t9vhH5 .card-head {
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-uPF7t9vhH5 .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  min-height: 80px;
  padding: 10px;
  margin-right: 25px;
  border-radius: 10px;
  overflow: hidden;
  background-color: #51aafa;
  transition: .3s all;
}
@media (max-width: 767px) {
  .cid-uPF7t9vhH5 .iconfont-wrapper {
    min-width: 60px;
    min-height: 60px;
    padding: 5px;
  }
}
.cid-uPF7t9vhH5 .card-wrapper {
  display: flex;
  -webkit-transition: box-shadow 200ms ease, -webkit-transform 200ms ease;
  transition: box-shadow 200ms ease, transform 200ms ease;
  border-radius: 10px;
}
@media (min-width: 768px) {
  .cid-uPF7t9vhH5 .card-wrapper:hover {
    transform: translate(10px, -10px);
    box-shadow: -16px 16px 0 #c3ead8;
  }
}
.cid-uPF7t9vhH5 .card-wrapper:hover .card-box {
  background-color: #51aafa;
}
.cid-uPF7t9vhH5 .card-wrapper:hover .iconfont-wrapper {
  background-color: #ffffff;
}
.cid-uPF7t9vhH5 .card-title {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 0;
}
.cid-uPF7t9vhH5 .card-text {
  margin-top: 20px;
  color: #1d191f;
  margin-bottom: 0;
}
.cid-uPF7t9vhH5 .card-title,
.cid-uPF7t9vhH5 .iconfont-wrapper {
  color: #04367c;
}
.cid-uQkeFYtYzp {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uQkeFYtYzp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQkeFYtYzp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uQkeFYtYzp .container {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-uQkeFYtYzp .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uQkeFYtYzp .row {
  justify-content: space-between;
}
.cid-uQkeFYtYzp .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
@media (max-width: 992px) {
  .cid-uQkeFYtYzp .items-wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.cid-uQkeFYtYzp .item .item-wrapper .card-box {
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uQkeFYtYzp .item .item-wrapper .card-box {
    display: block;
  }
}
.cid-uQkeFYtYzp .item .item-wrapper .card-box .icon-wrapper {
  margin-right: 22px;
}
@media (max-width: 992px) {
  .cid-uQkeFYtYzp .item .item-wrapper .card-box .icon-wrapper {
    margin-bottom: 16px;
    margin-right: 0;
  }
}
.cid-uQkeFYtYzp .item .item-wrapper .card-box .icon-wrapper .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  width: 35px;
  height: 35px;
  color: #098484;
  border: 1px solid #098484;
  border-radius: 100%;
}
.cid-uQkeFYtYzp .item .item-wrapper .card-box .card-title {
  margin-bottom: 0;
}
.cid-uQkeFYtYzp .mbr-section-title {
  color: #000000;
}
.cid-uQkeFYtYzp .card-title {
  color: #0e8f61;
}
.cid-uQkeFYtYzp .mbr-section-title,
.cid-uQkeFYtYzp .mbr-section-btn {
  color: #0e8f61;
  text-align: center;
}
.cid-uPGYdl1Tf2 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/mbr-1920x1152.jpg");
}
.cid-uPGYdl1Tf2 .mbr-section-title {
  text-align: left;
}
.cid-uLlGg70seT {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uLlGg70seT .mbr-section-subtitle {
  color: #767676;
}
.cid-uLlGg70seT .container-table {
  margin: 0 auto;
}
.cid-uLlGg70seT .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-uLlGg70seT .dataTables_wrapper {
  display: block;
}
.cid-uLlGg70seT .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-uLlGg70seT .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-uLlGg70seT table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #e1e8ff;
  margin-bottom: 0;
}
.cid-uLlGg70seT table th {
  border-top: none;
  font-weight: 500;
  border: 1px solid #e1e8ff;
  transition: all .2s;
}
.cid-uLlGg70seT table th:hover {
  background: #e1e8ff;
  color: #000000;
}
.cid-uLlGg70seT table td {
  border: 1px solid #e1e8ff;
}
.cid-uLlGg70seT .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-uLlGg70seT .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-uLlGg70seT .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-uLlGg70seT .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-uLlGg70seT .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-uLlGg70seT .dataTables_filter {
    text-align: center;
  }
  .cid-uLlGg70seT .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-uLlGg70seT .head-item {
  color: #57468b;
  text-align: center;
}
.cid-uLlGg70seT .body-item {
  color: #716c80;
  text-align: center;
}
.cid-uLlGg70seT .mbr-section-title {
  color: #57468b;
}
.cid-uLlGg70seT .head-item1 {
  color: #57468b;
}
.cid-uLlGg70seT .body-item1 {
  color: #716c80;
}
.cid-uLlGhgfrcm {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uLlGhgfrcm .mbr-section-subtitle {
  color: #66458e;
}
.cid-uLlGhgfrcm .container-table {
  margin: 0 auto;
}
.cid-uLlGhgfrcm .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-uLlGhgfrcm .dataTables_wrapper {
  display: block;
}
.cid-uLlGhgfrcm .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-uLlGhgfrcm .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-uLlGhgfrcm table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #e1e8ff;
  margin-bottom: 0;
}
.cid-uLlGhgfrcm table th {
  border-top: none;
  font-weight: 500;
  border: 1px solid #e1e8ff;
  transition: all .2s;
}
.cid-uLlGhgfrcm table th:hover {
  background: #e1e8ff;
  color: #000000;
}
.cid-uLlGhgfrcm table td {
  border: 1px solid #e1e8ff;
}
.cid-uLlGhgfrcm .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-uLlGhgfrcm .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-uLlGhgfrcm .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-uLlGhgfrcm .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-uLlGhgfrcm .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-uLlGhgfrcm .dataTables_filter {
    text-align: center;
  }
  .cid-uLlGhgfrcm .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-uLlGhgfrcm .head-item {
  color: #57468b;
  text-align: center;
}
.cid-uLlGhgfrcm .body-item {
  color: #716c80;
  text-align: center;
}
.cid-uLlGhgfrcm .mbr-section-title {
  color: #57468b;
}
.cid-uLlGhgfrcm .head-item1 {
  color: #57468b;
}
.cid-uLlGhgfrcm .body-item1 {
  color: #716c80;
}
.cid-uLlGMyEaTT {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uLlGMyEaTT .mbr-section-subtitle {
  color: #767676;
}
.cid-uLlGMyEaTT .container-table {
  margin: 0 auto;
}
.cid-uLlGMyEaTT .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-uLlGMyEaTT .dataTables_wrapper {
  display: block;
}
.cid-uLlGMyEaTT .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-uLlGMyEaTT .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-uLlGMyEaTT table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #e1e8ff;
  margin-bottom: 0;
}
.cid-uLlGMyEaTT table th {
  border-top: none;
  font-weight: 500;
  border: 1px solid #e1e8ff;
  transition: all .2s;
}
.cid-uLlGMyEaTT table th:hover {
  background: #e1e8ff;
  color: #000000;
}
.cid-uLlGMyEaTT table td {
  border: 1px solid #e1e8ff;
}
.cid-uLlGMyEaTT .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-uLlGMyEaTT .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-uLlGMyEaTT .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-uLlGMyEaTT .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-uLlGMyEaTT .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-uLlGMyEaTT .dataTables_filter {
    text-align: center;
  }
  .cid-uLlGMyEaTT .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-uLlGMyEaTT .head-item {
  color: #57468b;
  text-align: center;
}
.cid-uLlGMyEaTT .body-item {
  color: #716c80;
  text-align: center;
}
.cid-uLlGMyEaTT .mbr-section-title {
  color: #57468b;
}
.cid-uLlGMyEaTT .head-item1 {
  color: #57468b;
}
.cid-uLlGMyEaTT .body-item1 {
  color: #716c80;
}
.cid-uMyuwU4kiv {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uMyuwU4kiv .mbr-section-subtitle {
  color: #66458e;
}
.cid-uMyuwU4kiv .container-table {
  margin: 0 auto;
}
.cid-uMyuwU4kiv .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-uMyuwU4kiv .dataTables_wrapper {
  display: block;
}
.cid-uMyuwU4kiv .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-uMyuwU4kiv .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-uMyuwU4kiv table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #e1e8ff;
  margin-bottom: 0;
}
.cid-uMyuwU4kiv table th {
  border-top: none;
  font-weight: 500;
  border: 1px solid #e1e8ff;
  transition: all .2s;
}
.cid-uMyuwU4kiv table th:hover {
  background: #e1e8ff;
  color: #000000;
}
.cid-uMyuwU4kiv table td {
  border: 1px solid #e1e8ff;
}
.cid-uMyuwU4kiv .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-uMyuwU4kiv .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-uMyuwU4kiv .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-uMyuwU4kiv .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-uMyuwU4kiv .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-uMyuwU4kiv .dataTables_filter {
    text-align: center;
  }
  .cid-uMyuwU4kiv .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-uMyuwU4kiv .head-item {
  color: #57468b;
  text-align: center;
}
.cid-uMyuwU4kiv .body-item {
  color: #716c80;
  text-align: center;
}
.cid-uMyuwU4kiv .mbr-section-title {
  color: #57468b;
}
.cid-uMyuwU4kiv .head-item1 {
  color: #57468b;
}
.cid-uMyuwU4kiv .body-item1 {
  color: #716c80;
}
.cid-uNf7VM74zM {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #04367c;
}
.cid-uNf7VM74zM .mbr-text {
  color: #ffffff;
}
.cid-uNf7VM74zM .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uNf7VM74zM .mbr-section-title {
  color: #ffffff;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1rem;
}
.cid-uefiqbIv3b {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #369898;
}
.cid-uefiqbIv3b .mbr-section-subtitle {
  color: #767676;
}
.cid-uefiqbIv3b .btn {
  margin: 0 0 .5rem 0;
}
@media (max-width: 768px) {
  .cid-uefiqbIv3b h2,
  .cid-uefiqbIv3b h3 {
    text-align: center !important;
  }
  .cid-uefiqbIv3b .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-uefiqbIv3b H2 {
  color: #ffffff;
  text-align: right;
}
.cid-uO9ByZmq32 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #1b61a1;
}
.cid-uO9ByZmq32 .container {
  display: flex;
  justify-content: center;
}
.cid-uO9ByZmq32 .row {
  display: flex;
  align-items: stretch;
  max-width: 1194px;
  width: 100%;
}
.cid-uO9ByZmq32 .col-brand {
  margin-bottom: 40px;
}
.cid-uO9ByZmq32 .col-link {
  margin-bottom: 30px;
}
.cid-uO9ByZmq32 .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 25px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
}
.cid-uO9ByZmq32 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uO9ByZmq32 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uO9ByZmq32 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uO9ByZmq32 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uO9ByZmq32 .mbr-section-subtitle {
  color: #ffffff;
  margin-bottom: 20px;
}
.cid-uO9ByZmq32 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uO9ByZmq32 .mbr-iconfont {
  font-size: 16px;
  color: #3b668d;
}
.cid-uO9ByZmq32 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background-color: #eef4fb;
  margin-right: 10px;
  margin-bottom: 10px;
  padding: 5px;
  min-height: 30px;
  min-width: 30px;
}
.cid-uO9ByZmq32 .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uO9ByZmq32 .soc-item:hover {
  background-color: #738bae;
}
.cid-uO9ByZmq32 .soc-item:hover .mbr-iconfont {
  color: #FFFFFF !important;
}
.cid-uO9ByZmq32 .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #010d4c;
}
.cid-uO9ByZmq32 .list li {
  min-height: 44px;
  display: flex;
  align-items: center;
}
.cid-uO9ByZmq32 .list a {
  min-height: 44px;
  display: flex;
  align-items: center;
}
.cid-uO9ByZmq32 .brand-text {
  margin-bottom: 35px;
  color: #ffffff;
  opacity: 0.8;
}
.cid-uO9ByZmq32 .mbr-text {
  color: #00284E;
  opacity: 0.8;
}
.cid-uO9ByZmq32 .mbr-text .text-black {
  color: #00284E !important;
}
.cid-uO9ByZmq32 .mbr-text a {
  opacity: 0.8;
}
.cid-uO9ByZmq32 .mbr-text a:hover {
  opacity: 1;
  color: #04367c !important;
}
.cid-uO9ByZmq32 .col-copyright {
  margin-top: 44px;
}
.cid-uO9ByZmq32 .copyright {
  color: #ffffff;
  opacity: 0.8;
}
@media (max-width: 991px) {
  .cid-uO9ByZmq32 .copyright {
    text-align: center !important;
  }
}
.cid-uO9ByZmq32 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uO9ByZmq32 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFMh2eyzqq {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uFMh2eyzqq .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uFMh2eyzqq .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-uFMh2eyzqq .iconfont-wrapper {
  color: #103178 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-uFMh2eyzqq .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-uFMh2eyzqq .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-uFMh2eyzqq .container {
    padding: 0 1rem;
  }
}
.cid-uFMh2eyzqq .menu-tite {
  background: #04367c;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-uFMh2eyzqq .nav-link {
  position: relative;
}
.cid-uFMh2eyzqq .nav-link:hover {
  color: #51aafa !important;
}
.cid-uFMh2eyzqq nav.navbar {
  position: fixed;
}
.cid-uFMh2eyzqq .navbar {
  padding: 0!important;
  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-uFMh2eyzqq .navbar.opened {
  transition: all 0.3s;
}
.cid-uFMh2eyzqq .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uFMh2eyzqq .navbar .navbar-logo img {
  width: auto;
}
.cid-uFMh2eyzqq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uFMh2eyzqq .navbar.collapsed {
  justify-content: center;
}
.cid-uFMh2eyzqq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uFMh2eyzqq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uFMh2eyzqq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uFMh2eyzqq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uFMh2eyzqq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uFMh2eyzqq .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-uFMh2eyzqq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uFMh2eyzqq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uFMh2eyzqq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uFMh2eyzqq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uFMh2eyzqq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uFMh2eyzqq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uFMh2eyzqq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uFMh2eyzqq .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-uFMh2eyzqq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uFMh2eyzqq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uFMh2eyzqq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uFMh2eyzqq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uFMh2eyzqq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uFMh2eyzqq .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uFMh2eyzqq .navbar.navbar-short {
  min-height: 60px;
}
.cid-uFMh2eyzqq .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uFMh2eyzqq .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uFMh2eyzqq .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-uFMh2eyzqq .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uFMh2eyzqq .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uFMh2eyzqq .dropdown-item:hover,
.cid-uFMh2eyzqq .dropdown-item:focus {
  background: #04367c !important;
  color: white !important;
}
.cid-uFMh2eyzqq .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uFMh2eyzqq .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uFMh2eyzqq .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-uFMh2eyzqq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uFMh2eyzqq .dropdown-menu,
.cid-uFMh2eyzqq .navbar.opened {
  background: #ffffff !important;
}
.cid-uFMh2eyzqq .nav-item:focus,
.cid-uFMh2eyzqq .nav-link:focus {
  outline: none;
}
.cid-uFMh2eyzqq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uFMh2eyzqq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uFMh2eyzqq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uFMh2eyzqq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uFMh2eyzqq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uFMh2eyzqq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uFMh2eyzqq .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uFMh2eyzqq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uFMh2eyzqq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uFMh2eyzqq .dropdown-item.active,
.cid-uFMh2eyzqq .dropdown-item:active {
  background-color: transparent;
}
.cid-uFMh2eyzqq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uFMh2eyzqq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uFMh2eyzqq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uFMh2eyzqq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uFMh2eyzqq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uFMh2eyzqq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uFMh2eyzqq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uFMh2eyzqq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uFMh2eyzqq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uFMh2eyzqq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uFMh2eyzqq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uFMh2eyzqq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFMh2eyzqq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFMh2eyzqq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uFMh2eyzqq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFMh2eyzqq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uFMh2eyzqq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uFMh2eyzqq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFMh2eyzqq .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uFMh2eyzqq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uFMh2eyzqq .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-uFMh2eyzqq .navbar {
    height: 70px;
  }
  .cid-uFMh2eyzqq .navbar.opened {
    height: auto;
  }
  .cid-uFMh2eyzqq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-riw7XumXqc {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/mbr-1920x655.jpg");
}
.cid-riw7XumXqc .mbr-overlay {
  background: #51aafa;
  background: linear-gradient(90deg, #51aafa, #000000);
}
.cid-riw7XumXqc .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-rjVLfjjzDS {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rjVLfjjzDS .mbr-overlay {
  background: #efefef;
}
.cid-rjVLfjjzDS .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-rjVLfjjzDS .client-name {
  color: #8d97ad;
}
.cid-rjVLfjjzDS .wrap-img {
  padding-bottom: 1rem;
}
.cid-rjVLfjjzDS .wrap-img img {
  max-width: 100%;
}
.cid-rjVLfjjzDS .card-box p {
  color: #8d97ad;
  margin: 0;
  padding-bottom: 1.5rem;
}
.cid-rk7bealDPM {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rk7bealDPM .mbr-overlay {
  background: #efefef;
}
.cid-rk7bealDPM .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-rk7bealDPM .client-name {
  color: #8d97ad;
}
.cid-rk7bealDPM .wrap-img {
  padding-bottom: 1rem;
}
.cid-rk7bealDPM .wrap-img img {
  max-width: 100%;
}
.cid-rk7bealDPM .card-box p {
  color: #8d97ad;
  margin: 0;
  padding-bottom: 1.5rem;
}
.cid-rk7bezSk8X {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rk7bezSk8X .mbr-overlay {
  background: #efefef;
}
.cid-rk7bezSk8X .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-rk7bezSk8X .client-name {
  color: #8d97ad;
}
.cid-rk7bezSk8X .wrap-img {
  padding-bottom: 1rem;
}
.cid-rk7bezSk8X .wrap-img img {
  max-width: 100%;
}
.cid-rk7bezSk8X .card-box p {
  color: #8d97ad;
  margin: 0;
  padding-bottom: 1.5rem;
}
.cid-rk7c2fQvJ1 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rk7c2fQvJ1 .mbr-overlay {
  background: #efefef;
}
.cid-rk7c2fQvJ1 .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-rk7c2fQvJ1 .client-name {
  color: #8d97ad;
}
.cid-rk7c2fQvJ1 .wrap-img {
  padding-bottom: 1rem;
}
.cid-rk7c2fQvJ1 .wrap-img img {
  max-width: 100%;
}
.cid-rk7c2fQvJ1 .card-box p {
  color: #8d97ad;
  margin: 0;
  padding-bottom: 1.5rem;
}
.cid-rlBREm8U3X {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rlBREm8U3X .mbr-overlay {
  background: #efefef;
}
.cid-rlBREm8U3X .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-rlBREm8U3X .client-name {
  color: #8d97ad;
}
.cid-rlBREm8U3X .wrap-img {
  padding-bottom: 1rem;
}
.cid-rlBREm8U3X .wrap-img img {
  max-width: 100%;
}
.cid-rlBREm8U3X .card-box p {
  color: #8d97ad;
  margin: 0;
  padding-bottom: 1.5rem;
}
.cid-rlBTP32f1S {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rlBTP32f1S .mbr-overlay {
  background: #efefef;
}
.cid-rlBTP32f1S .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-rlBTP32f1S .client-name {
  color: #8d97ad;
}
.cid-rlBTP32f1S .wrap-img {
  padding-bottom: 1rem;
}
.cid-rlBTP32f1S .wrap-img img {
  max-width: 100%;
}
.cid-rlBTP32f1S .card-box p {
  color: #8d97ad;
  margin: 0;
  padding-bottom: 1.5rem;
}
.cid-rlIb1qy6Hu {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rlIb1qy6Hu .mbr-text {
  color: #8d97ad;
  text-align: center;
}
.cid-uO9ByZmq32 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #1b61a1;
}
.cid-uO9ByZmq32 .container {
  display: flex;
  justify-content: center;
}
.cid-uO9ByZmq32 .row {
  display: flex;
  align-items: stretch;
  max-width: 1194px;
  width: 100%;
}
.cid-uO9ByZmq32 .col-brand {
  margin-bottom: 40px;
}
.cid-uO9ByZmq32 .col-link {
  margin-bottom: 30px;
}
.cid-uO9ByZmq32 .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 25px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
}
.cid-uO9ByZmq32 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uO9ByZmq32 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uO9ByZmq32 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uO9ByZmq32 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uO9ByZmq32 .mbr-section-subtitle {
  color: #ffffff;
  margin-bottom: 20px;
}
.cid-uO9ByZmq32 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uO9ByZmq32 .mbr-iconfont {
  font-size: 16px;
  color: #3b668d;
}
.cid-uO9ByZmq32 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background-color: #eef4fb;
  margin-right: 10px;
  margin-bottom: 10px;
  padding: 5px;
  min-height: 30px;
  min-width: 30px;
}
.cid-uO9ByZmq32 .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uO9ByZmq32 .soc-item:hover {
  background-color: #738bae;
}
.cid-uO9ByZmq32 .soc-item:hover .mbr-iconfont {
  color: #FFFFFF !important;
}
.cid-uO9ByZmq32 .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #010d4c;
}
.cid-uO9ByZmq32 .list li {
  min-height: 44px;
  display: flex;
  align-items: center;
}
.cid-uO9ByZmq32 .list a {
  min-height: 44px;
  display: flex;
  align-items: center;
}
.cid-uO9ByZmq32 .brand-text {
  margin-bottom: 35px;
  color: #ffffff;
  opacity: 0.8;
}
.cid-uO9ByZmq32 .mbr-text {
  color: #00284E;
  opacity: 0.8;
}
.cid-uO9ByZmq32 .mbr-text .text-black {
  color: #00284E !important;
}
.cid-uO9ByZmq32 .mbr-text a {
  opacity: 0.8;
}
.cid-uO9ByZmq32 .mbr-text a:hover {
  opacity: 1;
  color: #04367c !important;
}
.cid-uO9ByZmq32 .col-copyright {
  margin-top: 44px;
}
.cid-uO9ByZmq32 .copyright {
  color: #ffffff;
  opacity: 0.8;
}
@media (max-width: 991px) {
  .cid-uO9ByZmq32 .copyright {
    text-align: center !important;
  }
}
.cid-uO9ByZmq32 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uO9ByZmq32 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFMh2eyzqq {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uFMh2eyzqq .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uFMh2eyzqq .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-uFMh2eyzqq .iconfont-wrapper {
  color: #103178 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-uFMh2eyzqq .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-uFMh2eyzqq .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-uFMh2eyzqq .container {
    padding: 0 1rem;
  }
}
.cid-uFMh2eyzqq .menu-tite {
  background: #04367c;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-uFMh2eyzqq .nav-link {
  position: relative;
}
.cid-uFMh2eyzqq .nav-link:hover {
  color: #51aafa !important;
}
.cid-uFMh2eyzqq nav.navbar {
  position: fixed;
}
.cid-uFMh2eyzqq .navbar {
  padding: 0!important;
  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-uFMh2eyzqq .navbar.opened {
  transition: all 0.3s;
}
.cid-uFMh2eyzqq .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uFMh2eyzqq .navbar .navbar-logo img {
  width: auto;
}
.cid-uFMh2eyzqq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uFMh2eyzqq .navbar.collapsed {
  justify-content: center;
}
.cid-uFMh2eyzqq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uFMh2eyzqq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uFMh2eyzqq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uFMh2eyzqq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uFMh2eyzqq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uFMh2eyzqq .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-uFMh2eyzqq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uFMh2eyzqq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uFMh2eyzqq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uFMh2eyzqq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uFMh2eyzqq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uFMh2eyzqq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uFMh2eyzqq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uFMh2eyzqq .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-uFMh2eyzqq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uFMh2eyzqq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uFMh2eyzqq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uFMh2eyzqq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uFMh2eyzqq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uFMh2eyzqq .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uFMh2eyzqq .navbar.navbar-short {
  min-height: 60px;
}
.cid-uFMh2eyzqq .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uFMh2eyzqq .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uFMh2eyzqq .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-uFMh2eyzqq .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uFMh2eyzqq .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uFMh2eyzqq .dropdown-item:hover,
.cid-uFMh2eyzqq .dropdown-item:focus {
  background: #04367c !important;
  color: white !important;
}
.cid-uFMh2eyzqq .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uFMh2eyzqq .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uFMh2eyzqq .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-uFMh2eyzqq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uFMh2eyzqq .dropdown-menu,
.cid-uFMh2eyzqq .navbar.opened {
  background: #ffffff !important;
}
.cid-uFMh2eyzqq .nav-item:focus,
.cid-uFMh2eyzqq .nav-link:focus {
  outline: none;
}
.cid-uFMh2eyzqq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uFMh2eyzqq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uFMh2eyzqq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uFMh2eyzqq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uFMh2eyzqq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uFMh2eyzqq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uFMh2eyzqq .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uFMh2eyzqq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uFMh2eyzqq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uFMh2eyzqq .dropdown-item.active,
.cid-uFMh2eyzqq .dropdown-item:active {
  background-color: transparent;
}
.cid-uFMh2eyzqq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uFMh2eyzqq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uFMh2eyzqq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uFMh2eyzqq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uFMh2eyzqq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uFMh2eyzqq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uFMh2eyzqq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uFMh2eyzqq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uFMh2eyzqq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uFMh2eyzqq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uFMh2eyzqq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uFMh2eyzqq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFMh2eyzqq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFMh2eyzqq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uFMh2eyzqq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFMh2eyzqq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uFMh2eyzqq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uFMh2eyzqq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFMh2eyzqq .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uFMh2eyzqq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uFMh2eyzqq .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-uFMh2eyzqq .navbar {
    height: 70px;
  }
  .cid-uFMh2eyzqq .navbar.opened {
    height: auto;
  }
  .cid-uFMh2eyzqq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uNj9tQlZn8 {
  padding-top: 180px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/mbr-1920x1314.jpg");
}
.cid-uNj9tQlZn8 .media-container-column .btn-bgr {
  z-index: 0;
}
.cid-uNj9tQlZn8 .mbr-overlay {
  background: #333333;
  background: linear-gradient(#333333 -10%, #1d2671 75%);
}
.cid-uNj9tQlZn8 .mbr-section-title {
  margin: 0;
}
.cid-uNj9tQlZn8 .separator {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  max-width: 125px;
  margin-left: auto;
  margin-right: auto;
}
.cid-rkoGZ7aYSJ {
  padding-top: 75px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/office-5211510-1920-1920x1080.jpg");
}
.cid-rkoGZ7aYSJ .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-rkoGZ7aYSJ .mbr-section-title {
  color: #ffffff;
}
.cid-rkoGZ7aYSJ .mbr-section-subtitle DIV {
  color: #ffffff;
}
.cid-uNjtrwR3q6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}
.cid-uNjtrwR3q6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNjtrwR3q6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNjtrwR3q6 .col-title {
  margin-bottom: 64px;
}
.cid-uNjtrwR3q6 .mbr-section-title {
  color: #04367c;
}
.cid-uNjtrwR3q6 .mbr-section-subtitle {
  color: #1F1D1A;
  margin-top: 1.5rem;
}
.cid-uNjtrwR3q6 .cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}
@media (max-width: 991px) {
  .cid-uNjtrwR3q6 .cards-container {
    gap: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uNjtrwR3q6 .cards-container {
    max-width: 482px;
    margin: 0 auto;
    grid-template-columns: repeat(1, 1fr);
  }
}
.cid-uNjtrwR3q6 .image-wrapper {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  overflow: hidden;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .cid-uNjtrwR3q6 .image-wrapper {
    justify-content: center;
  }
}
.cid-uNjtrwR3q6 .image-wrapper img {
  width: 100%;
  max-width: 300px;
  height: 300px;
  object-fit: contain;
}
.cid-uNjtrwR3q6 .card-title-container {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .cid-uNjtrwR3q6 .card-title-container {
    justify-content: center;
  }
}
.cid-uNjtrwR3q6 .card-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 0.75rem;
  font-size: 20px;
  background-color: #04367c;
  color: #ffffff;
  flex-shrink: 0;
}
.cid-uNjtrwR3q6 .card-title {
  color: #04367c;
  margin-bottom: 0;
}
.cid-uNjtrwR3q6 .card-text {
  color: #1F1D1A;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .cid-uNjtrwR3q6 .card-text {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-uNjtrwR3q6 .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-uNjtrwR3q6 .bg-img {
  position: absolute;
  width: 100%;
  background-color: #fef9ee;
  aspect-ratio: 1;
  border-radius: 9999px;
  left: 0;
  bottom: 0;
  transform: translateY(50%);
}
.cid-uNjBlS97k8 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uNjBlS97k8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNjBlS97k8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uNjBlS97k8 .container {
    padding: 0 30px;
  }
}
.cid-uNjBlS97k8 .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uNjBlS97k8 .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uNjBlS97k8 .items {
  padding: 20px 0;
}
.cid-uNjBlS97k8 .items .item {
  padding-bottom: 30px;
  border-bottom: 2px solid #ededed;
  margin-bottom: 30px;
}
.cid-uNjBlS97k8 .items .item:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uNjBlS97k8 .items .item {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}
.cid-uNjBlS97k8 .items .item .item-wrapper .card-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
@media (max-width: 768px) {
  .cid-uNjBlS97k8 .items .item .item-wrapper .card-box {
    display: block;
  }
}
@media (max-width: 768px) {
  .cid-uNjBlS97k8 .items .item .item-wrapper .card-box .content-wrap:first-child {
    margin-bottom: 20px;
  }
}
.cid-uNjBlS97k8 .items .item .item-wrapper .card-box .content-wrap .card-subtitle {
  line-height: 180%;
  margin-bottom: 0;
}
.cid-uNjBlS97k8 .items .item .item-wrapper .card-box .content-wrap .mbr-desc {
  opacity: .6;
  line-height: 180%;
  margin-bottom: 0;
}
.cid-uNjBlS97k8 .mbr-section-title {
  color: #000000;
}
.cid-uNjBlS97k8 .card-subtitle {
  color: #000000;
}
.cid-uNjBlS97k8 .mbr-desc {
  color: #000000;
}
.cid-uNpsFh1XdC {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #04367c;
}
.cid-uNpsFh1XdC .mbr-section-subtitle {
  color: #767676;
}
.cid-uNpsFh1XdC .btn {
  margin: 0 0 .5rem 0;
}
@media (max-width: 768px) {
  .cid-uNpsFh1XdC h2,
  .cid-uNpsFh1XdC h3 {
    text-align: center !important;
  }
  .cid-uNpsFh1XdC .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-uNpsFh1XdC H2 {
  color: #ffffff;
}
.cid-uO9ByZmq32 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #1b61a1;
}
.cid-uO9ByZmq32 .container {
  display: flex;
  justify-content: center;
}
.cid-uO9ByZmq32 .row {
  display: flex;
  align-items: stretch;
  max-width: 1194px;
  width: 100%;
}
.cid-uO9ByZmq32 .col-brand {
  margin-bottom: 40px;
}
.cid-uO9ByZmq32 .col-link {
  margin-bottom: 30px;
}
.cid-uO9ByZmq32 .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 25px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
}
.cid-uO9ByZmq32 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uO9ByZmq32 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uO9ByZmq32 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uO9ByZmq32 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uO9ByZmq32 .mbr-section-subtitle {
  color: #ffffff;
  margin-bottom: 20px;
}
.cid-uO9ByZmq32 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uO9ByZmq32 .mbr-iconfont {
  font-size: 16px;
  color: #3b668d;
}
.cid-uO9ByZmq32 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background-color: #eef4fb;
  margin-right: 10px;
  margin-bottom: 10px;
  padding: 5px;
  min-height: 30px;
  min-width: 30px;
}
.cid-uO9ByZmq32 .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uO9ByZmq32 .soc-item:hover {
  background-color: #738bae;
}
.cid-uO9ByZmq32 .soc-item:hover .mbr-iconfont {
  color: #FFFFFF !important;
}
.cid-uO9ByZmq32 .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #010d4c;
}
.cid-uO9ByZmq32 .list li {
  min-height: 44px;
  display: flex;
  align-items: center;
}
.cid-uO9ByZmq32 .list a {
  min-height: 44px;
  display: flex;
  align-items: center;
}
.cid-uO9ByZmq32 .brand-text {
  margin-bottom: 35px;
  color: #ffffff;
  opacity: 0.8;
}
.cid-uO9ByZmq32 .mbr-text {
  color: #00284E;
  opacity: 0.8;
}
.cid-uO9ByZmq32 .mbr-text .text-black {
  color: #00284E !important;
}
.cid-uO9ByZmq32 .mbr-text a {
  opacity: 0.8;
}
.cid-uO9ByZmq32 .mbr-text a:hover {
  opacity: 1;
  color: #04367c !important;
}
.cid-uO9ByZmq32 .col-copyright {
  margin-top: 44px;
}
.cid-uO9ByZmq32 .copyright {
  color: #ffffff;
  opacity: 0.8;
}
@media (max-width: 991px) {
  .cid-uO9ByZmq32 .copyright {
    text-align: center !important;
  }
}
.cid-uO9ByZmq32 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uO9ByZmq32 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFMh2eyzqq {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uFMh2eyzqq .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uFMh2eyzqq .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-uFMh2eyzqq .iconfont-wrapper {
  color: #103178 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-uFMh2eyzqq .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-uFMh2eyzqq .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-uFMh2eyzqq .container {
    padding: 0 1rem;
  }
}
.cid-uFMh2eyzqq .menu-tite {
  background: #04367c;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-uFMh2eyzqq .nav-link {
  position: relative;
}
.cid-uFMh2eyzqq .nav-link:hover {
  color: #51aafa !important;
}
.cid-uFMh2eyzqq nav.navbar {
  position: fixed;
}
.cid-uFMh2eyzqq .navbar {
  padding: 0!important;
  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-uFMh2eyzqq .navbar.opened {
  transition: all 0.3s;
}
.cid-uFMh2eyzqq .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uFMh2eyzqq .navbar .navbar-logo img {
  width: auto;
}
.cid-uFMh2eyzqq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uFMh2eyzqq .navbar.collapsed {
  justify-content: center;
}
.cid-uFMh2eyzqq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uFMh2eyzqq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uFMh2eyzqq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uFMh2eyzqq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uFMh2eyzqq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uFMh2eyzqq .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-uFMh2eyzqq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uFMh2eyzqq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uFMh2eyzqq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uFMh2eyzqq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uFMh2eyzqq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uFMh2eyzqq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uFMh2eyzqq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uFMh2eyzqq .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-uFMh2eyzqq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uFMh2eyzqq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uFMh2eyzqq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uFMh2eyzqq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uFMh2eyzqq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uFMh2eyzqq .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uFMh2eyzqq .navbar.navbar-short {
  min-height: 60px;
}
.cid-uFMh2eyzqq .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uFMh2eyzqq .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uFMh2eyzqq .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-uFMh2eyzqq .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uFMh2eyzqq .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uFMh2eyzqq .dropdown-item:hover,
.cid-uFMh2eyzqq .dropdown-item:focus {
  background: #04367c !important;
  color: white !important;
}
.cid-uFMh2eyzqq .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uFMh2eyzqq .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uFMh2eyzqq .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-uFMh2eyzqq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uFMh2eyzqq .dropdown-menu,
.cid-uFMh2eyzqq .navbar.opened {
  background: #ffffff !important;
}
.cid-uFMh2eyzqq .nav-item:focus,
.cid-uFMh2eyzqq .nav-link:focus {
  outline: none;
}
.cid-uFMh2eyzqq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uFMh2eyzqq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uFMh2eyzqq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uFMh2eyzqq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uFMh2eyzqq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uFMh2eyzqq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uFMh2eyzqq .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uFMh2eyzqq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uFMh2eyzqq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uFMh2eyzqq .dropdown-item.active,
.cid-uFMh2eyzqq .dropdown-item:active {
  background-color: transparent;
}
.cid-uFMh2eyzqq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uFMh2eyzqq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uFMh2eyzqq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uFMh2eyzqq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uFMh2eyzqq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uFMh2eyzqq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uFMh2eyzqq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uFMh2eyzqq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uFMh2eyzqq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uFMh2eyzqq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uFMh2eyzqq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uFMh2eyzqq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFMh2eyzqq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFMh2eyzqq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uFMh2eyzqq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFMh2eyzqq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uFMh2eyzqq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uFMh2eyzqq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFMh2eyzqq .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uFMh2eyzqq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uFMh2eyzqq .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-uFMh2eyzqq .navbar {
    height: 70px;
  }
  .cid-uFMh2eyzqq .navbar.opened {
    height: auto;
  }
  .cid-uFMh2eyzqq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ruSeJolQST {
  padding-top: 140px;
  padding-bottom: 105px;
  background-image: url("../../../assets/images/mbr-2-676x451.jpg");
}
.cid-ruSeJolQST .media-container-column .btn-bgr {
  z-index: 0;
}
.cid-ruSeJolQST .mbr-overlay {
  background: #333333;
  background: linear-gradient(#333333 -10%, #1d2671 75%);
}
.cid-ruSeJolQST .mbr-section-title {
  margin: 0;
}
.cid-ruSeJolQST .separator {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  max-width: 125px;
  margin-left: auto;
  margin-right: auto;
}
.cid-riuJmEjXzc {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-riuJmEjXzc .card {
  padding: 1rem 1rem 3rem 1rem;
}
.cid-riuJmEjXzc .card-img {
  padding-bottom: 2rem;
  border-radius: .25rem;
  overflow: hidden;
}
.cid-riuJmEjXzc .card-img img {
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-riuJmEjXzc .section-text,
.cid-riuJmEjXzc .card-text {
  color: #8d97ad;
}
@media (max-width: 767px) {
  .cid-riuJmEjXzc .section-text,
  .cid-riuJmEjXzc .card-text,
  .cid-riuJmEjXzc .card-title,
  .cid-riuJmEjXzc .mbr-section-title {
    text-align: center;
  }
}
.cid-riuKRDPwZ6 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-riuKRDPwZ6 .card {
  padding: 1rem 1rem 3rem 1rem;
}
.cid-riuKRDPwZ6 .card-img {
  padding-bottom: 2rem;
  border-radius: .25rem;
  overflow: hidden;
}
.cid-riuKRDPwZ6 .card-img img {
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-riuKRDPwZ6 .section-text,
.cid-riuKRDPwZ6 .card-text {
  color: #8d97ad;
}
@media (max-width: 767px) {
  .cid-riuKRDPwZ6 .section-text,
  .cid-riuKRDPwZ6 .card-text,
  .cid-riuKRDPwZ6 .card-title,
  .cid-riuKRDPwZ6 .mbr-section-title {
    text-align: center;
  }
}
.cid-rxH5cMm4aC {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rxH5cMm4aC .mbr-overlay {
  background: #ffffff;
  background: linear-gradient(to right, #ffffff, #51aafa);
}
.cid-rxH5cMm4aC .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rxH5cMm4aC .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-rxH5cMm4aC .carousel-item .wrap-img {
  text-align: center;
}
.cid-rxH5cMm4aC .carousel-item .wrap-img img {
  max-height: 150px;
  width: auto;
  max-width: 100%;
}
.cid-rxH5cMm4aC .carousel-controls {
  position: absolute;
  width: 100%;
  top: 0;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.cid-rxH5cMm4aC .carousel-controls .carousel-control {
  z-index: 2;
  background: transparent;
  position: static;
  width: 40px;
  height: 40px;
  margin-top: 2rem;
  color: #ffffff;
  font-weight: bold;
}
.cid-rxH5cMm4aC .carousel-controls .carousel-control.carousel-control-prev {
  left: auto;
  margin-right: 20px;
  margin-left: 0;
}
.cid-rxH5cMm4aC .carousel-controls .carousel-control.carousel-control-next {
  right: auto;
  margin-right: 0;
}
.cid-rxH5cMm4aC .carousel-controls .carousel-control .mbr-iconfont {
  font-size: 1.2rem;
  font-weight: bold;
}
.cid-rxH5cMm4aC .cloneditem-1,
.cid-rxH5cMm4aC .cloneditem-2,
.cid-rxH5cMm4aC .cloneditem-3,
.cid-rxH5cMm4aC .cloneditem-4,
.cid-rxH5cMm4aC .cloneditem-5 {
  display: none;
}
.cid-rxH5cMm4aC .col-lg-15 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  -webkit-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
  position: relative;
  min-height: 1px;
  padding-right: 10px;
  padding-left: 10px;
  width: 100%;
}
@media (min-width: 992px) {
  .cid-rxH5cMm4aC .col-lg-15 {
    -ms-flex: 0 0 20%;
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    width: 20%;
  }
  .cid-rxH5cMm4aC .carousel-inner {
    z-index: 1;
  }
  .cid-rxH5cMm4aC .carousel-inner.slides2 > .carousel-item.active.carousel-item-right,
  .cid-rxH5cMm4aC .carousel-inner.slides2 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(50%, 0, 0);
    transform: translate3d(50%, 0, 0);
  }
  .cid-rxH5cMm4aC .carousel-inner.slides2 > .carousel-item.active.carousel-item-left,
  .cid-rxH5cMm4aC .carousel-inner.slides2 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
  .cid-rxH5cMm4aC .carousel-inner.slides2 > .carousel-item.carousel-item-left,
  .cid-rxH5cMm4aC .carousel-inner.slides2 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-rxH5cMm4aC .carousel-inner.slides2 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-rxH5cMm4aC .carousel-inner.slides2 .cloneditem-1,
  .cid-rxH5cMm4aC .carousel-inner.slides2 .cloneditem-2,
  .cid-rxH5cMm4aC .carousel-inner.slides2 .cloneditem-3 {
    display: block;
  }
  .cid-rxH5cMm4aC .carousel-inner.slides3 > .carousel-item.active.carousel-item-right,
  .cid-rxH5cMm4aC .carousel-inner.slides3 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(33.333333%, 0, 0);
    transform: translate3d(33.333333%, 0, 0);
  }
  .cid-rxH5cMm4aC .carousel-inner.slides3 > .carousel-item.active.carousel-item-left,
  .cid-rxH5cMm4aC .carousel-inner.slides3 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-33.333333%, 0, 0);
    transform: translate3d(-33.333333%, 0, 0);
  }
  .cid-rxH5cMm4aC .carousel-inner.slides3 > .carousel-item.carousel-item-left,
  .cid-rxH5cMm4aC .carousel-inner.slides3 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-rxH5cMm4aC .carousel-inner.slides3 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-rxH5cMm4aC .carousel-inner.slides3 .cloneditem-1,
  .cid-rxH5cMm4aC .carousel-inner.slides3 .cloneditem-2,
  .cid-rxH5cMm4aC .carousel-inner.slides3 .cloneditem-3 {
    display: block;
  }
  .cid-rxH5cMm4aC .carousel-inner.slides4 > .carousel-item.active.carousel-item-right,
  .cid-rxH5cMm4aC .carousel-inner.slides4 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(25%, 0, 0);
    transform: translate3d(25%, 0, 0);
  }
  .cid-rxH5cMm4aC .carousel-inner.slides4 > .carousel-item.active.carousel-item-left,
  .cid-rxH5cMm4aC .carousel-inner.slides4 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-25%, 0, 0);
    transform: translate3d(-25%, 0, 0);
  }
  .cid-rxH5cMm4aC .carousel-inner.slides4 > .carousel-item.carousel-item-left,
  .cid-rxH5cMm4aC .carousel-inner.slides4 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-rxH5cMm4aC .carousel-inner.slides4 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-rxH5cMm4aC .carousel-inner.slides4 .cloneditem-1,
  .cid-rxH5cMm4aC .carousel-inner.slides4 .cloneditem-2,
  .cid-rxH5cMm4aC .carousel-inner.slides4 .cloneditem-3 {
    display: block;
  }
  .cid-rxH5cMm4aC .carousel-inner.slides5 > .carousel-item.active.carousel-item-right,
  .cid-rxH5cMm4aC .carousel-inner.slides5 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(20%, 0, 0);
    transform: translate3d(20%, 0, 0);
  }
  .cid-rxH5cMm4aC .carousel-inner.slides5 > .carousel-item.active.carousel-item-left,
  .cid-rxH5cMm4aC .carousel-inner.slides5 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-20%, 0, 0);
    transform: translate3d(-20%, 0, 0);
  }
  .cid-rxH5cMm4aC .carousel-inner.slides5 > .carousel-item.carousel-item-left,
  .cid-rxH5cMm4aC .carousel-inner.slides5 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-rxH5cMm4aC .carousel-inner.slides5 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-rxH5cMm4aC .carousel-inner.slides5 .cloneditem-1,
  .cid-rxH5cMm4aC .carousel-inner.slides5 .cloneditem-2,
  .cid-rxH5cMm4aC .carousel-inner.slides5 .cloneditem-3,
  .cid-rxH5cMm4aC .carousel-inner.slides5 .cloneditem-4 {
    display: block;
  }
  .cid-rxH5cMm4aC .carousel-inner.slides6 > .carousel-item.active.carousel-item-right,
  .cid-rxH5cMm4aC .carousel-inner.slides6 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(16.666667%, 0, 0);
    transform: translate3d(16.666667%, 0, 0);
  }
  .cid-rxH5cMm4aC .carousel-inner.slides6 > .carousel-item.active.carousel-item-left,
  .cid-rxH5cMm4aC .carousel-inner.slides6 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-16.666667%, 0, 0);
    transform: translate3d(-16.666667%, 0, 0);
  }
  .cid-rxH5cMm4aC .carousel-inner.slides6 > .carousel-item.carousel-item-left,
  .cid-rxH5cMm4aC .carousel-inner.slides6 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-rxH5cMm4aC .carousel-inner.slides6 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-rxH5cMm4aC .carousel-inner.slides6 .cloneditem-1,
  .cid-rxH5cMm4aC .carousel-inner.slides6 .cloneditem-2,
  .cid-rxH5cMm4aC .carousel-inner.slides6 .cloneditem-3,
  .cid-rxH5cMm4aC .carousel-inner.slides6 .cloneditem-4,
  .cid-rxH5cMm4aC .carousel-inner.slides6 .cloneditem-5 {
    display: block;
  }
}
.cid-rxH5cMm4aC .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uO9ByZmq32 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #1b61a1;
}
.cid-uO9ByZmq32 .container {
  display: flex;
  justify-content: center;
}
.cid-uO9ByZmq32 .row {
  display: flex;
  align-items: stretch;
  max-width: 1194px;
  width: 100%;
}
.cid-uO9ByZmq32 .col-brand {
  margin-bottom: 40px;
}
.cid-uO9ByZmq32 .col-link {
  margin-bottom: 30px;
}
.cid-uO9ByZmq32 .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 25px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
}
.cid-uO9ByZmq32 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uO9ByZmq32 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uO9ByZmq32 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uO9ByZmq32 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uO9ByZmq32 .mbr-section-subtitle {
  color: #ffffff;
  margin-bottom: 20px;
}
.cid-uO9ByZmq32 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uO9ByZmq32 .mbr-iconfont {
  font-size: 16px;
  color: #3b668d;
}
.cid-uO9ByZmq32 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background-color: #eef4fb;
  margin-right: 10px;
  margin-bottom: 10px;
  padding: 5px;
  min-height: 30px;
  min-width: 30px;
}
.cid-uO9ByZmq32 .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uO9ByZmq32 .soc-item:hover {
  background-color: #738bae;
}
.cid-uO9ByZmq32 .soc-item:hover .mbr-iconfont {
  color: #FFFFFF !important;
}
.cid-uO9ByZmq32 .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #010d4c;
}
.cid-uO9ByZmq32 .list li {
  min-height: 44px;
  display: flex;
  align-items: center;
}
.cid-uO9ByZmq32 .list a {
  min-height: 44px;
  display: flex;
  align-items: center;
}
.cid-uO9ByZmq32 .brand-text {
  margin-bottom: 35px;
  color: #ffffff;
  opacity: 0.8;
}
.cid-uO9ByZmq32 .mbr-text {
  color: #00284E;
  opacity: 0.8;
}
.cid-uO9ByZmq32 .mbr-text .text-black {
  color: #00284E !important;
}
.cid-uO9ByZmq32 .mbr-text a {
  opacity: 0.8;
}
.cid-uO9ByZmq32 .mbr-text a:hover {
  opacity: 1;
  color: #04367c !important;
}
.cid-uO9ByZmq32 .col-copyright {
  margin-top: 44px;
}
.cid-uO9ByZmq32 .copyright {
  color: #ffffff;
  opacity: 0.8;
}
@media (max-width: 991px) {
  .cid-uO9ByZmq32 .copyright {
    text-align: center !important;
  }
}
.cid-uO9ByZmq32 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uO9ByZmq32 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFMh2eyzqq {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uFMh2eyzqq .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uFMh2eyzqq .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-uFMh2eyzqq .iconfont-wrapper {
  color: #103178 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-uFMh2eyzqq .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-uFMh2eyzqq .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-uFMh2eyzqq .container {
    padding: 0 1rem;
  }
}
.cid-uFMh2eyzqq .menu-tite {
  background: #04367c;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-uFMh2eyzqq .nav-link {
  position: relative;
}
.cid-uFMh2eyzqq .nav-link:hover {
  color: #51aafa !important;
}
.cid-uFMh2eyzqq nav.navbar {
  position: fixed;
}
.cid-uFMh2eyzqq .navbar {
  padding: 0!important;
  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-uFMh2eyzqq .navbar.opened {
  transition: all 0.3s;
}
.cid-uFMh2eyzqq .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uFMh2eyzqq .navbar .navbar-logo img {
  width: auto;
}
.cid-uFMh2eyzqq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uFMh2eyzqq .navbar.collapsed {
  justify-content: center;
}
.cid-uFMh2eyzqq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uFMh2eyzqq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uFMh2eyzqq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uFMh2eyzqq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uFMh2eyzqq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uFMh2eyzqq .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-uFMh2eyzqq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uFMh2eyzqq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uFMh2eyzqq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uFMh2eyzqq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uFMh2eyzqq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uFMh2eyzqq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uFMh2eyzqq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uFMh2eyzqq .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-uFMh2eyzqq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uFMh2eyzqq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uFMh2eyzqq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uFMh2eyzqq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uFMh2eyzqq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uFMh2eyzqq .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uFMh2eyzqq .navbar.navbar-short {
  min-height: 60px;
}
.cid-uFMh2eyzqq .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uFMh2eyzqq .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uFMh2eyzqq .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-uFMh2eyzqq .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uFMh2eyzqq .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uFMh2eyzqq .dropdown-item:hover,
.cid-uFMh2eyzqq .dropdown-item:focus {
  background: #04367c !important;
  color: white !important;
}
.cid-uFMh2eyzqq .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uFMh2eyzqq .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uFMh2eyzqq .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-uFMh2eyzqq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uFMh2eyzqq .dropdown-menu,
.cid-uFMh2eyzqq .navbar.opened {
  background: #ffffff !important;
}
.cid-uFMh2eyzqq .nav-item:focus,
.cid-uFMh2eyzqq .nav-link:focus {
  outline: none;
}
.cid-uFMh2eyzqq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uFMh2eyzqq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uFMh2eyzqq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uFMh2eyzqq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uFMh2eyzqq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uFMh2eyzqq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uFMh2eyzqq .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uFMh2eyzqq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uFMh2eyzqq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uFMh2eyzqq .dropdown-item.active,
.cid-uFMh2eyzqq .dropdown-item:active {
  background-color: transparent;
}
.cid-uFMh2eyzqq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uFMh2eyzqq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uFMh2eyzqq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uFMh2eyzqq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uFMh2eyzqq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uFMh2eyzqq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uFMh2eyzqq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uFMh2eyzqq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uFMh2eyzqq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uFMh2eyzqq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uFMh2eyzqq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uFMh2eyzqq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFMh2eyzqq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFMh2eyzqq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uFMh2eyzqq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFMh2eyzqq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uFMh2eyzqq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uFMh2eyzqq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFMh2eyzqq .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uFMh2eyzqq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uFMh2eyzqq .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-uFMh2eyzqq .navbar {
    height: 70px;
  }
  .cid-uFMh2eyzqq .navbar.opened {
    height: auto;
  }
  .cid-uFMh2eyzqq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ruSjZRhUNe {
  padding-top: 180px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/mbr-2-1920x1397.jpg");
}
.cid-ruSjZRhUNe .media-container-column .btn-bgr {
  z-index: 0;
}
.cid-ruSjZRhUNe .mbr-overlay {
  background: #333333;
  background: linear-gradient(#333333 -10%, #04367c 75%);
}
.cid-ruSjZRhUNe .mbr-section-title {
  margin: 0;
}
.cid-ruSjZRhUNe .separator {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  max-width: 125px;
  margin-left: auto;
  margin-right: auto;
}
.cid-uNj1IHiG9z {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/mbr-1920x640.jpg");
}
.cid-uNj1IHiG9z .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNj1IHiG9z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNj1IHiG9z .title-wrapper .mbr-section-title {
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-uNj1IHiG9z .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uNj1IHiG9z .items-wrap {
  justify-content: center;
  margin: 0 -14px;
}
.cid-uNj1IHiG9z .item {
  padding: 0 7px;
  margin-bottom: 14px;
}
@media (max-width: 992px) {
  .cid-uNj1IHiG9z .item {
    padding: 0 14px;
  }
}
.cid-uNj1IHiG9z .item .item-wrapper {
  position: relative;
  border: 1px solid #323046;
  display: flex;
  overflow: hidden;
  background-color: #292739;
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-uNj1IHiG9z .item .item-wrapper {
    display: block;
  }
}
.cid-uNj1IHiG9z .item .item-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #7541e5, #292739 30%);
  opacity: .5;
}
.cid-uNj1IHiG9z .item .item-wrapper .item-content {
  position: relative;
  z-index: 1;
  padding: 24px;
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uNj1IHiG9z .item .item-wrapper .item-content {
    padding: 14px;
    width: 100%;
  }
}
.cid-uNj1IHiG9z .item .item-wrapper .item-content .item-title {
  margin-bottom: 16px;
}
.cid-uNj1IHiG9z .item .item-wrapper .item-content .item-text {
  margin-bottom: 0;
}
.cid-uNj1IHiG9z .item .item-wrapper .item-img {
  position: relative;
  z-index: 1;
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uNj1IHiG9z .item .item-wrapper .item-img {
    width: 100%;
  }
}
.cid-uNj1IHiG9z .item .item-wrapper .item-img img {
  min-height: 320px;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-uNj1IHiG9z .item .item-wrapper .item-img img {
    height: 200px;
    min-height: auto;
  }
}
.cid-uNj1IHiG9z .mbr-section-title {
  color: #f9f6e0;
  text-align: left;
}
.cid-uNj1IHiG9z .item-title {
  color: #ffa55c;
}
.cid-uNj1IHiG9z .item-text {
  color: #ffffff;
}
.cid-uNeOevkuD0 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #dc853e;
}
.cid-uNeOevkuD0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNeOevkuD0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uNeOevkuD0 .container {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-uNeOevkuD0 .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uNeOevkuD0 .row {
  justify-content: space-between;
}
.cid-uNeOevkuD0 .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
@media (max-width: 992px) {
  .cid-uNeOevkuD0 .items-wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.cid-uNeOevkuD0 .item .item-wrapper .card-box {
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uNeOevkuD0 .item .item-wrapper .card-box {
    display: block;
  }
}
.cid-uNeOevkuD0 .item .item-wrapper .card-box .icon-wrapper {
  margin-right: 22px;
}
@media (max-width: 992px) {
  .cid-uNeOevkuD0 .item .item-wrapper .card-box .icon-wrapper {
    margin-bottom: 16px;
    margin-right: 0;
  }
}
.cid-uNeOevkuD0 .item .item-wrapper .card-box .icon-wrapper .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  width: 35px;
  height: 35px;
  color: #000000;
  border: 1px solid #000000;
  border-radius: 100%;
}
.cid-uNeOevkuD0 .item .item-wrapper .card-box .card-title {
  margin-bottom: 0;
}
.cid-uNeOevkuD0 .mbr-section-title {
  color: #000000;
}
.cid-uNeOevkuD0 .card-title {
  color: #ffffff;
}
.cid-uNeOevkuD0 .mbr-section-title,
.cid-uNeOevkuD0 .mbr-section-btn {
  color: #ffffff;
}
.cid-rlUfA6q5i8 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/background1-7.jpg");
}
.cid-rlUfA6q5i8 .mbr-overlay {
  background: #efefef;
}
.cid-rlUfA6q5i8 .card {
  padding: 1rem 1rem 2rem 1rem;
}
.cid-rlUfA6q5i8 .card-img {
  padding: 0;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  overflow: hidden;
}
.cid-rlUfA6q5i8 .card-box {
  border-bottom-left-radius: .25rem;
  border-bottom-right-radius: .25rem;
  background: #ffffff;
  padding: 2rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-rlUfA6q5i8 .mbr-text {
  color: #8d97ad;
}
.cid-rlUfA6q5i8 .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-rlUfA6q5i8 .mbr-section-btn {
  margin-left: 0;
}
@media (max-width: 767px) {
  .cid-rlUfA6q5i8 .card-title {
    text-align: center;
  }
  .cid-rlUfA6q5i8 p.mbr-text,
  .cid-rlUfA6q5i8 p.date {
    text-align: center;
  }
}
.cid-rlUfA6q5i8 H2 {
  text-align: left;
  color: #ffffff;
}
.cid-rlUfA6q5i8 .mbr-text,
.cid-rlUfA6q5i8 .mbr-section-btn {
  color: #333333;
}
.cid-rlUljLzwhA {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #04367c;
}
.cid-rlUljLzwhA .mbr-section-subtitle {
  color: #767676;
}
.cid-rlUljLzwhA .btn {
  margin: 0 0 .5rem 0;
}
@media (max-width: 768px) {
  .cid-rlUljLzwhA h2,
  .cid-rlUljLzwhA h3 {
    text-align: center !important;
  }
  .cid-rlUljLzwhA .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-rlUljLzwhA H2 {
  color: #ffffff;
}
.cid-uO9ByZmq32 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #1b61a1;
}
.cid-uO9ByZmq32 .container {
  display: flex;
  justify-content: center;
}
.cid-uO9ByZmq32 .row {
  display: flex;
  align-items: stretch;
  max-width: 1194px;
  width: 100%;
}
.cid-uO9ByZmq32 .col-brand {
  margin-bottom: 40px;
}
.cid-uO9ByZmq32 .col-link {
  margin-bottom: 30px;
}
.cid-uO9ByZmq32 .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 25px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
}
.cid-uO9ByZmq32 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uO9ByZmq32 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uO9ByZmq32 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uO9ByZmq32 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uO9ByZmq32 .mbr-section-subtitle {
  color: #ffffff;
  margin-bottom: 20px;
}
.cid-uO9ByZmq32 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uO9ByZmq32 .mbr-iconfont {
  font-size: 16px;
  color: #3b668d;
}
.cid-uO9ByZmq32 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background-color: #eef4fb;
  margin-right: 10px;
  margin-bottom: 10px;
  padding: 5px;
  min-height: 30px;
  min-width: 30px;
}
.cid-uO9ByZmq32 .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uO9ByZmq32 .soc-item:hover {
  background-color: #738bae;
}
.cid-uO9ByZmq32 .soc-item:hover .mbr-iconfont {
  color: #FFFFFF !important;
}
.cid-uO9ByZmq32 .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #010d4c;
}
.cid-uO9ByZmq32 .list li {
  min-height: 44px;
  display: flex;
  align-items: center;
}
.cid-uO9ByZmq32 .list a {
  min-height: 44px;
  display: flex;
  align-items: center;
}
.cid-uO9ByZmq32 .brand-text {
  margin-bottom: 35px;
  color: #ffffff;
  opacity: 0.8;
}
.cid-uO9ByZmq32 .mbr-text {
  color: #00284E;
  opacity: 0.8;
}
.cid-uO9ByZmq32 .mbr-text .text-black {
  color: #00284E !important;
}
.cid-uO9ByZmq32 .mbr-text a {
  opacity: 0.8;
}
.cid-uO9ByZmq32 .mbr-text a:hover {
  opacity: 1;
  color: #04367c !important;
}
.cid-uO9ByZmq32 .col-copyright {
  margin-top: 44px;
}
.cid-uO9ByZmq32 .copyright {
  color: #ffffff;
  opacity: 0.8;
}
@media (max-width: 991px) {
  .cid-uO9ByZmq32 .copyright {
    text-align: center !important;
  }
}
.cid-uO9ByZmq32 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uO9ByZmq32 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFMh2eyzqq {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uFMh2eyzqq .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uFMh2eyzqq .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-uFMh2eyzqq .iconfont-wrapper {
  color: #103178 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-uFMh2eyzqq .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-uFMh2eyzqq .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-uFMh2eyzqq .container {
    padding: 0 1rem;
  }
}
.cid-uFMh2eyzqq .menu-tite {
  background: #04367c;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-uFMh2eyzqq .nav-link {
  position: relative;
}
.cid-uFMh2eyzqq .nav-link:hover {
  color: #51aafa !important;
}
.cid-uFMh2eyzqq nav.navbar {
  position: fixed;
}
.cid-uFMh2eyzqq .navbar {
  padding: 0!important;
  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-uFMh2eyzqq .navbar.opened {
  transition: all 0.3s;
}
.cid-uFMh2eyzqq .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uFMh2eyzqq .navbar .navbar-logo img {
  width: auto;
}
.cid-uFMh2eyzqq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uFMh2eyzqq .navbar.collapsed {
  justify-content: center;
}
.cid-uFMh2eyzqq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uFMh2eyzqq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uFMh2eyzqq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uFMh2eyzqq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uFMh2eyzqq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uFMh2eyzqq .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-uFMh2eyzqq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uFMh2eyzqq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uFMh2eyzqq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uFMh2eyzqq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uFMh2eyzqq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uFMh2eyzqq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uFMh2eyzqq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uFMh2eyzqq .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-uFMh2eyzqq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uFMh2eyzqq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uFMh2eyzqq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uFMh2eyzqq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uFMh2eyzqq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uFMh2eyzqq .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uFMh2eyzqq .navbar.navbar-short {
  min-height: 60px;
}
.cid-uFMh2eyzqq .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uFMh2eyzqq .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uFMh2eyzqq .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-uFMh2eyzqq .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uFMh2eyzqq .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uFMh2eyzqq .dropdown-item:hover,
.cid-uFMh2eyzqq .dropdown-item:focus {
  background: #04367c !important;
  color: white !important;
}
.cid-uFMh2eyzqq .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uFMh2eyzqq .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uFMh2eyzqq .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-uFMh2eyzqq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uFMh2eyzqq .dropdown-menu,
.cid-uFMh2eyzqq .navbar.opened {
  background: #ffffff !important;
}
.cid-uFMh2eyzqq .nav-item:focus,
.cid-uFMh2eyzqq .nav-link:focus {
  outline: none;
}
.cid-uFMh2eyzqq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uFMh2eyzqq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uFMh2eyzqq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uFMh2eyzqq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uFMh2eyzqq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uFMh2eyzqq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uFMh2eyzqq .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uFMh2eyzqq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uFMh2eyzqq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uFMh2eyzqq .dropdown-item.active,
.cid-uFMh2eyzqq .dropdown-item:active {
  background-color: transparent;
}
.cid-uFMh2eyzqq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uFMh2eyzqq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uFMh2eyzqq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uFMh2eyzqq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uFMh2eyzqq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uFMh2eyzqq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uFMh2eyzqq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uFMh2eyzqq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uFMh2eyzqq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uFMh2eyzqq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uFMh2eyzqq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uFMh2eyzqq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFMh2eyzqq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFMh2eyzqq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uFMh2eyzqq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFMh2eyzqq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uFMh2eyzqq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uFMh2eyzqq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFMh2eyzqq .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uFMh2eyzqq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uFMh2eyzqq .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-uFMh2eyzqq .navbar {
    height: 70px;
  }
  .cid-uFMh2eyzqq .navbar.opened {
    height: auto;
  }
  .cid-uFMh2eyzqq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rsAHBn7AGq {
  padding-top: 180px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/mbr-5-1920x1080.jpg");
}
.cid-rsAHBn7AGq .media-container-column .btn-bgr {
  z-index: 0;
}
.cid-rsAHBn7AGq .mbr-overlay {
  background: #333333;
  background: linear-gradient(#333333 -10%, #1d2671 75%);
}
.cid-rsAHBn7AGq .mbr-section-title {
  margin: 0;
}
.cid-rsAHBn7AGq .separator {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  max-width: 125px;
  margin-left: auto;
  margin-right: auto;
}
.cid-uNpSnyJB5s {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d6e9fa;
}
.cid-uNpSnyJB5s .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNpSnyJB5s .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNpSnyJB5s .card-wrapper {
  position: relative;
  height: 100%;
  margin-right: 48px;
  will-change: transform;
  animation: none !important;
}
@media (max-width: 992px) {
  .cid-uNpSnyJB5s .card-wrapper {
    margin-bottom: 60px;
    margin-right: 0;
    height: auto;
  }
}
.cid-uNpSnyJB5s .card-wrapper .image-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  animation: none !important;
}
@media (max-width: 992px) {
  .cid-uNpSnyJB5s .card-wrapper .image-wrap img {
    position: static;
    height: 400px;
  }
}
.cid-uNpSnyJB5s .card-wrapper .decor-wrap {
  position: absolute;
  top: 0;
  right: 0;
  width: 220px;
  height: 60px;
  background-color: #d6e9fa;
  border-bottom-left-radius: 30px;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-uNpSnyJB5s .card-wrapper .decor-wrap {
    width: 120px;
  }
}
.cid-uNpSnyJB5s .card-wrapper .decor-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: -20px;
  width: 20px;
  height: 20px;
  background-color: transparent;
  border-top-right-radius: 30px;
  box-shadow: 10px -10px 0 10px #d6e9fa;
}
.cid-uNpSnyJB5s .card-wrapper .decor-wrap::after {
  content: '';
  position: absolute;
  top: 60px;
  right: 0;
  width: 20px;
  height: 20px;
  background-color: transparent;
  border-top-right-radius: 30px;
  box-shadow: 10px -10px 0 10px #d6e9fa;
}
.cid-uNpSnyJB5s .card-wrapper .item-wrapper {
  position: absolute;
  bottom: -20px;
  left: 30px;
  width: 260px;
  animation: none !important;
  backdrop-filter: blur(10px);
  padding: 40px;
}
@media (max-width: 992px) {
  .cid-uNpSnyJB5s .card-wrapper .item-wrapper {
    padding: 30px;
    bottom: -30px;
    left: 0;
  }
}
@media (max-width: 425px) {
  .cid-uNpSnyJB5s .card-wrapper .item-wrapper {
    width: 100%;
  }
}
.cid-uNpSnyJB5s .card-wrapper .item-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #ffffff;
  z-index: 1;
  pointer-events: none;
  opacity: 0.2;
  background-color: #000000;
}
.cid-uNpSnyJB5s .card-wrapper .item-wrapper .card-box {
  z-index: 2;
  position: relative;
}
.cid-uNpSnyJB5s .card-wrapper .item-wrapper .card-box .item-number {
  margin-bottom: 15px;
}
.cid-uNpSnyJB5s .card-wrapper .item-wrapper .card-box .item-title {
  margin-bottom: 15px;
}
.cid-uNpSnyJB5s .card-wrapper .item-wrapper .card-box .rating-wrapper {
  margin-bottom: 5px;
}
.cid-uNpSnyJB5s .card-wrapper .item-wrapper .card-box .rating-wrapper .rating-wrap {
  display: inline-flex;
}
.cid-uNpSnyJB5s .card-wrapper .item-wrapper .card-box .rating-wrapper .rating-wrap .item-star {
  margin-bottom: 0;
  display: inline-flex;
}
.cid-uNpSnyJB5s .card-wrapper .item-wrapper .card-box .item-desc {
  margin-bottom: 0;
}
.cid-uNpSnyJB5s .content-wrapper .label-wrapper .mbr-label {
  display: inline-block;
  padding: 4px 20px;
  margin-bottom: 20px;
  border: 1px solid #333333;
}
.cid-uNpSnyJB5s .content-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-uNpSnyJB5s .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uNpSnyJB5s .content-wrapper .items-wrapper {
  margin-top: 30px;
}
.cid-uNpSnyJB5s .content-wrapper .items-wrapper .item {
  padding: 35px 0;
  border-top: 1px solid #e0e0e0;
}
@media (max-width: 992px) {
  .cid-uNpSnyJB5s .content-wrapper .items-wrapper .item {
    padding: 30px 0;
  }
}
.cid-uNpSnyJB5s .content-wrapper .items-wrapper .item:last-child {
  padding-bottom: 0 !important;
}
.cid-uNpSnyJB5s .content-wrapper .items-wrapper .item .item-wrapper .card-box {
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uNpSnyJB5s .content-wrapper .items-wrapper .item .item-wrapper .card-box {
    display: block;
  }
}
.cid-uNpSnyJB5s .content-wrapper .items-wrapper .item .item-wrapper .card-box .iconfont-wrapper {
  display: inline-flex;
  margin-right: 30px;
}
@media (max-width: 992px) {
  .cid-uNpSnyJB5s .content-wrapper .items-wrapper .item .item-wrapper .card-box .iconfont-wrapper {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.cid-uNpSnyJB5s .content-wrapper .items-wrapper .item .item-wrapper .card-box .iconfont-wrapper .mbr-iconfont {
  width: 80px;
  height: 80px;
  min-width: 80px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #000000;
  background-color: #e4ed64;
  border-radius: 100%;
}
.cid-uNpSnyJB5s .content-wrapper .items-wrapper .item .item-wrapper .card-box .card-title {
  padding-right: 30px;
  width: 30%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uNpSnyJB5s .content-wrapper .items-wrapper .item .item-wrapper .card-box .card-title {
    padding-right: 0;
    width: 100%;
    margin-bottom: 20px;
  }
}
.cid-uNpSnyJB5s .content-wrapper .items-wrapper .item .item-wrapper .card-box .card-text {
  padding-right: 30px;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uNpSnyJB5s .content-wrapper .items-wrapper .item .item-wrapper .card-box .card-text {
    padding-right: 0;
    width: 100%;
  }
}
.cid-uNpSnyJB5s .mbr-label,
.cid-uNpSnyJB5s .label-wrapper {
  color: #000000;
}
.cid-uNpSnyJB5s .mbr-section-title {
  color: #000000;
}
.cid-uNpSnyJB5s .mbr-text {
  color: #232323;
}
.cid-uNpSnyJB5s .card-title {
  color: #000000;
}
.cid-uNpSnyJB5s .card-text {
  color: #232323;
}
.cid-uNpSnyJB5s .item-number {
  color: #e4ed64;
  text-align: center;
}
.cid-uNpSnyJB5s .item-title {
  color: #ffffff;
  text-align: center;
}
.cid-uNpSnyJB5s .item-star,
.cid-uNpSnyJB5s .rating-wrapper {
  color: #e4ed64;
  text-align: center;
}
.cid-uNpSnyJB5s .item-desc {
  color: #ffffff;
  text-align: center;
}
.cid-uPSSg7ZCAV {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
  overflow: hidden;
  position: relative;
}
.cid-uPSSg7ZCAV .container,
.cid-uPSSg7ZCAV .container-fluid {
  position: static;
}
.cid-uPSSg7ZCAV .label-text {
  width: 100%;
  color: #04367c;
  margin-bottom: 20px;
}
.cid-uPSSg7ZCAV .label-text span {
  padding: 8px 18px;
  background-color: #f0e4ff;
  border-radius: 15px;
  color: inherit;
}
.cid-uPSSg7ZCAV .mbr-section-title {
  color: #000000;
  margin-bottom: 15px;
}
.cid-uPSSg7ZCAV .colored-text {
  color: #000000;
  line-height: inherit;
  text-decoration: underline;
  text-decoration-thickness: 4px;
}
.cid-uPSSg7ZCAV .mbr-text {
  color: #00284E;
  opacity: 0.8;
  margin-bottom: 40px;
}
@media (min-width: 1400px) {
  .cid-uPSSg7ZCAV .mbr-text {
    padding-right: 48px;
  }
}
.cid-uPSSg7ZCAV .cards-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.cid-uPSSg7ZCAV .card {
  display: flex;
  align-items: flex-start;
  position: relative;
  width: 100%;
  margin-top: 30px;
  padding: 25px 25px 25px 95px;
  background: #ffffff;
  box-shadow: -20px 20px 50px rgba(0, 40, 99, 0.05);
  border-radius: 10px;
}
.cid-uPSSg7ZCAV .card:hover .card-number {
  background: #04367c;
  border-color: #04367c;
  color: #ffffff;
}
.cid-uPSSg7ZCAV .card-number {
  width: 45px;
  height: 45px;
  border: 1px solid #CECECE;
  border-radius: 50%;
  line-height: 43px;
  text-align: center;
  font-size: 18px;
  color: #000000;
  position: absolute;
  top: 27px;
  left: 25px;
  transition: all 0.3s ease-in-out;
}
.cid-uPSSg7ZCAV .card-title {
  color: #010d4c;
  margin-bottom: 8px;
}
.cid-uPSSg7ZCAV .card-text {
  color: #00284E;
  opacity: 0.8;
}
.cid-uPSSg7ZCAV .mbr-section-btn {
  margin-top: 40px;
}
@media (max-width: 991px) {
  .cid-uPSSg7ZCAV .mbr-section-btn {
    margin-top: 30px;
  }
}
.cid-uPSSg7ZCAV .mbr-section-btn .btn:before {
  display: none;
}
.cid-uPSSg7ZCAV .mbr-section-btn .btn:hover:before {
  display: none;
}
.cid-uPSSg7ZCAV .image-wrapper {
  height: 650px;
  position: relative;
  z-index: 2;
}
.cid-uPSSg7ZCAV .image-wrapper img {
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  margin-left: auto!important;
}
@media (min-width: 768px) {
  .cid-uPSSg7ZCAV .image-wrapper {
    position: absolute;
    z-index: 2;
    top: 24%;
    width: 38.65%;
    right: 6%;
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .cid-uPSSg7ZCAV .image-wrapper {
    top: 37%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-uPSSg7ZCAV .image-wrapper {
    top: 31%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uPSSg7ZCAV .image-wrapper {
    top: 42%;
    right: 1%;
  }
}
@media (max-width: 767px) {
  .cid-uPSSg7ZCAV .image-wrapper {
    max-width: 474px !important;
    margin: 80px auto 0;
  }
}
.cid-uPSSg7ZCAV .bg-round {
  position: absolute;
  top: -14%;
  padding: 0;
}
.cid-uPSSg7ZCAV .bg-round svg {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  object-fit: cover;
}
@media (min-width: 768px) {
  .cid-uPSSg7ZCAV .bg-round {
    width: 56%;
    right: 0;
  }
}
@media (min-width: 992px) and (max-width: 1399px) {
  .cid-uPSSg7ZCAV .bg-round {
    width: 56%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uPSSg7ZCAV .bg-round {
    width: 68%;
  }
}
@media (max-width: 767px) {
  .cid-uPSSg7ZCAV .bg-round {
    top: auto;
    bottom: -10%;
  }
  .cid-uPSSg7ZCAV .bg-round svg {
    height: 100%;
  }
}
.cid-uPSSg7ZCAV .col-text {
  position: relative;
  z-index: 3;
}
@media (min-width: 768px) {
  .cid-uPSSg7ZCAV .col-text {
    margin-right: auto;
  }
}
.cid-uPSSg7ZCAV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPSSg7ZCAV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPSSg7ZCAV .mbr-text,
.cid-uPSSg7ZCAV .mbr-section-btn {
  color: #04367c;
}
.cid-uPST1l20M8 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #04367c;
}
.cid-uPST1l20M8 .mbr-section-subtitle {
  color: #767676;
}
.cid-uPST1l20M8 .btn {
  margin: 0 0 .5rem 0;
}
@media (max-width: 768px) {
  .cid-uPST1l20M8 h2,
  .cid-uPST1l20M8 h3 {
    text-align: center !important;
  }
  .cid-uPST1l20M8 .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-uPST1l20M8 H2 {
  color: #ffffff;
}
.cid-uO9ByZmq32 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #1b61a1;
}
.cid-uO9ByZmq32 .container {
  display: flex;
  justify-content: center;
}
.cid-uO9ByZmq32 .row {
  display: flex;
  align-items: stretch;
  max-width: 1194px;
  width: 100%;
}
.cid-uO9ByZmq32 .col-brand {
  margin-bottom: 40px;
}
.cid-uO9ByZmq32 .col-link {
  margin-bottom: 30px;
}
.cid-uO9ByZmq32 .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 25px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
}
.cid-uO9ByZmq32 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uO9ByZmq32 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uO9ByZmq32 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uO9ByZmq32 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uO9ByZmq32 .mbr-section-subtitle {
  color: #ffffff;
  margin-bottom: 20px;
}
.cid-uO9ByZmq32 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uO9ByZmq32 .mbr-iconfont {
  font-size: 16px;
  color: #3b668d;
}
.cid-uO9ByZmq32 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background-color: #eef4fb;
  margin-right: 10px;
  margin-bottom: 10px;
  padding: 5px;
  min-height: 30px;
  min-width: 30px;
}
.cid-uO9ByZmq32 .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uO9ByZmq32 .soc-item:hover {
  background-color: #738bae;
}
.cid-uO9ByZmq32 .soc-item:hover .mbr-iconfont {
  color: #FFFFFF !important;
}
.cid-uO9ByZmq32 .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #010d4c;
}
.cid-uO9ByZmq32 .list li {
  min-height: 44px;
  display: flex;
  align-items: center;
}
.cid-uO9ByZmq32 .list a {
  min-height: 44px;
  display: flex;
  align-items: center;
}
.cid-uO9ByZmq32 .brand-text {
  margin-bottom: 35px;
  color: #ffffff;
  opacity: 0.8;
}
.cid-uO9ByZmq32 .mbr-text {
  color: #00284E;
  opacity: 0.8;
}
.cid-uO9ByZmq32 .mbr-text .text-black {
  color: #00284E !important;
}
.cid-uO9ByZmq32 .mbr-text a {
  opacity: 0.8;
}
.cid-uO9ByZmq32 .mbr-text a:hover {
  opacity: 1;
  color: #04367c !important;
}
.cid-uO9ByZmq32 .col-copyright {
  margin-top: 44px;
}
.cid-uO9ByZmq32 .copyright {
  color: #ffffff;
  opacity: 0.8;
}
@media (max-width: 991px) {
  .cid-uO9ByZmq32 .copyright {
    text-align: center !important;
  }
}
.cid-uO9ByZmq32 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uO9ByZmq32 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFMh2eyzqq {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uFMh2eyzqq .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uFMh2eyzqq .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-uFMh2eyzqq .iconfont-wrapper {
  color: #103178 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-uFMh2eyzqq .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-uFMh2eyzqq .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-uFMh2eyzqq .container {
    padding: 0 1rem;
  }
}
.cid-uFMh2eyzqq .menu-tite {
  background: #04367c;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-uFMh2eyzqq .nav-link {
  position: relative;
}
.cid-uFMh2eyzqq .nav-link:hover {
  color: #51aafa !important;
}
.cid-uFMh2eyzqq nav.navbar {
  position: fixed;
}
.cid-uFMh2eyzqq .navbar {
  padding: 0!important;
  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-uFMh2eyzqq .navbar.opened {
  transition: all 0.3s;
}
.cid-uFMh2eyzqq .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uFMh2eyzqq .navbar .navbar-logo img {
  width: auto;
}
.cid-uFMh2eyzqq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uFMh2eyzqq .navbar.collapsed {
  justify-content: center;
}
.cid-uFMh2eyzqq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uFMh2eyzqq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uFMh2eyzqq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uFMh2eyzqq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uFMh2eyzqq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uFMh2eyzqq .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-uFMh2eyzqq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uFMh2eyzqq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uFMh2eyzqq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uFMh2eyzqq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uFMh2eyzqq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uFMh2eyzqq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uFMh2eyzqq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uFMh2eyzqq .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-uFMh2eyzqq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uFMh2eyzqq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uFMh2eyzqq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uFMh2eyzqq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uFMh2eyzqq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uFMh2eyzqq .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uFMh2eyzqq .navbar.navbar-short {
  min-height: 60px;
}
.cid-uFMh2eyzqq .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uFMh2eyzqq .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uFMh2eyzqq .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-uFMh2eyzqq .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uFMh2eyzqq .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uFMh2eyzqq .dropdown-item:hover,
.cid-uFMh2eyzqq .dropdown-item:focus {
  background: #04367c !important;
  color: white !important;
}
.cid-uFMh2eyzqq .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uFMh2eyzqq .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uFMh2eyzqq .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-uFMh2eyzqq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uFMh2eyzqq .dropdown-menu,
.cid-uFMh2eyzqq .navbar.opened {
  background: #ffffff !important;
}
.cid-uFMh2eyzqq .nav-item:focus,
.cid-uFMh2eyzqq .nav-link:focus {
  outline: none;
}
.cid-uFMh2eyzqq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uFMh2eyzqq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uFMh2eyzqq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uFMh2eyzqq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uFMh2eyzqq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uFMh2eyzqq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uFMh2eyzqq .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uFMh2eyzqq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uFMh2eyzqq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uFMh2eyzqq .dropdown-item.active,
.cid-uFMh2eyzqq .dropdown-item:active {
  background-color: transparent;
}
.cid-uFMh2eyzqq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uFMh2eyzqq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uFMh2eyzqq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uFMh2eyzqq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uFMh2eyzqq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uFMh2eyzqq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uFMh2eyzqq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uFMh2eyzqq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uFMh2eyzqq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uFMh2eyzqq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uFMh2eyzqq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uFMh2eyzqq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFMh2eyzqq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFMh2eyzqq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uFMh2eyzqq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFMh2eyzqq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uFMh2eyzqq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uFMh2eyzqq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFMh2eyzqq .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uFMh2eyzqq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uFMh2eyzqq .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-uFMh2eyzqq .navbar {
    height: 70px;
  }
  .cid-uFMh2eyzqq .navbar.opened {
    height: auto;
  }
  .cid-uFMh2eyzqq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rxcMllztia {
  padding-top: 180px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/mbr-1920x1438.jpg");
}
.cid-rxcMllztia .media-container-column .btn-bgr {
  z-index: 0;
}
.cid-rxcMllztia .mbr-overlay {
  background: #333333;
  background: linear-gradient(#333333 -10%, #04367c 75%);
}
.cid-rxcMllztia .mbr-section-title {
  margin: 0;
}
.cid-rxcMllztia .separator {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  max-width: 125px;
  margin-left: auto;
  margin-right: auto;
}
.cid-rxcMllztia H1 {
  color: #ffffff;
}
.cid-rxcMllztia H3 {
  color: #ffffff;
}
.cid-uOyfL4XGke {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uOyfL4XGke .row {
  padding: 0 1rem;
}
@media (max-width: 991px) {
  .cid-uOyfL4XGke .row {
    padding: 0 0.75rem;
  }
}
.cid-uOyfL4XGke .text-container {
  margin-bottom: 60px;
  padding: 0 !important;
}
@media (max-width: 767px) {
  .cid-uOyfL4XGke .text-container {
    margin-bottom: 20px;
  }
}
.cid-uOyfL4XGke .label-text {
  color: #0057fc;
}
.cid-uOyfL4XGke .mbr-section-title {
  max-width: 550px;
  margin: 0 auto;
}
.cid-uOyfL4XGke .cards-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
}
.cid-uOyfL4XGke .card {
  padding: 15px;
}
@media (max-width: 767px) {
  .cid-uOyfL4XGke .card {
    padding: 0;
  }
}
.cid-uOyfL4XGke .card-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding: 48px;
  border: 1px solid #EEEEEE;
  border-radius: 5px;
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s, -webkit-border-radius 0.3s, -webkit-box-shadow 0.3s;
}
@media (max-width: 767px) {
  .cid-uOyfL4XGke .card-wrapper {
    margin-bottom: 30px;
    max-width: 522px;
    margin-left: auto;
    margin-right: auto;
  }
}
.cid-uOyfL4XGke .card-wrapper:hover {
  box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.07);
}
.cid-uOyfL4XGke .card-text {
  color: #555555;
}
.cid-uOyfL4XGke .mbr-iconfont {
  font-size: 25px;
  color: #0057fc;
}
.cid-uOyfL4XGke .icon-box {
  width: 100%;
  margin-bottom: 20px;
}
.cid-uOyfL4XGke .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOyfL4XGke .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOymucponT {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uOymucponT .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uOymucponT .image-wrapper {
    display: none;
  }
}
.cid-uOymucponT .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-uOymucponT .label-text {
  width: 100%;
  padding: 9px 0;
  margin-bottom: 12px;
}
.cid-uOymucponT .label {
  padding: 9px 18px;
  background: #ffdd0f;
  border-radius: 20px;
}
.cid-uOymucponT .mbr-section-title {
  margin-bottom: 12px;
}
.cid-uOymucponT .mbr-text {
  color: #555555;
  width: 100%;
  margin-bottom: 22px;
}
.cid-uOymucponT .link-wrap {
  margin-top: 18px;
  width: 100%;
}
@media (max-width: 575px) {
  .cid-uOymucponT .link-wrap {
    display: flex;
    justify-content: center;
  }
}
.cid-uOymucponT .link-wrap a {
  position: relative;
  padding: 0 !important;
}
.cid-uOymucponT .link-wrap a:hover:before {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-uOymucponT .link-wrap a:before {
  content: '';
  position: absolute;
  color: currentColor;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: 1px;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-uOymucponT .btn-container {
  width: 100%;
}
@media (max-width: 575px) {
  .cid-uOymucponT .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-uOymucponT .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uOymucponT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOymucponT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOyfKd2Rb5 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uOyfKd2Rb5 .row {
  align-items: center;
}
.cid-uOyfKd2Rb5 .image-wrapper {
  padding: 1rem;
}
@media (max-width: 991px) {
  .cid-uOyfKd2Rb5 .image-wrapper {
    padding: 2rem 1rem 1rem;
  }
}
.cid-uOyfKd2Rb5 .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (min-width: 992px) {
  .cid-uOyfKd2Rb5 .text-wrapper {
    padding-right: 84px;
  }
}
.cid-uOyfKd2Rb5 .label-text {
  width: 100%;
  color: #0057fc;
}
.cid-uOyfKd2Rb5 .mbr-section-title {
  margin-bottom: 12px;
}
.cid-uOyfKd2Rb5 .mbr-text {
  color: #555555;
  width: 100%;
  margin-bottom: 12px;
}
.cid-uOyfKd2Rb5 .item {
  display: flex;
  align-items: center;
  margin: 12px 0;
}
.cid-uOyfKd2Rb5 .icon-box {
  background: #0057fc;
  width: 30px;
  min-width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uOyfKd2Rb5 .mbr-iconfont {
  font-size: 15px;
  color: #ffffff;
}
.cid-uOyfKd2Rb5 .btn-container {
  width: 100%;
}
@media (max-width: 575px) {
  .cid-uOyfKd2Rb5 .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-uOyfKd2Rb5 .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uOyfKd2Rb5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOyfKd2Rb5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOyjwUJ1Uw {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uOyjwUJ1Uw .row {
  align-items: center;
}
.cid-uOyjwUJ1Uw .image-wrapper {
  padding: 1rem;
}
@media (max-width: 991px) {
  .cid-uOyjwUJ1Uw .image-wrapper {
    padding: 2rem 1rem 1rem;
  }
}
.cid-uOyjwUJ1Uw .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (min-width: 992px) {
  .cid-uOyjwUJ1Uw .text-wrapper {
    padding-right: 84px;
  }
}
.cid-uOyjwUJ1Uw .label-text {
  width: 100%;
  color: #0057fc;
}
.cid-uOyjwUJ1Uw .mbr-section-title {
  margin-bottom: 12px;
}
.cid-uOyjwUJ1Uw .mbr-text {
  color: #555555;
  width: 100%;
  margin-bottom: 12px;
}
.cid-uOyjwUJ1Uw .item {
  display: flex;
  align-items: center;
  margin: 12px 0;
}
.cid-uOyjwUJ1Uw .icon-box {
  background: #0057fc;
  width: 30px;
  min-width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uOyjwUJ1Uw .mbr-iconfont {
  font-size: 15px;
  color: #ffffff;
}
.cid-uOyjwUJ1Uw .btn-container {
  width: 100%;
}
@media (max-width: 575px) {
  .cid-uOyjwUJ1Uw .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-uOyjwUJ1Uw .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uOyjwUJ1Uw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOyjwUJ1Uw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOyjxvAw6Z {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uOyjxvAw6Z .row {
  align-items: center;
}
.cid-uOyjxvAw6Z .image-wrapper {
  padding: 1rem;
}
@media (max-width: 991px) {
  .cid-uOyjxvAw6Z .image-wrapper {
    padding: 2rem 1rem 1rem;
  }
}
.cid-uOyjxvAw6Z .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (min-width: 992px) {
  .cid-uOyjxvAw6Z .text-wrapper {
    padding-right: 84px;
  }
}
.cid-uOyjxvAw6Z .label-text {
  width: 100%;
  color: #0057fc;
}
.cid-uOyjxvAw6Z .mbr-section-title {
  margin-bottom: 12px;
}
.cid-uOyjxvAw6Z .mbr-text {
  color: #555555;
  width: 100%;
  margin-bottom: 12px;
}
.cid-uOyjxvAw6Z .item {
  display: flex;
  align-items: center;
  margin: 12px 0;
}
.cid-uOyjxvAw6Z .icon-box {
  background: #0057fc;
  width: 30px;
  min-width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uOyjxvAw6Z .mbr-iconfont {
  font-size: 15px;
  color: #ffffff;
}
.cid-uOyjxvAw6Z .btn-container {
  width: 100%;
}
@media (max-width: 575px) {
  .cid-uOyjxvAw6Z .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-uOyjxvAw6Z .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uOyjxvAw6Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOyjxvAw6Z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOxpljLXCK {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #04367c;
}
.cid-uOxpljLXCK .mbr-section-subtitle {
  color: #767676;
}
.cid-uOxpljLXCK .btn {
  margin: 0 0 .5rem 0;
}
@media (max-width: 768px) {
  .cid-uOxpljLXCK h2,
  .cid-uOxpljLXCK h3 {
    text-align: center !important;
  }
  .cid-uOxpljLXCK .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-uOxpljLXCK H2 {
  color: #ffffff;
}
.cid-uO9ByZmq32 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #1b61a1;
}
.cid-uO9ByZmq32 .container {
  display: flex;
  justify-content: center;
}
.cid-uO9ByZmq32 .row {
  display: flex;
  align-items: stretch;
  max-width: 1194px;
  width: 100%;
}
.cid-uO9ByZmq32 .col-brand {
  margin-bottom: 40px;
}
.cid-uO9ByZmq32 .col-link {
  margin-bottom: 30px;
}
.cid-uO9ByZmq32 .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 25px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
}
.cid-uO9ByZmq32 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uO9ByZmq32 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uO9ByZmq32 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uO9ByZmq32 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uO9ByZmq32 .mbr-section-subtitle {
  color: #ffffff;
  margin-bottom: 20px;
}
.cid-uO9ByZmq32 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uO9ByZmq32 .mbr-iconfont {
  font-size: 16px;
  color: #3b668d;
}
.cid-uO9ByZmq32 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background-color: #eef4fb;
  margin-right: 10px;
  margin-bottom: 10px;
  padding: 5px;
  min-height: 30px;
  min-width: 30px;
}
.cid-uO9ByZmq32 .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uO9ByZmq32 .soc-item:hover {
  background-color: #738bae;
}
.cid-uO9ByZmq32 .soc-item:hover .mbr-iconfont {
  color: #FFFFFF !important;
}
.cid-uO9ByZmq32 .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #010d4c;
}
.cid-uO9ByZmq32 .list li {
  min-height: 44px;
  display: flex;
  align-items: center;
}
.cid-uO9ByZmq32 .list a {
  min-height: 44px;
  display: flex;
  align-items: center;
}
.cid-uO9ByZmq32 .brand-text {
  margin-bottom: 35px;
  color: #ffffff;
  opacity: 0.8;
}
.cid-uO9ByZmq32 .mbr-text {
  color: #00284E;
  opacity: 0.8;
}
.cid-uO9ByZmq32 .mbr-text .text-black {
  color: #00284E !important;
}
.cid-uO9ByZmq32 .mbr-text a {
  opacity: 0.8;
}
.cid-uO9ByZmq32 .mbr-text a:hover {
  opacity: 1;
  color: #04367c !important;
}
.cid-uO9ByZmq32 .col-copyright {
  margin-top: 44px;
}
.cid-uO9ByZmq32 .copyright {
  color: #ffffff;
  opacity: 0.8;
}
@media (max-width: 991px) {
  .cid-uO9ByZmq32 .copyright {
    text-align: center !important;
  }
}
.cid-uO9ByZmq32 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uO9ByZmq32 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFMh2eyzqq {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uFMh2eyzqq .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uFMh2eyzqq .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-uFMh2eyzqq .iconfont-wrapper {
  color: #103178 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-uFMh2eyzqq .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-uFMh2eyzqq .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-uFMh2eyzqq .container {
    padding: 0 1rem;
  }
}
.cid-uFMh2eyzqq .menu-tite {
  background: #04367c;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-uFMh2eyzqq .nav-link {
  position: relative;
}
.cid-uFMh2eyzqq .nav-link:hover {
  color: #51aafa !important;
}
.cid-uFMh2eyzqq nav.navbar {
  position: fixed;
}
.cid-uFMh2eyzqq .navbar {
  padding: 0!important;
  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-uFMh2eyzqq .navbar.opened {
  transition: all 0.3s;
}
.cid-uFMh2eyzqq .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uFMh2eyzqq .navbar .navbar-logo img {
  width: auto;
}
.cid-uFMh2eyzqq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uFMh2eyzqq .navbar.collapsed {
  justify-content: center;
}
.cid-uFMh2eyzqq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uFMh2eyzqq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uFMh2eyzqq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uFMh2eyzqq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uFMh2eyzqq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uFMh2eyzqq .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-uFMh2eyzqq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uFMh2eyzqq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uFMh2eyzqq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uFMh2eyzqq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uFMh2eyzqq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uFMh2eyzqq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uFMh2eyzqq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uFMh2eyzqq .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-uFMh2eyzqq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uFMh2eyzqq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uFMh2eyzqq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uFMh2eyzqq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uFMh2eyzqq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uFMh2eyzqq .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uFMh2eyzqq .navbar.navbar-short {
  min-height: 60px;
}
.cid-uFMh2eyzqq .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uFMh2eyzqq .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uFMh2eyzqq .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-uFMh2eyzqq .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uFMh2eyzqq .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uFMh2eyzqq .dropdown-item:hover,
.cid-uFMh2eyzqq .dropdown-item:focus {
  background: #04367c !important;
  color: white !important;
}
.cid-uFMh2eyzqq .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uFMh2eyzqq .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uFMh2eyzqq .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-uFMh2eyzqq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uFMh2eyzqq .dropdown-menu,
.cid-uFMh2eyzqq .navbar.opened {
  background: #ffffff !important;
}
.cid-uFMh2eyzqq .nav-item:focus,
.cid-uFMh2eyzqq .nav-link:focus {
  outline: none;
}
.cid-uFMh2eyzqq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uFMh2eyzqq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uFMh2eyzqq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uFMh2eyzqq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uFMh2eyzqq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uFMh2eyzqq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uFMh2eyzqq .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uFMh2eyzqq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uFMh2eyzqq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uFMh2eyzqq .dropdown-item.active,
.cid-uFMh2eyzqq .dropdown-item:active {
  background-color: transparent;
}
.cid-uFMh2eyzqq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uFMh2eyzqq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uFMh2eyzqq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uFMh2eyzqq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uFMh2eyzqq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uFMh2eyzqq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uFMh2eyzqq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uFMh2eyzqq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uFMh2eyzqq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uFMh2eyzqq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uFMh2eyzqq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uFMh2eyzqq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFMh2eyzqq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFMh2eyzqq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uFMh2eyzqq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFMh2eyzqq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uFMh2eyzqq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uFMh2eyzqq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFMh2eyzqq .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uFMh2eyzqq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uFMh2eyzqq .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-uFMh2eyzqq .navbar {
    height: 70px;
  }
  .cid-uFMh2eyzqq .navbar.opened {
    height: auto;
  }
  .cid-uFMh2eyzqq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rFIDLXg2nP {
  background-image: url("../../../assets/images/mbr-1920x1298.jpg");
}
.cid-rFIDLXg2nP .mbr-overlay {
  background: #04367c;
}
.cid-rFIDLXg2nP .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-rFIDLXg2nP .mbr-section-subtitle,
.cid-rFIDLXg2nP .mbr-section-btn {
  color: #ffffff;
}
.cid-uO9ByZmq32 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #1b61a1;
}
.cid-uO9ByZmq32 .container {
  display: flex;
  justify-content: center;
}
.cid-uO9ByZmq32 .row {
  display: flex;
  align-items: stretch;
  max-width: 1194px;
  width: 100%;
}
.cid-uO9ByZmq32 .col-brand {
  margin-bottom: 40px;
}
.cid-uO9ByZmq32 .col-link {
  margin-bottom: 30px;
}
.cid-uO9ByZmq32 .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 25px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
}
.cid-uO9ByZmq32 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uO9ByZmq32 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uO9ByZmq32 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uO9ByZmq32 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uO9ByZmq32 .mbr-section-subtitle {
  color: #ffffff;
  margin-bottom: 20px;
}
.cid-uO9ByZmq32 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uO9ByZmq32 .mbr-iconfont {
  font-size: 16px;
  color: #3b668d;
}
.cid-uO9ByZmq32 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background-color: #eef4fb;
  margin-right: 10px;
  margin-bottom: 10px;
  padding: 5px;
  min-height: 30px;
  min-width: 30px;
}
.cid-uO9ByZmq32 .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uO9ByZmq32 .soc-item:hover {
  background-color: #738bae;
}
.cid-uO9ByZmq32 .soc-item:hover .mbr-iconfont {
  color: #FFFFFF !important;
}
.cid-uO9ByZmq32 .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #010d4c;
}
.cid-uO9ByZmq32 .list li {
  min-height: 44px;
  display: flex;
  align-items: center;
}
.cid-uO9ByZmq32 .list a {
  min-height: 44px;
  display: flex;
  align-items: center;
}
.cid-uO9ByZmq32 .brand-text {
  margin-bottom: 35px;
  color: #ffffff;
  opacity: 0.8;
}
.cid-uO9ByZmq32 .mbr-text {
  color: #00284E;
  opacity: 0.8;
}
.cid-uO9ByZmq32 .mbr-text .text-black {
  color: #00284E !important;
}
.cid-uO9ByZmq32 .mbr-text a {
  opacity: 0.8;
}
.cid-uO9ByZmq32 .mbr-text a:hover {
  opacity: 1;
  color: #04367c !important;
}
.cid-uO9ByZmq32 .col-copyright {
  margin-top: 44px;
}
.cid-uO9ByZmq32 .copyright {
  color: #ffffff;
  opacity: 0.8;
}
@media (max-width: 991px) {
  .cid-uO9ByZmq32 .copyright {
    text-align: center !important;
  }
}
.cid-uO9ByZmq32 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uO9ByZmq32 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFMh2eyzqq {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uFMh2eyzqq .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uFMh2eyzqq .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-uFMh2eyzqq .iconfont-wrapper {
  color: #103178 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-uFMh2eyzqq .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-uFMh2eyzqq .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-uFMh2eyzqq .container {
    padding: 0 1rem;
  }
}
.cid-uFMh2eyzqq .menu-tite {
  background: #04367c;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-uFMh2eyzqq .nav-link {
  position: relative;
}
.cid-uFMh2eyzqq .nav-link:hover {
  color: #51aafa !important;
}
.cid-uFMh2eyzqq nav.navbar {
  position: fixed;
}
.cid-uFMh2eyzqq .navbar {
  padding: 0!important;
  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-uFMh2eyzqq .navbar.opened {
  transition: all 0.3s;
}
.cid-uFMh2eyzqq .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uFMh2eyzqq .navbar .navbar-logo img {
  width: auto;
}
.cid-uFMh2eyzqq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uFMh2eyzqq .navbar.collapsed {
  justify-content: center;
}
.cid-uFMh2eyzqq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uFMh2eyzqq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uFMh2eyzqq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uFMh2eyzqq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uFMh2eyzqq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uFMh2eyzqq .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-uFMh2eyzqq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uFMh2eyzqq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uFMh2eyzqq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uFMh2eyzqq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uFMh2eyzqq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uFMh2eyzqq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uFMh2eyzqq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uFMh2eyzqq .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-uFMh2eyzqq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uFMh2eyzqq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uFMh2eyzqq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uFMh2eyzqq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uFMh2eyzqq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uFMh2eyzqq .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uFMh2eyzqq .navbar.navbar-short {
  min-height: 60px;
}
.cid-uFMh2eyzqq .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uFMh2eyzqq .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uFMh2eyzqq .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-uFMh2eyzqq .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uFMh2eyzqq .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uFMh2eyzqq .dropdown-item:hover,
.cid-uFMh2eyzqq .dropdown-item:focus {
  background: #04367c !important;
  color: white !important;
}
.cid-uFMh2eyzqq .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uFMh2eyzqq .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uFMh2eyzqq .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-uFMh2eyzqq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uFMh2eyzqq .dropdown-menu,
.cid-uFMh2eyzqq .navbar.opened {
  background: #ffffff !important;
}
.cid-uFMh2eyzqq .nav-item:focus,
.cid-uFMh2eyzqq .nav-link:focus {
  outline: none;
}
.cid-uFMh2eyzqq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uFMh2eyzqq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uFMh2eyzqq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uFMh2eyzqq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uFMh2eyzqq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uFMh2eyzqq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uFMh2eyzqq .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uFMh2eyzqq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uFMh2eyzqq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uFMh2eyzqq .dropdown-item.active,
.cid-uFMh2eyzqq .dropdown-item:active {
  background-color: transparent;
}
.cid-uFMh2eyzqq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uFMh2eyzqq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uFMh2eyzqq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uFMh2eyzqq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uFMh2eyzqq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uFMh2eyzqq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uFMh2eyzqq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uFMh2eyzqq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uFMh2eyzqq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uFMh2eyzqq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uFMh2eyzqq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uFMh2eyzqq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFMh2eyzqq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFMh2eyzqq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uFMh2eyzqq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFMh2eyzqq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uFMh2eyzqq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uFMh2eyzqq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFMh2eyzqq .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uFMh2eyzqq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uFMh2eyzqq .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-uFMh2eyzqq .navbar {
    height: 70px;
  }
  .cid-uFMh2eyzqq .navbar.opened {
    height: auto;
  }
  .cid-uFMh2eyzqq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sc2Tw0U9tL {
  overflow-x: hidden !important;
}
.cid-sc2Tw0U9tL,
.cid-sc2Tw0U9tL .scroll-wrapper {
  padding-top: 150px;
  padding-bottom: 60px;
}
.cid-sc2Tw0U9tL .mbr-section-title {
  color: #ffffff;
}
.cid-sc2Tw0U9tL .mbr-section-title span {
  color: #04367c;
}
.cid-sc2Tw0U9tL .mbr-text {
  color: #efefef;
  letter-spacing: 5px;
  font-weight: 100;
}
.cid-sc2Tw0U9tL .scroll-wrapper {
  top: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  background-size: cover;
  position: absolute;
  background-repeat: repeat;
  z-index: 0;
  -webkit-animation-duration: 59s !important;
  animation-duration: 59s;
  background-image: url("../../../assets/images/mbr-1920x1440.jpg");
  -webkit-animation: scroll-wrapper linear infinite;
  -moz-animation: scroll-wrapper linear infinite;
  -o-animation: scroll-wrapper linear infinite;
  animation: scroll-wrapper linear infinite;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.cid-sc2Tw0U9tL .scroll-wrapper.second {
  left: calc(100% - 1px);
}
.cid-sc2Tw0U9tL .mbr-overlay {
  z-index: 1;
}
.cid-sc2Tw0U9tL .block-content {
  z-index: 2;
}
@keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-webkit-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-moz-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-o-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
.cid-sc31o8p0rk {
  padding-top: 0px;
  padding-bottom: 0px;
  background: #f4f8fa;
}
.cid-sc31o8p0rk .mbr-section-subtitle,
.cid-sc31o8p0rk .caption-text {
  color: #8d97ad;
}
.cid-sc31o8p0rk .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
  width: 100% !important;
}
.cid-sc31o8p0rk .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  border-radius: 0;
}
.cid-sc31o8p0rk .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-sc31o8p0rk .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-sc2VaVj2T7 {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sc2VaVj2T7 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sc322aR8Tu {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sc322aR8Tu .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-sc322aR8Tu .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-sc322aR8Tu img {
  width: 100%;
  padding-bottom: 1.5rem;
}
.cid-sc322aR8Tu .mbr-image-title {
  text-align: left;
  color: #000000;
}
.cid-sc3cZ1cLsq {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sc3cZ1cLsq a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-sc3cZ1cLsq a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-sc3cZ1cLsq .form-group {
  -webkit-flex-grow: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sc3cZ1cLsq .input-group-btn .btn {
  border-radius: 0px !important;
}
.cid-sc3cZ1cLsq .form-control {
  background: none;
  border-radius: 0px;
}
.cid-sc3cZ1cLsq textarea.form-control {
  min-height: 214.5px;
}
.cid-sc3cZ1cLsq .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  height: 50px;
  margin-bottom: 2.5rem;
}
.cid-sc3cZ1cLsq h4,
.cid-sc3cZ1cLsq p {
  margin: 0;
}
.cid-sc3cZ1cLsq h2 {
  color: #333;
  margin-bottom: 2rem;
}
.cid-sc3cZ1cLsq h3 {
  color: #767676;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.cid-sc3cZ1cLsq .icon {
  color: #656565;
  font-size: 2.5rem;
}
@media (max-width: 991px) {
  .cid-sc3cZ1cLsq h2 {
    text-align: center;
  }
  .cid-sc3cZ1cLsq h3 {
    text-align: center;
  }
  .cid-sc3cZ1cLsq .input-group-btn {
    text-align: center;
  }
  .cid-sc3cZ1cLsq .social-list {
    text-align: center;
  }
  .cid-sc3cZ1cLsq .order-2 {
    margin-top: 2.5rem;
  }
}
.cid-sc3cZ1cLsq H2 {
  color: #656565;
}
.cid-sc3cZ1cLsq .content {
  text-align: left;
  color: #656565;
}
.cid-sc3cZ1cLsq .type {
  text-align: left;
  padding-bottom: 8px;
  color: #232323;
}
.cid-sc3cZ1cLsq .title1 {
  text-align: left;
}
.cid-sc3cZ1cLsq .mbr-section-subtitle {
  text-align: left;
  color: #656565;
}
.cid-sc3cZ1cLsq .title2 {
  color: #656565;
}
.cid-uO9ByZmq32 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #1b61a1;
}
.cid-uO9ByZmq32 .container {
  display: flex;
  justify-content: center;
}
.cid-uO9ByZmq32 .row {
  display: flex;
  align-items: stretch;
  max-width: 1194px;
  width: 100%;
}
.cid-uO9ByZmq32 .col-brand {
  margin-bottom: 40px;
}
.cid-uO9ByZmq32 .col-link {
  margin-bottom: 30px;
}
.cid-uO9ByZmq32 .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 25px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
}
.cid-uO9ByZmq32 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uO9ByZmq32 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uO9ByZmq32 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uO9ByZmq32 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uO9ByZmq32 .mbr-section-subtitle {
  color: #ffffff;
  margin-bottom: 20px;
}
.cid-uO9ByZmq32 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uO9ByZmq32 .mbr-iconfont {
  font-size: 16px;
  color: #3b668d;
}
.cid-uO9ByZmq32 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background-color: #eef4fb;
  margin-right: 10px;
  margin-bottom: 10px;
  padding: 5px;
  min-height: 30px;
  min-width: 30px;
}
.cid-uO9ByZmq32 .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uO9ByZmq32 .soc-item:hover {
  background-color: #738bae;
}
.cid-uO9ByZmq32 .soc-item:hover .mbr-iconfont {
  color: #FFFFFF !important;
}
.cid-uO9ByZmq32 .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #010d4c;
}
.cid-uO9ByZmq32 .list li {
  min-height: 44px;
  display: flex;
  align-items: center;
}
.cid-uO9ByZmq32 .list a {
  min-height: 44px;
  display: flex;
  align-items: center;
}
.cid-uO9ByZmq32 .brand-text {
  margin-bottom: 35px;
  color: #ffffff;
  opacity: 0.8;
}
.cid-uO9ByZmq32 .mbr-text {
  color: #00284E;
  opacity: 0.8;
}
.cid-uO9ByZmq32 .mbr-text .text-black {
  color: #00284E !important;
}
.cid-uO9ByZmq32 .mbr-text a {
  opacity: 0.8;
}
.cid-uO9ByZmq32 .mbr-text a:hover {
  opacity: 1;
  color: #04367c !important;
}
.cid-uO9ByZmq32 .col-copyright {
  margin-top: 44px;
}
.cid-uO9ByZmq32 .copyright {
  color: #ffffff;
  opacity: 0.8;
}
@media (max-width: 991px) {
  .cid-uO9ByZmq32 .copyright {
    text-align: center !important;
  }
}
.cid-uO9ByZmq32 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uO9ByZmq32 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFMh2eyzqq {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uFMh2eyzqq .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uFMh2eyzqq .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-uFMh2eyzqq .iconfont-wrapper {
  color: #103178 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-uFMh2eyzqq .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-uFMh2eyzqq .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-uFMh2eyzqq .container {
    padding: 0 1rem;
  }
}
.cid-uFMh2eyzqq .menu-tite {
  background: #04367c;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-uFMh2eyzqq .nav-link {
  position: relative;
}
.cid-uFMh2eyzqq .nav-link:hover {
  color: #51aafa !important;
}
.cid-uFMh2eyzqq nav.navbar {
  position: fixed;
}
.cid-uFMh2eyzqq .navbar {
  padding: 0!important;
  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-uFMh2eyzqq .navbar.opened {
  transition: all 0.3s;
}
.cid-uFMh2eyzqq .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uFMh2eyzqq .navbar .navbar-logo img {
  width: auto;
}
.cid-uFMh2eyzqq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uFMh2eyzqq .navbar.collapsed {
  justify-content: center;
}
.cid-uFMh2eyzqq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uFMh2eyzqq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uFMh2eyzqq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uFMh2eyzqq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uFMh2eyzqq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uFMh2eyzqq .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-uFMh2eyzqq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uFMh2eyzqq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uFMh2eyzqq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uFMh2eyzqq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uFMh2eyzqq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uFMh2eyzqq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uFMh2eyzqq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uFMh2eyzqq .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-uFMh2eyzqq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uFMh2eyzqq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uFMh2eyzqq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uFMh2eyzqq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uFMh2eyzqq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uFMh2eyzqq .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uFMh2eyzqq .navbar.navbar-short {
  min-height: 60px;
}
.cid-uFMh2eyzqq .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uFMh2eyzqq .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uFMh2eyzqq .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-uFMh2eyzqq .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uFMh2eyzqq .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uFMh2eyzqq .dropdown-item:hover,
.cid-uFMh2eyzqq .dropdown-item:focus {
  background: #04367c !important;
  color: white !important;
}
.cid-uFMh2eyzqq .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uFMh2eyzqq .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uFMh2eyzqq .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-uFMh2eyzqq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uFMh2eyzqq .dropdown-menu,
.cid-uFMh2eyzqq .navbar.opened {
  background: #ffffff !important;
}
.cid-uFMh2eyzqq .nav-item:focus,
.cid-uFMh2eyzqq .nav-link:focus {
  outline: none;
}
.cid-uFMh2eyzqq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uFMh2eyzqq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uFMh2eyzqq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uFMh2eyzqq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uFMh2eyzqq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uFMh2eyzqq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uFMh2eyzqq .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uFMh2eyzqq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uFMh2eyzqq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uFMh2eyzqq .dropdown-item.active,
.cid-uFMh2eyzqq .dropdown-item:active {
  background-color: transparent;
}
.cid-uFMh2eyzqq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uFMh2eyzqq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uFMh2eyzqq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uFMh2eyzqq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uFMh2eyzqq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uFMh2eyzqq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uFMh2eyzqq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uFMh2eyzqq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uFMh2eyzqq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uFMh2eyzqq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uFMh2eyzqq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uFMh2eyzqq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFMh2eyzqq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFMh2eyzqq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uFMh2eyzqq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFMh2eyzqq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uFMh2eyzqq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uFMh2eyzqq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFMh2eyzqq .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uFMh2eyzqq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uFMh2eyzqq .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-uFMh2eyzqq .navbar {
    height: 70px;
  }
  .cid-uFMh2eyzqq .navbar.opened {
    height: auto;
  }
  .cid-uFMh2eyzqq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uNqkatW5tK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uNqkatW5tK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNqkatW5tK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uNqkatW5tK .container {
    padding: 0 22px;
  }
}
.cid-uNqkatW5tK .row {
  justify-content: space-between;
}
.cid-uNqkatW5tK .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uNqkatW5tK .content-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-uNqkatW5tK .form-wrap .dragArea.row .mbr-section-title {
  margin-bottom: 16px !important;
}
.cid-uNqkatW5tK .form-wrap .dragArea.row .mbr-text {
  margin-bottom: 16px;
}
.cid-uNqkatW5tK .form-wrap .dragArea.row .form-group {
  margin-bottom: 16px !important;
}
.cid-uNqkatW5tK .form-wrap .dragArea.row .form-group .form-control {
  padding: 16px;
  border: 1px solid #d4d3d3 !important;
  box-shadow: none;
  border-radius: 0 !important;
  background-color: transparent;
}
.cid-uNqkatW5tK .form-wrap .dragArea.row .form-group .form-control:hover,
.cid-uNqkatW5tK .form-wrap .dragArea.row .form-group .form-control:focus {
  border: 1px solid #000000 !important;
}
.cid-uNqkatW5tK .form-wrap .dragArea.row .form-group .form-control::placeholder {
  color: #000000;
}
.cid-uNqkatW5tK .form-wrap .dragArea.row .form-group textarea {
  min-height: 150px;
}
.cid-uNqkatW5tK .form-wrap .dragArea.row .form-group .form-check {
  padding-left: 1.9em;
  margin-bottom: 16px;
}
.cid-uNqkatW5tK .form-wrap .dragArea.row .form-group .form-check .form-check-input {
  background-color: transparent;
  border-color: #d4d3d3;
  border-radius: 0;
}
.cid-uNqkatW5tK .form-wrap .dragArea.row .form-group .form-check .form-check-input:focus {
  background-color: #d4d3d3;
}
.cid-uNqkatW5tK .form-wrap .dragArea.row .mbr-section-btn .btn {
  margin-top: 16px;
  min-height: auto;
}
.cid-uNqkatW5tK .mbr-section-title {
  color: #04367c;
}
.cid-uNqkatW5tK .mbr-text {
  color: #232323;
}
.cid-uNqkatW5tK label {
  color: #000000;
}
.cid-uNqkatW5tK LABEL {
  color: #8d97ad;
}
.cid-rY66TpPiL4 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rY66TpPiL4 .google-map {
  height: 25rem;
  position: relative;
}
.cid-rY66TpPiL4 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-rY66TpPiL4 .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-rY66TpPiL4 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-rY66TpPiL4 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-rY66TpPiL4 .container-fluid {
  padding: 0;
}
.cid-rY66TpPiL4 .relative {
  position: relative;
  width: 100%;
}
.cid-rY66TpPiL4 .mbr-section-title {
  color: #656565;
}
.cid-rY66TpPiL4 .block {
  background: rgba(50, 50, 50, 0.8);
  position: absolute;
  padding: 2rem;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  width: 400px;
  height: 100%;
  top: 0;
  right: 0;
}
.cid-rY66TpPiL4 .line {
  height: 3px;
  width: 60px;
  background: #ffffff;
  margin: auto;
  margin-bottom: 1rem;
  margin-top: 1rem;
}
.cid-rY66TpPiL4 .title {
  text-align: center;
  color: #ffffff;
}
.cid-rY66TpPiL4 .text {
  text-align: center;
  color: #ffffff;
  line-height: 1.5;
}
@media (max-width: 576px) {
  .cid-rY66TpPiL4 .block {
    position: relative;
    width: 100%;
    height: auto;
    padding: 6rem 2rem;
  }
}
.cid-uO9ByZmq32 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #1b61a1;
}
.cid-uO9ByZmq32 .container {
  display: flex;
  justify-content: center;
}
.cid-uO9ByZmq32 .row {
  display: flex;
  align-items: stretch;
  max-width: 1194px;
  width: 100%;
}
.cid-uO9ByZmq32 .col-brand {
  margin-bottom: 40px;
}
.cid-uO9ByZmq32 .col-link {
  margin-bottom: 30px;
}
.cid-uO9ByZmq32 .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 25px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
}
.cid-uO9ByZmq32 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uO9ByZmq32 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uO9ByZmq32 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uO9ByZmq32 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uO9ByZmq32 .mbr-section-subtitle {
  color: #ffffff;
  margin-bottom: 20px;
}
.cid-uO9ByZmq32 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uO9ByZmq32 .mbr-iconfont {
  font-size: 16px;
  color: #3b668d;
}
.cid-uO9ByZmq32 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background-color: #eef4fb;
  margin-right: 10px;
  margin-bottom: 10px;
  padding: 5px;
  min-height: 30px;
  min-width: 30px;
}
.cid-uO9ByZmq32 .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uO9ByZmq32 .soc-item:hover {
  background-color: #738bae;
}
.cid-uO9ByZmq32 .soc-item:hover .mbr-iconfont {
  color: #FFFFFF !important;
}
.cid-uO9ByZmq32 .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #010d4c;
}
.cid-uO9ByZmq32 .list li {
  min-height: 44px;
  display: flex;
  align-items: center;
}
.cid-uO9ByZmq32 .list a {
  min-height: 44px;
  display: flex;
  align-items: center;
}
.cid-uO9ByZmq32 .brand-text {
  margin-bottom: 35px;
  color: #ffffff;
  opacity: 0.8;
}
.cid-uO9ByZmq32 .mbr-text {
  color: #00284E;
  opacity: 0.8;
}
.cid-uO9ByZmq32 .mbr-text .text-black {
  color: #00284E !important;
}
.cid-uO9ByZmq32 .mbr-text a {
  opacity: 0.8;
}
.cid-uO9ByZmq32 .mbr-text a:hover {
  opacity: 1;
  color: #04367c !important;
}
.cid-uO9ByZmq32 .col-copyright {
  margin-top: 44px;
}
.cid-uO9ByZmq32 .copyright {
  color: #ffffff;
  opacity: 0.8;
}
@media (max-width: 991px) {
  .cid-uO9ByZmq32 .copyright {
    text-align: center !important;
  }
}
.cid-uO9ByZmq32 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uO9ByZmq32 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJDPbtRYDB {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uJDPbtRYDB .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uJDPbtRYDB .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-uJDPbtRYDB .iconfont-wrapper {
  color: #103178 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-uJDPbtRYDB .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-uJDPbtRYDB .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-uJDPbtRYDB .container {
    padding: 0 1rem;
  }
}
.cid-uJDPbtRYDB .menu-tite {
  background: #04367c;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-uJDPbtRYDB .nav-link {
  position: relative;
}
.cid-uJDPbtRYDB .nav-link:hover {
  color: #51aafa !important;
}
.cid-uJDPbtRYDB nav.navbar {
  position: fixed;
}
.cid-uJDPbtRYDB .navbar {
  padding: 0!important;
  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-uJDPbtRYDB .navbar.opened {
  transition: all 0.3s;
}
.cid-uJDPbtRYDB .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uJDPbtRYDB .navbar .navbar-logo img {
  width: auto;
}
.cid-uJDPbtRYDB .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uJDPbtRYDB .navbar.collapsed {
  justify-content: center;
}
.cid-uJDPbtRYDB .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uJDPbtRYDB .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uJDPbtRYDB .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uJDPbtRYDB .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uJDPbtRYDB .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uJDPbtRYDB .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-uJDPbtRYDB .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uJDPbtRYDB .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uJDPbtRYDB .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uJDPbtRYDB .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uJDPbtRYDB .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uJDPbtRYDB .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uJDPbtRYDB .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uJDPbtRYDB .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-uJDPbtRYDB .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uJDPbtRYDB .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uJDPbtRYDB .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uJDPbtRYDB .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uJDPbtRYDB .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uJDPbtRYDB .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uJDPbtRYDB .navbar.navbar-short {
  min-height: 60px;
}
.cid-uJDPbtRYDB .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uJDPbtRYDB .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uJDPbtRYDB .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-uJDPbtRYDB .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uJDPbtRYDB .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uJDPbtRYDB .dropdown-item:hover,
.cid-uJDPbtRYDB .dropdown-item:focus {
  background: #04367c !important;
  color: white !important;
}
.cid-uJDPbtRYDB .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uJDPbtRYDB .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uJDPbtRYDB .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-uJDPbtRYDB .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uJDPbtRYDB .dropdown-menu,
.cid-uJDPbtRYDB .navbar.opened {
  background: #ffffff !important;
}
.cid-uJDPbtRYDB .nav-item:focus,
.cid-uJDPbtRYDB .nav-link:focus {
  outline: none;
}
.cid-uJDPbtRYDB .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uJDPbtRYDB .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uJDPbtRYDB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uJDPbtRYDB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uJDPbtRYDB .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uJDPbtRYDB .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uJDPbtRYDB .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uJDPbtRYDB .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uJDPbtRYDB .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uJDPbtRYDB .dropdown-item.active,
.cid-uJDPbtRYDB .dropdown-item:active {
  background-color: transparent;
}
.cid-uJDPbtRYDB .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uJDPbtRYDB .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uJDPbtRYDB .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uJDPbtRYDB .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uJDPbtRYDB .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uJDPbtRYDB .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uJDPbtRYDB ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uJDPbtRYDB .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uJDPbtRYDB button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uJDPbtRYDB button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uJDPbtRYDB button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uJDPbtRYDB button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uJDPbtRYDB button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uJDPbtRYDB button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uJDPbtRYDB nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uJDPbtRYDB nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uJDPbtRYDB nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uJDPbtRYDB nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uJDPbtRYDB .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uJDPbtRYDB a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uJDPbtRYDB .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-uJDPbtRYDB .navbar {
    height: 70px;
  }
  .cid-uJDPbtRYDB .navbar.opened {
    height: auto;
  }
  .cid-uJDPbtRYDB .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uNiUhmXd3W {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uNiUhmXd3W .content-slider {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 0;
}
.cid-uNiUhmXd3W .modal-body .close {
  background: #1b1b1b;
}
.cid-uNiUhmXd3W .modal-body .close span {
  font-style: normal;
}
.cid-uNiUhmXd3W .carousel-inner > .active,
.cid-uNiUhmXd3W .carousel-inner > .next,
.cid-uNiUhmXd3W .carousel-inner > .prev {
  display: flex;
}
.cid-uNiUhmXd3W .carousel-control .icon-next,
.cid-uNiUhmXd3W .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-uNiUhmXd3W .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uNiUhmXd3W .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uNiUhmXd3W .content-slider-wrap {
    width: 100%!important;
  }
}
.cid-uNiUhmXd3W .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-uNiUhmXd3W .boxed-slider > div {
  position: relative;
}
.cid-uNiUhmXd3W .container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.cid-uNiUhmXd3W .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-uNiUhmXd3W .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-uNiUhmXd3W .mbr-table-cell {
  padding: 0;
}
.cid-uNiUhmXd3W .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uNiUhmXd3W .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-uNiUhmXd3W .mbr-overlay {
  z-index: 1;
  pointer-events: none;
}
.cid-uNiUhmXd3W .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
  min-width: 100%;
}
.cid-uNiUhmXd3W .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  -o-transition: -o-transform 0.6s ease-in-out;
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}
@media (max-width: 576px) {
  .cid-uNiUhmXd3W .carousel-item .container {
    width: 100%;
  }
}
.cid-uNiUhmXd3W .carousel-item-next.carousel-item-left,
.cid-uNiUhmXd3W .carousel-item-prev.carousel-item-right {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.cid-uNiUhmXd3W .active.carousel-item-right,
.cid-uNiUhmXd3W .carousel-item-next {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.cid-uNiUhmXd3W .active.carousel-item-left,
.cid-uNiUhmXd3W .carousel-item-prev {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.cid-uNiUhmXd3W .mbr-slider .carousel-control {
  top: 50%;
  width: 50px;
  height: 50px;
  margin-top: -1.5rem;
  font-size: 35px;
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
  z-index: 11;
}
.cid-uNiUhmXd3W .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uNiUhmXd3W .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uNiUhmXd3W .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  .cid-uNiUhmXd3W .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uNiUhmXd3W .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uNiUhmXd3W .mbr-slider .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-uNiUhmXd3W .mbr-slider .carousel-indicators li.active,
.cid-uNiUhmXd3W .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-uNiUhmXd3W .mbr-slider .carousel-indicators li::after,
.cid-uNiUhmXd3W .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-uNiUhmXd3W .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-uNiUhmXd3W .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-uNiUhmXd3W .mbr-slider > .container img {
  width: 100%;
}
.cid-uNiUhmXd3W .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-uNiUhmXd3W .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-uNiUhmXd3W .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uNiUhmXd3W .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-uNiUhmXd3W .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-uNiUhmXd3W .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-uNiUhmXd3W .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-uNiUhmXd3W .full-screen .slider-fullscreen-image.active {
  display: flex;
}
.cid-uNiUhmXd3W .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-uNiUhmXd3W .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-uNiUhmXd3W .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-uNiUhmXd3W .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-uNiUhmXd3W .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-uNiUhmXd3W .mbr-slider.slide .container {
  overflow: hidden;
  padding: 0;
}
.cid-uNiUhmXd3W .carousel-inner {
  height: 100%;
}
.cid-uNiUhmXd3W .slider-fullscreen-image {
  height: 100%;
  background: transparent !important;
}
.cid-uNiUhmXd3W .image_wrapper {
  width: 100%;
  position: relative;
  display: inline-block;
  height: 560px;
  overflow: hidden;
}
.cid-uNiUhmXd3W .carousel-item .container-slide {
  text-align: center;
  margin-bottom: -0.5rem;
}
.cid-uNiUhmXd3W .content-slider-wrap {
  width: 100%;
}
.cid-uJDQ9u9RMf {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-uJDQ9u9RMf .mbr-text {
  color: #767676;
}
.cid-uJDQ9u9RMf .mbr-section-subtitle {
  color: #767676;
}
.cid-uJDQ9u9RMf .title {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uJDQ9u9RMf .title .num {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 0;
  width: 100%;
  font-size: 4rem;
}
.cid-uJDQ9u9RMf .title .card-title {
  z-index: 1;
  width: 100%;
}
.cid-uJDQ9u9RMf .card-text {
  padding-top: 2rem;
}
.cid-uJDQ9u9RMf .card-box {
  padding-bottom: 1rem;
}
.cid-uJDQ9u9RMf .num {
  color: #cccccc;
}
@media (max-width: 767px) {
  .cid-uJDQ9u9RMf .num,
  .cid-uJDQ9u9RMf .card-title,
  .cid-uJDQ9u9RMf .mbr-text,
  .cid-uJDQ9u9RMf .mbr-title,
  .cid-uJDQ9u9RMf .mbr-section-subtitle,
  .cid-uJDQ9u9RMf .mbr-section-btn,
  .cid-uJDQ9u9RMf .mbr-section-title {
    text-align: center !important;
  }
  .cid-uJDQ9u9RMf .content-column {
    margin-bottom: 2rem;
  }
}
.cid-uJDQeJVkML {
  padding-top: 45px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/mbr-1920x1152.jpg");
}
.cid-uLlqk1BDCg {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uLlqk1BDCg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLlqk1BDCg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLlqk1BDCg .mbr-section-head {
  margin-bottom: 30px;
  width: 100%;
}
.cid-uLlqk1BDCg .mbr-section-title {
  color: #FF014E;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .cid-uLlqk1BDCg .mbr-section-title {
    margin-bottom: 10px;
  }
}
.cid-uLlqk1BDCg .mbr-section-subtitle {
  color: #66458e;
}
.cid-uLlqk1BDCg .card-row {
  align-items: stretch;
}
.cid-uLlqk1BDCg .card {
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-uLlqk1BDCg .card-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 35px 20px;
  overflow: hidden;
  border-radius: 13px;
  border: 1px solid rgba(0, 0, 0, 0.25);
}
.cid-uLlqk1BDCg .card-box {
  height: 100%;
}
.cid-uLlqk1BDCg .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: auto;
  margin-bottom: 25px;
}
.cid-uLlqk1BDCg .iconfont-wrapper .mbr-iconfont {
  font-size: 45px;
  color: #66458e;
}
.cid-uLlqk1BDCg .card-title {
  color: #04367c;
  margin-bottom: 20px;
}
.cid-uLlqk1BDCg .card-text {
  color: #000000;
  margin-bottom: 0;
}
.cid-uLlqoKkZbR {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uLlqoKkZbR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLlqoKkZbR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLlqoKkZbR .mbr-section-head {
  margin-bottom: 30px;
  width: 100%;
}
.cid-uLlqoKkZbR .mbr-section-title {
  color: #FF014E;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .cid-uLlqoKkZbR .mbr-section-title {
    margin-bottom: 10px;
  }
}
.cid-uLlqoKkZbR .mbr-section-subtitle {
  color: #C4CFDE;
}
.cid-uLlqoKkZbR .card-row {
  align-items: stretch;
}
.cid-uLlqoKkZbR .card {
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-uLlqoKkZbR .card-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 35px 20px;
  overflow: hidden;
  border-radius: 13px;
  border: 1px solid rgba(0, 0, 0, 0.25);
}
.cid-uLlqoKkZbR .card-box {
  height: 100%;
}
.cid-uLlqoKkZbR .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: auto;
  margin-bottom: 25px;
}
.cid-uLlqoKkZbR .iconfont-wrapper .mbr-iconfont {
  font-size: 45px;
  color: #66458e;
}
.cid-uLlqoKkZbR .card-title {
  color: #04367c;
  margin-bottom: 20px;
}
.cid-uLlqoKkZbR .card-text {
  color: #000000;
  margin-bottom: 0;
}
.cid-uMiy1fglWI {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uMiy1fglWI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMiy1fglWI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMiy1fglWI .mbr-section-head {
  margin-bottom: 30px;
  width: 100%;
}
.cid-uMiy1fglWI .mbr-section-title {
  color: #FF014E;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .cid-uMiy1fglWI .mbr-section-title {
    margin-bottom: 10px;
  }
}
.cid-uMiy1fglWI .mbr-section-subtitle {
  color: #C4CFDE;
}
.cid-uMiy1fglWI .card-row {
  align-items: stretch;
}
.cid-uMiy1fglWI .card {
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-uMiy1fglWI .card-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 35px 20px;
  overflow: hidden;
  border-radius: 13px;
  border: 1px solid rgba(0, 0, 0, 0.25);
}
.cid-uMiy1fglWI .card-box {
  height: 100%;
}
.cid-uMiy1fglWI .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: auto;
  margin-bottom: 25px;
}
.cid-uMiy1fglWI .iconfont-wrapper .mbr-iconfont {
  font-size: 45px;
  color: #66458e;
}
.cid-uMiy1fglWI .card-title {
  color: #04367c;
  margin-bottom: 20px;
}
.cid-uMiy1fglWI .card-text {
  color: #000000;
  margin-bottom: 0;
}
.cid-uJDQgiALAR {
  padding-top: 45px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/mbr-1920x1152.jpg");
}
.cid-uJDPmdD54j {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uJDPmdD54j .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJDPmdD54j .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJDPmdD54j .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-uJDPmdD54j .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uJDPmdD54j .container {
    padding: 0 16px;
  }
}
.cid-uJDPmdD54j .row {
  justify-content: center;
  margin: 0 -8px;
}
.cid-uJDPmdD54j .item {
  padding: 0 8px;
  margin-bottom: 16px;
}
.cid-uJDPmdD54j .item:hover .item-wrapper .card-box,
.cid-uJDPmdD54j .item:focus .item-wrapper .card-box {
  border: 1px solid #04367c;
  box-shadow: 6px 8px 0 0 #04367c;
}
.cid-uJDPmdD54j .item:hover .item-wrapper .card-box .item-price,
.cid-uJDPmdD54j .item:focus .item-wrapper .card-box .item-price {
  color: #04367c;
}
.cid-uJDPmdD54j .item:hover .item-wrapper .card-box .btn-primary,
.cid-uJDPmdD54j .item:focus .item-wrapper .card-box .btn-primary,
.cid-uJDPmdD54j .item:hover .item-wrapper .card-box .btn-secondary,
.cid-uJDPmdD54j .item:focus .item-wrapper .card-box .btn-secondary,
.cid-uJDPmdD54j .item:hover .item-wrapper .card-box .btn-success,
.cid-uJDPmdD54j .item:focus .item-wrapper .card-box .btn-success,
.cid-uJDPmdD54j .item:hover .item-wrapper .card-box .btn-info,
.cid-uJDPmdD54j .item:focus .item-wrapper .card-box .btn-info,
.cid-uJDPmdD54j .item:hover .item-wrapper .card-box .btn-warning,
.cid-uJDPmdD54j .item:focus .item-wrapper .card-box .btn-warning,
.cid-uJDPmdD54j .item:hover .item-wrapper .card-box .btn-danger,
.cid-uJDPmdD54j .item:focus .item-wrapper .card-box .btn-danger,
.cid-uJDPmdD54j .item:hover .item-wrapper .card-box .btn-black,
.cid-uJDPmdD54j .item:focus .item-wrapper .card-box .btn-black,
.cid-uJDPmdD54j .item:hover .item-wrapper .card-box .btn-white,
.cid-uJDPmdD54j .item:focus .item-wrapper .card-box .btn-white {
  background-color: #04367c !important;
  border-color: #04367c !important;
}
.cid-uJDPmdD54j .item .item-wrapper {
  height: 100%;
}
.cid-uJDPmdD54j .item .item-wrapper .card-box {
  height: 100%;
  padding: 32px 36px;
  border-radius: 16px;
  border: 1px solid #bdc5cf;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1199px) {
  .cid-uJDPmdD54j .item .item-wrapper .card-box {
    padding: 32px 16px;
  }
}
@media (max-width: 992px) {
  .cid-uJDPmdD54j .item .item-wrapper .card-box {
    padding: 24px;
  }
}
.cid-uJDPmdD54j .item .item-wrapper .card-box .title-wrapper {
  padding-bottom: 16px;
  border-bottom: 1px solid #f6f7f9;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-uJDPmdD54j .item .item-wrapper .card-box .title-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uJDPmdD54j .item .item-wrapper .card-box .title-wrapper .item-title {
  margin-bottom: 0;
}
.cid-uJDPmdD54j .item .item-wrapper .card-box .title-wrapper .item-desc {
  margin-bottom: 0;
}
.cid-uJDPmdD54j .item .item-wrapper .card-box .item-price {
  margin-bottom: 24px;
  transition: all 0.3s ease-in-out;
}
.cid-uJDPmdD54j .item .item-wrapper .card-box .list-wrapper {
  margin-top: 48px;
}
@media (max-width: 768px) {
  .cid-uJDPmdD54j .item .item-wrapper .card-box .list-wrapper {
    margin-top: 32px;
  }
}
.cid-uJDPmdD54j .item .item-wrapper .card-box .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uJDPmdD54j .item .item-wrapper .card-box .list-wrapper .list .item-wrap {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
}
.cid-uJDPmdD54j .item .item-wrapper .card-box .list-wrapper .list .item-wrap::before {
  content: '✓';
  position: absolute;
  top: 5px;
  left: 0;
  width: 20px;
  height: 20px;
  background-color: #04367c;
  color: #ffffff;
  font-size: 16px;
  border-radius: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cid-uJDPmdD54j .item-title {
  color: #454cab;
}
.cid-uJDPmdD54j .item-desc {
  color: #000000;
}
.cid-uJDPmdD54j .item-price {
  color: #000000;
}
.cid-uJDPmdD54j .list {
  color: #000000;
}
.cid-uJDQhjcLhB {
  padding-top: 45px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/mbr-1920x1152.jpg");
}
.cid-uJDQp4XQwG {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/mbr-1920x1080.png");
}
.cid-uJDQp4XQwG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJDQp4XQwG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) and (max-width: 992px) {
  .cid-uJDQp4XQwG .container {
    padding: 0 24px;
  }
}
@media (min-width: 992px) {
  .cid-uJDQp4XQwG .row {
    margin: 0;
  }
}
.cid-uJDQp4XQwG .row .card {
  padding: 0;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-uJDQp4XQwG .row .card {
    padding: 0 16px;
  }
}
.cid-uJDQp4XQwG .content-wrapper {
  border-top: 1px solid #72716b;
  padding: 32px;
  position: sticky;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uJDQp4XQwG .content-wrapper {
    padding: 24px;
    border: none;
  }
}
.cid-uJDQp4XQwG .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uJDQp4XQwG .content-wrapper .mbr-section-title {
    text-align: left;
  }
}
.cid-uJDQp4XQwG .content-wrapper .mbr-text {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uJDQp4XQwG .content-wrapper .mbr-text {
    text-align: left;
  }
}
.cid-uJDQp4XQwG .items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-left: 1px solid #72716b;
}
@media (max-width: 992px) {
  .cid-uJDQp4XQwG .items {
    display: block;
  }
}
.cid-uJDQp4XQwG .items .item {
  padding: 32px;
  border-top: 1px solid #72716b;
  border-right: 1px solid #72716b;
}
.cid-uJDQp4XQwG .items .item:nth-child(2n) {
  border-right: none;
}
@media (max-width: 992px) {
  .cid-uJDQp4XQwG .items .item {
    padding: 24px;
    border-right: none !important;
  }
}
.cid-uJDQp4XQwG .items .item .item-wrapper .card-box .card-title {
  margin-bottom: 8px;
}
.cid-uJDQp4XQwG .items .item .item-wrapper .card-box .card-text {
  margin-bottom: 0;
}
.cid-uJDQp4XQwG .items .item .item-wrapper .card-box .mbr-section-btn {
  margin-top: 32px;
}
@media (max-width: 992px) {
  .cid-uJDQp4XQwG .items .item .item-wrapper .card-box .mbr-section-btn {
    margin-top: 24px;
  }
}
.cid-uJDQp4XQwG .items .item .item-wrapper .card-box .contact-wrap {
  margin-bottom: 16px;
}
.cid-uJDQp4XQwG .items .item .item-wrapper .card-box .contact-wrap:last-child {
  margin-bottom: 0;
}
.cid-uJDQp4XQwG .items .item .item-wrapper .card-box .contact-wrap .card-title {
  margin-bottom: 8px;
}
.cid-uJDQp4XQwG .items .item .item-wrapper .card-box .contact-wrap .card-text {
  margin-bottom: 0;
}
.cid-uJDQp4XQwG .items .item .item-wrapper .card-box .contact-wrap .list {
  margin: 16px 0 0 0;
  padding: 0;
  list-style-type: none;
}
.cid-uJDQp4XQwG .items .item .item-wrapper .card-box .contact-wrap .list .item-wrap {
  margin-bottom: 16px;
  transition: all 0.3s ease-in-out;
}
.cid-uJDQp4XQwG .items .item .item-wrapper .card-box .contact-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uJDQp4XQwG .items .item .item-wrapper .card-box .contact-wrap .list .item-wrap:hover,
.cid-uJDQp4XQwG .items .item .item-wrapper .card-box .contact-wrap .list .item-wrap:focus {
  color: #8aa29e;
}
.cid-uJDQp4XQwG .items .item .item-wrapper .card-box .contact-wrap .link-wrap {
  display: block;
}
.cid-uJDQp4XQwG .items .item .item-wrapper .card-box .contact-wrap .link-wrap:hover .card-link,
.cid-uJDQp4XQwG .items .item .item-wrapper .card-box .contact-wrap .link-wrap:focus .card-link {
  color: #8aa29e;
}
.cid-uJDQp4XQwG .items .item .item-wrapper .card-box .contact-wrap .link-wrap .card-link {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.cid-uJDQp4XQwG .mbr-section-title {
  color: #F9F6E0;
  text-align: right;
}
.cid-uJDQp4XQwG .mbr-text {
  color: #F9F6E0;
  text-align: right;
}
.cid-uJDQp4XQwG .card-title {
  color: #F9F6E0;
}
.cid-uJDQp4XQwG .list {
  color: #E0B548;
}
.cid-uJDQp4XQwG .card-link {
  color: #E0B548;
}
.cid-uJDQp4XQwG .card-text {
  color: #F9F6E0;
}
.cid-uJDQiOHAfU {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #04367c;
}
.cid-uJDQiOHAfU .mbr-section-subtitle {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uJDQiOHAfU .mbr-section-btn,
  .cid-uJDQiOHAfU .mbr-section-subtitle,
  .cid-uJDQiOHAfU .mbr-section-title {
    text-align: center !important;
  }
}
.cid-uJDQiOHAfU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJDQiOHAfU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uO9ByZmq32 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #1b61a1;
}
.cid-uO9ByZmq32 .container {
  display: flex;
  justify-content: center;
}
.cid-uO9ByZmq32 .row {
  display: flex;
  align-items: stretch;
  max-width: 1194px;
  width: 100%;
}
.cid-uO9ByZmq32 .col-brand {
  margin-bottom: 40px;
}
.cid-uO9ByZmq32 .col-link {
  margin-bottom: 30px;
}
.cid-uO9ByZmq32 .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 25px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
}
.cid-uO9ByZmq32 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uO9ByZmq32 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uO9ByZmq32 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uO9ByZmq32 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uO9ByZmq32 .mbr-section-subtitle {
  color: #ffffff;
  margin-bottom: 20px;
}
.cid-uO9ByZmq32 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uO9ByZmq32 .mbr-iconfont {
  font-size: 16px;
  color: #3b668d;
}
.cid-uO9ByZmq32 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background-color: #eef4fb;
  margin-right: 10px;
  margin-bottom: 10px;
  padding: 5px;
  min-height: 30px;
  min-width: 30px;
}
.cid-uO9ByZmq32 .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uO9ByZmq32 .soc-item:hover {
  background-color: #738bae;
}
.cid-uO9ByZmq32 .soc-item:hover .mbr-iconfont {
  color: #FFFFFF !important;
}
.cid-uO9ByZmq32 .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #010d4c;
}
.cid-uO9ByZmq32 .list li {
  min-height: 44px;
  display: flex;
  align-items: center;
}
.cid-uO9ByZmq32 .list a {
  min-height: 44px;
  display: flex;
  align-items: center;
}
.cid-uO9ByZmq32 .brand-text {
  margin-bottom: 35px;
  color: #ffffff;
  opacity: 0.8;
}
.cid-uO9ByZmq32 .mbr-text {
  color: #00284E;
  opacity: 0.8;
}
.cid-uO9ByZmq32 .mbr-text .text-black {
  color: #00284E !important;
}
.cid-uO9ByZmq32 .mbr-text a {
  opacity: 0.8;
}
.cid-uO9ByZmq32 .mbr-text a:hover {
  opacity: 1;
  color: #04367c !important;
}
.cid-uO9ByZmq32 .col-copyright {
  margin-top: 44px;
}
.cid-uO9ByZmq32 .copyright {
  color: #ffffff;
  opacity: 0.8;
}
@media (max-width: 991px) {
  .cid-uO9ByZmq32 .copyright {
    text-align: center !important;
  }
}
.cid-uO9ByZmq32 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uO9ByZmq32 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNdse7jfoB {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uNdse7jfoB .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uNdse7jfoB .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-uNdse7jfoB .iconfont-wrapper {
  color: #103178 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-uNdse7jfoB .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-uNdse7jfoB .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-uNdse7jfoB .container {
    padding: 0 1rem;
  }
}
.cid-uNdse7jfoB .menu-tite {
  background: #04367c;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-uNdse7jfoB .nav-link {
  position: relative;
}
.cid-uNdse7jfoB .nav-link:hover {
  color: #51aafa !important;
}
.cid-uNdse7jfoB nav.navbar {
  position: fixed;
}
.cid-uNdse7jfoB .navbar {
  padding: 0!important;
  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-uNdse7jfoB .navbar.opened {
  transition: all 0.3s;
}
.cid-uNdse7jfoB .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uNdse7jfoB .navbar .navbar-logo img {
  width: auto;
}
.cid-uNdse7jfoB .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uNdse7jfoB .navbar.collapsed {
  justify-content: center;
}
.cid-uNdse7jfoB .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uNdse7jfoB .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uNdse7jfoB .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uNdse7jfoB .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uNdse7jfoB .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uNdse7jfoB .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-uNdse7jfoB .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uNdse7jfoB .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uNdse7jfoB .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uNdse7jfoB .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uNdse7jfoB .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uNdse7jfoB .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uNdse7jfoB .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uNdse7jfoB .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-uNdse7jfoB .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uNdse7jfoB .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uNdse7jfoB .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uNdse7jfoB .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uNdse7jfoB .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uNdse7jfoB .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uNdse7jfoB .navbar.navbar-short {
  min-height: 60px;
}
.cid-uNdse7jfoB .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uNdse7jfoB .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uNdse7jfoB .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-uNdse7jfoB .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uNdse7jfoB .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uNdse7jfoB .dropdown-item:hover,
.cid-uNdse7jfoB .dropdown-item:focus {
  background: #04367c !important;
  color: white !important;
}
.cid-uNdse7jfoB .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uNdse7jfoB .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uNdse7jfoB .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-uNdse7jfoB .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uNdse7jfoB .dropdown-menu,
.cid-uNdse7jfoB .navbar.opened {
  background: #ffffff !important;
}
.cid-uNdse7jfoB .nav-item:focus,
.cid-uNdse7jfoB .nav-link:focus {
  outline: none;
}
.cid-uNdse7jfoB .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uNdse7jfoB .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uNdse7jfoB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uNdse7jfoB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uNdse7jfoB .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uNdse7jfoB .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uNdse7jfoB .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uNdse7jfoB .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uNdse7jfoB .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uNdse7jfoB .dropdown-item.active,
.cid-uNdse7jfoB .dropdown-item:active {
  background-color: transparent;
}
.cid-uNdse7jfoB .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uNdse7jfoB .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uNdse7jfoB .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uNdse7jfoB .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uNdse7jfoB .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uNdse7jfoB .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uNdse7jfoB ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uNdse7jfoB .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uNdse7jfoB button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uNdse7jfoB button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uNdse7jfoB button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uNdse7jfoB button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uNdse7jfoB button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uNdse7jfoB button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uNdse7jfoB nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uNdse7jfoB nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uNdse7jfoB nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uNdse7jfoB nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uNdse7jfoB .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uNdse7jfoB a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uNdse7jfoB .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-uNdse7jfoB .navbar {
    height: 70px;
  }
  .cid-uNdse7jfoB .navbar.opened {
    height: auto;
  }
  .cid-uNdse7jfoB .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uNdse8eQDi {
  padding-top: 180px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/mbr-698x465.jpg");
}
.cid-uNdse8eQDi .media-container-column .btn-bgr {
  z-index: 0;
}
.cid-uNdse8eQDi .mbr-overlay {
  background: #333333;
  background: linear-gradient(#333333 -10%, #04367c 75%);
}
.cid-uNdse8eQDi .mbr-section-title {
  margin: 0;
}
.cid-uNdse8eQDi .separator {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  max-width: 125px;
  margin-left: auto;
  margin-right: auto;
}
.cid-uOhvDI6P9C {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fffaf5;
  overflow: hidden;
}
.cid-uOhvDI6P9C .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOhvDI6P9C .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uOhvDI6P9C .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-uOhvDI6P9C .container {
    padding: 0 16px;
  }
}
.cid-uOhvDI6P9C .row {
  justify-content: space-between;
}
.cid-uOhvDI6P9C .row:hover,
.cid-uOhvDI6P9C .row:focus {
  cursor: pointer;
}
.cid-uOhvDI6P9C .row .card {
  position: relative;
  z-index: 1;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uOhvDI6P9C .image-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uOhvDI6P9C .image-wrapper img {
  height: 400px;
  object-fit: cover;
  border-radius: 1rem !important;
}
@media (max-width: 992px) {
  .cid-uOhvDI6P9C .image-wrapper img {
    height: 300px;
  }
}
.cid-uOhvDI6P9C .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uOhvDI6P9C .content-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-uOhvDI6P9C .mbr-section-title {
  color: #000000;
}
.cid-uOhvDI6P9C .mbr-text {
  color: #000000;
}
.cid-uOhvDI6P9C .mbr-section-title,
.cid-uOhvDI6P9C .mbr-section-btn {
  color: #04367c;
}
.cid-uOhpFBiOtN {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #3b7cb7;
}
.cid-uOhpFBiOtN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOhpFBiOtN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOhpFBiOtN .card {
  justify-content: flex-end;
}
.cid-uOhpFBiOtN .title-wrapper {
  margin-bottom: 40px;
}
.cid-uOhpFBiOtN .title-wrapper .mbr-tag {
  margin-bottom: 16px;
}
.cid-uOhpFBiOtN .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uOhpFBiOtN .mbr-section-btn {
  margin-bottom: 40px;
}
.cid-uOhpFBiOtN .mbr-section-btn .btn::after,
.cid-uOhpFBiOtN .mbr-section-btn .btn::before {
  background-image: linear-gradient(90deg, #386bb7, #e24c4a 150%);
}
.cid-uOhpFBiOtN .mbr-section-btn .btn:hover,
.cid-uOhpFBiOtN .mbr-section-btn .btn:focus {
  color: #ffffff !important;
}
.cid-uOhpFBiOtN .mbr-section-btn .btn:hover::after,
.cid-uOhpFBiOtN .mbr-section-btn .btn:focus::after {
  background-image: linear-gradient(90deg, #386bb7, #e24c4a 150%);
  opacity: 1;
}
.cid-uOhpFBiOtN .items-wrapper {
  margin: 0 -20px;
}
.cid-uOhpFBiOtN .items-wrapper .item {
  margin-bottom: 40px;
  padding: 0 20px;
}
@media (max-width: 992px) {
  .cid-uOhpFBiOtN .items-wrapper .item {
    margin-bottom: 20px;
  }
}
.cid-uOhpFBiOtN .items-wrapper .item .item-wrapper {
  position: relative;
  height: 100%;
}
.cid-uOhpFBiOtN .items-wrapper .item .item-wrapper .item-content .item-title {
  margin-bottom: 16px;
}
.cid-uOhpFBiOtN .items-wrapper .item .item-wrapper .item-content .item-text {
  margin-bottom: 16px;
}
.cid-uOhpFBiOtN .items-wrapper .item .item-wrapper .item-content .icon-wrapper {
  margin-top: 32px;
}
@media (max-width: 992px) {
  .cid-uOhpFBiOtN .items-wrapper .item .item-wrapper .item-content .icon-wrapper {
    margin-top: 20px;
  }
}
.cid-uOhpFBiOtN .items-wrapper .item .item-wrapper .item-content .icon-wrapper .icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 16px;
  background-color: #121212;
}
.cid-uOhpFBiOtN .items-wrapper .item .item-wrapper .item-content .icon-wrapper .icon-wrap .mbr-iconfont {
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(90deg, #1b61a1, #fafafa);
  font-size: 32px;
}
.cid-uOhpFBiOtN .items-wrapper .item .item-wrapper .item-content .item-btn {
  margin-top: 40px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uOhpFBiOtN .items-wrapper .item .item-wrapper .item-content .item-btn {
    margin-top: 20px;
    margin-bottom: 0;
  }
}
.cid-uOhpFBiOtN .mbr-section-title {
  color: #ffffff;
}
.cid-uOhpFBiOtN .mbr-tag {
  color: #adadad;
}
.cid-uOhpFBiOtN .item-title {
  color: #ffffff;
}
.cid-uOhpFBiOtN .item-text {
  color: #ffffff;
}
.cid-uOhwZRrLB7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fffaf5;
  overflow: hidden;
}
.cid-uOhwZRrLB7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOhwZRrLB7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uOhwZRrLB7 .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-uOhwZRrLB7 .container {
    padding: 0 16px;
  }
}
.cid-uOhwZRrLB7 .row {
  justify-content: space-between;
}
.cid-uOhwZRrLB7 .row:hover,
.cid-uOhwZRrLB7 .row:focus {
  cursor: pointer;
}
.cid-uOhwZRrLB7 .row .card {
  position: relative;
  z-index: 1;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uOhwZRrLB7 .image-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uOhwZRrLB7 .image-wrapper img {
  height: 400px;
  object-fit: cover;
  border-radius: 1rem !important;
}
@media (max-width: 992px) {
  .cid-uOhwZRrLB7 .image-wrapper img {
    height: 300px;
  }
}
.cid-uOhwZRrLB7 .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uOhwZRrLB7 .content-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-uOhwZRrLB7 .mbr-section-title {
  color: #000000;
}
.cid-uOhwZRrLB7 .mbr-text {
  color: #000000;
}
.cid-uOhwZRrLB7 .mbr-section-title,
.cid-uOhwZRrLB7 .mbr-section-btn {
  color: #04367c;
}
.cid-uP0VVoHFo5 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #deb112;
}
.cid-uP0VVoHFo5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uP0VVoHFo5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uP0VVoHFo5 .card {
  justify-content: flex-end;
}
.cid-uP0VVoHFo5 .title-wrapper {
  margin-bottom: 40px;
}
.cid-uP0VVoHFo5 .title-wrapper .mbr-tag {
  margin-bottom: 16px;
}
.cid-uP0VVoHFo5 .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uP0VVoHFo5 .mbr-section-btn {
  margin-bottom: 40px;
}
.cid-uP0VVoHFo5 .mbr-section-btn .btn::after,
.cid-uP0VVoHFo5 .mbr-section-btn .btn::before {
  background-image: linear-gradient(90deg, #386bb7, #e24c4a 150%);
}
.cid-uP0VVoHFo5 .mbr-section-btn .btn:hover,
.cid-uP0VVoHFo5 .mbr-section-btn .btn:focus {
  color: #ffffff !important;
}
.cid-uP0VVoHFo5 .mbr-section-btn .btn:hover::after,
.cid-uP0VVoHFo5 .mbr-section-btn .btn:focus::after {
  background-image: linear-gradient(90deg, #386bb7, #e24c4a 150%);
  opacity: 1;
}
.cid-uP0VVoHFo5 .items-wrapper {
  margin: 0 -20px;
}
.cid-uP0VVoHFo5 .items-wrapper .item {
  margin-bottom: 40px;
  padding: 0 20px;
}
@media (max-width: 992px) {
  .cid-uP0VVoHFo5 .items-wrapper .item {
    margin-bottom: 20px;
  }
}
.cid-uP0VVoHFo5 .items-wrapper .item .item-wrapper {
  position: relative;
  height: 100%;
}
.cid-uP0VVoHFo5 .items-wrapper .item .item-wrapper .item-content .item-title {
  margin-bottom: 16px;
}
.cid-uP0VVoHFo5 .items-wrapper .item .item-wrapper .item-content .item-text {
  margin-bottom: 16px;
}
.cid-uP0VVoHFo5 .items-wrapper .item .item-wrapper .item-content .icon-wrapper {
  margin-top: 32px;
}
@media (max-width: 992px) {
  .cid-uP0VVoHFo5 .items-wrapper .item .item-wrapper .item-content .icon-wrapper {
    margin-top: 20px;
  }
}
.cid-uP0VVoHFo5 .items-wrapper .item .item-wrapper .item-content .icon-wrapper .icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 16px;
  background-color: #121212;
}
.cid-uP0VVoHFo5 .items-wrapper .item .item-wrapper .item-content .icon-wrapper .icon-wrap .mbr-iconfont {
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(90deg, #ffcc1a, #fafafa);
  font-size: 32px;
}
.cid-uP0VVoHFo5 .items-wrapper .item .item-wrapper .item-content .item-btn {
  margin-top: 40px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uP0VVoHFo5 .items-wrapper .item .item-wrapper .item-content .item-btn {
    margin-top: 20px;
    margin-bottom: 0;
  }
}
.cid-uP0VVoHFo5 .mbr-section-title {
  color: #ffffff;
}
.cid-uP0VVoHFo5 .mbr-tag {
  color: #adadad;
}
.cid-uP0VVoHFo5 .item-title {
  color: #ffffff;
}
.cid-uP0VVoHFo5 .item-text {
  color: #ffffff;
}
.cid-uOl8gRDudq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fffaf5;
  overflow: hidden;
}
.cid-uOl8gRDudq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOl8gRDudq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uOl8gRDudq .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-uOl8gRDudq .container {
    padding: 0 16px;
  }
}
.cid-uOl8gRDudq .row {
  justify-content: space-between;
}
.cid-uOl8gRDudq .row:hover,
.cid-uOl8gRDudq .row:focus {
  cursor: pointer;
}
.cid-uOl8gRDudq .row .card {
  position: relative;
  z-index: 1;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uOl8gRDudq .image-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uOl8gRDudq .image-wrapper img {
  height: 400px;
  object-fit: cover;
  border-radius: 1rem !important;
}
@media (max-width: 992px) {
  .cid-uOl8gRDudq .image-wrapper img {
    height: 300px;
  }
}
.cid-uOl8gRDudq .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uOl8gRDudq .content-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-uOl8gRDudq .mbr-section-title {
  color: #000000;
}
.cid-uOl8gRDudq .mbr-text {
  color: #000000;
}
.cid-uOl8gRDudq .mbr-section-title,
.cid-uOl8gRDudq .mbr-section-btn {
  color: #04367c;
}
.cid-uNdseaMDPk {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #04367c;
}
.cid-uNdseaMDPk .mbr-section-subtitle {
  color: #767676;
}
.cid-uNdseaMDPk .btn {
  margin: 0 0 .5rem 0;
}
@media (max-width: 768px) {
  .cid-uNdseaMDPk h2,
  .cid-uNdseaMDPk h3 {
    text-align: center !important;
  }
  .cid-uNdseaMDPk .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-uNdseaMDPk H2 {
  color: #ffffff;
}
.cid-uO9ByZmq32 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #1b61a1;
}
.cid-uO9ByZmq32 .container {
  display: flex;
  justify-content: center;
}
.cid-uO9ByZmq32 .row {
  display: flex;
  align-items: stretch;
  max-width: 1194px;
  width: 100%;
}
.cid-uO9ByZmq32 .col-brand {
  margin-bottom: 40px;
}
.cid-uO9ByZmq32 .col-link {
  margin-bottom: 30px;
}
.cid-uO9ByZmq32 .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 25px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
}
.cid-uO9ByZmq32 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uO9ByZmq32 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uO9ByZmq32 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uO9ByZmq32 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uO9ByZmq32 .mbr-section-subtitle {
  color: #ffffff;
  margin-bottom: 20px;
}
.cid-uO9ByZmq32 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uO9ByZmq32 .mbr-iconfont {
  font-size: 16px;
  color: #3b668d;
}
.cid-uO9ByZmq32 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background-color: #eef4fb;
  margin-right: 10px;
  margin-bottom: 10px;
  padding: 5px;
  min-height: 30px;
  min-width: 30px;
}
.cid-uO9ByZmq32 .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uO9ByZmq32 .soc-item:hover {
  background-color: #738bae;
}
.cid-uO9ByZmq32 .soc-item:hover .mbr-iconfont {
  color: #FFFFFF !important;
}
.cid-uO9ByZmq32 .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #010d4c;
}
.cid-uO9ByZmq32 .list li {
  min-height: 44px;
  display: flex;
  align-items: center;
}
.cid-uO9ByZmq32 .list a {
  min-height: 44px;
  display: flex;
  align-items: center;
}
.cid-uO9ByZmq32 .brand-text {
  margin-bottom: 35px;
  color: #ffffff;
  opacity: 0.8;
}
.cid-uO9ByZmq32 .mbr-text {
  color: #00284E;
  opacity: 0.8;
}
.cid-uO9ByZmq32 .mbr-text .text-black {
  color: #00284E !important;
}
.cid-uO9ByZmq32 .mbr-text a {
  opacity: 0.8;
}
.cid-uO9ByZmq32 .mbr-text a:hover {
  opacity: 1;
  color: #04367c !important;
}
.cid-uO9ByZmq32 .col-copyright {
  margin-top: 44px;
}
.cid-uO9ByZmq32 .copyright {
  color: #ffffff;
  opacity: 0.8;
}
@media (max-width: 991px) {
  .cid-uO9ByZmq32 .copyright {
    text-align: center !important;
  }
}
.cid-uO9ByZmq32 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uO9ByZmq32 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNdJzTdn7f {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uNdJzTdn7f .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uNdJzTdn7f .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-uNdJzTdn7f .iconfont-wrapper {
  color: #103178 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-uNdJzTdn7f .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-uNdJzTdn7f .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-uNdJzTdn7f .container {
    padding: 0 1rem;
  }
}
.cid-uNdJzTdn7f .menu-tite {
  background: #04367c;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-uNdJzTdn7f .nav-link {
  position: relative;
}
.cid-uNdJzTdn7f .nav-link:hover {
  color: #51aafa !important;
}
.cid-uNdJzTdn7f nav.navbar {
  position: fixed;
}
.cid-uNdJzTdn7f .navbar {
  padding: 0!important;
  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-uNdJzTdn7f .navbar.opened {
  transition: all 0.3s;
}
.cid-uNdJzTdn7f .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uNdJzTdn7f .navbar .navbar-logo img {
  width: auto;
}
.cid-uNdJzTdn7f .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uNdJzTdn7f .navbar.collapsed {
  justify-content: center;
}
.cid-uNdJzTdn7f .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uNdJzTdn7f .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uNdJzTdn7f .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uNdJzTdn7f .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uNdJzTdn7f .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uNdJzTdn7f .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-uNdJzTdn7f .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uNdJzTdn7f .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uNdJzTdn7f .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uNdJzTdn7f .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uNdJzTdn7f .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uNdJzTdn7f .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uNdJzTdn7f .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uNdJzTdn7f .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-uNdJzTdn7f .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uNdJzTdn7f .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uNdJzTdn7f .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uNdJzTdn7f .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uNdJzTdn7f .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uNdJzTdn7f .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uNdJzTdn7f .navbar.navbar-short {
  min-height: 60px;
}
.cid-uNdJzTdn7f .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uNdJzTdn7f .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uNdJzTdn7f .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-uNdJzTdn7f .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uNdJzTdn7f .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uNdJzTdn7f .dropdown-item:hover,
.cid-uNdJzTdn7f .dropdown-item:focus {
  background: #04367c !important;
  color: white !important;
}
.cid-uNdJzTdn7f .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uNdJzTdn7f .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uNdJzTdn7f .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-uNdJzTdn7f .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uNdJzTdn7f .dropdown-menu,
.cid-uNdJzTdn7f .navbar.opened {
  background: #ffffff !important;
}
.cid-uNdJzTdn7f .nav-item:focus,
.cid-uNdJzTdn7f .nav-link:focus {
  outline: none;
}
.cid-uNdJzTdn7f .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uNdJzTdn7f .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uNdJzTdn7f .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uNdJzTdn7f .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uNdJzTdn7f .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uNdJzTdn7f .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uNdJzTdn7f .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uNdJzTdn7f .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uNdJzTdn7f .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uNdJzTdn7f .dropdown-item.active,
.cid-uNdJzTdn7f .dropdown-item:active {
  background-color: transparent;
}
.cid-uNdJzTdn7f .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uNdJzTdn7f .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uNdJzTdn7f .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uNdJzTdn7f .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uNdJzTdn7f .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uNdJzTdn7f .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uNdJzTdn7f ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uNdJzTdn7f .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uNdJzTdn7f button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uNdJzTdn7f button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uNdJzTdn7f button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uNdJzTdn7f button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uNdJzTdn7f button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uNdJzTdn7f button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uNdJzTdn7f nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uNdJzTdn7f nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uNdJzTdn7f nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uNdJzTdn7f nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uNdJzTdn7f .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uNdJzTdn7f a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uNdJzTdn7f .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-uNdJzTdn7f .navbar {
    height: 70px;
  }
  .cid-uNdJzTdn7f .navbar.opened {
    height: auto;
  }
  .cid-uNdJzTdn7f .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uNdJzU7YMG {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/mbr-2-676x406.jpg");
}
.cid-uNdJzU7YMG .mbr-overlay {
  background: #04367c;
  background: linear-gradient(90deg, #04367c, #369898);
}
.cid-uNdJzU7YMG .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-uNdJzU7YMG H1 {
  color: #ffffff;
  text-align: center;
}
.cid-uNdJzU7YMG .mbr-section-subtitle,
.cid-uNdJzU7YMG .mbr-section-btn {
  color: #ffffff;
}
.cid-uNdJzU7YMG B {
  color: #ffffff;
}
.cid-uNdJA2EhGa {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/mbr-1920x1152.jpg");
}
.cid-uNdJA2EhGa .mbr-section-title {
  text-align: left;
}
.cid-uNdJA33lMJ {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f7fff7;
}
.cid-uNdJA33lMJ .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uNdJA33lMJ .row {
    flex-direction: column-reverse;
  }
  .cid-uNdJA33lMJ .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-uNdJA33lMJ .card-wrapper {
    padding: 0 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uNdJA33lMJ .card-wrapper {
    padding-right: 2rem;
  }
}
.cid-uNdJA33lMJ .image-wrapper img {
  width: 100%;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  object-fit: cover;
  border-radius: 3rem;
}
.cid-uNdJA33lMJ .card-title {
  color: #098484;
}
.cid-uNdJA33lMJ .mbr-text,
.cid-uNdJA33lMJ .mbr-section-btn {
  color: #6c758f;
}
.cid-uNdJA33lMJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNdJA33lMJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNdJA3yP84 {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uNdJA3yP84 .row {
  align-items: flex-start;
}
@media (max-width: 1024px) and (min-width: 768px) {
  .cid-uNdJA3yP84 .col-text {
    width: 100% !important;
  }
}
.cid-uNdJA3yP84 .text-container {
  padding: 7.5% 0 0 17%;
}
@media (max-width: 1024px) {
  .cid-uNdJA3yP84 .text-container {
    padding: 0;
  }
}
.cid-uNdJA3yP84 .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  padding: 0 25% 0 0;
  margin-bottom: 20px;
}
@media (max-width: 1024px) {
  .cid-uNdJA3yP84 .text-wrapper {
    padding: 0 45% 0 0;
  }
}
@media (max-width: 880px) {
  .cid-uNdJA3yP84 .text-wrapper {
    padding: 0 45% 0 1%;
  }
}
@media (max-width: 767px) {
  .cid-uNdJA3yP84 .text-wrapper {
    padding: 0;
  }
}
.cid-uNdJA3yP84 .label-text {
  width: 100%;
  margin-top: 10px;
  margin-bottom: 7px;
  color: #8A8A8A;
}
.cid-uNdJA3yP84 .mbr-section-title {
  width: 100%;
  color: #000000;
  margin-bottom: 0;
}
.cid-uNdJA3yP84 .mbr-text {
  letter-spacing: inherit;
  color: #000000;
  width: 100%;
  margin-top: 16px;
  margin-bottom: 0;
}
.cid-uNdJA3yP84 .btn-container {
  width: 100%;
}
.cid-uNdJA3yP84 .mbr-section-btn {
  margin-top: 20px;
}
.cid-uNdJA3yP84 .col-cards {
  display: flex;
  flex-wrap: wrap;
  padding-top: 24px;
}
@media (max-width: 1024px) {
  .cid-uNdJA3yP84 .col-cards {
    width: 100% !important;
    padding-top: 80px;
  }
}
.cid-uNdJA3yP84 .cards-wrap {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.cid-uNdJA3yP84 .card {
  padding: 0 15px;
  margin: 0 0 30px;
  border-radius: 0;
  transition: all 0.2s ease-in-out;
  align-items: center;
  justify-content: center;
}
@media (max-width: 680px) {
  .cid-uNdJA3yP84 .card {
    width: 100% !important;
  }
}
.cid-uNdJA3yP84 .card-wrap {
  display: flex;
  flex-direction: column;
  position: relative;
}
.cid-uNdJA3yP84 .card-wrap:hover .card-caption {
  opacity: 1;
  transform: translateY(0);
}
.cid-uNdJA3yP84 .card-caption {
  display: inline-block;
  width: 100%;
  max-width: 100%;
  position: absolute;
  z-index: 1;
  height: auto;
  left: 0;
  bottom: 100%;
  padding: 10px 10px;
  margin-bottom: -10px;
  background-color: #f9f9f9;
  opacity: 0;
  transform: translateY(30px);
  text-align: center;
  transition: opacity 0.4s ease-out, transform 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}
.cid-uNdJA3yP84 .img-container {
  display: flex;
  justify-content: center;
}
@media (max-width: 680px) {
  .cid-uNdJA3yP84 .img-container {
    max-width: 186px;
    width: 100%;
  }
}
.cid-uNdJA3yP84 .img-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.cid-uNdJA3yP84 .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uNdJA3yP84 .card-text {
  color: #8a8a8a;
}
.cid-uNdJA4gZpr {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uNdJA4gZpr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNdJA4gZpr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNdJA4gZpr .title-wrap .mbr-section-title {
  display: inline-block;
  width: 40%;
  margin-bottom: 40px;
}
@media (max-width: 1440px) {
  .cid-uNdJA4gZpr .title-wrap .mbr-section-title {
    width: 60%;
    margin-bottom: 30px;
  }
}
@media (max-width: 992px) {
  .cid-uNdJA4gZpr .title-wrap .mbr-section-title {
    width: 100%;
    margin-bottom: 30px;
  }
}
.cid-uNdJA4gZpr .tabs-wrapper {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uNdJA4gZpr .tabs-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uNdJA4gZpr .tabs-wrapper .nav.nav-tabs {
  border: none;
  padding: 0;
  border-radius: 0 !important;
  background-color: transparent;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
}
@media (max-width: 992px) {
  .cid-uNdJA4gZpr .tabs-wrapper .nav.nav-tabs {
    grid-template-columns: 1fr;
  }
}
.cid-uNdJA4gZpr .tabs-wrapper .nav.nav-tabs .nav-item {
  padding: 0;
  border: none;
  display: block;
}
.cid-uNdJA4gZpr .tabs-wrapper .nav.nav-tabs .nav-item:first-child .nav-link {
  border-left: 1px solid #c1c1c1;
}
.cid-uNdJA4gZpr .tabs-wrapper .nav.nav-tabs .nav-item .nav-link {
  color: #41a582;
  padding: 90px 20px 20px;
  border: none;
  transition: all 0.3s ease-in-out;
  background-color: transparent;
  border-top: 1px solid #c1c1c1;
  border-right: 1px solid #c1c1c1;
  border-bottom: 1px solid #c1c1c1;
}
@media (max-width: 992px) {
  .cid-uNdJA4gZpr .tabs-wrapper .nav.nav-tabs .nav-item .nav-link {
    padding: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uNdJA4gZpr .tabs-wrapper .nav.nav-tabs .nav-item .nav-link {
    border-left: 1px solid #c1c1c1;
  }
}
.cid-uNdJA4gZpr .tabs-wrapper .nav.nav-tabs .nav-item .nav-link.active {
  background-color: #41a582;
  color: #ffffff;
  border-color: #41a582;
}
.cid-uNdJA4gZpr .tab-content .tab-pane .card-wrapper {
  display: flex;
  flex-direction: row;
  border: none;
  background-color: transparent;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-uNdJA4gZpr .tab-content .tab-pane .card-wrapper {
    display: block;
  }
}
.cid-uNdJA4gZpr .tab-content .tab-pane .card-wrapper .title-wrapper {
  width: 50%;
  background-color: #f7fff7;
  padding: 80px 20px 20px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-uNdJA4gZpr .tab-content .tab-pane .card-wrapper .title-wrapper {
    width: 100%;
    padding: 60px 20px 20px;
  }
}
.cid-uNdJA4gZpr .tab-content .tab-pane .card-wrapper .title-wrapper .icon-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0 20px;
}
.cid-uNdJA4gZpr .tab-content .tab-pane .card-wrapper .title-wrapper .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  font-size: 32px;
  color: #098484;
}
.cid-uNdJA4gZpr .tab-content .tab-pane .card-wrapper .title-wrapper .item-title {
  margin-bottom: 10px;
}
.cid-uNdJA4gZpr .tab-content .tab-pane .card-wrapper .title-wrapper .list-wrapper {
  margin-bottom: 54px;
}
@media (max-width: 992px) {
  .cid-uNdJA4gZpr .tab-content .tab-pane .card-wrapper .title-wrapper .list-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uNdJA4gZpr .tab-content .tab-pane .card-wrapper .title-wrapper .list-wrapper .list {
  display: inline-flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uNdJA4gZpr .tab-content .tab-pane .card-wrapper .title-wrapper .list-wrapper .list .item-wrap {
  position: relative;
  margin-bottom: 0;
  padding-left: 20px;
}
.cid-uNdJA4gZpr .tab-content .tab-pane .card-wrapper .title-wrapper .list-wrapper .list .item-wrap::before {
  content: '—';
  position: absolute;
  top: 0;
  left: 0;
  color: inherit;
}
.cid-uNdJA4gZpr .tab-content .tab-pane .card-wrapper .title-wrapper .item-price {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uNdJA4gZpr .tab-content .tab-pane .card-wrapper .title-wrapper .item-price {
    margin-bottom: 20px;
  }
}
.cid-uNdJA4gZpr .tab-content .tab-pane .card-wrapper .title-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uNdJA4gZpr .tab-content .tab-pane .card-wrapper .image-wrap {
  width: 50%;
  position: relative;
}
@media (max-width: 992px) {
  .cid-uNdJA4gZpr .tab-content .tab-pane .card-wrapper .image-wrap {
    width: 100%;
  }
}
.cid-uNdJA4gZpr .tab-content .tab-pane .card-wrapper .image-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-uNdJA4gZpr .tab-content .tab-pane .card-wrapper .image-wrap img {
    position: static;
    height: 350px;
  }
}
.cid-uNdJA4gZpr .mbr-section-title {
  color: #093388;
}
.cid-uNdJA4gZpr .item-title {
  color: #093388;
}
.cid-uNdJA4gZpr .list {
  color: #58595b;
}
.cid-uNdJA4gZpr .item-price {
  color: #093388;
}
.cid-uNdJA4gZpr .mbr-section-title,
.cid-uNdJA4gZpr .title-wrap {
  color: #369898;
  text-align: center;
}
.cid-uNdJA54tsJ {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uNdJA54tsJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNdJA54tsJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNdJA54tsJ .card-wrapper {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #093388;
  padding: 80px 0;
}
@media (max-width: 992px) {
  .cid-uNdJA54tsJ .card-wrapper {
    display: block;
    padding: 40px 20px 20px;
  }
}
.cid-uNdJA54tsJ .card-wrapper .title-wrapper {
  width: 60%;
}
@media (max-width: 992px) {
  .cid-uNdJA54tsJ .card-wrapper .title-wrapper {
    width: 100%;
  }
}
.cid-uNdJA54tsJ .card-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uNdJA54tsJ .card-wrapper .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uNdJA54tsJ .card-wrapper .panel-group {
  width: 60%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 20px;
}
@media (max-width: 992px) {
  .cid-uNdJA54tsJ .card-wrapper .panel-group {
    width: 100%;
    display: block;
  }
}
.cid-uNdJA54tsJ .card-wrapper .panel-group .card {
  position: relative;
  padding: 25px 0;
  margin: 0;
  background-color: transparent;
  border-bottom: 1px solid #2f5298;
}
@media (max-width: 992px) {
  .cid-uNdJA54tsJ .card-wrapper .panel-group .card {
    padding: 20px 0;
  }
}
.cid-uNdJA54tsJ .card-wrapper .panel-group .card:first-child {
  border-top: 1px solid #2f5298;
}
.cid-uNdJA54tsJ .card-wrapper .panel-group .card:nth-child(5) {
  border-top: 1px solid #2f5298;
}
@media (max-width: 992px) {
  .cid-uNdJA54tsJ .card-wrapper .panel-group .card:nth-child(5) {
    border-top: none;
  }
}
.cid-uNdJA54tsJ .card-wrapper .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uNdJA54tsJ .card-wrapper .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-uNdJA54tsJ .card-wrapper .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uNdJA54tsJ .card-wrapper .panel-group .card .card-header .panel-title .icon-wrapper {
  width: 20px;
  height: 20px;
  min-width: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
  border-radius: 100%;
  border: 1px solid #f4f4f4;
}
.cid-uNdJA54tsJ .card-wrapper .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  font-size: 10px;
  transition: all 0.3s ease-in-out;
  color: #f4f4f4;
}
.cid-uNdJA54tsJ .card-wrapper .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper {
  transform: rotate(-180deg);
}
.cid-uNdJA54tsJ .card-wrapper .panel-group .card .panel-collapse .panel-body {
  margin-top: 30px;
}
@media (max-width: 992px) {
  .cid-uNdJA54tsJ .card-wrapper .panel-group .card .panel-collapse .panel-body {
    margin-top: 20px;
  }
}
.cid-uNdJA54tsJ .card-wrapper .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uNdJA54tsJ .mbr-section-title {
  color: #f4f4f4;
  text-align: center;
}
.cid-uNdJA54tsJ .panel-title-edit {
  color: #f4f4f4;
}
.cid-uNdJA54tsJ .panel-text {
  color: #d7d2d2;
}
.cid-uNdJA2dbaJ {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #369898;
}
.cid-uNdJA2dbaJ .mbr-section-subtitle {
  color: #767676;
}
.cid-uNdJA2dbaJ .btn {
  margin: 0 0 .5rem 0;
}
@media (max-width: 768px) {
  .cid-uNdJA2dbaJ h2,
  .cid-uNdJA2dbaJ h3 {
    text-align: center !important;
  }
  .cid-uNdJA2dbaJ .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-uNdJA2dbaJ H2 {
  color: #ffffff;
  text-align: right;
}
.cid-uO9ByZmq32 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #1b61a1;
}
.cid-uO9ByZmq32 .container {
  display: flex;
  justify-content: center;
}
.cid-uO9ByZmq32 .row {
  display: flex;
  align-items: stretch;
  max-width: 1194px;
  width: 100%;
}
.cid-uO9ByZmq32 .col-brand {
  margin-bottom: 40px;
}
.cid-uO9ByZmq32 .col-link {
  margin-bottom: 30px;
}
.cid-uO9ByZmq32 .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 25px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
}
.cid-uO9ByZmq32 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uO9ByZmq32 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uO9ByZmq32 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uO9ByZmq32 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uO9ByZmq32 .mbr-section-subtitle {
  color: #ffffff;
  margin-bottom: 20px;
}
.cid-uO9ByZmq32 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uO9ByZmq32 .mbr-iconfont {
  font-size: 16px;
  color: #3b668d;
}
.cid-uO9ByZmq32 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background-color: #eef4fb;
  margin-right: 10px;
  margin-bottom: 10px;
  padding: 5px;
  min-height: 30px;
  min-width: 30px;
}
.cid-uO9ByZmq32 .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uO9ByZmq32 .soc-item:hover {
  background-color: #738bae;
}
.cid-uO9ByZmq32 .soc-item:hover .mbr-iconfont {
  color: #FFFFFF !important;
}
.cid-uO9ByZmq32 .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #010d4c;
}
.cid-uO9ByZmq32 .list li {
  min-height: 44px;
  display: flex;
  align-items: center;
}
.cid-uO9ByZmq32 .list a {
  min-height: 44px;
  display: flex;
  align-items: center;
}
.cid-uO9ByZmq32 .brand-text {
  margin-bottom: 35px;
  color: #ffffff;
  opacity: 0.8;
}
.cid-uO9ByZmq32 .mbr-text {
  color: #00284E;
  opacity: 0.8;
}
.cid-uO9ByZmq32 .mbr-text .text-black {
  color: #00284E !important;
}
.cid-uO9ByZmq32 .mbr-text a {
  opacity: 0.8;
}
.cid-uO9ByZmq32 .mbr-text a:hover {
  opacity: 1;
  color: #04367c !important;
}
.cid-uO9ByZmq32 .col-copyright {
  margin-top: 44px;
}
.cid-uO9ByZmq32 .copyright {
  color: #ffffff;
  opacity: 0.8;
}
@media (max-width: 991px) {
  .cid-uO9ByZmq32 .copyright {
    text-align: center !important;
  }
}
.cid-uO9ByZmq32 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uO9ByZmq32 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFMh2eyzqq {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uFMh2eyzqq .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uFMh2eyzqq .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-uFMh2eyzqq .iconfont-wrapper {
  color: #103178 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-uFMh2eyzqq .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-uFMh2eyzqq .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-uFMh2eyzqq .container {
    padding: 0 1rem;
  }
}
.cid-uFMh2eyzqq .menu-tite {
  background: #04367c;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-uFMh2eyzqq .nav-link {
  position: relative;
}
.cid-uFMh2eyzqq .nav-link:hover {
  color: #51aafa !important;
}
.cid-uFMh2eyzqq nav.navbar {
  position: fixed;
}
.cid-uFMh2eyzqq .navbar {
  padding: 0!important;
  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-uFMh2eyzqq .navbar.opened {
  transition: all 0.3s;
}
.cid-uFMh2eyzqq .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uFMh2eyzqq .navbar .navbar-logo img {
  width: auto;
}
.cid-uFMh2eyzqq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uFMh2eyzqq .navbar.collapsed {
  justify-content: center;
}
.cid-uFMh2eyzqq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uFMh2eyzqq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uFMh2eyzqq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uFMh2eyzqq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uFMh2eyzqq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uFMh2eyzqq .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-uFMh2eyzqq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uFMh2eyzqq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uFMh2eyzqq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uFMh2eyzqq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uFMh2eyzqq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uFMh2eyzqq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uFMh2eyzqq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uFMh2eyzqq .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-uFMh2eyzqq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uFMh2eyzqq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uFMh2eyzqq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uFMh2eyzqq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uFMh2eyzqq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uFMh2eyzqq .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uFMh2eyzqq .navbar.navbar-short {
  min-height: 60px;
}
.cid-uFMh2eyzqq .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uFMh2eyzqq .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uFMh2eyzqq .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-uFMh2eyzqq .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uFMh2eyzqq .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uFMh2eyzqq .dropdown-item:hover,
.cid-uFMh2eyzqq .dropdown-item:focus {
  background: #04367c !important;
  color: white !important;
}
.cid-uFMh2eyzqq .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uFMh2eyzqq .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uFMh2eyzqq .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-uFMh2eyzqq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uFMh2eyzqq .dropdown-menu,
.cid-uFMh2eyzqq .navbar.opened {
  background: #ffffff !important;
}
.cid-uFMh2eyzqq .nav-item:focus,
.cid-uFMh2eyzqq .nav-link:focus {
  outline: none;
}
.cid-uFMh2eyzqq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uFMh2eyzqq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uFMh2eyzqq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uFMh2eyzqq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uFMh2eyzqq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uFMh2eyzqq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uFMh2eyzqq .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uFMh2eyzqq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uFMh2eyzqq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uFMh2eyzqq .dropdown-item.active,
.cid-uFMh2eyzqq .dropdown-item:active {
  background-color: transparent;
}
.cid-uFMh2eyzqq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uFMh2eyzqq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uFMh2eyzqq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uFMh2eyzqq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uFMh2eyzqq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uFMh2eyzqq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uFMh2eyzqq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uFMh2eyzqq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uFMh2eyzqq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uFMh2eyzqq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uFMh2eyzqq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uFMh2eyzqq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFMh2eyzqq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFMh2eyzqq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uFMh2eyzqq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFMh2eyzqq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uFMh2eyzqq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uFMh2eyzqq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFMh2eyzqq .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uFMh2eyzqq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uFMh2eyzqq .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-uFMh2eyzqq .navbar {
    height: 70px;
  }
  .cid-uFMh2eyzqq .navbar.opened {
    height: auto;
  }
  .cid-uFMh2eyzqq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sr2TsvGPq7 {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/mbr-1920x1267.jpg");
}
.cid-sr2TsvGPq7 .card-wrapper {
  z-index: 3;
}
.cid-sr2TsvGPq7 .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-sr2TsvGPq7:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-sr2TsvGPq7 .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-sr2TsvGPq7 .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-sr2TsvGPq7 .text-block {
  text-align: left !important;
}
.cid-sr2SIJNmwX {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #04367c;
}
.cid-sr2SIJNmwX .mbr-iconfont {
  font-size: 34px;
  transition: color .3s;
}
.cid-sr2SIJNmwX .mbr-section-title {
  margin: 0;
  color: #ffffff;
}
.cid-sr2SIJNmwX .mbr-section-subtitle {
  color: #cccccc;
}
.cid-sr2SIJNmwX .card-img {
  text-align: center;
}
.cid-sr2SIJNmwX .row-item {
  padding-bottom: 2rem;
  padding: 5rem 2rem;
}
.cid-sr2SIJNmwX .row-item.card1 {
  background: #098484;
}
.cid-sr2SIJNmwX .row-item.card2 {
  background: #232323;
}
.cid-sr2SIJNmwX .row-item.card3 {
  background: #08579f;
}
.cid-sr2SIJNmwX .row-item.card4 {
  background: #a61a3d;
}
.cid-sr2SIJNmwX .mbr-text {
  color: #efefef;
}
@media (max-width: 767px) {
  .cid-sr2SIJNmwX .card-img,
  .cid-sr2SIJNmwX .mbr-text,
  .cid-sr2SIJNmwX .mbr-card-title,
  .cid-sr2SIJNmwX .mbr-section-subtitle,
  .cid-sr2SIJNmwX .mbr-section-title,
  .cid-sr2SIJNmwX .underline {
    text-align: center !important;
  }
}
.cid-uO9ByZmq32 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #1b61a1;
}
.cid-uO9ByZmq32 .container {
  display: flex;
  justify-content: center;
}
.cid-uO9ByZmq32 .row {
  display: flex;
  align-items: stretch;
  max-width: 1194px;
  width: 100%;
}
.cid-uO9ByZmq32 .col-brand {
  margin-bottom: 40px;
}
.cid-uO9ByZmq32 .col-link {
  margin-bottom: 30px;
}
.cid-uO9ByZmq32 .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 25px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
}
.cid-uO9ByZmq32 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uO9ByZmq32 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uO9ByZmq32 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uO9ByZmq32 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uO9ByZmq32 .mbr-section-subtitle {
  color: #ffffff;
  margin-bottom: 20px;
}
.cid-uO9ByZmq32 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uO9ByZmq32 .mbr-iconfont {
  font-size: 16px;
  color: #3b668d;
}
.cid-uO9ByZmq32 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background-color: #eef4fb;
  margin-right: 10px;
  margin-bottom: 10px;
  padding: 5px;
  min-height: 30px;
  min-width: 30px;
}
.cid-uO9ByZmq32 .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uO9ByZmq32 .soc-item:hover {
  background-color: #738bae;
}
.cid-uO9ByZmq32 .soc-item:hover .mbr-iconfont {
  color: #FFFFFF !important;
}
.cid-uO9ByZmq32 .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #010d4c;
}
.cid-uO9ByZmq32 .list li {
  min-height: 44px;
  display: flex;
  align-items: center;
}
.cid-uO9ByZmq32 .list a {
  min-height: 44px;
  display: flex;
  align-items: center;
}
.cid-uO9ByZmq32 .brand-text {
  margin-bottom: 35px;
  color: #ffffff;
  opacity: 0.8;
}
.cid-uO9ByZmq32 .mbr-text {
  color: #00284E;
  opacity: 0.8;
}
.cid-uO9ByZmq32 .mbr-text .text-black {
  color: #00284E !important;
}
.cid-uO9ByZmq32 .mbr-text a {
  opacity: 0.8;
}
.cid-uO9ByZmq32 .mbr-text a:hover {
  opacity: 1;
  color: #04367c !important;
}
.cid-uO9ByZmq32 .col-copyright {
  margin-top: 44px;
}
.cid-uO9ByZmq32 .copyright {
  color: #ffffff;
  opacity: 0.8;
}
@media (max-width: 991px) {
  .cid-uO9ByZmq32 .copyright {
    text-align: center !important;
  }
}
.cid-uO9ByZmq32 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uO9ByZmq32 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFMh2eyzqq {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uFMh2eyzqq .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uFMh2eyzqq .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-uFMh2eyzqq .iconfont-wrapper {
  color: #103178 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-uFMh2eyzqq .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-uFMh2eyzqq .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-uFMh2eyzqq .container {
    padding: 0 1rem;
  }
}
.cid-uFMh2eyzqq .menu-tite {
  background: #04367c;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-uFMh2eyzqq .nav-link {
  position: relative;
}
.cid-uFMh2eyzqq .nav-link:hover {
  color: #51aafa !important;
}
.cid-uFMh2eyzqq nav.navbar {
  position: fixed;
}
.cid-uFMh2eyzqq .navbar {
  padding: 0!important;
  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-uFMh2eyzqq .navbar.opened {
  transition: all 0.3s;
}
.cid-uFMh2eyzqq .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uFMh2eyzqq .navbar .navbar-logo img {
  width: auto;
}
.cid-uFMh2eyzqq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uFMh2eyzqq .navbar.collapsed {
  justify-content: center;
}
.cid-uFMh2eyzqq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uFMh2eyzqq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uFMh2eyzqq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uFMh2eyzqq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uFMh2eyzqq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uFMh2eyzqq .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-uFMh2eyzqq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uFMh2eyzqq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uFMh2eyzqq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uFMh2eyzqq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uFMh2eyzqq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uFMh2eyzqq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uFMh2eyzqq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uFMh2eyzqq .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-uFMh2eyzqq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uFMh2eyzqq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uFMh2eyzqq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uFMh2eyzqq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uFMh2eyzqq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uFMh2eyzqq .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uFMh2eyzqq .navbar.navbar-short {
  min-height: 60px;
}
.cid-uFMh2eyzqq .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uFMh2eyzqq .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uFMh2eyzqq .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-uFMh2eyzqq .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uFMh2eyzqq .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uFMh2eyzqq .dropdown-item:hover,
.cid-uFMh2eyzqq .dropdown-item:focus {
  background: #04367c !important;
  color: white !important;
}
.cid-uFMh2eyzqq .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uFMh2eyzqq .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uFMh2eyzqq .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-uFMh2eyzqq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uFMh2eyzqq .dropdown-menu,
.cid-uFMh2eyzqq .navbar.opened {
  background: #ffffff !important;
}
.cid-uFMh2eyzqq .nav-item:focus,
.cid-uFMh2eyzqq .nav-link:focus {
  outline: none;
}
.cid-uFMh2eyzqq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uFMh2eyzqq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uFMh2eyzqq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uFMh2eyzqq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uFMh2eyzqq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uFMh2eyzqq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uFMh2eyzqq .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uFMh2eyzqq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uFMh2eyzqq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uFMh2eyzqq .dropdown-item.active,
.cid-uFMh2eyzqq .dropdown-item:active {
  background-color: transparent;
}
.cid-uFMh2eyzqq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uFMh2eyzqq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uFMh2eyzqq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uFMh2eyzqq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uFMh2eyzqq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uFMh2eyzqq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uFMh2eyzqq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uFMh2eyzqq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uFMh2eyzqq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uFMh2eyzqq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uFMh2eyzqq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uFMh2eyzqq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFMh2eyzqq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFMh2eyzqq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uFMh2eyzqq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFMh2eyzqq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uFMh2eyzqq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uFMh2eyzqq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFMh2eyzqq .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uFMh2eyzqq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uFMh2eyzqq .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-uFMh2eyzqq .navbar {
    height: 70px;
  }
  .cid-uFMh2eyzqq .navbar.opened {
    height: auto;
  }
  .cid-uFMh2eyzqq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rl8QgLA0BA {
  padding-top: 135px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/img-3516-1800x1200.jpg");
}
.cid-rl8QgLA0BA .mbr-overlay {
  background: #04367c;
  background: linear-gradient(90deg, #04367c, #c1c1c1);
}
.cid-uNCEe8wqeQ {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uNCEe8wqeQ .nav-tabs .nav-item.open .nav-link:focus,
.cid-uNCEe8wqeQ .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-uNCEe8wqeQ .nav-tabs {
  -webkit-flex-wrap: wrap;
  justify-content: center;
  flex-wrap: wrap;
  border: 0;
}
.cid-uNCEe8wqeQ .nav-tabs .nav-item {
  padding: 0.25rem 1rem;
}
.cid-uNCEe8wqeQ .nav-tabs .nav-link {
  border-radius: 0 !important;
  font-style: normal;
  font-weight: 500;
  color: #777d74 !important;
  transition: all .5s;
}
.cid-uNCEe8wqeQ .nav-tabs .nav-link:hover {
  cursor: pointer;
  color: #000000 !important;
}
.cid-uNCEe8wqeQ .nav-tabs .nav-link.active {
  font-weight: 500;
  color: #000000 !important;
  font-style: normal;
}
.cid-uNCEe8wqeQ .nav-link {
  border: none;
  border-bottom: 3px solid #f8f8f8 !important;
}
.cid-uNCEe8wqeQ .nav-link:hover {
  border: none;
  border-bottom: 3px solid #72dfe9 !important;
}
.cid-uNCEe8wqeQ .nav-link.active {
  border: none;
  border-bottom: 3px solid #72dfe9 !important;
}
.cid-uNCEe8wqeQ P {
  color: #42424c;
}
@media (max-width: 576px) {
  .cid-uNCEe8wqeQ .nav-tabs {
    flex-direction: column;
    justify-content: center;
  }
  .cid-uNCEe8wqeQ .mbr-text,
  .cid-uNCEe8wqeQ .nav-link {
    text-align: center;
  }
}
.cid-uNCEe8wqeQ H2 {
  text-align: center;
}
.cid-uNCEe8wqeQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNCEe8wqeQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uO9ByZmq32 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #1b61a1;
}
.cid-uO9ByZmq32 .container {
  display: flex;
  justify-content: center;
}
.cid-uO9ByZmq32 .row {
  display: flex;
  align-items: stretch;
  max-width: 1194px;
  width: 100%;
}
.cid-uO9ByZmq32 .col-brand {
  margin-bottom: 40px;
}
.cid-uO9ByZmq32 .col-link {
  margin-bottom: 30px;
}
.cid-uO9ByZmq32 .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 25px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
}
.cid-uO9ByZmq32 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uO9ByZmq32 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uO9ByZmq32 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uO9ByZmq32 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uO9ByZmq32 .mbr-section-subtitle {
  color: #ffffff;
  margin-bottom: 20px;
}
.cid-uO9ByZmq32 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uO9ByZmq32 .mbr-iconfont {
  font-size: 16px;
  color: #3b668d;
}
.cid-uO9ByZmq32 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background-color: #eef4fb;
  margin-right: 10px;
  margin-bottom: 10px;
  padding: 5px;
  min-height: 30px;
  min-width: 30px;
}
.cid-uO9ByZmq32 .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uO9ByZmq32 .soc-item:hover {
  background-color: #738bae;
}
.cid-uO9ByZmq32 .soc-item:hover .mbr-iconfont {
  color: #FFFFFF !important;
}
.cid-uO9ByZmq32 .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #010d4c;
}
.cid-uO9ByZmq32 .list li {
  min-height: 44px;
  display: flex;
  align-items: center;
}
.cid-uO9ByZmq32 .list a {
  min-height: 44px;
  display: flex;
  align-items: center;
}
.cid-uO9ByZmq32 .brand-text {
  margin-bottom: 35px;
  color: #ffffff;
  opacity: 0.8;
}
.cid-uO9ByZmq32 .mbr-text {
  color: #00284E;
  opacity: 0.8;
}
.cid-uO9ByZmq32 .mbr-text .text-black {
  color: #00284E !important;
}
.cid-uO9ByZmq32 .mbr-text a {
  opacity: 0.8;
}
.cid-uO9ByZmq32 .mbr-text a:hover {
  opacity: 1;
  color: #04367c !important;
}
.cid-uO9ByZmq32 .col-copyright {
  margin-top: 44px;
}
.cid-uO9ByZmq32 .copyright {
  color: #ffffff;
  opacity: 0.8;
}
@media (max-width: 991px) {
  .cid-uO9ByZmq32 .copyright {
    text-align: center !important;
  }
}
.cid-uO9ByZmq32 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uO9ByZmq32 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOsBNecvL1 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uOsBNecvL1 .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uOsBNecvL1 .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-uOsBNecvL1 .iconfont-wrapper {
  color: #103178 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-uOsBNecvL1 .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-uOsBNecvL1 .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-uOsBNecvL1 .container {
    padding: 0 1rem;
  }
}
.cid-uOsBNecvL1 .menu-tite {
  background: #04367c;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-uOsBNecvL1 .nav-link {
  position: relative;
}
.cid-uOsBNecvL1 .nav-link:hover {
  color: #51aafa !important;
}
.cid-uOsBNecvL1 nav.navbar {
  position: fixed;
}
.cid-uOsBNecvL1 .navbar {
  padding: 0!important;
  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-uOsBNecvL1 .navbar.opened {
  transition: all 0.3s;
}
.cid-uOsBNecvL1 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uOsBNecvL1 .navbar .navbar-logo img {
  width: auto;
}
.cid-uOsBNecvL1 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uOsBNecvL1 .navbar.collapsed {
  justify-content: center;
}
.cid-uOsBNecvL1 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uOsBNecvL1 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uOsBNecvL1 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uOsBNecvL1 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uOsBNecvL1 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uOsBNecvL1 .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-uOsBNecvL1 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uOsBNecvL1 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uOsBNecvL1 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uOsBNecvL1 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uOsBNecvL1 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uOsBNecvL1 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uOsBNecvL1 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uOsBNecvL1 .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-uOsBNecvL1 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uOsBNecvL1 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uOsBNecvL1 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uOsBNecvL1 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uOsBNecvL1 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uOsBNecvL1 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uOsBNecvL1 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uOsBNecvL1 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uOsBNecvL1 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uOsBNecvL1 .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-uOsBNecvL1 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uOsBNecvL1 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uOsBNecvL1 .dropdown-item:hover,
.cid-uOsBNecvL1 .dropdown-item:focus {
  background: #04367c !important;
  color: white !important;
}
.cid-uOsBNecvL1 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uOsBNecvL1 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uOsBNecvL1 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-uOsBNecvL1 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uOsBNecvL1 .dropdown-menu,
.cid-uOsBNecvL1 .navbar.opened {
  background: #ffffff !important;
}
.cid-uOsBNecvL1 .nav-item:focus,
.cid-uOsBNecvL1 .nav-link:focus {
  outline: none;
}
.cid-uOsBNecvL1 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uOsBNecvL1 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uOsBNecvL1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uOsBNecvL1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uOsBNecvL1 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uOsBNecvL1 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uOsBNecvL1 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uOsBNecvL1 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uOsBNecvL1 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uOsBNecvL1 .dropdown-item.active,
.cid-uOsBNecvL1 .dropdown-item:active {
  background-color: transparent;
}
.cid-uOsBNecvL1 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uOsBNecvL1 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uOsBNecvL1 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uOsBNecvL1 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uOsBNecvL1 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uOsBNecvL1 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uOsBNecvL1 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uOsBNecvL1 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uOsBNecvL1 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uOsBNecvL1 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uOsBNecvL1 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uOsBNecvL1 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uOsBNecvL1 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uOsBNecvL1 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uOsBNecvL1 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uOsBNecvL1 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uOsBNecvL1 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uOsBNecvL1 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uOsBNecvL1 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uOsBNecvL1 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uOsBNecvL1 .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-uOsBNecvL1 .navbar {
    height: 70px;
  }
  .cid-uOsBNecvL1 .navbar.opened {
    height: auto;
  }
  .cid-uOsBNecvL1 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uOsC6dklDT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f4f8fa;
}
.cid-uOsC6dklDT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOsC6dklDT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uOsC6dklDT .container {
    padding: 0 22px;
  }
}
.cid-uOsC6dklDT .row {
  justify-content: space-between;
}
.cid-uOsC6dklDT .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uOsC6dklDT .content-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-uOsC6dklDT .form-wrap .dragArea.row .mbr-section-title {
  margin-bottom: 16px !important;
}
.cid-uOsC6dklDT .form-wrap .dragArea.row .mbr-text {
  margin-bottom: 16px;
}
.cid-uOsC6dklDT .form-wrap .dragArea.row .form-group {
  margin-bottom: 16px !important;
}
.cid-uOsC6dklDT .form-wrap .dragArea.row .form-group .form-control {
  padding: 16px;
  border: 1px solid #444444 !important;
  box-shadow: none;
  border-radius: 0 !important;
  background-color: transparent;
}
.cid-uOsC6dklDT .form-wrap .dragArea.row .form-group .form-control:hover,
.cid-uOsC6dklDT .form-wrap .dragArea.row .form-group .form-control:focus {
  border: 1px solid #000000 !important;
}
.cid-uOsC6dklDT .form-wrap .dragArea.row .form-group .form-control::placeholder {
  color: #000000;
}
.cid-uOsC6dklDT .form-wrap .dragArea.row .form-group textarea {
  min-height: 150px;
}
.cid-uOsC6dklDT .form-wrap .dragArea.row .form-group .form-check {
  padding-left: 1.9em;
  margin-bottom: 16px;
}
.cid-uOsC6dklDT .form-wrap .dragArea.row .form-group .form-check .form-check-input {
  background-color: transparent;
  border-color: #444444;
  border-radius: 0;
}
.cid-uOsC6dklDT .form-wrap .dragArea.row .form-group .form-check .form-check-input:focus {
  background-color: #444444;
}
.cid-uOsC6dklDT .form-wrap .dragArea.row .mbr-section-btn .btn {
  margin-top: 16px;
  min-height: auto;
}
.cid-uOsC6dklDT .mbr-section-title {
  color: #04367c;
}
.cid-uOsC6dklDT .mbr-text {
  color: #000000;
}
.cid-uOsC6dklDT label {
  color: #000000;
}
.cid-uOsC6dklDT LABEL {
  color: #8d97ad;
}
.cid-uOsBNg0PCa {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #1b61a1;
}
.cid-uOsBNg0PCa .container {
  display: flex;
  justify-content: center;
}
.cid-uOsBNg0PCa .row {
  display: flex;
  align-items: stretch;
  max-width: 1194px;
  width: 100%;
}
.cid-uOsBNg0PCa .col-brand {
  margin-bottom: 40px;
}
.cid-uOsBNg0PCa .col-link {
  margin-bottom: 30px;
}
.cid-uOsBNg0PCa .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 25px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
}
.cid-uOsBNg0PCa .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uOsBNg0PCa .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uOsBNg0PCa .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uOsBNg0PCa .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uOsBNg0PCa .mbr-section-subtitle {
  color: #ffffff;
  margin-bottom: 20px;
}
.cid-uOsBNg0PCa .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uOsBNg0PCa .mbr-iconfont {
  font-size: 16px;
  color: #3b668d;
}
.cid-uOsBNg0PCa .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background-color: #eef4fb;
  margin-right: 10px;
  margin-bottom: 10px;
  padding: 5px;
  min-height: 30px;
  min-width: 30px;
}
.cid-uOsBNg0PCa .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uOsBNg0PCa .soc-item:hover {
  background-color: #738bae;
}
.cid-uOsBNg0PCa .soc-item:hover .mbr-iconfont {
  color: #FFFFFF !important;
}
.cid-uOsBNg0PCa .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #010d4c;
}
.cid-uOsBNg0PCa .list li {
  min-height: 44px;
  display: flex;
  align-items: center;
}
.cid-uOsBNg0PCa .list a {
  min-height: 44px;
  display: flex;
  align-items: center;
}
.cid-uOsBNg0PCa .brand-text {
  margin-bottom: 35px;
  color: #ffffff;
  opacity: 0.8;
}
.cid-uOsBNg0PCa .mbr-text {
  color: #00284E;
  opacity: 0.8;
}
.cid-uOsBNg0PCa .mbr-text .text-black {
  color: #00284E !important;
}
.cid-uOsBNg0PCa .mbr-text a {
  opacity: 0.8;
}
.cid-uOsBNg0PCa .mbr-text a:hover {
  opacity: 1;
  color: #04367c !important;
}
.cid-uOsBNg0PCa .col-copyright {
  margin-top: 44px;
}
.cid-uOsBNg0PCa .copyright {
  color: #ffffff;
  opacity: 0.8;
}
@media (max-width: 991px) {
  .cid-uOsBNg0PCa .copyright {
    text-align: center !important;
  }
}
.cid-uOsBNg0PCa .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOsBNg0PCa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFMh2eyzqq {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uFMh2eyzqq .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uFMh2eyzqq .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-uFMh2eyzqq .iconfont-wrapper {
  color: #103178 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-uFMh2eyzqq .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-uFMh2eyzqq .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-uFMh2eyzqq .container {
    padding: 0 1rem;
  }
}
.cid-uFMh2eyzqq .menu-tite {
  background: #04367c;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-uFMh2eyzqq .nav-link {
  position: relative;
}
.cid-uFMh2eyzqq .nav-link:hover {
  color: #51aafa !important;
}
.cid-uFMh2eyzqq nav.navbar {
  position: fixed;
}
.cid-uFMh2eyzqq .navbar {
  padding: 0!important;
  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-uFMh2eyzqq .navbar.opened {
  transition: all 0.3s;
}
.cid-uFMh2eyzqq .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uFMh2eyzqq .navbar .navbar-logo img {
  width: auto;
}
.cid-uFMh2eyzqq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uFMh2eyzqq .navbar.collapsed {
  justify-content: center;
}
.cid-uFMh2eyzqq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uFMh2eyzqq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uFMh2eyzqq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uFMh2eyzqq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uFMh2eyzqq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uFMh2eyzqq .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-uFMh2eyzqq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uFMh2eyzqq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uFMh2eyzqq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uFMh2eyzqq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uFMh2eyzqq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uFMh2eyzqq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uFMh2eyzqq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uFMh2eyzqq .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-uFMh2eyzqq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uFMh2eyzqq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uFMh2eyzqq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uFMh2eyzqq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uFMh2eyzqq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uFMh2eyzqq .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uFMh2eyzqq .navbar.navbar-short {
  min-height: 60px;
}
.cid-uFMh2eyzqq .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uFMh2eyzqq .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uFMh2eyzqq .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-uFMh2eyzqq .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uFMh2eyzqq .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uFMh2eyzqq .dropdown-item:hover,
.cid-uFMh2eyzqq .dropdown-item:focus {
  background: #04367c !important;
  color: white !important;
}
.cid-uFMh2eyzqq .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uFMh2eyzqq .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uFMh2eyzqq .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-uFMh2eyzqq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uFMh2eyzqq .dropdown-menu,
.cid-uFMh2eyzqq .navbar.opened {
  background: #ffffff !important;
}
.cid-uFMh2eyzqq .nav-item:focus,
.cid-uFMh2eyzqq .nav-link:focus {
  outline: none;
}
.cid-uFMh2eyzqq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uFMh2eyzqq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uFMh2eyzqq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uFMh2eyzqq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uFMh2eyzqq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uFMh2eyzqq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uFMh2eyzqq .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uFMh2eyzqq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uFMh2eyzqq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uFMh2eyzqq .dropdown-item.active,
.cid-uFMh2eyzqq .dropdown-item:active {
  background-color: transparent;
}
.cid-uFMh2eyzqq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uFMh2eyzqq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uFMh2eyzqq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uFMh2eyzqq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uFMh2eyzqq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uFMh2eyzqq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uFMh2eyzqq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uFMh2eyzqq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uFMh2eyzqq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uFMh2eyzqq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uFMh2eyzqq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uFMh2eyzqq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFMh2eyzqq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFMh2eyzqq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uFMh2eyzqq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFMh2eyzqq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uFMh2eyzqq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uFMh2eyzqq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFMh2eyzqq .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uFMh2eyzqq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uFMh2eyzqq .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-uFMh2eyzqq .navbar {
    height: 70px;
  }
  .cid-uFMh2eyzqq .navbar.opened {
    height: auto;
  }
  .cid-uFMh2eyzqq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rl8QgLA0BA {
  padding-top: 135px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/img-3516-1800x1200.jpg");
}
.cid-rl8QgLA0BA .mbr-overlay {
  background: #04367c;
  background: linear-gradient(90deg, #04367c, #c1c1c1);
}
.cid-rl8ReRmve1 {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rl8ReRmve1 .mbr-text {
  color: #8d97ad;
}
.cid-rl8XelzsE3 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rl8XelzsE3 .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-rl8XelzsE3 .mbr-section-title B {
  color: #8d97ad;
}
.cid-rl8Rf50yyU {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rl8Rf50yyU .mbr-text {
  color: #8d97ad;
}
.cid-rl8Rf50yyU .counter-container ul {
  margin-bottom: 0;
  padding-left: .6rem;
}
.cid-rl8Rf50yyU .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-rl8Rf50yyU .counter-container ul li:before {
  position: absolute;
  left: 0px;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #ffffff;
  background: #188ef4;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #188ef4, #5eeebb);
}
.cid-rl8WokkNw2 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rl8WokkNw2 .mbr-text {
  color: #8d97ad;
}
.cid-rl8WrRV6LF {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rl8WrRV6LF .mbr-text {
  color: #8d97ad;
}
.cid-rl8WrRV6LF .counter-container ul {
  margin-bottom: 0;
  padding-left: .6rem;
}
.cid-rl8WrRV6LF .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-rl8WrRV6LF .counter-container ul li:before {
  position: absolute;
  left: 0px;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #ffffff;
  background: #188ef4;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #188ef4, #5eeebb);
}
.cid-rl95eBHN1F {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rl95eBHN1F .mbr-text {
  color: #8d97ad;
}
.cid-rl95eX35KK {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rl95eX35KK .mbr-text {
  color: #8d97ad;
}
.cid-rl95eX35KK .counter-container ul {
  margin-bottom: 0;
  padding-left: .6rem;
}
.cid-rl95eX35KK .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-rl95eX35KK .counter-container ul li:before {
  position: absolute;
  left: 0px;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #ffffff;
  background: #188ef4;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #188ef4, #5eeebb);
}
.cid-rl9BBLSjag {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rl9BBLSjag .mbr-text {
  color: #8d97ad;
}
.cid-rl9CpzbJVl {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rl9CpzbJVl .mbr-text {
  color: #8d97ad;
}
.cid-rl9BC3uT7a {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rl9BC3uT7a .mbr-text {
  color: #8d97ad;
}
.cid-rl9BC3uT7a .counter-container ul {
  margin-bottom: 0;
  padding-left: .6rem;
}
.cid-rl9BC3uT7a .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-rl9BC3uT7a .counter-container ul li:before {
  position: absolute;
  left: 0px;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #ffffff;
  background: #188ef4;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #188ef4, #5eeebb);
}
.cid-uO9ByZmq32 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #1b61a1;
}
.cid-uO9ByZmq32 .container {
  display: flex;
  justify-content: center;
}
.cid-uO9ByZmq32 .row {
  display: flex;
  align-items: stretch;
  max-width: 1194px;
  width: 100%;
}
.cid-uO9ByZmq32 .col-brand {
  margin-bottom: 40px;
}
.cid-uO9ByZmq32 .col-link {
  margin-bottom: 30px;
}
.cid-uO9ByZmq32 .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 25px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
}
.cid-uO9ByZmq32 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uO9ByZmq32 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uO9ByZmq32 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uO9ByZmq32 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uO9ByZmq32 .mbr-section-subtitle {
  color: #ffffff;
  margin-bottom: 20px;
}
.cid-uO9ByZmq32 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uO9ByZmq32 .mbr-iconfont {
  font-size: 16px;
  color: #3b668d;
}
.cid-uO9ByZmq32 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background-color: #eef4fb;
  margin-right: 10px;
  margin-bottom: 10px;
  padding: 5px;
  min-height: 30px;
  min-width: 30px;
}
.cid-uO9ByZmq32 .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uO9ByZmq32 .soc-item:hover {
  background-color: #738bae;
}
.cid-uO9ByZmq32 .soc-item:hover .mbr-iconfont {
  color: #FFFFFF !important;
}
.cid-uO9ByZmq32 .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #010d4c;
}
.cid-uO9ByZmq32 .list li {
  min-height: 44px;
  display: flex;
  align-items: center;
}
.cid-uO9ByZmq32 .list a {
  min-height: 44px;
  display: flex;
  align-items: center;
}
.cid-uO9ByZmq32 .brand-text {
  margin-bottom: 35px;
  color: #ffffff;
  opacity: 0.8;
}
.cid-uO9ByZmq32 .mbr-text {
  color: #00284E;
  opacity: 0.8;
}
.cid-uO9ByZmq32 .mbr-text .text-black {
  color: #00284E !important;
}
.cid-uO9ByZmq32 .mbr-text a {
  opacity: 0.8;
}
.cid-uO9ByZmq32 .mbr-text a:hover {
  opacity: 1;
  color: #04367c !important;
}
.cid-uO9ByZmq32 .col-copyright {
  margin-top: 44px;
}
.cid-uO9ByZmq32 .copyright {
  color: #ffffff;
  opacity: 0.8;
}
@media (max-width: 991px) {
  .cid-uO9ByZmq32 .copyright {
    text-align: center !important;
  }
}
.cid-uO9ByZmq32 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uO9ByZmq32 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
