body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 3.2rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 4rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 2.4rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 2.4rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 3rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.75rem;
}
/* ---- 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: 2.56rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.24rem;
    font-size: calc( 1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.92rem;
    font-size: calc( 1.49rem + (2.4 - 1.49) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.49rem + (2.4 - 1.49) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.92rem;
    font-size: calc( 1.49rem + (2.4 - 1.49) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.49rem + (2.4 - 1.49) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((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: #273e6d !important;
}
.bg-success {
  background-color: #0e9d2e !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #273e6d !important;
  border-color: #273e6d !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: #101a2d !important;
  border-color: #101a2d !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #101a2d !important;
  border-color: #101a2d !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #0e9d2e !important;
  border-color: #0e9d2e !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: #074d17 !important;
  border-color: #074d17 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #074d17 !important;
  border-color: #074d17 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #273e6d;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #101a2d !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #273e6d !important;
  border-color: #273e6d !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #0e9d2e;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #074d17 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #0e9d2e !important;
  border-color: #0e9d2e !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #273e6d !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #0e9d2e !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #0c1322 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #063f13 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #273e6d;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #273e6d;
  border-color: #273e6d;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #273e6d;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #5277c1;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #3dee64;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 2.4rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 3rem;
}
.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: #273e6d !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 2.4rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 3rem;
}
blockquote {
  border-color: #273e6d;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #273e6d;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #273e6d;
}
.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: #273e6d;
  border-bottom-color: #273e6d;
}
.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: #273e6d !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ff6666 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23273e6d' %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-s48OLK6784 .navbar-dropdown {
  position: relative !important;
}
.cid-s48OLK6784 .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-s48OLK6784 .dropdown-menu {
  padding: 0;
}
.cid-s48OLK6784 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-s48OLK6784 .dropdown-item:hover,
.cid-s48OLK6784 .dropdown-item:focus {
  background: #273e6d !important;
  color: white !important;
}
.cid-s48OLK6784 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-s48OLK6784 .nav-link {
  position: relative;
}
.cid-s48OLK6784 .container {
  display: flex;
  margin: auto;
}
.cid-s48OLK6784 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-s48OLK6784 .navbar-caption {
  padding-right: 4rem;
}
.cid-s48OLK6784 .dropdown-menu,
.cid-s48OLK6784 .navbar.opened {
  background: #273e6d !important;
}
.cid-s48OLK6784 .nav-item:focus,
.cid-s48OLK6784 .nav-link:focus {
  outline: none;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-s48OLK6784 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-s48OLK6784 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-s48OLK6784 .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #273e6d;
}
.cid-s48OLK6784 .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-s48OLK6784 .navbar.opened {
  transition: all .3s;
}
.cid-s48OLK6784 .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-s48OLK6784 .navbar .navbar-logo img {
  width: auto;
}
.cid-s48OLK6784 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-s48OLK6784 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-s48OLK6784 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-s48OLK6784 .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: 55%;
}
.cid-s48OLK6784 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-s48OLK6784 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-s48OLK6784 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-s48OLK6784 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-s48OLK6784 .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: 55%;
  }
  .cid-s48OLK6784 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-s48OLK6784 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-s48OLK6784 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-s48OLK6784 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-s48OLK6784 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-s48OLK6784 .navbar.navbar-short {
  min-height: 60px;
}
.cid-s48OLK6784 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-s48OLK6784 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-s48OLK6784 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-s48OLK6784 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-s48OLK6784 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-s48OLK6784 .dropdown-item.active,
.cid-s48OLK6784 .dropdown-item:active {
  background-color: transparent;
}
.cid-s48OLK6784 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-s48OLK6784 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #273e6d;
}
.cid-s48OLK6784 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-s48OLK6784 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-s48OLK6784 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-s48OLK6784 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-s48OLK6784 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s48OLK6784 .navbar-dropdown {
  padding: .5rem 1rem;
}
.cid-s48OLK6784 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-s48OLK6784 .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-s48OLK6784 .navbar {
    height: 77px;
  }
  .cid-s48OLK6784 .navbar.opened {
    height: auto;
  }
  .cid-s48OLK6784 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u3kCnW13Af {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u3kCnW13Af .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-twqhLWuC3Q {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #273e6d;
}
.cid-twqhLWuC3Q .mbr-fallback-image.disabled {
  display: none;
}
.cid-twqhLWuC3Q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-twqhLWuC3Q .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-twqhLWuC3Q .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-twqhLWuC3Q .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-twqhLWuC3Q .mbr-text,
.cid-twqhLWuC3Q .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-twqhLWuC3Q .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-twqhLWuC3Q P {
  text-align: right;
  color: #ffffff;
}
.cid-twqhLWuC3Q ul {
  list-style: none;
}
.cid-twqhLWuC3Q ul li::before {
  content: "✔️";
  display: inline-block;
  margin-right: 0.2rem;
}
.cid-uBz4wY4DAS {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uBz4wY4DAS img,
.cid-uBz4wY4DAS .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uBz4wY4DAS .item:focus,
.cid-uBz4wY4DAS span:focus {
  outline: none;
}
.cid-uBz4wY4DAS .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uBz4wY4DAS .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uBz4wY4DAS .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uBz4wY4DAS .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uBz4wY4DAS .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uBz4wY4DAS .mbr-section-title {
  color: #232323;
}
.cid-uBz4wY4DAS .mbr-text,
.cid-uBz4wY4DAS .mbr-section-btn {
  text-align: center;
}
.cid-uBz4wY4DAS .item-title {
  text-align: center;
}
.cid-uBz4wY4DAS .item-subtitle {
  text-align: left;
}
.cid-tybYVAiQHe {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #273e6d;
}
.cid-tybYVAiQHe .mbr-fallback-image.disabled {
  display: none;
}
.cid-tybYVAiQHe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tybYVAiQHe .mbr-section-title {
  color: #fafafa;
  text-align: center;
}
.cid-tybOqWXUHd {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tybOqWXUHd .mbr-fallback-image.disabled {
  display: none;
}
.cid-tybOqWXUHd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tybOqWXUHd .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tybOqWXUHd .row {
    flex-direction: column-reverse;
  }
  .cid-tybOqWXUHd .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-tybOqWXUHd .card-wrapper {
    padding: 0 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tybOqWXUHd .card-wrapper {
    padding-right: 2rem;
  }
}
.cid-tybOqWXUHd .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tybLkW7o2S {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #273e6d;
}
.cid-tybLkW7o2S .mbr-fallback-image.disabled {
  display: none;
}
.cid-tybLkW7o2S .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tybLkW7o2S .mbr-section-title {
  color: #fafafa;
  text-align: center;
}
.cid-tybLn9BV83 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tybLn9BV83 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tybLn9BV83 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tybLn9BV83 .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tybLn9BV83 .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-tybLn9BV83 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tybLn9BV83 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #e6c63b;
  transition: all 0.3s;
}
.cid-tybLn9BV83 .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #e6c63b;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-tybLn9BV83 .social-row .soc-item:hover {
  background-color: #e6c63b;
}
.cid-tybLn9BV83 .social-row .soc-item:hover .mbr-iconfont {
  color: #000000;
}
@media (max-width: 767px) {
  .cid-tybLn9BV83 .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tybLn9BV83 .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tybLn9BV83 .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tybOvTl3CI {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #273e6d;
}
.cid-tybOvTl3CI .mbr-fallback-image.disabled {
  display: none;
}
.cid-tybOvTl3CI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tybOvTl3CI .mbr-section-title {
  color: #fafafa;
  text-align: center;
}
.cid-tybOMR7VYI {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tybOMR7VYI .mbr-fallback-image.disabled {
  display: none;
}
.cid-tybOMR7VYI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tybOMR7VYI .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tybOMR7VYI img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tybOMR7VYI .text-wrapper {
    padding: 2rem;
  }
}
.cid-tybQ6bYWHU {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #273e6d;
}
.cid-tybQ6bYWHU .mbr-fallback-image.disabled {
  display: none;
}
.cid-tybQ6bYWHU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tybQ6bYWHU .mbr-section-title {
  color: #fafafa;
  text-align: center;
}
.cid-tydEw9qNn3 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tydEw9qNn3 .item:focus,
.cid-tydEw9qNn3 span:focus {
  outline: none;
}
.cid-tydEw9qNn3 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tydEw9qNn3 .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tydEw9qNn3 .item {
  padding: 0;
  margin: 0;
}
.cid-tydEw9qNn3 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tydEw9qNn3 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tydEw9qNn3 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tydEw9qNn3 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tydEw9qNn3 .mbr-section-title {
  color: #232323;
}
.cid-tydEw9qNn3 .mbr-text,
.cid-tydEw9qNn3 .mbr-section-btn {
  text-align: left;
}
.cid-tydEw9qNn3 .item-title {
  text-align: left;
}
.cid-tydEw9qNn3 .item-subtitle {
  text-align: left;
  color: #232323;
}
.cid-tybQ7EH5FD {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tybQ7EH5FD .line {
  background-color: #2e1d50;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tybQ7EH5FD .mbr-text {
  color: #d21010;
}
.cid-tybQHX04IN {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #273e6d;
}
.cid-tybQHX04IN .mbr-fallback-image.disabled {
  display: none;
}
.cid-tybQHX04IN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tybQHX04IN .mbr-section-title {
  color: #fafafa;
  text-align: center;
}
.cid-uBzqGBgYuH {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uBzqGBgYuH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBzqGBgYuH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBzqGBgYuH .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
@media (min-width: 991px) {
  .cid-uBzqGBgYuH .item {
    margin-bottom: 4rem;
  }
}
.cid-uBzqGBgYuH .item:last-child .icon-box:before {
  display: none;
}
.cid-uBzqGBgYuH .item.last .icon-box:before {
  display: none;
}
.cid-uBzqGBgYuH .icon-box {
  background: #273e6d;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (max-width: 768px) {
  .cid-uBzqGBgYuH .icon-box {
    margin-right: 1rem;
  }
}
.cid-uBzqGBgYuH .icon-box::before {
  content: "\e925";
  font-family: Moririse2 !important;
  position: absolute;
  font-size: 32px;
  left: 50%;
  top: 120%;
  color: #273e6d;
  transform: translate(-50%, 0);
}
.cid-uBzqGBgYuH span {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uBzqGBgYuH .card {
    margin-bottom: 2rem;
  }
  .cid-uBzqGBgYuH .card-wrapper {
    margin-bottom: 2rem;
  }
  .cid-uBzqGBgYuH .icon-box::before {
    top: 141%;
  }
}
@media (max-width: 768px) {
  .cid-uBzqGBgYuH .icon-box::before {
    top: 114%;
  }
}
.cid-u3kSlwyhE9 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #273e6d;
}
.cid-u3kSlwyhE9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3kSlwyhE9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3kSlwyhE9 .mbr-section-title {
  color: #fafafa;
  text-align: center;
}
.cid-u3kSuHxVn8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-u3kSuHxVn8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3kSuHxVn8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-u3kSuHxVn8 .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-u3kSuHxVn8 .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u3kSuHxVn8 .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-u3kSuHxVn8 .item-wrapper {
  border-radius: 4px;
  background-color: #ffffff;
}
.cid-u3kSuHxVn8 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-u3kSuHxVn8 .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tybQVqhPVi {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #273e6d;
}
.cid-tybQVqhPVi .mbr-fallback-image.disabled {
  display: none;
}
.cid-tybQVqhPVi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tybQVqhPVi .mbr-section-title {
  color: #fafafa;
  text-align: center;
}
.cid-u3kFDzcin9 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u3kFDzcin9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3kFDzcin9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3kFDzcin9 .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
@media (min-width: 991px) {
  .cid-u3kFDzcin9 .item {
    margin-bottom: 4rem;
  }
}
.cid-u3kFDzcin9 .item:last-child .icon-box:before {
  display: none;
}
.cid-u3kFDzcin9 .item.last .icon-box:before {
  display: none;
}
.cid-u3kFDzcin9 .icon-box {
  background: #273e6d;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (max-width: 768px) {
  .cid-u3kFDzcin9 .icon-box {
    margin-right: 1rem;
  }
}
.cid-u3kFDzcin9 .icon-box::before {
  content: "\e925";
  font-family: Moririse2 !important;
  position: absolute;
  font-size: 32px;
  left: 50%;
  top: 120%;
  top: 100%;
  color: #273e6d;
  transform: translate(-50%, 0);
}
.cid-u3kFDzcin9 span {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u3kFDzcin9 .card {
    margin-bottom: 2rem;
  }
  .cid-u3kFDzcin9 .card-wrapper {
    margin-bottom: 2rem;
  }
  .cid-u3kFDzcin9 .icon-box::before {
    top: 141%;
    top: 123%;
  }
}
@media (max-width: 768px) {
  .cid-u3kFDzcin9 .icon-box::before {
    top: 114%;
  }
}
.cid-tybR9IcWOk {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #273e6d;
}
.cid-tybR9IcWOk .mbr-fallback-image.disabled {
  display: none;
}
.cid-tybR9IcWOk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tybR9IcWOk .mbr-section-title {
  color: #ffffff;
}
.cid-tybR9IcWOk .mbr-text,
.cid-tybR9IcWOk .mbr-section-btn {
  color: #ffe161;
}
.cid-tBBNfzW73v {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tBBNfzW73v .item:focus,
.cid-tBBNfzW73v span:focus {
  outline: none;
}
.cid-tBBNfzW73v .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tBBNfzW73v .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tBBNfzW73v .item {
  padding: 0;
  margin: 0;
}
.cid-tBBNfzW73v .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tBBNfzW73v .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tBBNfzW73v .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tBBNfzW73v .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tBBNfzW73v .mbr-section-title {
  color: #232323;
}
.cid-tBBNfzW73v .mbr-text,
.cid-tBBNfzW73v .mbr-section-btn {
  text-align: left;
}
.cid-tBBNfzW73v .item-title {
  text-align: left;
}
.cid-tBBNfzW73v .item-subtitle {
  text-align: left;
  color: #232323;
}
.cid-tybRb95FEx {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #eccc3d;
}
.cid-tybRb95FEx .line {
  background-color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tybRb95FEx .mbr-text {
  color: #e43f3f;
}
.cid-uBzswSPyE6 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uBzswSPyE6 .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uBzswSPyE6 .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uBzswSPyE6 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uBzswSPyE6 .mbr-section-title {
  color: #273e6d;
  text-align: left;
}
.cid-uBzswSPyE6 .mbr-text,
.cid-uBzswSPyE6 .mbr-section-btn {
  color: #111111;
  text-align: left;
}
.cid-u3kTBn5CvK {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #273e6d;
}
.cid-u3kTBn5CvK .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3kTBn5CvK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3kTBn5CvK .mbr-section-title {
  color: #fafafa;
  text-align: center;
}
.cid-u3kTK2m8G6 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u3kTK2m8G6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3kTK2m8G6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3kTK2m8G6 .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  align-items: flex-start;
}
@media (min-width: 991px) {
  .cid-u3kTK2m8G6 .item {
    margin-bottom: 4rem;
  }
}
.cid-u3kTK2m8G6 .item:last-child .icon-box:before {
  display: none;
}
.cid-u3kTK2m8G6 .item.last .icon-box:before {
  display: none;
}
.cid-u3kTK2m8G6 .icon-box {
  background: #273e6d;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (max-width: 768px) {
  .cid-u3kTK2m8G6 .icon-box {
    margin-right: 1rem;
  }
}
.cid-u3kTK2m8G6 span {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u3kTK2m8G6 .card {
    margin-bottom: 2rem;
  }
  .cid-u3kTK2m8G6 .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tybRlarJ7L {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #273e6d;
}
.cid-tybRlarJ7L .mbr-fallback-image.disabled {
  display: none;
}
.cid-tybRlarJ7L .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tybRlarJ7L .mbr-section-title {
  color: #fafafa;
  text-align: center;
}
.cid-tybRittvzt {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tybRittvzt .mbr-fallback-image.disabled {
  display: none;
}
.cid-tybRittvzt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tybRittvzt .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #273e6d;
  margin-left: 1rem;
}
.cid-tybRittvzt .panel-group {
  border: none;
}
.cid-tybRittvzt .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tybRittvzt .panel-body,
.cid-tybRittvzt .card-header {
  padding: 1rem 0;
}
.cid-tybRittvzt .panel-title-edit {
  color: #000000;
  text-align: left;
}
.cid-tybRittvzt .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-tybRoK232E {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #273e6d;
}
.cid-tybRoK232E .mbr-fallback-image.disabled {
  display: none;
}
.cid-tybRoK232E .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tybRoK232E .mbr-section-title {
  color: #fafafa;
  text-align: center;
}
.cid-tybRnS28Eo {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tybRnS28Eo .mbr-fallback-image.disabled {
  display: none;
}
.cid-tybRnS28Eo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tybRnS28Eo .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tybRnS28Eo .image-wrap img {
    display: block;
    margin: auto;
    width: 70%;
  }
}
.cid-tybRnS28Eo .mbr-section-title {
  color: #206dcf;
}
.cid-tybRnS28Eo .mbr-text,
.cid-tybRnS28Eo .mbr-section-btn {
  color: #2e1d50;
}
.cid-tybRryikOJ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tybRryikOJ .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tybRryikOJ .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tybRryikOJ .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tybRryikOJ .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tybRryikOJ .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tybRryikOJ .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tybRryikOJ .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-tybRryikOJ .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tybRryikOJ .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tybRryikOJ .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tybRryikOJ .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tybRryikOJ .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tybRryikOJ .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tybRryikOJ .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tybRryikOJ .media-container-row .mbr-text {
  color: #fafafa;
}
.cid-s48OLK6784 .navbar-dropdown {
  position: relative !important;
}
.cid-s48OLK6784 .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-s48OLK6784 .dropdown-menu {
  padding: 0;
}
.cid-s48OLK6784 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-s48OLK6784 .dropdown-item:hover,
.cid-s48OLK6784 .dropdown-item:focus {
  background: #273e6d !important;
  color: white !important;
}
.cid-s48OLK6784 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-s48OLK6784 .nav-link {
  position: relative;
}
.cid-s48OLK6784 .container {
  display: flex;
  margin: auto;
}
.cid-s48OLK6784 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-s48OLK6784 .navbar-caption {
  padding-right: 4rem;
}
.cid-s48OLK6784 .dropdown-menu,
.cid-s48OLK6784 .navbar.opened {
  background: #273e6d !important;
}
.cid-s48OLK6784 .nav-item:focus,
.cid-s48OLK6784 .nav-link:focus {
  outline: none;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-s48OLK6784 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-s48OLK6784 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-s48OLK6784 .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #273e6d;
}
.cid-s48OLK6784 .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-s48OLK6784 .navbar.opened {
  transition: all .3s;
}
.cid-s48OLK6784 .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-s48OLK6784 .navbar .navbar-logo img {
  width: auto;
}
.cid-s48OLK6784 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-s48OLK6784 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-s48OLK6784 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-s48OLK6784 .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: 55%;
}
.cid-s48OLK6784 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-s48OLK6784 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-s48OLK6784 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-s48OLK6784 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-s48OLK6784 .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: 55%;
  }
  .cid-s48OLK6784 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-s48OLK6784 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-s48OLK6784 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-s48OLK6784 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-s48OLK6784 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-s48OLK6784 .navbar.navbar-short {
  min-height: 60px;
}
.cid-s48OLK6784 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-s48OLK6784 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-s48OLK6784 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-s48OLK6784 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-s48OLK6784 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-s48OLK6784 .dropdown-item.active,
.cid-s48OLK6784 .dropdown-item:active {
  background-color: transparent;
}
.cid-s48OLK6784 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-s48OLK6784 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #273e6d;
}
.cid-s48OLK6784 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-s48OLK6784 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-s48OLK6784 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-s48OLK6784 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-s48OLK6784 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s48OLK6784 .navbar-dropdown {
  padding: .5rem 1rem;
}
.cid-s48OLK6784 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-s48OLK6784 .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-s48OLK6784 .navbar {
    height: 77px;
  }
  .cid-s48OLK6784 .navbar.opened {
    height: auto;
  }
  .cid-s48OLK6784 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uBzG67UseR {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tybRryikOJ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tybRryikOJ .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tybRryikOJ .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tybRryikOJ .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tybRryikOJ .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tybRryikOJ .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tybRryikOJ .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tybRryikOJ .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-tybRryikOJ .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tybRryikOJ .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tybRryikOJ .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tybRryikOJ .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tybRryikOJ .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tybRryikOJ .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tybRryikOJ .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tybRryikOJ .media-container-row .mbr-text {
  color: #fafafa;
}
.cid-s48OLK6784 .navbar-dropdown {
  position: relative !important;
}
.cid-s48OLK6784 .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-s48OLK6784 .dropdown-menu {
  padding: 0;
}
.cid-s48OLK6784 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-s48OLK6784 .dropdown-item:hover,
.cid-s48OLK6784 .dropdown-item:focus {
  background: #273e6d !important;
  color: white !important;
}
.cid-s48OLK6784 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-s48OLK6784 .nav-link {
  position: relative;
}
.cid-s48OLK6784 .container {
  display: flex;
  margin: auto;
}
.cid-s48OLK6784 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-s48OLK6784 .navbar-caption {
  padding-right: 4rem;
}
.cid-s48OLK6784 .dropdown-menu,
.cid-s48OLK6784 .navbar.opened {
  background: #273e6d !important;
}
.cid-s48OLK6784 .nav-item:focus,
.cid-s48OLK6784 .nav-link:focus {
  outline: none;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-s48OLK6784 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-s48OLK6784 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-s48OLK6784 .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #273e6d;
}
.cid-s48OLK6784 .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-s48OLK6784 .navbar.opened {
  transition: all .3s;
}
.cid-s48OLK6784 .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-s48OLK6784 .navbar .navbar-logo img {
  width: auto;
}
.cid-s48OLK6784 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-s48OLK6784 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-s48OLK6784 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-s48OLK6784 .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: 55%;
}
.cid-s48OLK6784 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-s48OLK6784 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-s48OLK6784 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-s48OLK6784 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-s48OLK6784 .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: 55%;
  }
  .cid-s48OLK6784 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-s48OLK6784 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-s48OLK6784 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-s48OLK6784 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-s48OLK6784 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-s48OLK6784 .navbar.navbar-short {
  min-height: 60px;
}
.cid-s48OLK6784 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-s48OLK6784 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-s48OLK6784 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-s48OLK6784 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-s48OLK6784 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-s48OLK6784 .dropdown-item.active,
.cid-s48OLK6784 .dropdown-item:active {
  background-color: transparent;
}
.cid-s48OLK6784 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-s48OLK6784 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #273e6d;
}
.cid-s48OLK6784 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-s48OLK6784 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-s48OLK6784 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-s48OLK6784 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-s48OLK6784 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s48OLK6784 .navbar-dropdown {
  padding: .5rem 1rem;
}
.cid-s48OLK6784 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-s48OLK6784 .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-s48OLK6784 .navbar {
    height: 77px;
  }
  .cid-s48OLK6784 .navbar.opened {
    height: auto;
  }
  .cid-s48OLK6784 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uBzF3yqzXc {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tybRryikOJ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tybRryikOJ .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tybRryikOJ .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tybRryikOJ .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tybRryikOJ .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tybRryikOJ .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tybRryikOJ .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tybRryikOJ .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-tybRryikOJ .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tybRryikOJ .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tybRryikOJ .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tybRryikOJ .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tybRryikOJ .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tybRryikOJ .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tybRryikOJ .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tybRryikOJ .media-container-row .mbr-text {
  color: #fafafa;
}
.cid-s48OLK6784 .navbar-dropdown {
  position: relative !important;
}
.cid-s48OLK6784 .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-s48OLK6784 .dropdown-menu {
  padding: 0;
}
.cid-s48OLK6784 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-s48OLK6784 .dropdown-item:hover,
.cid-s48OLK6784 .dropdown-item:focus {
  background: #273e6d !important;
  color: white !important;
}
.cid-s48OLK6784 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-s48OLK6784 .nav-link {
  position: relative;
}
.cid-s48OLK6784 .container {
  display: flex;
  margin: auto;
}
.cid-s48OLK6784 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-s48OLK6784 .navbar-caption {
  padding-right: 4rem;
}
.cid-s48OLK6784 .dropdown-menu,
.cid-s48OLK6784 .navbar.opened {
  background: #273e6d !important;
}
.cid-s48OLK6784 .nav-item:focus,
.cid-s48OLK6784 .nav-link:focus {
  outline: none;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-s48OLK6784 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-s48OLK6784 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-s48OLK6784 .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #273e6d;
}
.cid-s48OLK6784 .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-s48OLK6784 .navbar.opened {
  transition: all .3s;
}
.cid-s48OLK6784 .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-s48OLK6784 .navbar .navbar-logo img {
  width: auto;
}
.cid-s48OLK6784 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-s48OLK6784 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-s48OLK6784 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-s48OLK6784 .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: 55%;
}
.cid-s48OLK6784 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-s48OLK6784 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-s48OLK6784 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-s48OLK6784 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-s48OLK6784 .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: 55%;
  }
  .cid-s48OLK6784 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-s48OLK6784 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-s48OLK6784 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-s48OLK6784 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-s48OLK6784 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-s48OLK6784 .navbar.navbar-short {
  min-height: 60px;
}
.cid-s48OLK6784 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-s48OLK6784 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-s48OLK6784 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-s48OLK6784 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-s48OLK6784 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-s48OLK6784 .dropdown-item.active,
.cid-s48OLK6784 .dropdown-item:active {
  background-color: transparent;
}
.cid-s48OLK6784 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-s48OLK6784 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #273e6d;
}
.cid-s48OLK6784 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-s48OLK6784 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-s48OLK6784 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-s48OLK6784 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-s48OLK6784 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s48OLK6784 .navbar-dropdown {
  padding: .5rem 1rem;
}
.cid-s48OLK6784 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-s48OLK6784 .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-s48OLK6784 .navbar {
    height: 77px;
  }
  .cid-s48OLK6784 .navbar.opened {
    height: auto;
  }
  .cid-s48OLK6784 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uBzGi078H7 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tybRryikOJ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tybRryikOJ .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tybRryikOJ .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tybRryikOJ .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tybRryikOJ .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tybRryikOJ .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tybRryikOJ .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tybRryikOJ .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-tybRryikOJ .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tybRryikOJ .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tybRryikOJ .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tybRryikOJ .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tybRryikOJ .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tybRryikOJ .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tybRryikOJ .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tybRryikOJ .media-container-row .mbr-text {
  color: #fafafa;
}
.cid-uBBVI4kzdr .navbar-dropdown {
  position: relative !important;
}
.cid-uBBVI4kzdr .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-uBBVI4kzdr .dropdown-menu {
  padding: 0;
}
.cid-uBBVI4kzdr .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uBBVI4kzdr .dropdown-item:hover,
.cid-uBBVI4kzdr .dropdown-item:focus {
  background: #273e6d !important;
  color: white !important;
}
.cid-uBBVI4kzdr .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-uBBVI4kzdr .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uBBVI4kzdr .nav-link {
  position: relative;
}
.cid-uBBVI4kzdr .container {
  display: flex;
  margin: auto;
}
.cid-uBBVI4kzdr .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uBBVI4kzdr .navbar-caption {
  padding-right: 4rem;
}
.cid-uBBVI4kzdr .dropdown-menu,
.cid-uBBVI4kzdr .navbar.opened {
  background: #273e6d !important;
}
.cid-uBBVI4kzdr .nav-item:focus,
.cid-uBBVI4kzdr .nav-link:focus {
  outline: none;
}
.cid-uBBVI4kzdr .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uBBVI4kzdr .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uBBVI4kzdr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uBBVI4kzdr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uBBVI4kzdr .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uBBVI4kzdr .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uBBVI4kzdr .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #273e6d;
}
.cid-uBBVI4kzdr .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uBBVI4kzdr .navbar.opened {
  transition: all .3s;
}
.cid-uBBVI4kzdr .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-uBBVI4kzdr .navbar .navbar-logo img {
  width: auto;
}
.cid-uBBVI4kzdr .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uBBVI4kzdr .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uBBVI4kzdr .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uBBVI4kzdr .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uBBVI4kzdr .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uBBVI4kzdr .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: 55%;
}
.cid-uBBVI4kzdr .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uBBVI4kzdr .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uBBVI4kzdr .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uBBVI4kzdr .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uBBVI4kzdr .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uBBVI4kzdr .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uBBVI4kzdr .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uBBVI4kzdr .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: 55%;
  }
  .cid-uBBVI4kzdr .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uBBVI4kzdr .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uBBVI4kzdr .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uBBVI4kzdr .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uBBVI4kzdr .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uBBVI4kzdr .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uBBVI4kzdr .navbar.navbar-short {
  min-height: 60px;
}
.cid-uBBVI4kzdr .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uBBVI4kzdr .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uBBVI4kzdr .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uBBVI4kzdr .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uBBVI4kzdr .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uBBVI4kzdr .dropdown-item.active,
.cid-uBBVI4kzdr .dropdown-item:active {
  background-color: transparent;
}
.cid-uBBVI4kzdr .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uBBVI4kzdr .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uBBVI4kzdr .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uBBVI4kzdr .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #273e6d;
}
.cid-uBBVI4kzdr .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uBBVI4kzdr .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uBBVI4kzdr ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uBBVI4kzdr .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uBBVI4kzdr button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uBBVI4kzdr button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-uBBVI4kzdr button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uBBVI4kzdr button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uBBVI4kzdr button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uBBVI4kzdr button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uBBVI4kzdr nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uBBVI4kzdr nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uBBVI4kzdr nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uBBVI4kzdr nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uBBVI4kzdr .navbar-dropdown {
  padding: .5rem 1rem;
}
.cid-uBBVI4kzdr a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uBBVI4kzdr .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-uBBVI4kzdr .navbar {
    height: 77px;
  }
  .cid-uBBVI4kzdr .navbar.opened {
    height: auto;
  }
  .cid-uBBVI4kzdr .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uBBVI4MGF7 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uBBVI4MGF7 .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uBBVI50c7M {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #273e6d;
}
.cid-uBBVI50c7M .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBBVI50c7M .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBBVI50c7M .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uBBVI50c7M .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uBBVI50c7M .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uBBVI50c7M .mbr-text,
.cid-uBBVI50c7M .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uBBVI50c7M .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-uBBVI50c7M P {
  text-align: right;
  color: #ffffff;
}
.cid-uBBVI50c7M ul {
  list-style: none;
}
.cid-uBBVI50c7M ul li::before {
  content: "✔️";
  display: inline-block;
  margin-right: 0.2rem;
}
.cid-uBBVI5niR6 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uBBVI5niR6 img,
.cid-uBBVI5niR6 .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uBBVI5niR6 .item:focus,
.cid-uBBVI5niR6 span:focus {
  outline: none;
}
.cid-uBBVI5niR6 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uBBVI5niR6 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uBBVI5niR6 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uBBVI5niR6 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uBBVI5niR6 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uBBVI5niR6 .mbr-section-title {
  color: #232323;
}
.cid-uBBVI5niR6 .mbr-text,
.cid-uBBVI5niR6 .mbr-section-btn {
  text-align: center;
}
.cid-uBBVI5niR6 .item-title {
  text-align: center;
}
.cid-uBBVI5niR6 .item-subtitle {
  text-align: left;
}
.cid-uBBVI5RBKm {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #273e6d;
}
.cid-uBBVI5RBKm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBBVI5RBKm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBBVI5RBKm .mbr-section-title {
  color: #fafafa;
  text-align: center;
}
.cid-uBBVI6bTq7 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uBBVI6bTq7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBBVI6bTq7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBBVI6bTq7 .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uBBVI6bTq7 .row {
    flex-direction: column-reverse;
  }
  .cid-uBBVI6bTq7 .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-uBBVI6bTq7 .card-wrapper {
    padding: 0 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uBBVI6bTq7 .card-wrapper {
    padding-right: 2rem;
  }
}
.cid-uBBVI6bTq7 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uBBVI6wdRV {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #273e6d;
}
.cid-uBBVI6wdRV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBBVI6wdRV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBBVI6wdRV .mbr-section-title {
  color: #fafafa;
  text-align: center;
}
.cid-uBBVI6VaFQ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uBBVI6VaFQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBBVI6VaFQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBBVI6VaFQ .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uBBVI6VaFQ .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uBBVI6VaFQ .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uBBVI6VaFQ .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #e6c63b;
  transition: all 0.3s;
}
.cid-uBBVI6VaFQ .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #e6c63b;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uBBVI6VaFQ .social-row .soc-item:hover {
  background-color: #e6c63b;
}
.cid-uBBVI6VaFQ .social-row .soc-item:hover .mbr-iconfont {
  color: #000000;
}
@media (max-width: 767px) {
  .cid-uBBVI6VaFQ .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uBBVI6VaFQ .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uBBVI6VaFQ .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uBBVI7IiXX {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #273e6d;
}
.cid-uBBVI7IiXX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBBVI7IiXX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBBVI7IiXX .mbr-section-title {
  color: #fafafa;
  text-align: center;
}
.cid-uBBVI81xmY {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uBBVI81xmY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBBVI81xmY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uBBVI81xmY .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uBBVI81xmY img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uBBVI81xmY .text-wrapper {
    padding: 2rem;
  }
}
.cid-uBBVI8opWO {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #273e6d;
}
.cid-uBBVI8opWO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBBVI8opWO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBBVI8opWO .mbr-section-title {
  color: #fafafa;
  text-align: center;
}
.cid-uBBVI8IQhK {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uBBVI8IQhK .item:focus,
.cid-uBBVI8IQhK span:focus {
  outline: none;
}
.cid-uBBVI8IQhK .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uBBVI8IQhK .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-uBBVI8IQhK .item {
  padding: 0;
  margin: 0;
}
.cid-uBBVI8IQhK .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uBBVI8IQhK .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uBBVI8IQhK .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uBBVI8IQhK .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uBBVI8IQhK .mbr-section-title {
  color: #232323;
}
.cid-uBBVI8IQhK .mbr-text,
.cid-uBBVI8IQhK .mbr-section-btn {
  text-align: left;
}
.cid-uBBVI8IQhK .item-title {
  text-align: left;
}
.cid-uBBVI8IQhK .item-subtitle {
  text-align: left;
  color: #232323;
}
.cid-uBBVI95Ix3 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uBBVI95Ix3 .line {
  background-color: #2e1d50;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uBBVI95Ix3 .mbr-text {
  color: #d21010;
}
.cid-uBBVI9Frd9 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #273e6d;
}
.cid-uBBVI9Frd9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBBVI9Frd9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBBVI9Frd9 .mbr-section-title {
  color: #fafafa;
  text-align: center;
}
.cid-uBBVIa8WGM {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uBBVIa8WGM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBBVIa8WGM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBBVIa8WGM .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
@media (min-width: 991px) {
  .cid-uBBVIa8WGM .item {
    margin-bottom: 4rem;
  }
}
.cid-uBBVIa8WGM .item:last-child .icon-box:before {
  display: none;
}
.cid-uBBVIa8WGM .item.last .icon-box:before {
  display: none;
}
.cid-uBBVIa8WGM .icon-box {
  background: #273e6d;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (max-width: 768px) {
  .cid-uBBVIa8WGM .icon-box {
    margin-right: 1rem;
  }
}
.cid-uBBVIa8WGM .icon-box::before {
  content: "\e925";
  font-family: Moririse2 !important;
  position: absolute;
  font-size: 32px;
  left: 50%;
  top: 120%;
  color: #273e6d;
  transform: translate(-50%, 0);
}
.cid-uBBVIa8WGM span {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uBBVIa8WGM .card {
    margin-bottom: 2rem;
  }
  .cid-uBBVIa8WGM .card-wrapper {
    margin-bottom: 2rem;
  }
  .cid-uBBVIa8WGM .icon-box::before {
    top: 141%;
  }
}
@media (max-width: 768px) {
  .cid-uBBVIa8WGM .icon-box::before {
    top: 114%;
  }
}
.cid-uBBVIblf2L {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #273e6d;
}
.cid-uBBVIblf2L .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBBVIblf2L .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBBVIblf2L .mbr-section-title {
  color: #fafafa;
  text-align: center;
}
.cid-uBBVIbMXki {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-uBBVIbMXki .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBBVIbMXki .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-uBBVIbMXki .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uBBVIbMXki .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uBBVIbMXki .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uBBVIbMXki .item-wrapper {
  border-radius: 4px;
  background-color: #ffffff;
}
.cid-uBBVIbMXki .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uBBVIbMXki .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uBBVIcAw84 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #273e6d;
}
.cid-uBBVIcAw84 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBBVIcAw84 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBBVIcAw84 .mbr-section-title {
  color: #fafafa;
  text-align: center;
}
.cid-uBBVIcUrSh {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uBBVIcUrSh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBBVIcUrSh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBBVIcUrSh .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
@media (min-width: 991px) {
  .cid-uBBVIcUrSh .item {
    margin-bottom: 4rem;
  }
}
.cid-uBBVIcUrSh .item:last-child .icon-box:before {
  display: none;
}
.cid-uBBVIcUrSh .item.last .icon-box:before {
  display: none;
}
.cid-uBBVIcUrSh .icon-box {
  background: #273e6d;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (max-width: 768px) {
  .cid-uBBVIcUrSh .icon-box {
    margin-right: 1rem;
  }
}
.cid-uBBVIcUrSh .icon-box::before {
  content: "\e925";
  font-family: Moririse2 !important;
  position: absolute;
  font-size: 32px;
  left: 50%;
  top: 120%;
  top: 100%;
  color: #273e6d;
  transform: translate(-50%, 0);
}
.cid-uBBVIcUrSh span {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uBBVIcUrSh .card {
    margin-bottom: 2rem;
  }
  .cid-uBBVIcUrSh .card-wrapper {
    margin-bottom: 2rem;
  }
  .cid-uBBVIcUrSh .icon-box::before {
    top: 141%;
    top: 123%;
  }
}
@media (max-width: 768px) {
  .cid-uBBVIcUrSh .icon-box::before {
    top: 114%;
  }
}
.cid-uBBVIdAlF5 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #273e6d;
}
.cid-uBBVIdAlF5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBBVIdAlF5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBBVIdAlF5 .mbr-section-title {
  color: #ffffff;
}
.cid-uBBVIdAlF5 .mbr-text,
.cid-uBBVIdAlF5 .mbr-section-btn {
  color: #ffe161;
}
.cid-uBBVIdVP8e {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uBBVIdVP8e .item:focus,
.cid-uBBVIdVP8e span:focus {
  outline: none;
}
.cid-uBBVIdVP8e .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uBBVIdVP8e .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-uBBVIdVP8e .item {
  padding: 0;
  margin: 0;
}
.cid-uBBVIdVP8e .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uBBVIdVP8e .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uBBVIdVP8e .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uBBVIdVP8e .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uBBVIdVP8e .mbr-section-title {
  color: #232323;
}
.cid-uBBVIdVP8e .mbr-text,
.cid-uBBVIdVP8e .mbr-section-btn {
  text-align: left;
}
.cid-uBBVIdVP8e .item-title {
  text-align: left;
}
.cid-uBBVIdVP8e .item-subtitle {
  text-align: left;
  color: #232323;
}
.cid-uBBVIejOft {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #eccc3d;
}
.cid-uBBVIejOft .line {
  background-color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uBBVIejOft .mbr-text {
  color: #e43f3f;
}
.cid-uBBVIeDs3x {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uBBVIeDs3x .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uBBVIeDs3x .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uBBVIeDs3x .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uBBVIeDs3x .mbr-section-title {
  color: #273e6d;
  text-align: left;
}
.cid-uBBVIeDs3x .mbr-text,
.cid-uBBVIeDs3x .mbr-section-btn {
  color: #111111;
  text-align: left;
}
.cid-uBBVIf04IG {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #273e6d;
}
.cid-uBBVIf04IG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBBVIf04IG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBBVIf04IG .mbr-section-title {
  color: #fafafa;
  text-align: center;
}
.cid-uBBVIfqPQn {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uBBVIfqPQn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBBVIfqPQn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBBVIfqPQn .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  align-items: flex-start;
}
@media (min-width: 991px) {
  .cid-uBBVIfqPQn .item {
    margin-bottom: 4rem;
  }
}
.cid-uBBVIfqPQn .item:last-child .icon-box:before {
  display: none;
}
.cid-uBBVIfqPQn .item.last .icon-box:before {
  display: none;
}
.cid-uBBVIfqPQn .icon-box {
  background: #273e6d;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (max-width: 768px) {
  .cid-uBBVIfqPQn .icon-box {
    margin-right: 1rem;
  }
}
.cid-uBBVIfqPQn span {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uBBVIfqPQn .card {
    margin-bottom: 2rem;
  }
  .cid-uBBVIfqPQn .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uBBVIg3j38 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #273e6d;
}
.cid-uBBVIg3j38 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBBVIg3j38 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBBVIg3j38 .mbr-section-title {
  color: #fafafa;
  text-align: center;
}
.cid-uBBVIgq9d5 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uBBVIgq9d5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBBVIgq9d5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBBVIgq9d5 .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #273e6d;
  margin-left: 1rem;
}
.cid-uBBVIgq9d5 .panel-group {
  border: none;
}
.cid-uBBVIgq9d5 .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uBBVIgq9d5 .panel-body,
.cid-uBBVIgq9d5 .card-header {
  padding: 1rem 0;
}
.cid-uBBVIgq9d5 .panel-title-edit {
  color: #000000;
  text-align: left;
}
.cid-uBBVIgq9d5 .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uBBVIgTCM2 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #273e6d;
}
.cid-uBBVIgTCM2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBBVIgTCM2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBBVIgTCM2 .mbr-section-title {
  color: #fafafa;
  text-align: center;
}
.cid-uBBVIhj6oz {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uBBVIhj6oz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBBVIhj6oz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBBVIhj6oz .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uBBVIhj6oz .image-wrap img {
    display: block;
    margin: auto;
    width: 70%;
  }
}
.cid-uBBVIhj6oz .mbr-section-title {
  color: #206dcf;
}
.cid-uBBVIhj6oz .mbr-text,
.cid-uBBVIhj6oz .mbr-section-btn {
  color: #2e1d50;
}
.cid-uBBVIhHS5y {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-uBBVIhHS5y .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uBBVIhHS5y .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uBBVIhHS5y .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uBBVIhHS5y .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uBBVIhHS5y .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uBBVIhHS5y .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uBBVIhHS5y .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-uBBVIhHS5y .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uBBVIhHS5y .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uBBVIhHS5y .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uBBVIhHS5y .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uBBVIhHS5y .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uBBVIhHS5y .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uBBVIhHS5y .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uBBVIhHS5y .media-container-row .mbr-text {
  color: #fafafa;
}
.cid-uBBVKZ28s7 .navbar-dropdown {
  position: relative !important;
}
.cid-uBBVKZ28s7 .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-uBBVKZ28s7 .dropdown-menu {
  padding: 0;
}
.cid-uBBVKZ28s7 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uBBVKZ28s7 .dropdown-item:hover,
.cid-uBBVKZ28s7 .dropdown-item:focus {
  background: #273e6d !important;
  color: white !important;
}
.cid-uBBVKZ28s7 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-uBBVKZ28s7 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uBBVKZ28s7 .nav-link {
  position: relative;
}
.cid-uBBVKZ28s7 .container {
  display: flex;
  margin: auto;
}
.cid-uBBVKZ28s7 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uBBVKZ28s7 .navbar-caption {
  padding-right: 4rem;
}
.cid-uBBVKZ28s7 .dropdown-menu,
.cid-uBBVKZ28s7 .navbar.opened {
  background: #273e6d !important;
}
.cid-uBBVKZ28s7 .nav-item:focus,
.cid-uBBVKZ28s7 .nav-link:focus {
  outline: none;
}
.cid-uBBVKZ28s7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uBBVKZ28s7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uBBVKZ28s7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uBBVKZ28s7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uBBVKZ28s7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uBBVKZ28s7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uBBVKZ28s7 .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #273e6d;
}
.cid-uBBVKZ28s7 .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uBBVKZ28s7 .navbar.opened {
  transition: all .3s;
}
.cid-uBBVKZ28s7 .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-uBBVKZ28s7 .navbar .navbar-logo img {
  width: auto;
}
.cid-uBBVKZ28s7 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uBBVKZ28s7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uBBVKZ28s7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uBBVKZ28s7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uBBVKZ28s7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uBBVKZ28s7 .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: 55%;
}
.cid-uBBVKZ28s7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uBBVKZ28s7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uBBVKZ28s7 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uBBVKZ28s7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uBBVKZ28s7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uBBVKZ28s7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uBBVKZ28s7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uBBVKZ28s7 .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: 55%;
  }
  .cid-uBBVKZ28s7 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uBBVKZ28s7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uBBVKZ28s7 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uBBVKZ28s7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uBBVKZ28s7 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uBBVKZ28s7 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uBBVKZ28s7 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uBBVKZ28s7 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uBBVKZ28s7 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uBBVKZ28s7 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uBBVKZ28s7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uBBVKZ28s7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uBBVKZ28s7 .dropdown-item.active,
.cid-uBBVKZ28s7 .dropdown-item:active {
  background-color: transparent;
}
.cid-uBBVKZ28s7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uBBVKZ28s7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uBBVKZ28s7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uBBVKZ28s7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #273e6d;
}
.cid-uBBVKZ28s7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uBBVKZ28s7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uBBVKZ28s7 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uBBVKZ28s7 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uBBVKZ28s7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uBBVKZ28s7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-uBBVKZ28s7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uBBVKZ28s7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uBBVKZ28s7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uBBVKZ28s7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uBBVKZ28s7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uBBVKZ28s7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uBBVKZ28s7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uBBVKZ28s7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uBBVKZ28s7 .navbar-dropdown {
  padding: .5rem 1rem;
}
.cid-uBBVKZ28s7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uBBVKZ28s7 .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-uBBVKZ28s7 .navbar {
    height: 77px;
  }
  .cid-uBBVKZ28s7 .navbar.opened {
    height: auto;
  }
  .cid-uBBVKZ28s7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uBBVKZl74g {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uBBVKZl74g .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uBBVKZz5dg {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #273e6d;
}
.cid-uBBVKZz5dg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBBVKZz5dg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBBVKZz5dg .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uBBVKZz5dg .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uBBVKZz5dg .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uBBVKZz5dg .mbr-text,
.cid-uBBVKZz5dg .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uBBVKZz5dg .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-uBBVKZz5dg P {
  text-align: right;
  color: #ffffff;
}
.cid-uBBVKZz5dg ul {
  list-style: none;
}
.cid-uBBVKZz5dg ul li::before {
  content: "✔️";
  display: inline-block;
  margin-right: 0.2rem;
}
.cid-uBBVKZVmuD {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uBBVKZVmuD img,
.cid-uBBVKZVmuD .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uBBVKZVmuD .item:focus,
.cid-uBBVKZVmuD span:focus {
  outline: none;
}
.cid-uBBVKZVmuD .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uBBVKZVmuD .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uBBVKZVmuD .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uBBVKZVmuD .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uBBVKZVmuD .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uBBVKZVmuD .mbr-section-title {
  color: #232323;
}
.cid-uBBVKZVmuD .mbr-text,
.cid-uBBVKZVmuD .mbr-section-btn {
  text-align: center;
}
.cid-uBBVKZVmuD .item-title {
  text-align: center;
}
.cid-uBBVKZVmuD .item-subtitle {
  text-align: left;
}
.cid-uBBVL0m0BQ {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #273e6d;
}
.cid-uBBVL0m0BQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBBVL0m0BQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBBVL0m0BQ .mbr-section-title {
  color: #fafafa;
  text-align: center;
}
.cid-uBBVL0FDl8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uBBVL0FDl8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBBVL0FDl8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBBVL0FDl8 .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uBBVL0FDl8 .row {
    flex-direction: column-reverse;
  }
  .cid-uBBVL0FDl8 .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-uBBVL0FDl8 .card-wrapper {
    padding: 0 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uBBVL0FDl8 .card-wrapper {
    padding-right: 2rem;
  }
}
.cid-uBBVL0FDl8 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uBBVL0YyJi {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #273e6d;
}
.cid-uBBVL0YyJi .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBBVL0YyJi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBBVL0YyJi .mbr-section-title {
  color: #fafafa;
  text-align: center;
}
.cid-uBBVL1gZ7R {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uBBVL1gZ7R .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBBVL1gZ7R .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBBVL1gZ7R .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uBBVL1gZ7R .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uBBVL1gZ7R .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uBBVL1gZ7R .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #e6c63b;
  transition: all 0.3s;
}
.cid-uBBVL1gZ7R .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #e6c63b;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uBBVL1gZ7R .social-row .soc-item:hover {
  background-color: #e6c63b;
}
.cid-uBBVL1gZ7R .social-row .soc-item:hover .mbr-iconfont {
  color: #000000;
}
@media (max-width: 767px) {
  .cid-uBBVL1gZ7R .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uBBVL1gZ7R .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uBBVL1gZ7R .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uBBVL1TPjA {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #273e6d;
}
.cid-uBBVL1TPjA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBBVL1TPjA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBBVL1TPjA .mbr-section-title {
  color: #fafafa;
  text-align: center;
}
.cid-uBBVL2cyTq {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uBBVL2cyTq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBBVL2cyTq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uBBVL2cyTq .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uBBVL2cyTq img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uBBVL2cyTq .text-wrapper {
    padding: 2rem;
  }
}
.cid-uBBVL2xP76 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #273e6d;
}
.cid-uBBVL2xP76 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBBVL2xP76 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBBVL2xP76 .mbr-section-title {
  color: #fafafa;
  text-align: center;
}
.cid-uBBVL2RaZN {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uBBVL2RaZN .item:focus,
.cid-uBBVL2RaZN span:focus {
  outline: none;
}
.cid-uBBVL2RaZN .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uBBVL2RaZN .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-uBBVL2RaZN .item {
  padding: 0;
  margin: 0;
}
.cid-uBBVL2RaZN .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uBBVL2RaZN .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uBBVL2RaZN .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uBBVL2RaZN .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uBBVL2RaZN .mbr-section-title {
  color: #232323;
}
.cid-uBBVL2RaZN .mbr-text,
.cid-uBBVL2RaZN .mbr-section-btn {
  text-align: left;
}
.cid-uBBVL2RaZN .item-title {
  text-align: left;
}
.cid-uBBVL2RaZN .item-subtitle {
  text-align: left;
  color: #232323;
}
.cid-uBBVL3d3GM {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uBBVL3d3GM .line {
  background-color: #2e1d50;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uBBVL3d3GM .mbr-text {
  color: #d21010;
}
.cid-uBBVL3v5qz {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #273e6d;
}
.cid-uBBVL3v5qz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBBVL3v5qz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBBVL3v5qz .mbr-section-title {
  color: #fafafa;
  text-align: center;
}
.cid-uBBVL3SuqR {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uBBVL3SuqR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBBVL3SuqR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBBVL3SuqR .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
@media (min-width: 991px) {
  .cid-uBBVL3SuqR .item {
    margin-bottom: 4rem;
  }
}
.cid-uBBVL3SuqR .item:last-child .icon-box:before {
  display: none;
}
.cid-uBBVL3SuqR .item.last .icon-box:before {
  display: none;
}
.cid-uBBVL3SuqR .icon-box {
  background: #273e6d;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (max-width: 768px) {
  .cid-uBBVL3SuqR .icon-box {
    margin-right: 1rem;
  }
}
.cid-uBBVL3SuqR .icon-box::before {
  content: "\e925";
  font-family: Moririse2 !important;
  position: absolute;
  font-size: 32px;
  left: 50%;
  top: 120%;
  color: #273e6d;
  transform: translate(-50%, 0);
}
.cid-uBBVL3SuqR span {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uBBVL3SuqR .card {
    margin-bottom: 2rem;
  }
  .cid-uBBVL3SuqR .card-wrapper {
    margin-bottom: 2rem;
  }
  .cid-uBBVL3SuqR .icon-box::before {
    top: 141%;
  }
}
@media (max-width: 768px) {
  .cid-uBBVL3SuqR .icon-box::before {
    top: 114%;
  }
}
.cid-uBBVL4royp {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #273e6d;
}
.cid-uBBVL4royp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBBVL4royp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBBVL4royp .mbr-section-title {
  color: #fafafa;
  text-align: center;
}
.cid-uBBVL4KGG2 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-uBBVL4KGG2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBBVL4KGG2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-uBBVL4KGG2 .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uBBVL4KGG2 .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uBBVL4KGG2 .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uBBVL4KGG2 .item-wrapper {
  border-radius: 4px;
  background-color: #ffffff;
}
.cid-uBBVL4KGG2 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uBBVL4KGG2 .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uBBVL590g0 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #273e6d;
}
.cid-uBBVL590g0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBBVL590g0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBBVL590g0 .mbr-section-title {
  color: #fafafa;
  text-align: center;
}
.cid-uBBVL5xnWv {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uBBVL5xnWv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBBVL5xnWv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBBVL5xnWv .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
@media (min-width: 991px) {
  .cid-uBBVL5xnWv .item {
    margin-bottom: 4rem;
  }
}
.cid-uBBVL5xnWv .item:last-child .icon-box:before {
  display: none;
}
.cid-uBBVL5xnWv .item.last .icon-box:before {
  display: none;
}
.cid-uBBVL5xnWv .icon-box {
  background: #273e6d;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (max-width: 768px) {
  .cid-uBBVL5xnWv .icon-box {
    margin-right: 1rem;
  }
}
.cid-uBBVL5xnWv .icon-box::before {
  content: "\e925";
  font-family: Moririse2 !important;
  position: absolute;
  font-size: 32px;
  left: 50%;
  top: 120%;
  top: 100%;
  color: #273e6d;
  transform: translate(-50%, 0);
}
.cid-uBBVL5xnWv span {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uBBVL5xnWv .card {
    margin-bottom: 2rem;
  }
  .cid-uBBVL5xnWv .card-wrapper {
    margin-bottom: 2rem;
  }
  .cid-uBBVL5xnWv .icon-box::before {
    top: 141%;
    top: 123%;
  }
}
@media (max-width: 768px) {
  .cid-uBBVL5xnWv .icon-box::before {
    top: 114%;
  }
}
.cid-uBBVL67Jjv {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #273e6d;
}
.cid-uBBVL67Jjv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBBVL67Jjv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBBVL67Jjv .mbr-section-title {
  color: #ffffff;
}
.cid-uBBVL67Jjv .mbr-text,
.cid-uBBVL67Jjv .mbr-section-btn {
  color: #ffe161;
}
.cid-uBBVL6sxP5 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uBBVL6sxP5 .item:focus,
.cid-uBBVL6sxP5 span:focus {
  outline: none;
}
.cid-uBBVL6sxP5 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uBBVL6sxP5 .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-uBBVL6sxP5 .item {
  padding: 0;
  margin: 0;
}
.cid-uBBVL6sxP5 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uBBVL6sxP5 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uBBVL6sxP5 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uBBVL6sxP5 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uBBVL6sxP5 .mbr-section-title {
  color: #232323;
}
.cid-uBBVL6sxP5 .mbr-text,
.cid-uBBVL6sxP5 .mbr-section-btn {
  text-align: left;
}
.cid-uBBVL6sxP5 .item-title {
  text-align: left;
}
.cid-uBBVL6sxP5 .item-subtitle {
  text-align: left;
  color: #232323;
}
.cid-uBBVL6SXnB {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #eccc3d;
}
.cid-uBBVL6SXnB .line {
  background-color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uBBVL6SXnB .mbr-text {
  color: #e43f3f;
}
.cid-uBBVL7bQLl {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uBBVL7bQLl .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uBBVL7bQLl .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uBBVL7bQLl .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uBBVL7bQLl .mbr-section-title {
  color: #273e6d;
  text-align: left;
}
.cid-uBBVL7bQLl .mbr-text,
.cid-uBBVL7bQLl .mbr-section-btn {
  color: #111111;
  text-align: left;
}
.cid-uBBVL7xfQC {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #273e6d;
}
.cid-uBBVL7xfQC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBBVL7xfQC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBBVL7xfQC .mbr-section-title {
  color: #fafafa;
  text-align: center;
}
.cid-uBBVL7SZyq {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uBBVL7SZyq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBBVL7SZyq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBBVL7SZyq .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  align-items: flex-start;
}
@media (min-width: 991px) {
  .cid-uBBVL7SZyq .item {
    margin-bottom: 4rem;
  }
}
.cid-uBBVL7SZyq .item:last-child .icon-box:before {
  display: none;
}
.cid-uBBVL7SZyq .item.last .icon-box:before {
  display: none;
}
.cid-uBBVL7SZyq .icon-box {
  background: #273e6d;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (max-width: 768px) {
  .cid-uBBVL7SZyq .icon-box {
    margin-right: 1rem;
  }
}
.cid-uBBVL7SZyq span {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uBBVL7SZyq .card {
    margin-bottom: 2rem;
  }
  .cid-uBBVL7SZyq .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uBBVL8xz68 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #273e6d;
}
.cid-uBBVL8xz68 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBBVL8xz68 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBBVL8xz68 .mbr-section-title {
  color: #fafafa;
  text-align: center;
}
.cid-uBBVL8UL4Q {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uBBVL8UL4Q .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBBVL8UL4Q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBBVL8UL4Q .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #273e6d;
  margin-left: 1rem;
}
.cid-uBBVL8UL4Q .panel-group {
  border: none;
}
.cid-uBBVL8UL4Q .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uBBVL8UL4Q .panel-body,
.cid-uBBVL8UL4Q .card-header {
  padding: 1rem 0;
}
.cid-uBBVL8UL4Q .panel-title-edit {
  color: #000000;
  text-align: left;
}
.cid-uBBVL8UL4Q .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uBBVL9mQip {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #273e6d;
}
.cid-uBBVL9mQip .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBBVL9mQip .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBBVL9mQip .mbr-section-title {
  color: #fafafa;
  text-align: center;
}
.cid-uBBVL9JbCZ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uBBVL9JbCZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBBVL9JbCZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBBVL9JbCZ .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uBBVL9JbCZ .image-wrap img {
    display: block;
    margin: auto;
    width: 70%;
  }
}
.cid-uBBVL9JbCZ .mbr-section-title {
  color: #206dcf;
}
.cid-uBBVL9JbCZ .mbr-text,
.cid-uBBVL9JbCZ .mbr-section-btn {
  color: #2e1d50;
}
.cid-uBBVLa7Ndh {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-uBBVLa7Ndh .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uBBVLa7Ndh .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uBBVLa7Ndh .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uBBVLa7Ndh .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uBBVLa7Ndh .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uBBVLa7Ndh .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uBBVLa7Ndh .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-uBBVLa7Ndh .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uBBVLa7Ndh .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uBBVLa7Ndh .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uBBVLa7Ndh .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uBBVLa7Ndh .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uBBVLa7Ndh .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uBBVLa7Ndh .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uBBVLa7Ndh .media-container-row .mbr-text {
  color: #fafafa;
}
.cid-uBBVObmoaM .navbar-dropdown {
  position: relative !important;
}
.cid-uBBVObmoaM .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-uBBVObmoaM .dropdown-menu {
  padding: 0;
}
.cid-uBBVObmoaM .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uBBVObmoaM .dropdown-item:hover,
.cid-uBBVObmoaM .dropdown-item:focus {
  background: #273e6d !important;
  color: white !important;
}
.cid-uBBVObmoaM .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-uBBVObmoaM .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uBBVObmoaM .nav-link {
  position: relative;
}
.cid-uBBVObmoaM .container {
  display: flex;
  margin: auto;
}
.cid-uBBVObmoaM .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uBBVObmoaM .navbar-caption {
  padding-right: 4rem;
}
.cid-uBBVObmoaM .dropdown-menu,
.cid-uBBVObmoaM .navbar.opened {
  background: #273e6d !important;
}
.cid-uBBVObmoaM .nav-item:focus,
.cid-uBBVObmoaM .nav-link:focus {
  outline: none;
}
.cid-uBBVObmoaM .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uBBVObmoaM .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uBBVObmoaM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uBBVObmoaM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uBBVObmoaM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uBBVObmoaM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uBBVObmoaM .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #273e6d;
}
.cid-uBBVObmoaM .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uBBVObmoaM .navbar.opened {
  transition: all .3s;
}
.cid-uBBVObmoaM .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-uBBVObmoaM .navbar .navbar-logo img {
  width: auto;
}
.cid-uBBVObmoaM .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uBBVObmoaM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uBBVObmoaM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uBBVObmoaM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uBBVObmoaM .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uBBVObmoaM .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: 55%;
}
.cid-uBBVObmoaM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uBBVObmoaM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uBBVObmoaM .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uBBVObmoaM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uBBVObmoaM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uBBVObmoaM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uBBVObmoaM .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uBBVObmoaM .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: 55%;
  }
  .cid-uBBVObmoaM .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uBBVObmoaM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uBBVObmoaM .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uBBVObmoaM .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uBBVObmoaM .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uBBVObmoaM .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uBBVObmoaM .navbar.navbar-short {
  min-height: 60px;
}
.cid-uBBVObmoaM .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uBBVObmoaM .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uBBVObmoaM .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uBBVObmoaM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uBBVObmoaM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uBBVObmoaM .dropdown-item.active,
.cid-uBBVObmoaM .dropdown-item:active {
  background-color: transparent;
}
.cid-uBBVObmoaM .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uBBVObmoaM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uBBVObmoaM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uBBVObmoaM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #273e6d;
}
.cid-uBBVObmoaM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uBBVObmoaM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uBBVObmoaM ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uBBVObmoaM .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uBBVObmoaM button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uBBVObmoaM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-uBBVObmoaM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uBBVObmoaM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uBBVObmoaM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uBBVObmoaM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uBBVObmoaM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uBBVObmoaM nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uBBVObmoaM nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uBBVObmoaM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uBBVObmoaM .navbar-dropdown {
  padding: .5rem 1rem;
}
.cid-uBBVObmoaM a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uBBVObmoaM .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-uBBVObmoaM .navbar {
    height: 77px;
  }
  .cid-uBBVObmoaM .navbar.opened {
    height: auto;
  }
  .cid-uBBVObmoaM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uBBVObHHgh {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uBBVObHHgh .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uBBVObVgX4 {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #273e6d;
}
.cid-uBBVObVgX4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBBVObVgX4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBBVObVgX4 .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uBBVObVgX4 .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uBBVObVgX4 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uBBVObVgX4 .mbr-text,
.cid-uBBVObVgX4 .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uBBVObVgX4 .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-uBBVObVgX4 P {
  text-align: right;
  color: #ffffff;
}
.cid-uBBVObVgX4 ul {
  list-style: none;
}
.cid-uBBVObVgX4 ul li::before {
  content: "✔️";
  display: inline-block;
  margin-right: 0.2rem;
}
.cid-uBBVOcje7O {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uBBVOcje7O img,
.cid-uBBVOcje7O .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uBBVOcje7O .item:focus,
.cid-uBBVOcje7O span:focus {
  outline: none;
}
.cid-uBBVOcje7O .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uBBVOcje7O .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uBBVOcje7O .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uBBVOcje7O .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uBBVOcje7O .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uBBVOcje7O .mbr-section-title {
  color: #232323;
}
.cid-uBBVOcje7O .mbr-text,
.cid-uBBVOcje7O .mbr-section-btn {
  text-align: center;
}
.cid-uBBVOcje7O .item-title {
  text-align: center;
}
.cid-uBBVOcje7O .item-subtitle {
  text-align: left;
}
.cid-uBBVOcLzXX {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #273e6d;
}
.cid-uBBVOcLzXX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBBVOcLzXX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBBVOcLzXX .mbr-section-title {
  color: #fafafa;
  text-align: center;
}
.cid-uBBVOd4UPf {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uBBVOd4UPf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBBVOd4UPf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBBVOd4UPf .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uBBVOd4UPf .row {
    flex-direction: column-reverse;
  }
  .cid-uBBVOd4UPf .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-uBBVOd4UPf .card-wrapper {
    padding: 0 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uBBVOd4UPf .card-wrapper {
    padding-right: 2rem;
  }
}
.cid-uBBVOd4UPf .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uBBVOdpDWg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #273e6d;
}
.cid-uBBVOdpDWg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBBVOdpDWg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBBVOdpDWg .mbr-section-title {
  color: #fafafa;
  text-align: center;
}
.cid-uBBVOdIosq {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uBBVOdIosq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBBVOdIosq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBBVOdIosq .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uBBVOdIosq .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uBBVOdIosq .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uBBVOdIosq .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #e6c63b;
  transition: all 0.3s;
}
.cid-uBBVOdIosq .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #e6c63b;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uBBVOdIosq .social-row .soc-item:hover {
  background-color: #e6c63b;
}
.cid-uBBVOdIosq .social-row .soc-item:hover .mbr-iconfont {
  color: #000000;
}
@media (max-width: 767px) {
  .cid-uBBVOdIosq .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uBBVOdIosq .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uBBVOdIosq .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uBBVOelKIy {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #273e6d;
}
.cid-uBBVOelKIy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBBVOelKIy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBBVOelKIy .mbr-section-title {
  color: #fafafa;
  text-align: center;
}
.cid-uBBVOeFusN {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uBBVOeFusN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBBVOeFusN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uBBVOeFusN .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uBBVOeFusN img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uBBVOeFusN .text-wrapper {
    padding: 2rem;
  }
}
.cid-uBBVOf0uKy {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #273e6d;
}
.cid-uBBVOf0uKy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBBVOf0uKy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBBVOf0uKy .mbr-section-title {
  color: #fafafa;
  text-align: center;
}
.cid-uBBVOfkf90 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uBBVOfkf90 .item:focus,
.cid-uBBVOfkf90 span:focus {
  outline: none;
}
.cid-uBBVOfkf90 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uBBVOfkf90 .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-uBBVOfkf90 .item {
  padding: 0;
  margin: 0;
}
.cid-uBBVOfkf90 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uBBVOfkf90 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uBBVOfkf90 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uBBVOfkf90 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uBBVOfkf90 .mbr-section-title {
  color: #232323;
}
.cid-uBBVOfkf90 .mbr-text,
.cid-uBBVOfkf90 .mbr-section-btn {
  text-align: left;
}
.cid-uBBVOfkf90 .item-title {
  text-align: left;
}
.cid-uBBVOfkf90 .item-subtitle {
  text-align: left;
  color: #232323;
}
.cid-uBBVOfGZrL {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uBBVOfGZrL .line {
  background-color: #2e1d50;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uBBVOfGZrL .mbr-text {
  color: #d21010;
}
.cid-uBBVOfYQWf {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #273e6d;
}
.cid-uBBVOfYQWf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBBVOfYQWf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBBVOfYQWf .mbr-section-title {
  color: #fafafa;
  text-align: center;
}
.cid-uBBVOgnAcX {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uBBVOgnAcX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBBVOgnAcX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBBVOgnAcX .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
@media (min-width: 991px) {
  .cid-uBBVOgnAcX .item {
    margin-bottom: 4rem;
  }
}
.cid-uBBVOgnAcX .item:last-child .icon-box:before {
  display: none;
}
.cid-uBBVOgnAcX .item.last .icon-box:before {
  display: none;
}
.cid-uBBVOgnAcX .icon-box {
  background: #273e6d;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (max-width: 768px) {
  .cid-uBBVOgnAcX .icon-box {
    margin-right: 1rem;
  }
}
.cid-uBBVOgnAcX .icon-box::before {
  content: "\e925";
  font-family: Moririse2 !important;
  position: absolute;
  font-size: 32px;
  left: 50%;
  top: 120%;
  color: #273e6d;
  transform: translate(-50%, 0);
}
.cid-uBBVOgnAcX span {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uBBVOgnAcX .card {
    margin-bottom: 2rem;
  }
  .cid-uBBVOgnAcX .card-wrapper {
    margin-bottom: 2rem;
  }
  .cid-uBBVOgnAcX .icon-box::before {
    top: 141%;
  }
}
@media (max-width: 768px) {
  .cid-uBBVOgnAcX .icon-box::before {
    top: 114%;
  }
}
.cid-uBBVOgZRUC {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #273e6d;
}
.cid-uBBVOgZRUC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBBVOgZRUC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBBVOgZRUC .mbr-section-title {
  color: #fafafa;
  text-align: center;
}
.cid-uBBVOhlj6K {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-uBBVOhlj6K .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBBVOhlj6K .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-uBBVOhlj6K .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uBBVOhlj6K .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uBBVOhlj6K .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uBBVOhlj6K .item-wrapper {
  border-radius: 4px;
  background-color: #ffffff;
}
.cid-uBBVOhlj6K .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uBBVOhlj6K .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uBBVOhOzYw {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #273e6d;
}
.cid-uBBVOhOzYw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBBVOhOzYw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBBVOhOzYw .mbr-section-title {
  color: #fafafa;
  text-align: center;
}
.cid-uBBVOia3nB {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uBBVOia3nB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBBVOia3nB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBBVOia3nB .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
@media (min-width: 991px) {
  .cid-uBBVOia3nB .item {
    margin-bottom: 4rem;
  }
}
.cid-uBBVOia3nB .item:last-child .icon-box:before {
  display: none;
}
.cid-uBBVOia3nB .item.last .icon-box:before {
  display: none;
}
.cid-uBBVOia3nB .icon-box {
  background: #273e6d;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (max-width: 768px) {
  .cid-uBBVOia3nB .icon-box {
    margin-right: 1rem;
  }
}
.cid-uBBVOia3nB .icon-box::before {
  content: "\e925";
  font-family: Moririse2 !important;
  position: absolute;
  font-size: 32px;
  left: 50%;
  top: 120%;
  top: 100%;
  color: #273e6d;
  transform: translate(-50%, 0);
}
.cid-uBBVOia3nB span {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uBBVOia3nB .card {
    margin-bottom: 2rem;
  }
  .cid-uBBVOia3nB .card-wrapper {
    margin-bottom: 2rem;
  }
  .cid-uBBVOia3nB .icon-box::before {
    top: 141%;
    top: 123%;
  }
}
@media (max-width: 768px) {
  .cid-uBBVOia3nB .icon-box::before {
    top: 114%;
  }
}
.cid-uBBVOiLCdn {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #273e6d;
}
.cid-uBBVOiLCdn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBBVOiLCdn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBBVOiLCdn .mbr-section-title {
  color: #ffffff;
}
.cid-uBBVOiLCdn .mbr-text,
.cid-uBBVOiLCdn .mbr-section-btn {
  color: #ffe161;
}
.cid-uBBVOj885V {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uBBVOj885V .item:focus,
.cid-uBBVOj885V span:focus {
  outline: none;
}
.cid-uBBVOj885V .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uBBVOj885V .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-uBBVOj885V .item {
  padding: 0;
  margin: 0;
}
.cid-uBBVOj885V .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uBBVOj885V .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uBBVOj885V .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uBBVOj885V .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uBBVOj885V .mbr-section-title {
  color: #232323;
}
.cid-uBBVOj885V .mbr-text,
.cid-uBBVOj885V .mbr-section-btn {
  text-align: left;
}
.cid-uBBVOj885V .item-title {
  text-align: left;
}
.cid-uBBVOj885V .item-subtitle {
  text-align: left;
  color: #232323;
}
.cid-uBBVOjAV5y {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #eccc3d;
}
.cid-uBBVOjAV5y .line {
  background-color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uBBVOjAV5y .mbr-text {
  color: #e43f3f;
}
.cid-uBBVOjU1Au {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uBBVOjU1Au .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uBBVOjU1Au .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uBBVOjU1Au .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uBBVOjU1Au .mbr-section-title {
  color: #273e6d;
  text-align: left;
}
.cid-uBBVOjU1Au .mbr-text,
.cid-uBBVOjU1Au .mbr-section-btn {
  color: #111111;
  text-align: left;
}
.cid-uBBVOkh909 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #273e6d;
}
.cid-uBBVOkh909 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBBVOkh909 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBBVOkh909 .mbr-section-title {
  color: #fafafa;
  text-align: center;
}
.cid-uBBVOkFtBD {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uBBVOkFtBD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBBVOkFtBD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBBVOkFtBD .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  align-items: flex-start;
}
@media (min-width: 991px) {
  .cid-uBBVOkFtBD .item {
    margin-bottom: 4rem;
  }
}
.cid-uBBVOkFtBD .item:last-child .icon-box:before {
  display: none;
}
.cid-uBBVOkFtBD .item.last .icon-box:before {
  display: none;
}
.cid-uBBVOkFtBD .icon-box {
  background: #273e6d;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (max-width: 768px) {
  .cid-uBBVOkFtBD .icon-box {
    margin-right: 1rem;
  }
}
.cid-uBBVOkFtBD span {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uBBVOkFtBD .card {
    margin-bottom: 2rem;
  }
  .cid-uBBVOkFtBD .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uBBVOlmBdr {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #273e6d;
}
.cid-uBBVOlmBdr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBBVOlmBdr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBBVOlmBdr .mbr-section-title {
  color: #fafafa;
  text-align: center;
}
.cid-uBBVOlKcd8 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uBBVOlKcd8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBBVOlKcd8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBBVOlKcd8 .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #273e6d;
  margin-left: 1rem;
}
.cid-uBBVOlKcd8 .panel-group {
  border: none;
}
.cid-uBBVOlKcd8 .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uBBVOlKcd8 .panel-body,
.cid-uBBVOlKcd8 .card-header {
  padding: 1rem 0;
}
.cid-uBBVOlKcd8 .panel-title-edit {
  color: #000000;
  text-align: left;
}
.cid-uBBVOlKcd8 .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uBBVOmdHFi {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #273e6d;
}
.cid-uBBVOmdHFi .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBBVOmdHFi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBBVOmdHFi .mbr-section-title {
  color: #fafafa;
  text-align: center;
}
.cid-uBBVOmCbiR {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uBBVOmCbiR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBBVOmCbiR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBBVOmCbiR .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uBBVOmCbiR .image-wrap img {
    display: block;
    margin: auto;
    width: 70%;
  }
}
.cid-uBBVOmCbiR .mbr-section-title {
  color: #206dcf;
}
.cid-uBBVOmCbiR .mbr-text,
.cid-uBBVOmCbiR .mbr-section-btn {
  color: #2e1d50;
}
.cid-uBBVOn1b0c {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-uBBVOn1b0c .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uBBVOn1b0c .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uBBVOn1b0c .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uBBVOn1b0c .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uBBVOn1b0c .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uBBVOn1b0c .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uBBVOn1b0c .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-uBBVOn1b0c .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uBBVOn1b0c .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uBBVOn1b0c .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uBBVOn1b0c .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uBBVOn1b0c .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uBBVOn1b0c .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uBBVOn1b0c .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uBBVOn1b0c .media-container-row .mbr-text {
  color: #fafafa;
}
.cid-uBBVS4Ztj6 .navbar-dropdown {
  position: relative !important;
}
.cid-uBBVS4Ztj6 .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-uBBVS4Ztj6 .dropdown-menu {
  padding: 0;
}
.cid-uBBVS4Ztj6 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uBBVS4Ztj6 .dropdown-item:hover,
.cid-uBBVS4Ztj6 .dropdown-item:focus {
  background: #273e6d !important;
  color: white !important;
}
.cid-uBBVS4Ztj6 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-uBBVS4Ztj6 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uBBVS4Ztj6 .nav-link {
  position: relative;
}
.cid-uBBVS4Ztj6 .container {
  display: flex;
  margin: auto;
}
.cid-uBBVS4Ztj6 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uBBVS4Ztj6 .navbar-caption {
  padding-right: 4rem;
}
.cid-uBBVS4Ztj6 .dropdown-menu,
.cid-uBBVS4Ztj6 .navbar.opened {
  background: #273e6d !important;
}
.cid-uBBVS4Ztj6 .nav-item:focus,
.cid-uBBVS4Ztj6 .nav-link:focus {
  outline: none;
}
.cid-uBBVS4Ztj6 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uBBVS4Ztj6 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uBBVS4Ztj6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uBBVS4Ztj6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uBBVS4Ztj6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uBBVS4Ztj6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uBBVS4Ztj6 .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #273e6d;
}
.cid-uBBVS4Ztj6 .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uBBVS4Ztj6 .navbar.opened {
  transition: all .3s;
}
.cid-uBBVS4Ztj6 .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-uBBVS4Ztj6 .navbar .navbar-logo img {
  width: auto;
}
.cid-uBBVS4Ztj6 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uBBVS4Ztj6 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uBBVS4Ztj6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uBBVS4Ztj6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uBBVS4Ztj6 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uBBVS4Ztj6 .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: 55%;
}
.cid-uBBVS4Ztj6 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uBBVS4Ztj6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uBBVS4Ztj6 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uBBVS4Ztj6 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uBBVS4Ztj6 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uBBVS4Ztj6 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uBBVS4Ztj6 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uBBVS4Ztj6 .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: 55%;
  }
  .cid-uBBVS4Ztj6 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uBBVS4Ztj6 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uBBVS4Ztj6 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uBBVS4Ztj6 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uBBVS4Ztj6 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uBBVS4Ztj6 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uBBVS4Ztj6 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uBBVS4Ztj6 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uBBVS4Ztj6 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uBBVS4Ztj6 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uBBVS4Ztj6 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uBBVS4Ztj6 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uBBVS4Ztj6 .dropdown-item.active,
.cid-uBBVS4Ztj6 .dropdown-item:active {
  background-color: transparent;
}
.cid-uBBVS4Ztj6 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uBBVS4Ztj6 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uBBVS4Ztj6 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uBBVS4Ztj6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #273e6d;
}
.cid-uBBVS4Ztj6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uBBVS4Ztj6 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uBBVS4Ztj6 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uBBVS4Ztj6 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uBBVS4Ztj6 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uBBVS4Ztj6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-uBBVS4Ztj6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uBBVS4Ztj6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uBBVS4Ztj6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uBBVS4Ztj6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uBBVS4Ztj6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uBBVS4Ztj6 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uBBVS4Ztj6 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uBBVS4Ztj6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uBBVS4Ztj6 .navbar-dropdown {
  padding: .5rem 1rem;
}
.cid-uBBVS4Ztj6 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uBBVS4Ztj6 .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-uBBVS4Ztj6 .navbar {
    height: 77px;
  }
  .cid-uBBVS4Ztj6 .navbar.opened {
    height: auto;
  }
  .cid-uBBVS4Ztj6 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uBBVS5jhuR {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uBBVS5jhuR .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uBBVS5xVu8 {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #273e6d;
}
.cid-uBBVS5xVu8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBBVS5xVu8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBBVS5xVu8 .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uBBVS5xVu8 .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uBBVS5xVu8 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uBBVS5xVu8 .mbr-text,
.cid-uBBVS5xVu8 .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uBBVS5xVu8 .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-uBBVS5xVu8 P {
  text-align: right;
  color: #ffffff;
}
.cid-uBBVS5xVu8 ul {
  list-style: none;
}
.cid-uBBVS5xVu8 ul li::before {
  content: "✔️";
  display: inline-block;
  margin-right: 0.2rem;
}
.cid-uBBVS5RTyH {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uBBVS5RTyH img,
.cid-uBBVS5RTyH .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uBBVS5RTyH .item:focus,
.cid-uBBVS5RTyH span:focus {
  outline: none;
}
.cid-uBBVS5RTyH .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uBBVS5RTyH .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uBBVS5RTyH .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uBBVS5RTyH .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uBBVS5RTyH .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uBBVS5RTyH .mbr-section-title {
  color: #232323;
}
.cid-uBBVS5RTyH .mbr-text,
.cid-uBBVS5RTyH .mbr-section-btn {
  text-align: center;
}
.cid-uBBVS5RTyH .item-title {
  text-align: center;
}
.cid-uBBVS5RTyH .item-subtitle {
  text-align: left;
}
.cid-uBBVS6kxgF {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #273e6d;
}
.cid-uBBVS6kxgF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBBVS6kxgF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBBVS6kxgF .mbr-section-title {
  color: #fafafa;
  text-align: center;
}
.cid-uBBVS6CsHv {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uBBVS6CsHv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBBVS6CsHv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBBVS6CsHv .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uBBVS6CsHv .row {
    flex-direction: column-reverse;
  }
  .cid-uBBVS6CsHv .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-uBBVS6CsHv .card-wrapper {
    padding: 0 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uBBVS6CsHv .card-wrapper {
    padding-right: 2rem;
  }
}
.cid-uBBVS6CsHv .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uBBVS70Xc0 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #273e6d;
}
.cid-uBBVS70Xc0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBBVS70Xc0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBBVS70Xc0 .mbr-section-title {
  color: #fafafa;
  text-align: center;
}
.cid-uBBVS7hY8w {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uBBVS7hY8w .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBBVS7hY8w .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBBVS7hY8w .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uBBVS7hY8w .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uBBVS7hY8w .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uBBVS7hY8w .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #e6c63b;
  transition: all 0.3s;
}
.cid-uBBVS7hY8w .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #e6c63b;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uBBVS7hY8w .social-row .soc-item:hover {
  background-color: #e6c63b;
}
.cid-uBBVS7hY8w .social-row .soc-item:hover .mbr-iconfont {
  color: #000000;
}
@media (max-width: 767px) {
  .cid-uBBVS7hY8w .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uBBVS7hY8w .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uBBVS7hY8w .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uBBVS7T8N6 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #273e6d;
}
.cid-uBBVS7T8N6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBBVS7T8N6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBBVS7T8N6 .mbr-section-title {
  color: #fafafa;
  text-align: center;
}
.cid-uBBVS8c3Cd {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uBBVS8c3Cd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBBVS8c3Cd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uBBVS8c3Cd .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uBBVS8c3Cd img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uBBVS8c3Cd .text-wrapper {
    padding: 2rem;
  }
}
.cid-uBBVS8xEQV {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #273e6d;
}
.cid-uBBVS8xEQV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBBVS8xEQV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBBVS8xEQV .mbr-section-title {
  color: #fafafa;
  text-align: center;
}
.cid-uBBVS8UhRL {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uBBVS8UhRL .item:focus,
.cid-uBBVS8UhRL span:focus {
  outline: none;
}
.cid-uBBVS8UhRL .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uBBVS8UhRL .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-uBBVS8UhRL .item {
  padding: 0;
  margin: 0;
}
.cid-uBBVS8UhRL .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uBBVS8UhRL .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uBBVS8UhRL .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uBBVS8UhRL .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uBBVS8UhRL .mbr-section-title {
  color: #232323;
}
.cid-uBBVS8UhRL .mbr-text,
.cid-uBBVS8UhRL .mbr-section-btn {
  text-align: left;
}
.cid-uBBVS8UhRL .item-title {
  text-align: left;
}
.cid-uBBVS8UhRL .item-subtitle {
  text-align: left;
  color: #232323;
}
.cid-uBBVS9fRA4 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uBBVS9fRA4 .line {
  background-color: #2e1d50;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uBBVS9fRA4 .mbr-text {
  color: #d21010;
}
.cid-uBBVS9vNxE {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #273e6d;
}
.cid-uBBVS9vNxE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBBVS9vNxE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBBVS9vNxE .mbr-section-title {
  color: #fafafa;
  text-align: center;
}
.cid-uBBVS9Nw3G {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uBBVS9Nw3G .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBBVS9Nw3G .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBBVS9Nw3G .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
@media (min-width: 991px) {
  .cid-uBBVS9Nw3G .item {
    margin-bottom: 4rem;
  }
}
.cid-uBBVS9Nw3G .item:last-child .icon-box:before {
  display: none;
}
.cid-uBBVS9Nw3G .item.last .icon-box:before {
  display: none;
}
.cid-uBBVS9Nw3G .icon-box {
  background: #273e6d;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (max-width: 768px) {
  .cid-uBBVS9Nw3G .icon-box {
    margin-right: 1rem;
  }
}
.cid-uBBVS9Nw3G .icon-box::before {
  content: "\e925";
  font-family: Moririse2 !important;
  position: absolute;
  font-size: 32px;
  left: 50%;
  top: 120%;
  color: #273e6d;
  transform: translate(-50%, 0);
}
.cid-uBBVS9Nw3G span {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uBBVS9Nw3G .card {
    margin-bottom: 2rem;
  }
  .cid-uBBVS9Nw3G .card-wrapper {
    margin-bottom: 2rem;
  }
  .cid-uBBVS9Nw3G .icon-box::before {
    top: 141%;
  }
}
@media (max-width: 768px) {
  .cid-uBBVS9Nw3G .icon-box::before {
    top: 114%;
  }
}
.cid-uBBVSancMy {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #273e6d;
}
.cid-uBBVSancMy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBBVSancMy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBBVSancMy .mbr-section-title {
  color: #fafafa;
  text-align: center;
}
.cid-uBBVSaJOZg {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-uBBVSaJOZg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBBVSaJOZg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-uBBVSaJOZg .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uBBVSaJOZg .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uBBVSaJOZg .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uBBVSaJOZg .item-wrapper {
  border-radius: 4px;
  background-color: #ffffff;
}
.cid-uBBVSaJOZg .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uBBVSaJOZg .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uBBVSb77C4 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #273e6d;
}
.cid-uBBVSb77C4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBBVSb77C4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBBVSb77C4 .mbr-section-title {
  color: #fafafa;
  text-align: center;
}
.cid-uBBVSbrwAo {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uBBVSbrwAo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBBVSbrwAo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBBVSbrwAo .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
@media (min-width: 991px) {
  .cid-uBBVSbrwAo .item {
    margin-bottom: 4rem;
  }
}
.cid-uBBVSbrwAo .item:last-child .icon-box:before {
  display: none;
}
.cid-uBBVSbrwAo .item.last .icon-box:before {
  display: none;
}
.cid-uBBVSbrwAo .icon-box {
  background: #273e6d;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (max-width: 768px) {
  .cid-uBBVSbrwAo .icon-box {
    margin-right: 1rem;
  }
}
.cid-uBBVSbrwAo .icon-box::before {
  content: "\e925";
  font-family: Moririse2 !important;
  position: absolute;
  font-size: 32px;
  left: 50%;
  top: 120%;
  top: 100%;
  color: #273e6d;
  transform: translate(-50%, 0);
}
.cid-uBBVSbrwAo span {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uBBVSbrwAo .card {
    margin-bottom: 2rem;
  }
  .cid-uBBVSbrwAo .card-wrapper {
    margin-bottom: 2rem;
  }
  .cid-uBBVSbrwAo .icon-box::before {
    top: 141%;
    top: 123%;
  }
}
@media (max-width: 768px) {
  .cid-uBBVSbrwAo .icon-box::before {
    top: 114%;
  }
}
.cid-uBBVSc5xsN {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #273e6d;
}
.cid-uBBVSc5xsN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBBVSc5xsN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBBVSc5xsN .mbr-section-title {
  color: #ffffff;
}
.cid-uBBVSc5xsN .mbr-text,
.cid-uBBVSc5xsN .mbr-section-btn {
  color: #ffe161;
}
.cid-uBBVScpuPt {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uBBVScpuPt .item:focus,
.cid-uBBVScpuPt span:focus {
  outline: none;
}
.cid-uBBVScpuPt .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uBBVScpuPt .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-uBBVScpuPt .item {
  padding: 0;
  margin: 0;
}
.cid-uBBVScpuPt .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uBBVScpuPt .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uBBVScpuPt .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uBBVScpuPt .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uBBVScpuPt .mbr-section-title {
  color: #232323;
}
.cid-uBBVScpuPt .mbr-text,
.cid-uBBVScpuPt .mbr-section-btn {
  text-align: left;
}
.cid-uBBVScpuPt .item-title {
  text-align: left;
}
.cid-uBBVScpuPt .item-subtitle {
  text-align: left;
  color: #232323;
}
.cid-uBBVScMULf {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #eccc3d;
}
.cid-uBBVScMULf .line {
  background-color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uBBVScMULf .mbr-text {
  color: #e43f3f;
}
.cid-uBBVSd5KpB {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uBBVSd5KpB .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uBBVSd5KpB .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uBBVSd5KpB .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uBBVSd5KpB .mbr-section-title {
  color: #273e6d;
  text-align: left;
}
.cid-uBBVSd5KpB .mbr-text,
.cid-uBBVSd5KpB .mbr-section-btn {
  color: #111111;
  text-align: left;
}
.cid-uBBVSdrzCo {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #273e6d;
}
.cid-uBBVSdrzCo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBBVSdrzCo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBBVSdrzCo .mbr-section-title {
  color: #fafafa;
  text-align: center;
}
.cid-uBBVSdO8JF {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uBBVSdO8JF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBBVSdO8JF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBBVSdO8JF .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  align-items: flex-start;
}
@media (min-width: 991px) {
  .cid-uBBVSdO8JF .item {
    margin-bottom: 4rem;
  }
}
.cid-uBBVSdO8JF .item:last-child .icon-box:before {
  display: none;
}
.cid-uBBVSdO8JF .item.last .icon-box:before {
  display: none;
}
.cid-uBBVSdO8JF .icon-box {
  background: #273e6d;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (max-width: 768px) {
  .cid-uBBVSdO8JF .icon-box {
    margin-right: 1rem;
  }
}
.cid-uBBVSdO8JF span {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uBBVSdO8JF .card {
    margin-bottom: 2rem;
  }
  .cid-uBBVSdO8JF .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uBBVSetpL1 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #273e6d;
}
.cid-uBBVSetpL1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBBVSetpL1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBBVSetpL1 .mbr-section-title {
  color: #fafafa;
  text-align: center;
}
.cid-uBBVSePRGL {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uBBVSePRGL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBBVSePRGL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBBVSePRGL .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #273e6d;
  margin-left: 1rem;
}
.cid-uBBVSePRGL .panel-group {
  border: none;
}
.cid-uBBVSePRGL .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uBBVSePRGL .panel-body,
.cid-uBBVSePRGL .card-header {
  padding: 1rem 0;
}
.cid-uBBVSePRGL .panel-title-edit {
  color: #000000;
  text-align: left;
}
.cid-uBBVSePRGL .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uBBVSfi0Pd {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #273e6d;
}
.cid-uBBVSfi0Pd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBBVSfi0Pd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBBVSfi0Pd .mbr-section-title {
  color: #fafafa;
  text-align: center;
}
.cid-uBBVSfIetk {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uBBVSfIetk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBBVSfIetk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBBVSfIetk .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uBBVSfIetk .image-wrap img {
    display: block;
    margin: auto;
    width: 70%;
  }
}
.cid-uBBVSfIetk .mbr-section-title {
  color: #206dcf;
}
.cid-uBBVSfIetk .mbr-text,
.cid-uBBVSfIetk .mbr-section-btn {
  color: #2e1d50;
}
.cid-uBBVSg6OwR {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-uBBVSg6OwR .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uBBVSg6OwR .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uBBVSg6OwR .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uBBVSg6OwR .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uBBVSg6OwR .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uBBVSg6OwR .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uBBVSg6OwR .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-uBBVSg6OwR .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uBBVSg6OwR .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uBBVSg6OwR .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uBBVSg6OwR .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uBBVSg6OwR .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uBBVSg6OwR .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uBBVSg6OwR .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uBBVSg6OwR .media-container-row .mbr-text {
  color: #fafafa;
}
