.btn {
  border-width: 2px;
}
body {
  font-family: Jost;
}
.display-1 {
  font-family: 'PT Sans', sans-serif;
  font-size: 5rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 6.25rem;
}
.display-2 {
  font-family: 'Inter', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Inter', sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2rem;
}
.display-7 {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 4rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.5rem;
    font-size: calc( 2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #04315f !important;
}
.bg-success {
  background-color: #04315f !important;
}
.bg-info {
  background-color: #084f97 !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #04315f !important;
  border-color: #04315f !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #00060c !important;
  border-color: #00060c !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #00060c !important;
  border-color: #00060c !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #d7e4fc !important;
  border-color: #d7e4fc !important;
  color: #0f4fc5 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #86aef6 !important;
  border-color: #86aef6 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #0f4fc5 !important;
  background-color: #86aef6 !important;
  border-color: #86aef6 !important;
}
.btn-info,
.btn-info:active {
  background-color: #084f97 !important;
  border-color: #084f97 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #042445 !important;
  border-color: #042445 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #042445 !important;
  border-color: #042445 !important;
}
.btn-success,
.btn-success:active {
  background-color: #04315f !important;
  border-color: #04315f !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #00060c !important;
  border-color: #00060c !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #00060c !important;
  border-color: #00060c !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #04315f;
  color: #04315f;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #00060c !important;
  background-color: transparent!important;
  border-color: #00060c !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #04315f !important;
  border-color: #04315f !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #d7e4fc;
  color: #d7e4fc;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #86aef6 !important;
  background-color: transparent!important;
  border-color: #86aef6 !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #0f4fc5 !important;
  background-color: #d7e4fc !important;
  border-color: #d7e4fc !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #084f97;
  color: #084f97;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #042445 !important;
  background-color: transparent!important;
  border-color: #042445 !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #084f97 !important;
  border-color: #084f97 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #04315f;
  color: #04315f;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #00060c !important;
  background-color: transparent!important;
  border-color: #00060c !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #04315f !important;
  border-color: #04315f !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #ffe161;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: #ffd10a !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #ff9966;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: #ff5f0f !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: #cfcfcf !important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #04315f !important;
}
.text-secondary {
  color: #d7e4fc !important;
}
.text-success {
  color: #04315f !important;
}
.text-info {
  color: #084f97 !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #000000 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #78a4f5 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #000000 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #031c36 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #04315f;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #084f97;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #04315f;
  border-color: #04315f;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #04315f;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #0970d9;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #0970d9;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #2b8ff4;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #04315f !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #04315f;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #04315f;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #04315f;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #04315f;
  border-bottom-color: #04315f;
}
.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: #04315f !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #d7e4fc !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%2304315f' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-sFAA5oUu2Y .navbar-dropdown {
  position: relative !important;
}
.cid-sFAA5oUu2Y .navbar-dropdown {
  position: absolute !important;
}
.cid-sFAA5oUu2Y .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-sFAA5oUu2Y .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sFAA5oUu2Y .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sFAA5oUu2Y .dropdown-item:hover,
.cid-sFAA5oUu2Y .dropdown-item:focus {
  background: #04315f !important;
  color: white !important;
}
.cid-sFAA5oUu2Y .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sFAA5oUu2Y .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sFAA5oUu2Y .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sFAA5oUu2Y .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sFAA5oUu2Y .nav-link {
  position: relative;
}
.cid-sFAA5oUu2Y .container {
  display: flex;
  margin: auto;
}
.cid-sFAA5oUu2Y .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sFAA5oUu2Y .dropdown-menu,
.cid-sFAA5oUu2Y .navbar.opened {
  background: #fafafa !important;
}
.cid-sFAA5oUu2Y .nav-item:focus,
.cid-sFAA5oUu2Y .nav-link:focus {
  outline: none;
}
.cid-sFAA5oUu2Y .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sFAA5oUu2Y .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sFAA5oUu2Y .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sFAA5oUu2Y .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sFAA5oUu2Y .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sFAA5oUu2Y .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sFAA5oUu2Y .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #fafafa;
}
.cid-sFAA5oUu2Y .navbar.opened {
  transition: all 0.3s;
}
.cid-sFAA5oUu2Y .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sFAA5oUu2Y .navbar .navbar-logo img {
  width: auto;
}
.cid-sFAA5oUu2Y .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sFAA5oUu2Y .navbar.collapsed {
  justify-content: center;
}
.cid-sFAA5oUu2Y .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sFAA5oUu2Y .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sFAA5oUu2Y .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sFAA5oUu2Y .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sFAA5oUu2Y .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sFAA5oUu2Y .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-sFAA5oUu2Y .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sFAA5oUu2Y .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sFAA5oUu2Y .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sFAA5oUu2Y .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sFAA5oUu2Y .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sFAA5oUu2Y .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sFAA5oUu2Y .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sFAA5oUu2Y .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-sFAA5oUu2Y .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sFAA5oUu2Y .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sFAA5oUu2Y .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sFAA5oUu2Y .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sFAA5oUu2Y .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sFAA5oUu2Y .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sFAA5oUu2Y .navbar.navbar-short {
  min-height: 60px;
}
.cid-sFAA5oUu2Y .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sFAA5oUu2Y .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sFAA5oUu2Y .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sFAA5oUu2Y .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sFAA5oUu2Y .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sFAA5oUu2Y .dropdown-item.active,
.cid-sFAA5oUu2Y .dropdown-item:active {
  background-color: transparent;
}
.cid-sFAA5oUu2Y .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sFAA5oUu2Y .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sFAA5oUu2Y .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sFAA5oUu2Y .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-sFAA5oUu2Y .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sFAA5oUu2Y .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sFAA5oUu2Y ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sFAA5oUu2Y .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sFAA5oUu2Y button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sFAA5oUu2Y button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #05386b;
}
.cid-sFAA5oUu2Y button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sFAA5oUu2Y button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFAA5oUu2Y button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFAA5oUu2Y button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sFAA5oUu2Y nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFAA5oUu2Y nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sFAA5oUu2Y nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sFAA5oUu2Y nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFAA5oUu2Y .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sFAA5oUu2Y a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sFAA5oUu2Y .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-sFAA5oUu2Y .navbar {
    height: 70px;
  }
  .cid-sFAA5oUu2Y .navbar.opened {
    height: auto;
  }
  .cid-sFAA5oUu2Y .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tifw8L3Q5o {
  display: flex;
  background-image: url("../../../assets/images/mbr-1.jpg");
}
.cid-tifw8L3Q5o .mbr-overlay {
  background-color: #353535;
  opacity: 0.5;
}
.cid-tifw8L3Q5o .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-tifw8L3Q5o {
    align-items: flex-end;
  }
  .cid-tifw8L3Q5o .row {
    justify-content: flex-start;
  }
  .cid-tifw8L3Q5o .content-wrap {
    width: 72%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tifw8L3Q5o .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-tifw8L3Q5o {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tifw8L3Q5o .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tifw8L3Q5o .content-wrap {
    width: 100%;
  }
}
.cid-tifw8L3Q5o .mbr-section-title {
  color: #fafafa;
}
.cid-tly17E2CiZ {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tly17E2CiZ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tly17E2CiZ img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tly17E2CiZ .text-wrapper {
    padding: 2rem;
  }
}
.cid-tly17E2CiZ .mbr-text {
  color: #04315f;
  text-align: right;
}
.cid-tly0Brl9iU {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tly0Brl9iU .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-tly0Brl9iU .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-tly0Brl9iU .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #04315f;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  background: none;
  border: 1px solid #04315f;
  color: #04315f;
  content: "✓";
}
.cid-tly0Brl9iU .mbr-section-title {
  color: #04315f;
}
.cid-tly0Brl9iU .mbr-text {
  color: #04315f;
}
.cid-tly0C9OrXg {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tly0C9OrXg .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-tly0C9OrXg .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-tly0C9OrXg .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #04315f;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-tly0C9OrXg .mbr-section-title {
  color: #04315f;
}
.cid-tly0C9OrXg .mbr-text {
  color: #04315f;
}
.cid-tly0CKClcJ {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tly0CKClcJ .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-tly0CKClcJ .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-tly0CKClcJ .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #04315f;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  background: none;
  border: 1px solid #04315f;
  color: #04315f;
  content: "✓";
}
.cid-tly0CKClcJ .mbr-section-title {
  color: #04315f;
}
.cid-tly0CKClcJ .mbr-text {
  color: #04315f;
}
.cid-tmAuIxbB5I {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tmAuIxbB5I .content-wrapper {
  background: #9cb7da;
}
@media (max-width: 991px) {
  .cid-tmAuIxbB5I .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-tmAuIxbB5I .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tmAuIxbB5I .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tmAuIxbB5I .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tmAuIxbB5I .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-tmAuIxbB5I .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-tmAuIxbB5I .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tmAuIxbB5I .card-title {
  color: #04315f;
}
.cid-tpfs2Bmnxx {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tpfs2Bmnxx .mbr-section-btn {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.cid-thj5R7fzPY {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-thj5R7fzPY .row-links {
  width: 100%;
  justify-content: center;
}
.cid-thj5R7fzPY .social-row {
  width: 100%;
  justify-content: center;
}
.cid-thj5R7fzPY .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-thj5R7fzPY .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-thj5R7fzPY .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-thj5R7fzPY .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-thj5R7fzPY .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-thj5R7fzPY .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-thj5R7fzPY .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-thj5R7fzPY .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-thj5R7fzPY .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-thj5R7fzPY .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-thj5R7fzPY .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-thj5R7fzPY .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tiDu1wweW4 .navbar-dropdown {
  position: relative !important;
}
.cid-tiDu1wweW4 .navbar-dropdown {
  position: absolute !important;
}
.cid-tiDu1wweW4 .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-tiDu1wweW4 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tiDu1wweW4 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tiDu1wweW4 .dropdown-item:hover,
.cid-tiDu1wweW4 .dropdown-item:focus {
  background: #04315f !important;
  color: white !important;
}
.cid-tiDu1wweW4 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tiDu1wweW4 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tiDu1wweW4 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tiDu1wweW4 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tiDu1wweW4 .nav-link {
  position: relative;
}
.cid-tiDu1wweW4 .container {
  display: flex;
  margin: auto;
}
.cid-tiDu1wweW4 .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tiDu1wweW4 .dropdown-menu,
.cid-tiDu1wweW4 .navbar.opened {
  background: #fafafa !important;
}
.cid-tiDu1wweW4 .nav-item:focus,
.cid-tiDu1wweW4 .nav-link:focus {
  outline: none;
}
.cid-tiDu1wweW4 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tiDu1wweW4 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tiDu1wweW4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tiDu1wweW4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tiDu1wweW4 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tiDu1wweW4 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tiDu1wweW4 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #fafafa;
}
.cid-tiDu1wweW4 .navbar.opened {
  transition: all 0.3s;
}
.cid-tiDu1wweW4 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tiDu1wweW4 .navbar .navbar-logo img {
  width: auto;
}
.cid-tiDu1wweW4 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tiDu1wweW4 .navbar.collapsed {
  justify-content: center;
}
.cid-tiDu1wweW4 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tiDu1wweW4 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tiDu1wweW4 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tiDu1wweW4 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tiDu1wweW4 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tiDu1wweW4 .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-tiDu1wweW4 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tiDu1wweW4 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tiDu1wweW4 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tiDu1wweW4 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tiDu1wweW4 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tiDu1wweW4 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tiDu1wweW4 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tiDu1wweW4 .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-tiDu1wweW4 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tiDu1wweW4 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tiDu1wweW4 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tiDu1wweW4 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tiDu1wweW4 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tiDu1wweW4 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tiDu1wweW4 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tiDu1wweW4 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tiDu1wweW4 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tiDu1wweW4 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tiDu1wweW4 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tiDu1wweW4 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tiDu1wweW4 .dropdown-item.active,
.cid-tiDu1wweW4 .dropdown-item:active {
  background-color: transparent;
}
.cid-tiDu1wweW4 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tiDu1wweW4 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tiDu1wweW4 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tiDu1wweW4 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-tiDu1wweW4 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tiDu1wweW4 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tiDu1wweW4 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tiDu1wweW4 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tiDu1wweW4 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tiDu1wweW4 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #05386b;
}
.cid-tiDu1wweW4 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tiDu1wweW4 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tiDu1wweW4 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tiDu1wweW4 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tiDu1wweW4 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tiDu1wweW4 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tiDu1wweW4 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tiDu1wweW4 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tiDu1wweW4 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tiDu1wweW4 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tiDu1wweW4 .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-tiDu1wweW4 .navbar {
    height: 70px;
  }
  .cid-tiDu1wweW4 .navbar.opened {
    height: auto;
  }
  .cid-tiDu1wweW4 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tiDu1xZMjp {
  display: flex;
  background-image: url("../../../assets/images/mbr-1.jpg");
}
.cid-tiDu1xZMjp .mbr-overlay {
  background-color: #353535;
  opacity: 0.5;
}
.cid-tiDu1xZMjp .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-tiDu1xZMjp {
    align-items: flex-end;
  }
  .cid-tiDu1xZMjp .row {
    justify-content: flex-start;
  }
  .cid-tiDu1xZMjp .content-wrap {
    width: 51%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tiDu1xZMjp .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-tiDu1xZMjp {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tiDu1xZMjp .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tiDu1xZMjp .content-wrap {
    width: 100%;
  }
}
.cid-tiDu1xZMjp .mbr-section-title {
  color: #fafafa;
}
.cid-tly7iw3p0N {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tly7iw3p0N .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tly7iw3p0N img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tly7iw3p0N .text-wrapper {
    padding: 2rem;
  }
}
.cid-tly7iw3p0N .mbr-text {
  color: #04315f;
  text-align: right;
}
.cid-tiDu1zI5PT {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tiDu1zI5PT .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-tiDu1zI5PT .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-tiDu1zI5PT .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #04315f;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  background: none;
  border: 1px solid #04315f;
  color: #04315f;
  content: "✓";
}
.cid-tiDu1zI5PT .mbr-section-title {
  color: #04315f;
}
.cid-tiDu1zI5PT .mbr-text {
  color: #04315f;
}
.cid-tiDu1Aixhz {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tiDu1Aixhz .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-tiDu1Aixhz .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-tiDu1Aixhz .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #04315f;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-tiDu1Aixhz .mbr-text {
  color: #04315f;
}
.cid-tiDu1ATAq7 {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tiDu1ATAq7 .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-tiDu1ATAq7 .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-tiDu1ATAq7 .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #04315f;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  background: none;
  border: 1px solid #04315f;
  color: #04315f;
  content: "✓";
}
.cid-tiDu1ATAq7 .mbr-section-title {
  color: #04315f;
}
.cid-tiDu1ATAq7 .mbr-text {
  color: #04315f;
}
.cid-tmMpw3FAgG {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tmMpw3FAgG .content-wrapper {
  background: #9cb7da;
}
@media (max-width: 991px) {
  .cid-tmMpw3FAgG .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-tmMpw3FAgG .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tmMpw3FAgG .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tmMpw3FAgG .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tmMpw3FAgG .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-tmMpw3FAgG .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-tmMpw3FAgG .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tmMpw3FAgG .card-title {
  color: #04315f;
}
.cid-tpfrUpJXet {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tpfrUpJXet .mbr-section-btn {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.cid-tiDu1BukpC {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tiDu1BukpC .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tiDu1BukpC .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tiDu1BukpC .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tiDu1BukpC .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tiDu1BukpC .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tiDu1BukpC .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tiDu1BukpC .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tiDu1BukpC .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tiDu1BukpC .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tiDu1BukpC .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tiDu1BukpC .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tiDu1BukpC .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tiDu1BukpC .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tiDu1BukpC .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tiDsPDsDe1 .navbar-dropdown {
  position: relative !important;
}
.cid-tiDsPDsDe1 .navbar-dropdown {
  position: absolute !important;
}
.cid-tiDsPDsDe1 .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-tiDsPDsDe1 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tiDsPDsDe1 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tiDsPDsDe1 .dropdown-item:hover,
.cid-tiDsPDsDe1 .dropdown-item:focus {
  background: #04315f !important;
  color: white !important;
}
.cid-tiDsPDsDe1 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tiDsPDsDe1 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tiDsPDsDe1 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tiDsPDsDe1 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tiDsPDsDe1 .nav-link {
  position: relative;
}
.cid-tiDsPDsDe1 .container {
  display: flex;
  margin: auto;
}
.cid-tiDsPDsDe1 .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tiDsPDsDe1 .dropdown-menu,
.cid-tiDsPDsDe1 .navbar.opened {
  background: #fafafa !important;
}
.cid-tiDsPDsDe1 .nav-item:focus,
.cid-tiDsPDsDe1 .nav-link:focus {
  outline: none;
}
.cid-tiDsPDsDe1 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tiDsPDsDe1 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tiDsPDsDe1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tiDsPDsDe1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tiDsPDsDe1 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tiDsPDsDe1 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tiDsPDsDe1 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #fafafa;
}
.cid-tiDsPDsDe1 .navbar.opened {
  transition: all 0.3s;
}
.cid-tiDsPDsDe1 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tiDsPDsDe1 .navbar .navbar-logo img {
  width: auto;
}
.cid-tiDsPDsDe1 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tiDsPDsDe1 .navbar.collapsed {
  justify-content: center;
}
.cid-tiDsPDsDe1 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tiDsPDsDe1 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tiDsPDsDe1 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tiDsPDsDe1 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tiDsPDsDe1 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tiDsPDsDe1 .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-tiDsPDsDe1 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tiDsPDsDe1 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tiDsPDsDe1 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tiDsPDsDe1 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tiDsPDsDe1 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tiDsPDsDe1 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tiDsPDsDe1 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tiDsPDsDe1 .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-tiDsPDsDe1 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tiDsPDsDe1 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tiDsPDsDe1 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tiDsPDsDe1 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tiDsPDsDe1 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tiDsPDsDe1 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tiDsPDsDe1 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tiDsPDsDe1 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tiDsPDsDe1 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tiDsPDsDe1 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tiDsPDsDe1 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tiDsPDsDe1 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tiDsPDsDe1 .dropdown-item.active,
.cid-tiDsPDsDe1 .dropdown-item:active {
  background-color: transparent;
}
.cid-tiDsPDsDe1 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tiDsPDsDe1 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tiDsPDsDe1 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tiDsPDsDe1 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-tiDsPDsDe1 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tiDsPDsDe1 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tiDsPDsDe1 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tiDsPDsDe1 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tiDsPDsDe1 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tiDsPDsDe1 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #05386b;
}
.cid-tiDsPDsDe1 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tiDsPDsDe1 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tiDsPDsDe1 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tiDsPDsDe1 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tiDsPDsDe1 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tiDsPDsDe1 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tiDsPDsDe1 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tiDsPDsDe1 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tiDsPDsDe1 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tiDsPDsDe1 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tiDsPDsDe1 .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-tiDsPDsDe1 .navbar {
    height: 70px;
  }
  .cid-tiDsPDsDe1 .navbar.opened {
    height: auto;
  }
  .cid-tiDsPDsDe1 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tiDsPEabei {
  display: flex;
  background-image: url("../../../assets/images/mbr-1.jpg");
}
.cid-tiDsPEabei .mbr-overlay {
  background-color: #353535;
  opacity: 0.5;
}
.cid-tiDsPEabei .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-tiDsPEabei {
    align-items: flex-end;
  }
  .cid-tiDsPEabei .row {
    justify-content: flex-start;
  }
  .cid-tiDsPEabei .content-wrap {
    width: 79%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tiDsPEabei .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-tiDsPEabei {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tiDsPEabei .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tiDsPEabei .content-wrap {
    width: 100%;
  }
}
.cid-tiDsPEabei .mbr-section-title {
  color: #fafafa;
}
.cid-tly8Gy2WUe {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tly8Gy2WUe .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tly8Gy2WUe img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tly8Gy2WUe .text-wrapper {
    padding: 2rem;
  }
}
.cid-tly8Gy2WUe .mbr-text {
  color: #04315f;
  text-align: right;
}
.cid-tiDsPFxd8g {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tiDsPFxd8g .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-tiDsPFxd8g .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-tiDsPFxd8g .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #04315f;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  background: none;
  border: 1px solid #04315f;
  color: #04315f;
  content: "✓";
}
.cid-tiDsPFxd8g .mbr-section-title {
  color: #04315f;
}
.cid-tiDsPFxd8g .mbr-text {
  color: #04315f;
}
.cid-tiDsPG96da {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tiDsPG96da .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-tiDsPG96da .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-tiDsPG96da .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #04315f;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-tiDsPG96da .mbr-text {
  color: #04315f;
}
.cid-tiDsPGMvhR {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tiDsPGMvhR .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-tiDsPGMvhR .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-tiDsPGMvhR .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #04315f;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  background: none;
  border: 1px solid #04315f;
  color: #04315f;
  content: "✓";
}
.cid-tiDsPGMvhR .mbr-section-title {
  color: #04315f;
}
.cid-tiDsPGMvhR .mbr-text {
  color: #04315f;
}
.cid-tmMpOhCpla {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tmMpOhCpla .content-wrapper {
  background: #9cb7da;
}
@media (max-width: 991px) {
  .cid-tmMpOhCpla .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-tmMpOhCpla .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tmMpOhCpla .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tmMpOhCpla .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tmMpOhCpla .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-tmMpOhCpla .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-tmMpOhCpla .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tmMpOhCpla .card-title {
  color: #04315f;
}
.cid-tpfrQtvGvT {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tpfrQtvGvT .mbr-section-btn {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.cid-tiDsPHsuYH {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tiDsPHsuYH .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tiDsPHsuYH .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tiDsPHsuYH .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tiDsPHsuYH .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tiDsPHsuYH .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tiDsPHsuYH .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tiDsPHsuYH .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tiDsPHsuYH .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tiDsPHsuYH .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tiDsPHsuYH .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tiDsPHsuYH .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tiDsPHsuYH .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tiDsPHsuYH .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tiDsPHsuYH .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tiDsP64app .navbar-dropdown {
  position: relative !important;
}
.cid-tiDsP64app .navbar-dropdown {
  position: absolute !important;
}
.cid-tiDsP64app .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-tiDsP64app .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tiDsP64app .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tiDsP64app .dropdown-item:hover,
.cid-tiDsP64app .dropdown-item:focus {
  background: #04315f !important;
  color: white !important;
}
.cid-tiDsP64app .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tiDsP64app .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tiDsP64app .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tiDsP64app .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tiDsP64app .nav-link {
  position: relative;
}
.cid-tiDsP64app .container {
  display: flex;
  margin: auto;
}
.cid-tiDsP64app .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tiDsP64app .dropdown-menu,
.cid-tiDsP64app .navbar.opened {
  background: #fafafa !important;
}
.cid-tiDsP64app .nav-item:focus,
.cid-tiDsP64app .nav-link:focus {
  outline: none;
}
.cid-tiDsP64app .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tiDsP64app .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tiDsP64app .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tiDsP64app .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tiDsP64app .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tiDsP64app .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tiDsP64app .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #fafafa;
}
.cid-tiDsP64app .navbar.opened {
  transition: all 0.3s;
}
.cid-tiDsP64app .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tiDsP64app .navbar .navbar-logo img {
  width: auto;
}
.cid-tiDsP64app .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tiDsP64app .navbar.collapsed {
  justify-content: center;
}
.cid-tiDsP64app .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tiDsP64app .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tiDsP64app .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tiDsP64app .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tiDsP64app .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tiDsP64app .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-tiDsP64app .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tiDsP64app .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tiDsP64app .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tiDsP64app .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tiDsP64app .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tiDsP64app .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tiDsP64app .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tiDsP64app .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-tiDsP64app .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tiDsP64app .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tiDsP64app .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tiDsP64app .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tiDsP64app .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tiDsP64app .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tiDsP64app .navbar.navbar-short {
  min-height: 60px;
}
.cid-tiDsP64app .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tiDsP64app .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tiDsP64app .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tiDsP64app .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tiDsP64app .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tiDsP64app .dropdown-item.active,
.cid-tiDsP64app .dropdown-item:active {
  background-color: transparent;
}
.cid-tiDsP64app .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tiDsP64app .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tiDsP64app .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tiDsP64app .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-tiDsP64app .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tiDsP64app .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tiDsP64app ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tiDsP64app .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tiDsP64app button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tiDsP64app button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #05386b;
}
.cid-tiDsP64app button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tiDsP64app button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tiDsP64app button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tiDsP64app button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tiDsP64app nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tiDsP64app nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tiDsP64app nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tiDsP64app nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tiDsP64app .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tiDsP64app a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tiDsP64app .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-tiDsP64app .navbar {
    height: 70px;
  }
  .cid-tiDsP64app .navbar.opened {
    height: auto;
  }
  .cid-tiDsP64app .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tiDsP6Ri1v {
  display: flex;
  background-image: url("../../../assets/images/mbr-1.jpg");
}
.cid-tiDsP6Ri1v .mbr-overlay {
  background-color: #353535;
  opacity: 0.5;
}
.cid-tiDsP6Ri1v .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-tiDsP6Ri1v {
    align-items: flex-end;
  }
  .cid-tiDsP6Ri1v .row {
    justify-content: flex-start;
  }
  .cid-tiDsP6Ri1v .content-wrap {
    width: 77%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tiDsP6Ri1v .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-tiDsP6Ri1v {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tiDsP6Ri1v .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tiDsP6Ri1v .content-wrap {
    width: 100%;
  }
}
.cid-tiDsP6Ri1v .mbr-section-title {
  color: #fafafa;
}
.cid-tly9bGiAo0 {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tly9bGiAo0 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tly9bGiAo0 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tly9bGiAo0 .text-wrapper {
    padding: 2rem;
  }
}
.cid-tly9bGiAo0 .mbr-text {
  color: #04315f;
  text-align: right;
}
.cid-tiDsP8gRcg {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tiDsP8gRcg .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-tiDsP8gRcg .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-tiDsP8gRcg .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #04315f;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  background: none;
  border: 1px solid #04315f;
  color: #04315f;
  content: "✓";
}
.cid-tiDsP8gRcg .mbr-section-title {
  color: #04315f;
}
.cid-tiDsP8gRcg .mbr-text {
  color: #04315f;
}
.cid-tiDsP8R6UV {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tiDsP8R6UV .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-tiDsP8R6UV .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-tiDsP8R6UV .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #04315f;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-tiDsP8R6UV .mbr-text {
  color: #04315f;
}
.cid-tiDsP9t7Ll {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tiDsP9t7Ll .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-tiDsP9t7Ll .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-tiDsP9t7Ll .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #04315f;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  background: none;
  border: 1px solid #04315f;
  color: #04315f;
  content: "✓";
}
.cid-tiDsP9t7Ll .mbr-section-title {
  color: #04315f;
}
.cid-tiDsP9t7Ll .mbr-text {
  color: #04315f;
}
.cid-tmMq2G6SUj {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tmMq2G6SUj .content-wrapper {
  background: #9cb7da;
}
@media (max-width: 991px) {
  .cid-tmMq2G6SUj .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-tmMq2G6SUj .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tmMq2G6SUj .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tmMq2G6SUj .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tmMq2G6SUj .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-tmMq2G6SUj .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-tmMq2G6SUj .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tmMq2G6SUj .card-title {
  color: #04315f;
}
.cid-tpfrLNC5Pc {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tpfrLNC5Pc .mbr-section-btn {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.cid-tiDsPa8u4w {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tiDsPa8u4w .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tiDsPa8u4w .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tiDsPa8u4w .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tiDsPa8u4w .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tiDsPa8u4w .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tiDsPa8u4w .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tiDsPa8u4w .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tiDsPa8u4w .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tiDsPa8u4w .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tiDsPa8u4w .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tiDsPa8u4w .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tiDsPa8u4w .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tiDsPa8u4w .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tiDsPa8u4w .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tiDsOtJl2C .navbar-dropdown {
  position: relative !important;
}
.cid-tiDsOtJl2C .navbar-dropdown {
  position: absolute !important;
}
.cid-tiDsOtJl2C .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-tiDsOtJl2C .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tiDsOtJl2C .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tiDsOtJl2C .dropdown-item:hover,
.cid-tiDsOtJl2C .dropdown-item:focus {
  background: #04315f !important;
  color: white !important;
}
.cid-tiDsOtJl2C .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tiDsOtJl2C .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tiDsOtJl2C .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tiDsOtJl2C .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tiDsOtJl2C .nav-link {
  position: relative;
}
.cid-tiDsOtJl2C .container {
  display: flex;
  margin: auto;
}
.cid-tiDsOtJl2C .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tiDsOtJl2C .dropdown-menu,
.cid-tiDsOtJl2C .navbar.opened {
  background: #fafafa !important;
}
.cid-tiDsOtJl2C .nav-item:focus,
.cid-tiDsOtJl2C .nav-link:focus {
  outline: none;
}
.cid-tiDsOtJl2C .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tiDsOtJl2C .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tiDsOtJl2C .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tiDsOtJl2C .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tiDsOtJl2C .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tiDsOtJl2C .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tiDsOtJl2C .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #fafafa;
}
.cid-tiDsOtJl2C .navbar.opened {
  transition: all 0.3s;
}
.cid-tiDsOtJl2C .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tiDsOtJl2C .navbar .navbar-logo img {
  width: auto;
}
.cid-tiDsOtJl2C .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tiDsOtJl2C .navbar.collapsed {
  justify-content: center;
}
.cid-tiDsOtJl2C .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tiDsOtJl2C .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tiDsOtJl2C .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tiDsOtJl2C .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tiDsOtJl2C .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tiDsOtJl2C .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-tiDsOtJl2C .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tiDsOtJl2C .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tiDsOtJl2C .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tiDsOtJl2C .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tiDsOtJl2C .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tiDsOtJl2C .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tiDsOtJl2C .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tiDsOtJl2C .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-tiDsOtJl2C .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tiDsOtJl2C .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tiDsOtJl2C .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tiDsOtJl2C .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tiDsOtJl2C .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tiDsOtJl2C .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tiDsOtJl2C .navbar.navbar-short {
  min-height: 60px;
}
.cid-tiDsOtJl2C .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tiDsOtJl2C .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tiDsOtJl2C .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tiDsOtJl2C .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tiDsOtJl2C .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tiDsOtJl2C .dropdown-item.active,
.cid-tiDsOtJl2C .dropdown-item:active {
  background-color: transparent;
}
.cid-tiDsOtJl2C .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tiDsOtJl2C .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tiDsOtJl2C .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tiDsOtJl2C .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-tiDsOtJl2C .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tiDsOtJl2C .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tiDsOtJl2C ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tiDsOtJl2C .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tiDsOtJl2C button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tiDsOtJl2C button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #05386b;
}
.cid-tiDsOtJl2C button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tiDsOtJl2C button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tiDsOtJl2C button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tiDsOtJl2C button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tiDsOtJl2C nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tiDsOtJl2C nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tiDsOtJl2C nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tiDsOtJl2C nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tiDsOtJl2C .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tiDsOtJl2C a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tiDsOtJl2C .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-tiDsOtJl2C .navbar {
    height: 70px;
  }
  .cid-tiDsOtJl2C .navbar.opened {
    height: auto;
  }
  .cid-tiDsOtJl2C .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tiDsOuCG33 {
  display: flex;
  background-image: url("../../../assets/images/mbr-1.jpg");
}
.cid-tiDsOuCG33 .mbr-overlay {
  background-color: #353535;
  opacity: 0.5;
}
.cid-tiDsOuCG33 .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-tiDsOuCG33 {
    align-items: flex-end;
  }
  .cid-tiDsOuCG33 .row {
    justify-content: flex-start;
  }
  .cid-tiDsOuCG33 .content-wrap {
    width: 51%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tiDsOuCG33 .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-tiDsOuCG33 {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tiDsOuCG33 .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tiDsOuCG33 .content-wrap {
    width: 100%;
  }
}
.cid-tiDsOuCG33 .mbr-section-title {
  color: #fafafa;
}
.cid-tly9Gi8b7Y {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tly9Gi8b7Y .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tly9Gi8b7Y img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tly9Gi8b7Y .text-wrapper {
    padding: 2rem;
  }
}
.cid-tly9Gi8b7Y .mbr-text {
  color: #04315f;
  text-align: right;
}
.cid-tiDsOwfeCH {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tiDsOwfeCH .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-tiDsOwfeCH .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-tiDsOwfeCH .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #04315f;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  background: none;
  border: 1px solid #04315f;
  color: #04315f;
  content: "✓";
}
.cid-tiDsOwfeCH .mbr-section-title {
  color: #04315f;
}
.cid-tiDsOwfeCH .mbr-text {
  color: #04315f;
}
.cid-tiDsOwMtex {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tiDsOwMtex .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-tiDsOwMtex .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-tiDsOwMtex .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #04315f;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-tiDsOwMtex .mbr-text {
  color: #04315f;
}
.cid-tiDsOxjAxG {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tiDsOxjAxG .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-tiDsOxjAxG .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-tiDsOxjAxG .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #04315f;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  background: none;
  border: 1px solid #04315f;
  color: #04315f;
  content: "✓";
}
.cid-tiDsOxjAxG .mbr-section-title {
  color: #04315f;
}
.cid-tiDsOxjAxG .mbr-text {
  color: #04315f;
}
.cid-tmMqgFGK6D {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tmMqgFGK6D .content-wrapper {
  background: #9cb7da;
}
@media (max-width: 991px) {
  .cid-tmMqgFGK6D .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-tmMqgFGK6D .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tmMqgFGK6D .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tmMqgFGK6D .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tmMqgFGK6D .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-tmMqgFGK6D .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-tmMqgFGK6D .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tmMqgFGK6D .card-title {
  color: #04315f;
}
.cid-tpfrGO2X3L {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tpfrGO2X3L .mbr-section-btn {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.cid-tiDsOxT961 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tiDsOxT961 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tiDsOxT961 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tiDsOxT961 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tiDsOxT961 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tiDsOxT961 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tiDsOxT961 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tiDsOxT961 .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tiDsOxT961 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tiDsOxT961 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tiDsOxT961 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tiDsOxT961 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tiDsOxT961 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tiDsOxT961 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tiDsOxT961 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sFAA5oUu2Y .navbar-dropdown {
  position: relative !important;
}
.cid-sFAA5oUu2Y .navbar-dropdown {
  position: absolute !important;
}
.cid-sFAA5oUu2Y .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-sFAA5oUu2Y .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sFAA5oUu2Y .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sFAA5oUu2Y .dropdown-item:hover,
.cid-sFAA5oUu2Y .dropdown-item:focus {
  background: #04315f !important;
  color: white !important;
}
.cid-sFAA5oUu2Y .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sFAA5oUu2Y .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sFAA5oUu2Y .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sFAA5oUu2Y .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sFAA5oUu2Y .nav-link {
  position: relative;
}
.cid-sFAA5oUu2Y .container {
  display: flex;
  margin: auto;
}
.cid-sFAA5oUu2Y .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sFAA5oUu2Y .dropdown-menu,
.cid-sFAA5oUu2Y .navbar.opened {
  background: #fafafa !important;
}
.cid-sFAA5oUu2Y .nav-item:focus,
.cid-sFAA5oUu2Y .nav-link:focus {
  outline: none;
}
.cid-sFAA5oUu2Y .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sFAA5oUu2Y .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sFAA5oUu2Y .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sFAA5oUu2Y .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sFAA5oUu2Y .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sFAA5oUu2Y .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sFAA5oUu2Y .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #fafafa;
}
.cid-sFAA5oUu2Y .navbar.opened {
  transition: all 0.3s;
}
.cid-sFAA5oUu2Y .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sFAA5oUu2Y .navbar .navbar-logo img {
  width: auto;
}
.cid-sFAA5oUu2Y .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sFAA5oUu2Y .navbar.collapsed {
  justify-content: center;
}
.cid-sFAA5oUu2Y .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sFAA5oUu2Y .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sFAA5oUu2Y .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sFAA5oUu2Y .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sFAA5oUu2Y .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sFAA5oUu2Y .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-sFAA5oUu2Y .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sFAA5oUu2Y .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sFAA5oUu2Y .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sFAA5oUu2Y .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sFAA5oUu2Y .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sFAA5oUu2Y .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sFAA5oUu2Y .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sFAA5oUu2Y .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-sFAA5oUu2Y .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sFAA5oUu2Y .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sFAA5oUu2Y .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sFAA5oUu2Y .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sFAA5oUu2Y .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sFAA5oUu2Y .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sFAA5oUu2Y .navbar.navbar-short {
  min-height: 60px;
}
.cid-sFAA5oUu2Y .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sFAA5oUu2Y .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sFAA5oUu2Y .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sFAA5oUu2Y .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sFAA5oUu2Y .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sFAA5oUu2Y .dropdown-item.active,
.cid-sFAA5oUu2Y .dropdown-item:active {
  background-color: transparent;
}
.cid-sFAA5oUu2Y .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sFAA5oUu2Y .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sFAA5oUu2Y .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sFAA5oUu2Y .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-sFAA5oUu2Y .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sFAA5oUu2Y .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sFAA5oUu2Y ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sFAA5oUu2Y .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sFAA5oUu2Y button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sFAA5oUu2Y button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #05386b;
}
.cid-sFAA5oUu2Y button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sFAA5oUu2Y button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFAA5oUu2Y button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFAA5oUu2Y button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sFAA5oUu2Y nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFAA5oUu2Y nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sFAA5oUu2Y nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sFAA5oUu2Y nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFAA5oUu2Y .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sFAA5oUu2Y a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sFAA5oUu2Y .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-sFAA5oUu2Y .navbar {
    height: 70px;
  }
  .cid-sFAA5oUu2Y .navbar.opened {
    height: auto;
  }
  .cid-sFAA5oUu2Y .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-thuWVCnuuE {
  background-image: url("../../../assets/images/n0i0240.jpeg");
}
.cid-thuWVCnuuE .mbr-section-title {
  color: #04315f;
}
.cid-thuWVCnuuE .mbr-text,
.cid-thuWVCnuuE .mbr-section-btn {
  color: #04315f;
}
.cid-thAUvriMQZ {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-thAUvriMQZ img,
.cid-thAUvriMQZ .item-img {
  width: 100%;
}
.cid-thAUvriMQZ .item:focus,
.cid-thAUvriMQZ span:focus {
  outline: none;
}
.cid-thAUvriMQZ .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-thAUvriMQZ .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #d7e4fc;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-thAUvriMQZ .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-thAUvriMQZ .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-thAUvriMQZ .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-thAUvriMQZ .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-thAUvriMQZ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-thAUvriMQZ .mbr-section-title {
  color: #04315f;
}
.cid-thAUvriMQZ .mbr-text,
.cid-thAUvriMQZ .mbr-section-btn {
  text-align: left;
}
.cid-thAUvriMQZ .item-title {
  text-align: left;
  color: #04315f;
}
.cid-thAUvriMQZ .item-subtitle {
  text-align: left;
  color: #084f97;
}
.cid-thSeIZVBoM {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-thSeIZVBoM img,
.cid-thSeIZVBoM .item-img {
  width: 100%;
}
.cid-thSeIZVBoM .item:focus,
.cid-thSeIZVBoM span:focus {
  outline: none;
}
.cid-thSeIZVBoM .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-thSeIZVBoM .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #d7e4fc;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-thSeIZVBoM .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-thSeIZVBoM .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-thSeIZVBoM .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-thSeIZVBoM .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-thSeIZVBoM .mbr-section-btn {
  margin-top: auto !important;
}
.cid-thSeIZVBoM .mbr-section-title {
  color: #04315f;
}
.cid-thSeIZVBoM .mbr-text,
.cid-thSeIZVBoM .mbr-section-btn {
  text-align: left;
}
.cid-thSeIZVBoM .item-title {
  text-align: left;
  color: #04315f;
}
.cid-thSeIZVBoM .item-subtitle {
  text-align: left;
  color: #04315f;
}
.cid-thSeK7TOPn {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-thSeK7TOPn img,
.cid-thSeK7TOPn .item-img {
  width: 100%;
}
.cid-thSeK7TOPn .item:focus,
.cid-thSeK7TOPn span:focus {
  outline: none;
}
.cid-thSeK7TOPn .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-thSeK7TOPn .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #d7e4fc;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-thSeK7TOPn .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-thSeK7TOPn .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-thSeK7TOPn .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-thSeK7TOPn .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-thSeK7TOPn .mbr-section-btn {
  margin-top: auto !important;
}
.cid-thSeK7TOPn .mbr-section-title {
  color: #04315f;
}
.cid-thSeK7TOPn .mbr-text,
.cid-thSeK7TOPn .mbr-section-btn {
  text-align: left;
}
.cid-thSeK7TOPn .item-title {
  text-align: left;
  color: #04315f;
}
.cid-thSeK7TOPn .item-subtitle {
  text-align: left;
  color: #084f97;
}
.cid-thSeKQ6P1v {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-thSeKQ6P1v img,
.cid-thSeKQ6P1v .item-img {
  width: 100%;
}
.cid-thSeKQ6P1v .item:focus,
.cid-thSeKQ6P1v span:focus {
  outline: none;
}
.cid-thSeKQ6P1v .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-thSeKQ6P1v .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #d7e4fc;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-thSeKQ6P1v .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-thSeKQ6P1v .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-thSeKQ6P1v .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-thSeKQ6P1v .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-thSeKQ6P1v .mbr-section-btn {
  margin-top: auto !important;
}
.cid-thSeKQ6P1v .mbr-section-title {
  color: #04315f;
}
.cid-thSeKQ6P1v .mbr-text,
.cid-thSeKQ6P1v .mbr-section-btn {
  text-align: left;
}
.cid-thSeKQ6P1v .item-title {
  text-align: left;
  color: #04315f;
}
.cid-thSeKQ6P1v .item-subtitle {
  text-align: left;
  color: #084f97;
}
.cid-tlh3ttnHfy {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-tlh3ttnHfy .mbr-section-subtitle {
  color: #04315f;
}
.cid-thj5R7fzPY {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-thj5R7fzPY .row-links {
  width: 100%;
  justify-content: center;
}
.cid-thj5R7fzPY .social-row {
  width: 100%;
  justify-content: center;
}
.cid-thj5R7fzPY .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-thj5R7fzPY .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-thj5R7fzPY .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-thj5R7fzPY .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-thj5R7fzPY .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-thj5R7fzPY .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-thj5R7fzPY .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-thj5R7fzPY .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-thj5R7fzPY .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-thj5R7fzPY .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-thj5R7fzPY .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-thj5R7fzPY .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tiDpxWuphG .navbar-dropdown {
  position: relative !important;
}
.cid-tiDpxWuphG .navbar-dropdown {
  position: absolute !important;
}
.cid-tiDpxWuphG .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-tiDpxWuphG .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tiDpxWuphG .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tiDpxWuphG .dropdown-item:hover,
.cid-tiDpxWuphG .dropdown-item:focus {
  background: #04315f !important;
  color: white !important;
}
.cid-tiDpxWuphG .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tiDpxWuphG .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tiDpxWuphG .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tiDpxWuphG .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tiDpxWuphG .nav-link {
  position: relative;
}
.cid-tiDpxWuphG .container {
  display: flex;
  margin: auto;
}
.cid-tiDpxWuphG .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tiDpxWuphG .dropdown-menu,
.cid-tiDpxWuphG .navbar.opened {
  background: #fafafa !important;
}
.cid-tiDpxWuphG .nav-item:focus,
.cid-tiDpxWuphG .nav-link:focus {
  outline: none;
}
.cid-tiDpxWuphG .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tiDpxWuphG .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tiDpxWuphG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tiDpxWuphG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tiDpxWuphG .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tiDpxWuphG .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tiDpxWuphG .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #fafafa;
}
.cid-tiDpxWuphG .navbar.opened {
  transition: all 0.3s;
}
.cid-tiDpxWuphG .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tiDpxWuphG .navbar .navbar-logo img {
  width: auto;
}
.cid-tiDpxWuphG .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tiDpxWuphG .navbar.collapsed {
  justify-content: center;
}
.cid-tiDpxWuphG .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tiDpxWuphG .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tiDpxWuphG .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tiDpxWuphG .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tiDpxWuphG .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tiDpxWuphG .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-tiDpxWuphG .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tiDpxWuphG .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tiDpxWuphG .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tiDpxWuphG .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tiDpxWuphG .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tiDpxWuphG .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tiDpxWuphG .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tiDpxWuphG .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-tiDpxWuphG .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tiDpxWuphG .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tiDpxWuphG .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tiDpxWuphG .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tiDpxWuphG .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tiDpxWuphG .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tiDpxWuphG .navbar.navbar-short {
  min-height: 60px;
}
.cid-tiDpxWuphG .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tiDpxWuphG .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tiDpxWuphG .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tiDpxWuphG .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tiDpxWuphG .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tiDpxWuphG .dropdown-item.active,
.cid-tiDpxWuphG .dropdown-item:active {
  background-color: transparent;
}
.cid-tiDpxWuphG .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tiDpxWuphG .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tiDpxWuphG .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tiDpxWuphG .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-tiDpxWuphG .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tiDpxWuphG .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tiDpxWuphG ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tiDpxWuphG .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tiDpxWuphG button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tiDpxWuphG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #05386b;
}
.cid-tiDpxWuphG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tiDpxWuphG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tiDpxWuphG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tiDpxWuphG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tiDpxWuphG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tiDpxWuphG nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tiDpxWuphG nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tiDpxWuphG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tiDpxWuphG .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tiDpxWuphG a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tiDpxWuphG .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-tiDpxWuphG .navbar {
    height: 70px;
  }
  .cid-tiDpxWuphG .navbar.opened {
    height: auto;
  }
  .cid-tiDpxWuphG .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tiDpxX9dW7 {
  display: flex;
  background-image: url("../../../assets/images/mbr-1.jpg");
}
.cid-tiDpxX9dW7 .mbr-overlay {
  background-color: #353535;
  opacity: 0.5;
}
.cid-tiDpxX9dW7 .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-tiDpxX9dW7 {
    align-items: flex-end;
  }
  .cid-tiDpxX9dW7 .row {
    justify-content: flex-start;
  }
  .cid-tiDpxX9dW7 .content-wrap {
    width: 79%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tiDpxX9dW7 .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-tiDpxX9dW7 {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tiDpxX9dW7 .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tiDpxX9dW7 .content-wrap {
    width: 100%;
  }
}
.cid-tiDpxX9dW7 .mbr-section-title {
  color: #fafafa;
}
.cid-tlyd0Ssmd2 {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tlyd0Ssmd2 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tlyd0Ssmd2 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tlyd0Ssmd2 .text-wrapper {
    padding: 2rem;
  }
}
.cid-tlyd0Ssmd2 .mbr-text {
  color: #04315f;
  text-align: right;
}
.cid-tiDpxYwUpQ {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tiDpxYwUpQ .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-tiDpxYwUpQ .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-tiDpxYwUpQ .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #04315f;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  background: none;
  border: 1px solid #04315f;
  color: #04315f;
  content: "✓";
}
.cid-tiDpxYwUpQ .mbr-section-title {
  color: #04315f;
}
.cid-tiDpxYwUpQ .mbr-text {
  color: #04315f;
}
.cid-tiDpxZ67MC {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tiDpxZ67MC .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-tiDpxZ67MC .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-tiDpxZ67MC .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #04315f;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-tiDpxZ67MC .mbr-text {
  color: #04315f;
}
.cid-tiDpxZJxDX {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tiDpxZJxDX .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-tiDpxZJxDX .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-tiDpxZJxDX .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #04315f;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  background: none;
  border: 1px solid #04315f;
  color: #04315f;
  content: "✓";
}
.cid-tiDpxZJxDX .mbr-section-title {
  color: #04315f;
}
.cid-tiDpxZJxDX .mbr-text {
  color: #04315f;
}
.cid-tmMrs8iQw9 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tmMrs8iQw9 .content-wrapper {
  background: #9cb7da;
}
@media (max-width: 991px) {
  .cid-tmMrs8iQw9 .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-tmMrs8iQw9 .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tmMrs8iQw9 .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tmMrs8iQw9 .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tmMrs8iQw9 .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-tmMrs8iQw9 .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-tmMrs8iQw9 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tmMrs8iQw9 .card-title {
  color: #04315f;
}
.cid-tpfreaiVMO {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tpfreaiVMO .mbr-section-btn {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.cid-tiDpy0kPu2 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tiDpy0kPu2 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tiDpy0kPu2 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tiDpy0kPu2 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tiDpy0kPu2 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tiDpy0kPu2 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tiDpy0kPu2 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tiDpy0kPu2 .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tiDpy0kPu2 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tiDpy0kPu2 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tiDpy0kPu2 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tiDpy0kPu2 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tiDpy0kPu2 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tiDpy0kPu2 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tiDpy0kPu2 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tifLLfAt21 .navbar-dropdown {
  position: relative !important;
}
.cid-tifLLfAt21 .navbar-dropdown {
  position: absolute !important;
}
.cid-tifLLfAt21 .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-tifLLfAt21 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tifLLfAt21 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tifLLfAt21 .dropdown-item:hover,
.cid-tifLLfAt21 .dropdown-item:focus {
  background: #04315f !important;
  color: white !important;
}
.cid-tifLLfAt21 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tifLLfAt21 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tifLLfAt21 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tifLLfAt21 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tifLLfAt21 .nav-link {
  position: relative;
}
.cid-tifLLfAt21 .container {
  display: flex;
  margin: auto;
}
.cid-tifLLfAt21 .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tifLLfAt21 .dropdown-menu,
.cid-tifLLfAt21 .navbar.opened {
  background: #fafafa !important;
}
.cid-tifLLfAt21 .nav-item:focus,
.cid-tifLLfAt21 .nav-link:focus {
  outline: none;
}
.cid-tifLLfAt21 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tifLLfAt21 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tifLLfAt21 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tifLLfAt21 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tifLLfAt21 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tifLLfAt21 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tifLLfAt21 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #fafafa;
}
.cid-tifLLfAt21 .navbar.opened {
  transition: all 0.3s;
}
.cid-tifLLfAt21 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tifLLfAt21 .navbar .navbar-logo img {
  width: auto;
}
.cid-tifLLfAt21 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tifLLfAt21 .navbar.collapsed {
  justify-content: center;
}
.cid-tifLLfAt21 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tifLLfAt21 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tifLLfAt21 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tifLLfAt21 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tifLLfAt21 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tifLLfAt21 .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-tifLLfAt21 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tifLLfAt21 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tifLLfAt21 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tifLLfAt21 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tifLLfAt21 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tifLLfAt21 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tifLLfAt21 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tifLLfAt21 .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-tifLLfAt21 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tifLLfAt21 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tifLLfAt21 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tifLLfAt21 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tifLLfAt21 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tifLLfAt21 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tifLLfAt21 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tifLLfAt21 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tifLLfAt21 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tifLLfAt21 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tifLLfAt21 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tifLLfAt21 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tifLLfAt21 .dropdown-item.active,
.cid-tifLLfAt21 .dropdown-item:active {
  background-color: transparent;
}
.cid-tifLLfAt21 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tifLLfAt21 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tifLLfAt21 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tifLLfAt21 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-tifLLfAt21 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tifLLfAt21 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tifLLfAt21 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tifLLfAt21 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tifLLfAt21 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tifLLfAt21 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #05386b;
}
.cid-tifLLfAt21 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tifLLfAt21 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tifLLfAt21 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tifLLfAt21 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tifLLfAt21 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tifLLfAt21 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tifLLfAt21 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tifLLfAt21 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tifLLfAt21 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tifLLfAt21 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tifLLfAt21 .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-tifLLfAt21 .navbar {
    height: 70px;
  }
  .cid-tifLLfAt21 .navbar.opened {
    height: auto;
  }
  .cid-tifLLfAt21 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tifLLghXh2 {
  display: flex;
  background-image: url("../../../assets/images/mbr-1.jpg");
}
.cid-tifLLghXh2 .mbr-overlay {
  background-color: #353535;
  opacity: 0.5;
}
.cid-tifLLghXh2 .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-tifLLghXh2 {
    align-items: flex-end;
  }
  .cid-tifLLghXh2 .row {
    justify-content: flex-start;
  }
  .cid-tifLLghXh2 .content-wrap {
    width: 51%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tifLLghXh2 .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-tifLLghXh2 {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tifLLghXh2 .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tifLLghXh2 .content-wrap {
    width: 100%;
  }
}
.cid-tifLLghXh2 .mbr-section-title {
  color: #fafafa;
}
.cid-tlydKRcmch {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tlydKRcmch .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tlydKRcmch img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tlydKRcmch .text-wrapper {
    padding: 2rem;
  }
}
.cid-tlydKRcmch .mbr-text {
  color: #04315f;
  text-align: right;
}
.cid-tifLLhxr6r {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tifLLhxr6r .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-tifLLhxr6r .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-tifLLhxr6r .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #04315f;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  background: none;
  border: 1px solid #04315f;
  color: #04315f;
  content: "✓";
}
.cid-tifLLhxr6r .mbr-section-title {
  color: #04315f;
}
.cid-tifLLhxr6r .mbr-text {
  color: #04315f;
}
.cid-tifLLiay1M {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tifLLiay1M .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-tifLLiay1M .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-tifLLiay1M .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #04315f;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-tifLLiay1M .mbr-text {
  color: #04315f;
}
.cid-tifLLiKTe9 {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tifLLiKTe9 .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-tifLLiKTe9 .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-tifLLiKTe9 .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #04315f;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  background: none;
  border: 1px solid #04315f;
  color: #04315f;
  content: "✓";
}
.cid-tifLLiKTe9 .mbr-section-title {
  color: #04315f;
}
.cid-tifLLiKTe9 .mbr-text {
  color: #04315f;
}
.cid-tmMrNowgnQ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tmMrNowgnQ .content-wrapper {
  background: #9cb7da;
}
@media (max-width: 991px) {
  .cid-tmMrNowgnQ .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-tmMrNowgnQ .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tmMrNowgnQ .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tmMrNowgnQ .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tmMrNowgnQ .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-tmMrNowgnQ .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-tmMrNowgnQ .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tmMrNowgnQ .card-title {
  color: #04315f;
}
.cid-tpfr7f5IJw {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tpfr7f5IJw .mbr-section-btn {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.cid-tifLLjjkab {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tifLLjjkab .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tifLLjjkab .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tifLLjjkab .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tifLLjjkab .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tifLLjjkab .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tifLLjjkab .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tifLLjjkab .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tifLLjjkab .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tifLLjjkab .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tifLLjjkab .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tifLLjjkab .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tifLLjjkab .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tifLLjjkab .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tifLLjjkab .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sFAA5oUu2Y .navbar-dropdown {
  position: relative !important;
}
.cid-sFAA5oUu2Y .navbar-dropdown {
  position: absolute !important;
}
.cid-sFAA5oUu2Y .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-sFAA5oUu2Y .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sFAA5oUu2Y .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sFAA5oUu2Y .dropdown-item:hover,
.cid-sFAA5oUu2Y .dropdown-item:focus {
  background: #04315f !important;
  color: white !important;
}
.cid-sFAA5oUu2Y .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sFAA5oUu2Y .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sFAA5oUu2Y .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sFAA5oUu2Y .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sFAA5oUu2Y .nav-link {
  position: relative;
}
.cid-sFAA5oUu2Y .container {
  display: flex;
  margin: auto;
}
.cid-sFAA5oUu2Y .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sFAA5oUu2Y .dropdown-menu,
.cid-sFAA5oUu2Y .navbar.opened {
  background: #fafafa !important;
}
.cid-sFAA5oUu2Y .nav-item:focus,
.cid-sFAA5oUu2Y .nav-link:focus {
  outline: none;
}
.cid-sFAA5oUu2Y .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sFAA5oUu2Y .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sFAA5oUu2Y .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sFAA5oUu2Y .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sFAA5oUu2Y .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sFAA5oUu2Y .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sFAA5oUu2Y .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #fafafa;
}
.cid-sFAA5oUu2Y .navbar.opened {
  transition: all 0.3s;
}
.cid-sFAA5oUu2Y .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sFAA5oUu2Y .navbar .navbar-logo img {
  width: auto;
}
.cid-sFAA5oUu2Y .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sFAA5oUu2Y .navbar.collapsed {
  justify-content: center;
}
.cid-sFAA5oUu2Y .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sFAA5oUu2Y .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sFAA5oUu2Y .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sFAA5oUu2Y .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sFAA5oUu2Y .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sFAA5oUu2Y .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-sFAA5oUu2Y .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sFAA5oUu2Y .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sFAA5oUu2Y .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sFAA5oUu2Y .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sFAA5oUu2Y .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sFAA5oUu2Y .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sFAA5oUu2Y .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sFAA5oUu2Y .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-sFAA5oUu2Y .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sFAA5oUu2Y .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sFAA5oUu2Y .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sFAA5oUu2Y .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sFAA5oUu2Y .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sFAA5oUu2Y .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sFAA5oUu2Y .navbar.navbar-short {
  min-height: 60px;
}
.cid-sFAA5oUu2Y .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sFAA5oUu2Y .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sFAA5oUu2Y .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sFAA5oUu2Y .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sFAA5oUu2Y .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sFAA5oUu2Y .dropdown-item.active,
.cid-sFAA5oUu2Y .dropdown-item:active {
  background-color: transparent;
}
.cid-sFAA5oUu2Y .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sFAA5oUu2Y .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sFAA5oUu2Y .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sFAA5oUu2Y .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-sFAA5oUu2Y .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sFAA5oUu2Y .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sFAA5oUu2Y ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sFAA5oUu2Y .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sFAA5oUu2Y button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sFAA5oUu2Y button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #05386b;
}
.cid-sFAA5oUu2Y button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sFAA5oUu2Y button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFAA5oUu2Y button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFAA5oUu2Y button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sFAA5oUu2Y nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFAA5oUu2Y nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sFAA5oUu2Y nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sFAA5oUu2Y nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFAA5oUu2Y .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sFAA5oUu2Y a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sFAA5oUu2Y .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-sFAA5oUu2Y .navbar {
    height: 70px;
  }
  .cid-sFAA5oUu2Y .navbar.opened {
    height: auto;
  }
  .cid-sFAA5oUu2Y .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-thSjCqlq6k {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-thSjCqlq6k .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-thSjCqlq6k .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #d7e4fc;
}
@media (max-width: 991px) {
  .cid-thSjCqlq6k .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-thSjCqlq6k .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-thSjCqlq6k .mbr-iconfont {
  font-size: 3rem;
  padding-right: 1.5rem;
  color: #04315f;
}
.cid-thSjCqlq6k .mbr-section-title {
  color: #04315f;
}
.cid-thSjCqlq6k .card-title {
  color: #05386b;
}
.cid-tmMtvH2VU0 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/mbr-3.jpeg");
}
.cid-tmMtvH2VU0 .mbr-overlay {
  background-color: #04315f;
  opacity: 0.6;
}
.cid-tmMtvH2VU0 form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-tmMtvH2VU0 form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-tmMtvH2VU0 form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tmMtvH2VU0 .mbr-section-title {
  color: #d7e4fc;
}
.cid-thj5R7fzPY {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-thj5R7fzPY .row-links {
  width: 100%;
  justify-content: center;
}
.cid-thj5R7fzPY .social-row {
  width: 100%;
  justify-content: center;
}
.cid-thj5R7fzPY .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-thj5R7fzPY .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-thj5R7fzPY .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-thj5R7fzPY .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-thj5R7fzPY .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-thj5R7fzPY .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-thj5R7fzPY .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-thj5R7fzPY .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-thj5R7fzPY .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-thj5R7fzPY .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-thj5R7fzPY .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-thj5R7fzPY .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sFAA5oUu2Y .navbar-dropdown {
  position: relative !important;
}
.cid-sFAA5oUu2Y .navbar-dropdown {
  position: absolute !important;
}
.cid-sFAA5oUu2Y .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-sFAA5oUu2Y .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sFAA5oUu2Y .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sFAA5oUu2Y .dropdown-item:hover,
.cid-sFAA5oUu2Y .dropdown-item:focus {
  background: #04315f !important;
  color: white !important;
}
.cid-sFAA5oUu2Y .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sFAA5oUu2Y .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sFAA5oUu2Y .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sFAA5oUu2Y .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sFAA5oUu2Y .nav-link {
  position: relative;
}
.cid-sFAA5oUu2Y .container {
  display: flex;
  margin: auto;
}
.cid-sFAA5oUu2Y .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sFAA5oUu2Y .dropdown-menu,
.cid-sFAA5oUu2Y .navbar.opened {
  background: #fafafa !important;
}
.cid-sFAA5oUu2Y .nav-item:focus,
.cid-sFAA5oUu2Y .nav-link:focus {
  outline: none;
}
.cid-sFAA5oUu2Y .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sFAA5oUu2Y .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sFAA5oUu2Y .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sFAA5oUu2Y .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sFAA5oUu2Y .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sFAA5oUu2Y .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sFAA5oUu2Y .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #fafafa;
}
.cid-sFAA5oUu2Y .navbar.opened {
  transition: all 0.3s;
}
.cid-sFAA5oUu2Y .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sFAA5oUu2Y .navbar .navbar-logo img {
  width: auto;
}
.cid-sFAA5oUu2Y .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sFAA5oUu2Y .navbar.collapsed {
  justify-content: center;
}
.cid-sFAA5oUu2Y .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sFAA5oUu2Y .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sFAA5oUu2Y .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sFAA5oUu2Y .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sFAA5oUu2Y .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sFAA5oUu2Y .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-sFAA5oUu2Y .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sFAA5oUu2Y .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sFAA5oUu2Y .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sFAA5oUu2Y .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sFAA5oUu2Y .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sFAA5oUu2Y .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sFAA5oUu2Y .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sFAA5oUu2Y .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-sFAA5oUu2Y .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sFAA5oUu2Y .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sFAA5oUu2Y .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sFAA5oUu2Y .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sFAA5oUu2Y .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sFAA5oUu2Y .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sFAA5oUu2Y .navbar.navbar-short {
  min-height: 60px;
}
.cid-sFAA5oUu2Y .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sFAA5oUu2Y .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sFAA5oUu2Y .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sFAA5oUu2Y .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sFAA5oUu2Y .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sFAA5oUu2Y .dropdown-item.active,
.cid-sFAA5oUu2Y .dropdown-item:active {
  background-color: transparent;
}
.cid-sFAA5oUu2Y .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sFAA5oUu2Y .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sFAA5oUu2Y .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sFAA5oUu2Y .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-sFAA5oUu2Y .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sFAA5oUu2Y .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sFAA5oUu2Y ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sFAA5oUu2Y .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sFAA5oUu2Y button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sFAA5oUu2Y button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #05386b;
}
.cid-sFAA5oUu2Y button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sFAA5oUu2Y button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFAA5oUu2Y button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFAA5oUu2Y button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sFAA5oUu2Y nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFAA5oUu2Y nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sFAA5oUu2Y nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sFAA5oUu2Y nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFAA5oUu2Y .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sFAA5oUu2Y a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sFAA5oUu2Y .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-sFAA5oUu2Y .navbar {
    height: 70px;
  }
  .cid-sFAA5oUu2Y .navbar.opened {
    height: auto;
  }
  .cid-sFAA5oUu2Y .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-thiQZx1mF1 {
  background-image: url("../../../assets/images/richslide-3-1920x1100.jpeg");
}
.cid-thiQZx1mF1 .mbr-section-title {
  color: #fafafa;
}
.cid-thj1RvOGpF {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-thj1RvOGpF .mbr-text {
  color: #04315f;
  text-align: center;
}
.cid-thj1SbwhZ3 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-thj1SbwhZ3 .mbr-text {
  color: #04315f;
  text-align: center;
}
.cid-thj1T6Mddt {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-thj1T6Mddt .mbr-text {
  color: #04315f;
  text-align: center;
}
.cid-thj2YNTKGB {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-thj2YNTKGB .mbr-section-title {
  color: #04315f;
}
.cid-thj3HAmNyd {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-thj3HAmNyd .mbr-section-subtitle {
  color: #04315f;
}
.cid-thj5R7fzPY {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-thj5R7fzPY .row-links {
  width: 100%;
  justify-content: center;
}
.cid-thj5R7fzPY .social-row {
  width: 100%;
  justify-content: center;
}
.cid-thj5R7fzPY .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-thj5R7fzPY .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-thj5R7fzPY .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-thj5R7fzPY .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-thj5R7fzPY .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-thj5R7fzPY .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-thj5R7fzPY .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-thj5R7fzPY .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-thj5R7fzPY .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-thj5R7fzPY .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-thj5R7fzPY .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-thj5R7fzPY .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tkCtrinmtm .navbar-dropdown {
  position: relative !important;
}
.cid-tkCtrinmtm .navbar-dropdown {
  position: absolute !important;
}
.cid-tkCtrinmtm .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-tkCtrinmtm .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tkCtrinmtm .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tkCtrinmtm .dropdown-item:hover,
.cid-tkCtrinmtm .dropdown-item:focus {
  background: #04315f !important;
  color: white !important;
}
.cid-tkCtrinmtm .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tkCtrinmtm .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tkCtrinmtm .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tkCtrinmtm .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tkCtrinmtm .nav-link {
  position: relative;
}
.cid-tkCtrinmtm .container {
  display: flex;
  margin: auto;
}
.cid-tkCtrinmtm .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tkCtrinmtm .dropdown-menu,
.cid-tkCtrinmtm .navbar.opened {
  background: #fafafa !important;
}
.cid-tkCtrinmtm .nav-item:focus,
.cid-tkCtrinmtm .nav-link:focus {
  outline: none;
}
.cid-tkCtrinmtm .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tkCtrinmtm .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tkCtrinmtm .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tkCtrinmtm .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tkCtrinmtm .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tkCtrinmtm .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tkCtrinmtm .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #fafafa;
}
.cid-tkCtrinmtm .navbar.opened {
  transition: all 0.3s;
}
.cid-tkCtrinmtm .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tkCtrinmtm .navbar .navbar-logo img {
  width: auto;
}
.cid-tkCtrinmtm .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tkCtrinmtm .navbar.collapsed {
  justify-content: center;
}
.cid-tkCtrinmtm .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tkCtrinmtm .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tkCtrinmtm .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tkCtrinmtm .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tkCtrinmtm .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tkCtrinmtm .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-tkCtrinmtm .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tkCtrinmtm .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tkCtrinmtm .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tkCtrinmtm .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tkCtrinmtm .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tkCtrinmtm .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tkCtrinmtm .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tkCtrinmtm .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-tkCtrinmtm .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tkCtrinmtm .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tkCtrinmtm .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tkCtrinmtm .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tkCtrinmtm .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tkCtrinmtm .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tkCtrinmtm .navbar.navbar-short {
  min-height: 60px;
}
.cid-tkCtrinmtm .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tkCtrinmtm .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tkCtrinmtm .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tkCtrinmtm .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tkCtrinmtm .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tkCtrinmtm .dropdown-item.active,
.cid-tkCtrinmtm .dropdown-item:active {
  background-color: transparent;
}
.cid-tkCtrinmtm .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tkCtrinmtm .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tkCtrinmtm .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tkCtrinmtm .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-tkCtrinmtm .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tkCtrinmtm .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tkCtrinmtm ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tkCtrinmtm .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tkCtrinmtm button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tkCtrinmtm button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #05386b;
}
.cid-tkCtrinmtm button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tkCtrinmtm button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tkCtrinmtm button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tkCtrinmtm button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tkCtrinmtm nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tkCtrinmtm nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tkCtrinmtm nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tkCtrinmtm nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tkCtrinmtm .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tkCtrinmtm a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tkCtrinmtm .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-tkCtrinmtm .navbar {
    height: 70px;
  }
  .cid-tkCtrinmtm .navbar.opened {
    height: auto;
  }
  .cid-tkCtrinmtm .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tkCtrj6YaT {
  display: flex;
  background-image: url("../../../assets/images/mbr-1.jpg");
}
.cid-tkCtrj6YaT .mbr-overlay {
  background-color: #353535;
  opacity: 0.5;
}
.cid-tkCtrj6YaT .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-tkCtrj6YaT {
    align-items: flex-end;
  }
  .cid-tkCtrj6YaT .row {
    justify-content: flex-start;
  }
  .cid-tkCtrj6YaT .content-wrap {
    width: 61%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tkCtrj6YaT .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-tkCtrj6YaT {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tkCtrj6YaT .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tkCtrj6YaT .content-wrap {
    width: 100%;
  }
}
.cid-tkCtrj6YaT .mbr-section-title {
  color: #fafafa;
}
.cid-tlydpwFwQX {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tlydpwFwQX .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tlydpwFwQX img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tlydpwFwQX .text-wrapper {
    padding: 2rem;
  }
}
.cid-tlydpwFwQX .mbr-text {
  color: #04315f;
  text-align: right;
}
.cid-tpfliOydbU {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tpfliOydbU .mbr-section-title {
  color: #04315f;
}
.cid-tpfliOydbU .mbr-text,
.cid-tpfliOydbU .link {
  text-align: center;
  color: #04315f;
}
.cid-tkCtrkj0Zn {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tkCtrkj0Zn .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-tkCtrkj0Zn .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-tkCtrkj0Zn .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #04315f;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  background: none;
  border: 1px solid #04315f;
  color: #04315f;
  content: "✓";
}
.cid-tkCtrkj0Zn .mbr-section-title {
  color: #04315f;
}
.cid-tkCtrkj0Zn .mbr-text {
  color: #04315f;
}
.cid-tkCtrkVcq9 {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tkCtrkVcq9 .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-tkCtrkVcq9 .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-tkCtrkVcq9 .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #04315f;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-tkCtrkVcq9 .mbr-text {
  color: #04315f;
}
.cid-tkCtrlsVkK {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tkCtrlsVkK .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-tkCtrlsVkK .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-tkCtrlsVkK .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #04315f;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  background: none;
  border: 1px solid #04315f;
  color: #04315f;
  content: "✓";
}
.cid-tkCtrlsVkK .mbr-section-title {
  color: #04315f;
}
.cid-tkCtrlsVkK .mbr-text {
  color: #04315f;
}
.cid-tmMrDtEUcY {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tmMrDtEUcY .content-wrapper {
  background: #9cb7da;
}
@media (max-width: 991px) {
  .cid-tmMrDtEUcY .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-tmMrDtEUcY .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tmMrDtEUcY .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tmMrDtEUcY .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tmMrDtEUcY .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-tmMrDtEUcY .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-tmMrDtEUcY .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tmMrDtEUcY .card-title {
  color: #04315f;
}
.cid-tkCtrm7325 {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tkCtrm7325 .mbr-section-btn {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.cid-tkCtrmERWP {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tkCtrmERWP .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tkCtrmERWP .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tkCtrmERWP .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tkCtrmERWP .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tkCtrmERWP .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tkCtrmERWP .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tkCtrmERWP .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tkCtrmERWP .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tkCtrmERWP .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tkCtrmERWP .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tkCtrmERWP .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tkCtrmERWP .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tkCtrmERWP .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tkCtrmERWP .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sFAA5oUu2Y .navbar-dropdown {
  position: relative !important;
}
.cid-sFAA5oUu2Y .navbar-dropdown {
  position: absolute !important;
}
.cid-sFAA5oUu2Y .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-sFAA5oUu2Y .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sFAA5oUu2Y .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sFAA5oUu2Y .dropdown-item:hover,
.cid-sFAA5oUu2Y .dropdown-item:focus {
  background: #04315f !important;
  color: white !important;
}
.cid-sFAA5oUu2Y .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sFAA5oUu2Y .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sFAA5oUu2Y .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sFAA5oUu2Y .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sFAA5oUu2Y .nav-link {
  position: relative;
}
.cid-sFAA5oUu2Y .container {
  display: flex;
  margin: auto;
}
.cid-sFAA5oUu2Y .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sFAA5oUu2Y .dropdown-menu,
.cid-sFAA5oUu2Y .navbar.opened {
  background: #fafafa !important;
}
.cid-sFAA5oUu2Y .nav-item:focus,
.cid-sFAA5oUu2Y .nav-link:focus {
  outline: none;
}
.cid-sFAA5oUu2Y .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sFAA5oUu2Y .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sFAA5oUu2Y .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sFAA5oUu2Y .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sFAA5oUu2Y .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sFAA5oUu2Y .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sFAA5oUu2Y .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #fafafa;
}
.cid-sFAA5oUu2Y .navbar.opened {
  transition: all 0.3s;
}
.cid-sFAA5oUu2Y .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sFAA5oUu2Y .navbar .navbar-logo img {
  width: auto;
}
.cid-sFAA5oUu2Y .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sFAA5oUu2Y .navbar.collapsed {
  justify-content: center;
}
.cid-sFAA5oUu2Y .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sFAA5oUu2Y .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sFAA5oUu2Y .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sFAA5oUu2Y .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sFAA5oUu2Y .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sFAA5oUu2Y .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-sFAA5oUu2Y .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sFAA5oUu2Y .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sFAA5oUu2Y .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sFAA5oUu2Y .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sFAA5oUu2Y .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sFAA5oUu2Y .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sFAA5oUu2Y .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sFAA5oUu2Y .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-sFAA5oUu2Y .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sFAA5oUu2Y .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sFAA5oUu2Y .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sFAA5oUu2Y .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sFAA5oUu2Y .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sFAA5oUu2Y .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sFAA5oUu2Y .navbar.navbar-short {
  min-height: 60px;
}
.cid-sFAA5oUu2Y .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sFAA5oUu2Y .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sFAA5oUu2Y .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sFAA5oUu2Y .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sFAA5oUu2Y .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sFAA5oUu2Y .dropdown-item.active,
.cid-sFAA5oUu2Y .dropdown-item:active {
  background-color: transparent;
}
.cid-sFAA5oUu2Y .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sFAA5oUu2Y .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sFAA5oUu2Y .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sFAA5oUu2Y .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-sFAA5oUu2Y .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sFAA5oUu2Y .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sFAA5oUu2Y ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sFAA5oUu2Y .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sFAA5oUu2Y button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sFAA5oUu2Y button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #05386b;
}
.cid-sFAA5oUu2Y button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sFAA5oUu2Y button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFAA5oUu2Y button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFAA5oUu2Y button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sFAA5oUu2Y nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFAA5oUu2Y nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sFAA5oUu2Y nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sFAA5oUu2Y nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFAA5oUu2Y .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sFAA5oUu2Y a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sFAA5oUu2Y .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-sFAA5oUu2Y .navbar {
    height: 70px;
  }
  .cid-sFAA5oUu2Y .navbar.opened {
    height: auto;
  }
  .cid-sFAA5oUu2Y .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sFCAOqBTxa {
  padding-top: 15rem;
  padding-bottom: 12rem;
  background-image: url("../../../assets/images/0-2206a-mobile-cart-fleet-ford-layout.jpg");
}
.cid-sFCAOqBTxa .mbr-section-title {
  color: #05386b;
  text-align: center;
}
.cid-sFCAOqBTxa .mbr-text,
.cid-sFCAOqBTxa .mbr-section-btn {
  color: #05386b;
  text-align: center;
}
.cid-sFADQxFnEn {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sFADQxFnEn .mbr-section-title {
  color: #05386b;
}
.cid-sFADQxFnEn .mbr-section-subtitle {
  color: #05386b;
}
.cid-thdcIjViMw {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-thdcIjViMw .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-thdcIjViMw .mbr-text {
  color: #04315f;
}
.cid-tpkpmMk7Mh {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tpkpmMk7Mh .item {
  padding-bottom: 2rem;
}
.cid-tpkpmMk7Mh .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tpkpmMk7Mh .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tpkpmMk7Mh .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tpkpmMk7Mh .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tpkpmMk7Mh .carousel-control,
.cid-tpkpmMk7Mh .close {
  background: #1b1b1b;
}
.cid-tpkpmMk7Mh .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tpkpmMk7Mh .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tpkpmMk7Mh .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tpkpmMk7Mh .carousel-control-next span {
  margin-left: 5px;
}
.cid-tpkpmMk7Mh .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tpkpmMk7Mh .close::before {
  content: '\e91a';
}
.cid-tpkpmMk7Mh .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tpkpmMk7Mh .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tpkpmMk7Mh .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tpkpmMk7Mh .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tpkpmMk7Mh .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tpkpmMk7Mh .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tpkpmMk7Mh .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tpkpmMk7Mh .carousel-indicators li.active,
.cid-tpkpmMk7Mh .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tpkpmMk7Mh .carousel-indicators li::after,
.cid-tpkpmMk7Mh .carousel-indicators li::before {
  content: none;
}
.cid-tpkpmMk7Mh .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tpkpmMk7Mh .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tpkpmMk7Mh .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tpkpmMk7Mh .carousel-indicators {
    display: none;
  }
}
.cid-tpkpmMk7Mh .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tpkpmMk7Mh .carousel-inner > .active {
  display: block;
}
.cid-tpkpmMk7Mh .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tpkpmMk7Mh .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tpkpmMk7Mh .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tpkpmMk7Mh .carousel-control,
  .cid-tpkpmMk7Mh .carousel-indicators,
  .cid-tpkpmMk7Mh .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tpkpmMk7Mh .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tpkpmMk7Mh .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tpkpmMk7Mh .carousel-indicators .active,
.cid-tpkpmMk7Mh .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tpkpmMk7Mh .carousel-indicators .active {
  background: #fff;
}
.cid-tpkpmMk7Mh .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tpkpmMk7Mh .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tpkpmMk7Mh .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tpkpmMk7Mh .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tpkpmMk7Mh .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tpkpmMk7Mh .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tpkpmMk7Mh .carousel {
  width: 100%;
}
.cid-tpkpmMk7Mh .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tpkpmMk7Mh .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tpkpmMk7Mh .modal.fade .modal-dialog,
.cid-tpkpmMk7Mh .modal.in .modal-dialog {
  transform: none;
}
.cid-tpkpmMk7Mh .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tpkpmMk7Mh H6 {
  text-align: center;
}
.cid-tpkpmMk7Mh H3 {
  color: #04315f;
}
.cid-thd9UIsY8s {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-thd9UIsY8s .mbr-section-subtitle {
  color: #04315f;
}
.cid-thd9UIsY8s .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-thdc7pnjrN {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-thdc7pnjrN .mbr-section-subtitle {
  text-align: left;
  color: #04315f;
}
.cid-thdb74dO6f {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-thdb74dO6f .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-thdb74dO6f .mbr-section-subtitle {
  color: #04315f;
}
.cid-thddEOpep3 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-thddEOpep3 .mbr-section-title {
  color: #05386b;
}
.cid-tpfbdMKfZ8 {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #9cb7da;
}
.cid-tpfbdMKfZ8 .video-wrapper iframe {
  width: 100%;
}
.cid-tpfbdMKfZ8 .mbr-section-title,
.cid-tpfbdMKfZ8 .mbr-section-subtitle,
.cid-tpfbdMKfZ8 .mbr-text {
  text-align: center;
}
.cid-tpfbdMKfZ8 .mbr-section-title {
  color: #04315f;
}
.cid-tlPXDni8hl {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tlPXDni8hl .mbr-text {
  color: #04315f;
  text-align: center;
}
.cid-thdfcWvL0q {
  padding-top: 2rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-thdfcWvL0q img,
.cid-thdfcWvL0q .item-img {
  width: 100%;
}
.cid-thdfcWvL0q .item:focus,
.cid-thdfcWvL0q span:focus {
  outline: none;
}
.cid-thdfcWvL0q .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-thdfcWvL0q .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #d7e4fc;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-thdfcWvL0q .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-thdfcWvL0q .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-thdfcWvL0q .mbr-section-btn {
  margin-top: auto !important;
}
.cid-thdfcWvL0q .mbr-section-title {
  color: #ffffff;
}
.cid-thdfcWvL0q .mbr-text,
.cid-thdfcWvL0q .mbr-section-btn {
  text-align: center;
}
.cid-thdfcWvL0q .item-title {
  text-align: center;
  color: #04315f;
}
.cid-thdfcWvL0q .item-subtitle {
  text-align: left;
}
.cid-thj5R7fzPY {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-thj5R7fzPY .row-links {
  width: 100%;
  justify-content: center;
}
.cid-thj5R7fzPY .social-row {
  width: 100%;
  justify-content: center;
}
.cid-thj5R7fzPY .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-thj5R7fzPY .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-thj5R7fzPY .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-thj5R7fzPY .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-thj5R7fzPY .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-thj5R7fzPY .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-thj5R7fzPY .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-thj5R7fzPY .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-thj5R7fzPY .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-thj5R7fzPY .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-thj5R7fzPY .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-thj5R7fzPY .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tifHq06o9j .navbar-dropdown {
  position: relative !important;
}
.cid-tifHq06o9j .navbar-dropdown {
  position: absolute !important;
}
.cid-tifHq06o9j .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-tifHq06o9j .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tifHq06o9j .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tifHq06o9j .dropdown-item:hover,
.cid-tifHq06o9j .dropdown-item:focus {
  background: #04315f !important;
  color: white !important;
}
.cid-tifHq06o9j .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tifHq06o9j .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tifHq06o9j .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tifHq06o9j .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tifHq06o9j .nav-link {
  position: relative;
}
.cid-tifHq06o9j .container {
  display: flex;
  margin: auto;
}
.cid-tifHq06o9j .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tifHq06o9j .dropdown-menu,
.cid-tifHq06o9j .navbar.opened {
  background: #fafafa !important;
}
.cid-tifHq06o9j .nav-item:focus,
.cid-tifHq06o9j .nav-link:focus {
  outline: none;
}
.cid-tifHq06o9j .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tifHq06o9j .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tifHq06o9j .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tifHq06o9j .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tifHq06o9j .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tifHq06o9j .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tifHq06o9j .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #fafafa;
}
.cid-tifHq06o9j .navbar.opened {
  transition: all 0.3s;
}
.cid-tifHq06o9j .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tifHq06o9j .navbar .navbar-logo img {
  width: auto;
}
.cid-tifHq06o9j .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tifHq06o9j .navbar.collapsed {
  justify-content: center;
}
.cid-tifHq06o9j .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tifHq06o9j .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tifHq06o9j .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tifHq06o9j .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tifHq06o9j .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tifHq06o9j .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-tifHq06o9j .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tifHq06o9j .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tifHq06o9j .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tifHq06o9j .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tifHq06o9j .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tifHq06o9j .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tifHq06o9j .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tifHq06o9j .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-tifHq06o9j .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tifHq06o9j .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tifHq06o9j .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tifHq06o9j .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tifHq06o9j .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tifHq06o9j .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tifHq06o9j .navbar.navbar-short {
  min-height: 60px;
}
.cid-tifHq06o9j .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tifHq06o9j .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tifHq06o9j .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tifHq06o9j .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tifHq06o9j .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tifHq06o9j .dropdown-item.active,
.cid-tifHq06o9j .dropdown-item:active {
  background-color: transparent;
}
.cid-tifHq06o9j .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tifHq06o9j .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tifHq06o9j .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tifHq06o9j .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-tifHq06o9j .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tifHq06o9j .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tifHq06o9j ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tifHq06o9j .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tifHq06o9j button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tifHq06o9j button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #05386b;
}
.cid-tifHq06o9j button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tifHq06o9j button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tifHq06o9j button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tifHq06o9j button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tifHq06o9j nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tifHq06o9j nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tifHq06o9j nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tifHq06o9j nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tifHq06o9j .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tifHq06o9j a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tifHq06o9j .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-tifHq06o9j .navbar {
    height: 70px;
  }
  .cid-tifHq06o9j .navbar.opened {
    height: auto;
  }
  .cid-tifHq06o9j .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tifHq1g0W2 {
  display: flex;
  background-image: url("../../../assets/images/mbr-1.jpg");
}
.cid-tifHq1g0W2 .mbr-overlay {
  background-color: #353535;
  opacity: 0.5;
}
.cid-tifHq1g0W2 .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-tifHq1g0W2 {
    align-items: flex-end;
  }
  .cid-tifHq1g0W2 .row {
    justify-content: flex-start;
  }
  .cid-tifHq1g0W2 .content-wrap {
    width: 68%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tifHq1g0W2 .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-tifHq1g0W2 {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tifHq1g0W2 .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tifHq1g0W2 .content-wrap {
    width: 100%;
  }
}
.cid-tifHq1g0W2 .mbr-section-title {
  color: #fafafa;
}
.cid-tly3Zwtt3f {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tly3Zwtt3f .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tly3Zwtt3f img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tly3Zwtt3f .text-wrapper {
    padding: 2rem;
  }
}
.cid-tly3Zwtt3f .mbr-text {
  color: #04315f;
  text-align: right;
}
.cid-tifJ6RGSPq {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tifJ6RGSPq .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-tifJ6RGSPq .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-tifJ6RGSPq .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #04315f;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  background: none;
  border: 1px solid #04315f;
  color: #04315f;
  content: "✓";
}
.cid-tifJ6RGSPq .mbr-section-title {
  color: #04315f;
}
.cid-tifJ6RGSPq .mbr-text {
  color: #04315f;
}
.cid-tifJGMwHML {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tifJGMwHML .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-tifJGMwHML .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-tifJGMwHML .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #04315f;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-tifJGMwHML .mbr-text {
  color: #04315f;
}
.cid-tifKY5Xq0O {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tifKY5Xq0O .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-tifKY5Xq0O .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-tifKY5Xq0O .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #04315f;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  background: none;
  border: 1px solid #04315f;
  color: #04315f;
  content: "✓";
}
.cid-tifKY5Xq0O .mbr-section-title {
  color: #04315f;
}
.cid-tifKY5Xq0O .mbr-text {
  color: #04315f;
}
.cid-tmH1Z6WEFX {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tmH1Z6WEFX .content-wrapper {
  background: #9cb7da;
}
@media (max-width: 991px) {
  .cid-tmH1Z6WEFX .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-tmH1Z6WEFX .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tmH1Z6WEFX .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tmH1Z6WEFX .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tmH1Z6WEFX .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-tmH1Z6WEFX .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-tmH1Z6WEFX .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tmH1Z6WEFX .card-title {
  color: #04315f;
}
.cid-tpfrYnpww0 {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tpfrYnpww0 .mbr-section-btn {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.cid-tifHq3pyWg {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tifHq3pyWg .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tifHq3pyWg .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tifHq3pyWg .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tifHq3pyWg .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tifHq3pyWg .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tifHq3pyWg .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tifHq3pyWg .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tifHq3pyWg .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tifHq3pyWg .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tifHq3pyWg .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tifHq3pyWg .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tifHq3pyWg .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tifHq3pyWg .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tifHq3pyWg .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tkCt5KrNfB .navbar-dropdown {
  position: relative !important;
}
.cid-tkCt5KrNfB .navbar-dropdown {
  position: absolute !important;
}
.cid-tkCt5KrNfB .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-tkCt5KrNfB .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tkCt5KrNfB .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tkCt5KrNfB .dropdown-item:hover,
.cid-tkCt5KrNfB .dropdown-item:focus {
  background: #04315f !important;
  color: white !important;
}
.cid-tkCt5KrNfB .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tkCt5KrNfB .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tkCt5KrNfB .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tkCt5KrNfB .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tkCt5KrNfB .nav-link {
  position: relative;
}
.cid-tkCt5KrNfB .container {
  display: flex;
  margin: auto;
}
.cid-tkCt5KrNfB .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tkCt5KrNfB .dropdown-menu,
.cid-tkCt5KrNfB .navbar.opened {
  background: #fafafa !important;
}
.cid-tkCt5KrNfB .nav-item:focus,
.cid-tkCt5KrNfB .nav-link:focus {
  outline: none;
}
.cid-tkCt5KrNfB .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tkCt5KrNfB .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tkCt5KrNfB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tkCt5KrNfB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tkCt5KrNfB .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tkCt5KrNfB .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tkCt5KrNfB .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #fafafa;
}
.cid-tkCt5KrNfB .navbar.opened {
  transition: all 0.3s;
}
.cid-tkCt5KrNfB .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tkCt5KrNfB .navbar .navbar-logo img {
  width: auto;
}
.cid-tkCt5KrNfB .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tkCt5KrNfB .navbar.collapsed {
  justify-content: center;
}
.cid-tkCt5KrNfB .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tkCt5KrNfB .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tkCt5KrNfB .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tkCt5KrNfB .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tkCt5KrNfB .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tkCt5KrNfB .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-tkCt5KrNfB .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tkCt5KrNfB .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tkCt5KrNfB .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tkCt5KrNfB .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tkCt5KrNfB .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tkCt5KrNfB .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tkCt5KrNfB .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tkCt5KrNfB .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-tkCt5KrNfB .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tkCt5KrNfB .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tkCt5KrNfB .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tkCt5KrNfB .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tkCt5KrNfB .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tkCt5KrNfB .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tkCt5KrNfB .navbar.navbar-short {
  min-height: 60px;
}
.cid-tkCt5KrNfB .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tkCt5KrNfB .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tkCt5KrNfB .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tkCt5KrNfB .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tkCt5KrNfB .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tkCt5KrNfB .dropdown-item.active,
.cid-tkCt5KrNfB .dropdown-item:active {
  background-color: transparent;
}
.cid-tkCt5KrNfB .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tkCt5KrNfB .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tkCt5KrNfB .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tkCt5KrNfB .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-tkCt5KrNfB .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tkCt5KrNfB .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tkCt5KrNfB ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tkCt5KrNfB .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tkCt5KrNfB button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tkCt5KrNfB button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #05386b;
}
.cid-tkCt5KrNfB button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tkCt5KrNfB button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tkCt5KrNfB button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tkCt5KrNfB button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tkCt5KrNfB nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tkCt5KrNfB nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tkCt5KrNfB nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tkCt5KrNfB nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tkCt5KrNfB .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tkCt5KrNfB a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tkCt5KrNfB .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-tkCt5KrNfB .navbar {
    height: 70px;
  }
  .cid-tkCt5KrNfB .navbar.opened {
    height: auto;
  }
  .cid-tkCt5KrNfB .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tkCt5LfJNe {
  display: flex;
  background-image: url("../../../assets/images/mbr-1.jpg");
}
.cid-tkCt5LfJNe .mbr-overlay {
  background-color: #353535;
  opacity: 0.5;
}
.cid-tkCt5LfJNe .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-tkCt5LfJNe {
    align-items: flex-end;
  }
  .cid-tkCt5LfJNe .row {
    justify-content: flex-start;
  }
  .cid-tkCt5LfJNe .content-wrap {
    width: 71%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tkCt5LfJNe .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-tkCt5LfJNe {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tkCt5LfJNe .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tkCt5LfJNe .content-wrap {
    width: 100%;
  }
}
.cid-tkCt5LfJNe .mbr-section-title {
  color: #fafafa;
}
.cid-tlyawEatFx {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tlyawEatFx .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tlyawEatFx img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tlyawEatFx .text-wrapper {
    padding: 2rem;
  }
}
.cid-tlyawEatFx .mbr-text {
  color: #04315f;
  text-align: right;
}
.cid-tkCt5NmlNM {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tkCt5NmlNM .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-tkCt5NmlNM .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-tkCt5NmlNM .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #04315f;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  background: none;
  border: 1px solid #04315f;
  color: #04315f;
  content: "✓";
}
.cid-tkCt5NmlNM .mbr-section-title {
  color: #04315f;
}
.cid-tkCt5NmlNM .mbr-text {
  color: #04315f;
}
.cid-tkCt5NSqFM {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tkCt5NSqFM .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-tkCt5NSqFM .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-tkCt5NSqFM .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #04315f;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-tkCt5NSqFM .mbr-text {
  color: #04315f;
}
.cid-tkCt5OoBBa {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tkCt5OoBBa .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-tkCt5OoBBa .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-tkCt5OoBBa .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #04315f;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  background: none;
  border: 1px solid #04315f;
  color: #04315f;
  content: "✓";
}
.cid-tkCt5OoBBa .mbr-section-title {
  color: #04315f;
}
.cid-tkCt5OoBBa .mbr-text {
  color: #04315f;
}
.cid-tmMqsLMXSM {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tmMqsLMXSM .content-wrapper {
  background: #9cb7da;
}
@media (max-width: 991px) {
  .cid-tmMqsLMXSM .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-tmMqsLMXSM .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tmMqsLMXSM .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tmMqsLMXSM .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tmMqsLMXSM .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-tmMqsLMXSM .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-tmMqsLMXSM .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tmMqsLMXSM .card-title {
  color: #04315f;
}
.cid-tpfrCZcmYP {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tpfrCZcmYP .mbr-section-btn {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.cid-tkCt5PxKF3 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tkCt5PxKF3 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tkCt5PxKF3 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tkCt5PxKF3 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tkCt5PxKF3 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tkCt5PxKF3 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tkCt5PxKF3 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tkCt5PxKF3 .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tkCt5PxKF3 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tkCt5PxKF3 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tkCt5PxKF3 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tkCt5PxKF3 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tkCt5PxKF3 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tkCt5PxKF3 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tkCt5PxKF3 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tiDqfi9O7j .navbar-dropdown {
  position: relative !important;
}
.cid-tiDqfi9O7j .navbar-dropdown {
  position: absolute !important;
}
.cid-tiDqfi9O7j .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-tiDqfi9O7j .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tiDqfi9O7j .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tiDqfi9O7j .dropdown-item:hover,
.cid-tiDqfi9O7j .dropdown-item:focus {
  background: #04315f !important;
  color: white !important;
}
.cid-tiDqfi9O7j .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tiDqfi9O7j .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tiDqfi9O7j .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tiDqfi9O7j .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tiDqfi9O7j .nav-link {
  position: relative;
}
.cid-tiDqfi9O7j .container {
  display: flex;
  margin: auto;
}
.cid-tiDqfi9O7j .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tiDqfi9O7j .dropdown-menu,
.cid-tiDqfi9O7j .navbar.opened {
  background: #fafafa !important;
}
.cid-tiDqfi9O7j .nav-item:focus,
.cid-tiDqfi9O7j .nav-link:focus {
  outline: none;
}
.cid-tiDqfi9O7j .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tiDqfi9O7j .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tiDqfi9O7j .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tiDqfi9O7j .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tiDqfi9O7j .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tiDqfi9O7j .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tiDqfi9O7j .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #fafafa;
}
.cid-tiDqfi9O7j .navbar.opened {
  transition: all 0.3s;
}
.cid-tiDqfi9O7j .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tiDqfi9O7j .navbar .navbar-logo img {
  width: auto;
}
.cid-tiDqfi9O7j .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tiDqfi9O7j .navbar.collapsed {
  justify-content: center;
}
.cid-tiDqfi9O7j .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tiDqfi9O7j .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tiDqfi9O7j .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tiDqfi9O7j .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tiDqfi9O7j .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tiDqfi9O7j .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-tiDqfi9O7j .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tiDqfi9O7j .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tiDqfi9O7j .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tiDqfi9O7j .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tiDqfi9O7j .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tiDqfi9O7j .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tiDqfi9O7j .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tiDqfi9O7j .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-tiDqfi9O7j .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tiDqfi9O7j .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tiDqfi9O7j .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tiDqfi9O7j .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tiDqfi9O7j .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tiDqfi9O7j .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tiDqfi9O7j .navbar.navbar-short {
  min-height: 60px;
}
.cid-tiDqfi9O7j .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tiDqfi9O7j .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tiDqfi9O7j .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tiDqfi9O7j .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tiDqfi9O7j .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tiDqfi9O7j .dropdown-item.active,
.cid-tiDqfi9O7j .dropdown-item:active {
  background-color: transparent;
}
.cid-tiDqfi9O7j .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tiDqfi9O7j .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tiDqfi9O7j .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tiDqfi9O7j .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-tiDqfi9O7j .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tiDqfi9O7j .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tiDqfi9O7j ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tiDqfi9O7j .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tiDqfi9O7j button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tiDqfi9O7j button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #05386b;
}
.cid-tiDqfi9O7j button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tiDqfi9O7j button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tiDqfi9O7j button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tiDqfi9O7j button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tiDqfi9O7j nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tiDqfi9O7j nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tiDqfi9O7j nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tiDqfi9O7j nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tiDqfi9O7j .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tiDqfi9O7j a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tiDqfi9O7j .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-tiDqfi9O7j .navbar {
    height: 70px;
  }
  .cid-tiDqfi9O7j .navbar.opened {
    height: auto;
  }
  .cid-tiDqfi9O7j .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tiDqfjgbiW {
  display: flex;
  background-image: url("../../../assets/images/mbr-1.jpg");
}
.cid-tiDqfjgbiW .mbr-overlay {
  background-color: #353535;
  opacity: 0.5;
}
.cid-tiDqfjgbiW .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-tiDqfjgbiW {
    align-items: flex-end;
  }
  .cid-tiDqfjgbiW .row {
    justify-content: flex-start;
  }
  .cid-tiDqfjgbiW .content-wrap {
    width: 84%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tiDqfjgbiW .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-tiDqfjgbiW {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tiDqfjgbiW .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tiDqfjgbiW .content-wrap {
    width: 100%;
  }
}
.cid-tiDqfjgbiW .mbr-section-title {
  color: #fafafa;
}
.cid-tlybuRwsvZ {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tlybuRwsvZ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tlybuRwsvZ img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tlybuRwsvZ .text-wrapper {
    padding: 2rem;
  }
}
.cid-tlybuRwsvZ .mbr-text {
  color: #04315f;
  text-align: right;
}
.cid-tiDqfl4ZWm {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tiDqfl4ZWm .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-tiDqfl4ZWm .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-tiDqfl4ZWm .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #04315f;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  background: none;
  border: 1px solid #04315f;
  color: #04315f;
  content: "✓";
}
.cid-tiDqfl4ZWm .mbr-section-title {
  color: #04315f;
}
.cid-tiDqfl4ZWm .mbr-text {
  color: #04315f;
}
.cid-tiDqflEjTt {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tiDqflEjTt .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-tiDqflEjTt .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-tiDqflEjTt .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #04315f;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-tiDqflEjTt .mbr-text {
  color: #04315f;
}
.cid-tiDqfmfjjh {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tiDqfmfjjh .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-tiDqfmfjjh .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-tiDqfmfjjh .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #04315f;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  background: none;
  border: 1px solid #04315f;
  color: #04315f;
  content: "✓";
}
.cid-tiDqfmfjjh .mbr-section-title {
  color: #04315f;
}
.cid-tiDqfmfjjh .mbr-text {
  color: #04315f;
}
.cid-tmMqEipjEx {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tmMqEipjEx .content-wrapper {
  background: #9cb7da;
}
@media (max-width: 991px) {
  .cid-tmMqEipjEx .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-tmMqEipjEx .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tmMqEipjEx .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tmMqEipjEx .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tmMqEipjEx .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-tmMqEipjEx .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-tmMqEipjEx .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tmMqEipjEx .card-title {
  color: #04315f;
}
.cid-tpfrv0sDpB {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tpfrv0sDpB .mbr-section-btn {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.cid-tiDqfmTGO9 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tiDqfmTGO9 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tiDqfmTGO9 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tiDqfmTGO9 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tiDqfmTGO9 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tiDqfmTGO9 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tiDqfmTGO9 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tiDqfmTGO9 .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tiDqfmTGO9 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tiDqfmTGO9 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tiDqfmTGO9 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tiDqfmTGO9 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tiDqfmTGO9 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tiDqfmTGO9 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tiDqfmTGO9 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tkCu0vnaEp .navbar-dropdown {
  position: relative !important;
}
.cid-tkCu0vnaEp .navbar-dropdown {
  position: absolute !important;
}
.cid-tkCu0vnaEp .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-tkCu0vnaEp .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tkCu0vnaEp .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tkCu0vnaEp .dropdown-item:hover,
.cid-tkCu0vnaEp .dropdown-item:focus {
  background: #04315f !important;
  color: white !important;
}
.cid-tkCu0vnaEp .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tkCu0vnaEp .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tkCu0vnaEp .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tkCu0vnaEp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tkCu0vnaEp .nav-link {
  position: relative;
}
.cid-tkCu0vnaEp .container {
  display: flex;
  margin: auto;
}
.cid-tkCu0vnaEp .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tkCu0vnaEp .dropdown-menu,
.cid-tkCu0vnaEp .navbar.opened {
  background: #fafafa !important;
}
.cid-tkCu0vnaEp .nav-item:focus,
.cid-tkCu0vnaEp .nav-link:focus {
  outline: none;
}
.cid-tkCu0vnaEp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tkCu0vnaEp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tkCu0vnaEp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tkCu0vnaEp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tkCu0vnaEp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tkCu0vnaEp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tkCu0vnaEp .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #fafafa;
}
.cid-tkCu0vnaEp .navbar.opened {
  transition: all 0.3s;
}
.cid-tkCu0vnaEp .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tkCu0vnaEp .navbar .navbar-logo img {
  width: auto;
}
.cid-tkCu0vnaEp .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tkCu0vnaEp .navbar.collapsed {
  justify-content: center;
}
.cid-tkCu0vnaEp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tkCu0vnaEp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tkCu0vnaEp .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tkCu0vnaEp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tkCu0vnaEp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tkCu0vnaEp .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-tkCu0vnaEp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tkCu0vnaEp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tkCu0vnaEp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tkCu0vnaEp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tkCu0vnaEp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tkCu0vnaEp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tkCu0vnaEp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tkCu0vnaEp .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-tkCu0vnaEp .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tkCu0vnaEp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tkCu0vnaEp .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tkCu0vnaEp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tkCu0vnaEp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tkCu0vnaEp .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tkCu0vnaEp .navbar.navbar-short {
  min-height: 60px;
}
.cid-tkCu0vnaEp .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tkCu0vnaEp .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tkCu0vnaEp .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tkCu0vnaEp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tkCu0vnaEp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tkCu0vnaEp .dropdown-item.active,
.cid-tkCu0vnaEp .dropdown-item:active {
  background-color: transparent;
}
.cid-tkCu0vnaEp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tkCu0vnaEp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tkCu0vnaEp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tkCu0vnaEp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-tkCu0vnaEp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tkCu0vnaEp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tkCu0vnaEp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tkCu0vnaEp .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tkCu0vnaEp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tkCu0vnaEp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #05386b;
}
.cid-tkCu0vnaEp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tkCu0vnaEp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tkCu0vnaEp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tkCu0vnaEp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tkCu0vnaEp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tkCu0vnaEp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tkCu0vnaEp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tkCu0vnaEp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tkCu0vnaEp .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tkCu0vnaEp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tkCu0vnaEp .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-tkCu0vnaEp .navbar {
    height: 70px;
  }
  .cid-tkCu0vnaEp .navbar.opened {
    height: auto;
  }
  .cid-tkCu0vnaEp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tkCu0w4XoJ {
  display: flex;
  background-image: url("../../../assets/images/mbr-1.jpg");
}
.cid-tkCu0w4XoJ .mbr-overlay {
  background-color: #353535;
  opacity: 0.5;
}
.cid-tkCu0w4XoJ .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-tkCu0w4XoJ {
    align-items: flex-end;
  }
  .cid-tkCu0w4XoJ .row {
    justify-content: flex-start;
  }
  .cid-tkCu0w4XoJ .content-wrap {
    width: 87%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tkCu0w4XoJ .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-tkCu0w4XoJ {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tkCu0w4XoJ .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tkCu0w4XoJ .content-wrap {
    width: 100%;
  }
}
.cid-tkCu0w4XoJ .mbr-section-title {
  color: #fafafa;
}
.cid-tlyc5AJKxq {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tlyc5AJKxq .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tlyc5AJKxq img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tlyc5AJKxq .text-wrapper {
    padding: 2rem;
  }
}
.cid-tlyc5AJKxq .mbr-text {
  color: #04315f;
  text-align: right;
}
.cid-tkCu0xixfR {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tkCu0xixfR .mbr-section-title {
  color: #04315f;
}
.cid-tkCu0xixfR .mbr-text,
.cid-tkCu0xixfR .link {
  text-align: center;
  color: #04315f;
}
.cid-tkCu0ygB8i {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tkCu0ygB8i .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-tkCu0ygB8i .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-tkCu0ygB8i .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #04315f;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  background: none;
  border: 1px solid #04315f;
  color: #04315f;
  content: "✓";
}
.cid-tkCu0ygB8i .mbr-section-title {
  color: #04315f;
}
.cid-tkCu0ygB8i .mbr-text {
  color: #04315f;
}
.cid-tkCu0yM4OD {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tkCu0yM4OD .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-tkCu0yM4OD .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-tkCu0yM4OD .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #04315f;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-tkCu0yM4OD .mbr-text {
  color: #04315f;
}
.cid-tkCu0zmI0e {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tkCu0zmI0e .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-tkCu0zmI0e .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-tkCu0zmI0e .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #04315f;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  background: none;
  border: 1px solid #04315f;
  color: #04315f;
  content: "✓";
}
.cid-tkCu0zmI0e .mbr-section-title {
  color: #04315f;
}
.cid-tkCu0zmI0e .mbr-text {
  color: #04315f;
}
.cid-tmMr2ClzBY {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tmMr2ClzBY .content-wrapper {
  background: #9cb7da;
}
@media (max-width: 991px) {
  .cid-tmMr2ClzBY .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-tmMr2ClzBY .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tmMr2ClzBY .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tmMr2ClzBY .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tmMr2ClzBY .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-tmMr2ClzBY .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-tmMr2ClzBY .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tmMr2ClzBY .card-title {
  color: #04315f;
}
.cid-tpfrpJrnSo {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tpfrpJrnSo .mbr-section-btn {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.cid-tkCu0AsVSP {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tkCu0AsVSP .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tkCu0AsVSP .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tkCu0AsVSP .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tkCu0AsVSP .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tkCu0AsVSP .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tkCu0AsVSP .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tkCu0AsVSP .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tkCu0AsVSP .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tkCu0AsVSP .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tkCu0AsVSP .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tkCu0AsVSP .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tkCu0AsVSP .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tkCu0AsVSP .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tkCu0AsVSP .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tkCuFWoKjR .navbar-dropdown {
  position: relative !important;
}
.cid-tkCuFWoKjR .navbar-dropdown {
  position: absolute !important;
}
.cid-tkCuFWoKjR .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-tkCuFWoKjR .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tkCuFWoKjR .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tkCuFWoKjR .dropdown-item:hover,
.cid-tkCuFWoKjR .dropdown-item:focus {
  background: #04315f !important;
  color: white !important;
}
.cid-tkCuFWoKjR .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tkCuFWoKjR .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tkCuFWoKjR .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tkCuFWoKjR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tkCuFWoKjR .nav-link {
  position: relative;
}
.cid-tkCuFWoKjR .container {
  display: flex;
  margin: auto;
}
.cid-tkCuFWoKjR .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tkCuFWoKjR .dropdown-menu,
.cid-tkCuFWoKjR .navbar.opened {
  background: #fafafa !important;
}
.cid-tkCuFWoKjR .nav-item:focus,
.cid-tkCuFWoKjR .nav-link:focus {
  outline: none;
}
.cid-tkCuFWoKjR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tkCuFWoKjR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tkCuFWoKjR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tkCuFWoKjR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tkCuFWoKjR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tkCuFWoKjR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tkCuFWoKjR .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #fafafa;
}
.cid-tkCuFWoKjR .navbar.opened {
  transition: all 0.3s;
}
.cid-tkCuFWoKjR .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tkCuFWoKjR .navbar .navbar-logo img {
  width: auto;
}
.cid-tkCuFWoKjR .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tkCuFWoKjR .navbar.collapsed {
  justify-content: center;
}
.cid-tkCuFWoKjR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tkCuFWoKjR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tkCuFWoKjR .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tkCuFWoKjR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tkCuFWoKjR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tkCuFWoKjR .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-tkCuFWoKjR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tkCuFWoKjR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tkCuFWoKjR .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tkCuFWoKjR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tkCuFWoKjR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tkCuFWoKjR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tkCuFWoKjR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tkCuFWoKjR .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-tkCuFWoKjR .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tkCuFWoKjR .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tkCuFWoKjR .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tkCuFWoKjR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tkCuFWoKjR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tkCuFWoKjR .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tkCuFWoKjR .navbar.navbar-short {
  min-height: 60px;
}
.cid-tkCuFWoKjR .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tkCuFWoKjR .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tkCuFWoKjR .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tkCuFWoKjR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tkCuFWoKjR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tkCuFWoKjR .dropdown-item.active,
.cid-tkCuFWoKjR .dropdown-item:active {
  background-color: transparent;
}
.cid-tkCuFWoKjR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tkCuFWoKjR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tkCuFWoKjR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tkCuFWoKjR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-tkCuFWoKjR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tkCuFWoKjR .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tkCuFWoKjR ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tkCuFWoKjR .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tkCuFWoKjR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tkCuFWoKjR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #05386b;
}
.cid-tkCuFWoKjR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tkCuFWoKjR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tkCuFWoKjR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tkCuFWoKjR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tkCuFWoKjR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tkCuFWoKjR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tkCuFWoKjR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tkCuFWoKjR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tkCuFWoKjR .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tkCuFWoKjR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tkCuFWoKjR .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-tkCuFWoKjR .navbar {
    height: 70px;
  }
  .cid-tkCuFWoKjR .navbar.opened {
    height: auto;
  }
  .cid-tkCuFWoKjR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tkCuFXzoKE {
  display: flex;
  background-image: url("../../../assets/images/mbr-1.jpg");
}
.cid-tkCuFXzoKE .mbr-overlay {
  background-color: #353535;
  opacity: 0.5;
}
.cid-tkCuFXzoKE .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-tkCuFXzoKE {
    align-items: flex-end;
  }
  .cid-tkCuFXzoKE .row {
    justify-content: flex-start;
  }
  .cid-tkCuFXzoKE .content-wrap {
    width: 89%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tkCuFXzoKE .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-tkCuFXzoKE {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tkCuFXzoKE .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tkCuFXzoKE .content-wrap {
    width: 100%;
  }
}
.cid-tkCuFXzoKE .mbr-section-title {
  color: #fafafa;
}
.cid-tlyctsPWyu {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tlyctsPWyu .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tlyctsPWyu img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tlyctsPWyu .text-wrapper {
    padding: 2rem;
  }
}
.cid-tlyctsPWyu .mbr-text {
  color: #04315f;
  text-align: right;
}
.cid-tkCuFZtTNg {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tkCuFZtTNg .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-tkCuFZtTNg .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-tkCuFZtTNg .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #04315f;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  background: none;
  border: 1px solid #04315f;
  color: #04315f;
  content: "✓";
}
.cid-tkCuFZtTNg .mbr-section-title {
  color: #04315f;
}
.cid-tkCuFZtTNg .mbr-text {
  color: #04315f;
}
.cid-tkCuG042LB {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tkCuG042LB .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-tkCuG042LB .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-tkCuG042LB .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #04315f;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-tkCuG042LB .mbr-text {
  color: #04315f;
}
.cid-tkCuG0DGCq {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tkCuG0DGCq .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-tkCuG0DGCq .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-tkCuG0DGCq .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #04315f;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  background: none;
  border: 1px solid #04315f;
  color: #04315f;
  content: "✓";
}
.cid-tkCuG0DGCq .mbr-section-title {
  color: #04315f;
}
.cid-tkCuG0DGCq .mbr-text {
  color: #04315f;
}
.cid-tmMreO9rsQ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tmMreO9rsQ .content-wrapper {
  background: #9cb7da;
}
@media (max-width: 991px) {
  .cid-tmMreO9rsQ .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-tmMreO9rsQ .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tmMreO9rsQ .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tmMreO9rsQ .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tmMreO9rsQ .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-tmMreO9rsQ .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-tmMreO9rsQ .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tmMreO9rsQ .card-title {
  color: #04315f;
}
.cid-tpfrhYNn6U {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tpfrhYNn6U .mbr-section-btn {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.cid-tkCuG1GNpS {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tkCuG1GNpS .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tkCuG1GNpS .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tkCuG1GNpS .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tkCuG1GNpS .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tkCuG1GNpS .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tkCuG1GNpS .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tkCuG1GNpS .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tkCuG1GNpS .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tkCuG1GNpS .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tkCuG1GNpS .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tkCuG1GNpS .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tkCuG1GNpS .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tkCuG1GNpS .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tkCuG1GNpS .media-container-row .row-copirayt p {
  width: 100%;
}
