body {
  font-family: 'DM Sans', sans-serif;
}
.display-1 {
  font-family: 'DM Sans', sans-serif;
  font-size: 5rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 6.25rem;
}
.display-2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.5rem;
}
.display-5 {
  font-family: 'DM Sans', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.4rem;
  line-height: 1.3;
}
.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: 4rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.5rem;
    font-size: calc( 2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
  .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.7rem 1.3rem;
  border-radius: 0px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 0px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 0px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 0px;
}
.bg-primary {
  background-color: #0d2859 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #96f77d !important;
}
.bg-danger {
  background-color: #ffb5b5 !important;
}
.btn-primary {
  border: 0;
  position: relative;
  z-index: 1;
}
.btn-primary,
.btn-primary:active {
  background-color: #0d2859 !important;
  border-color: #0d2859 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #0d2859 !important;
  border-color: #0d2859 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #0d2859 !important;
  border-color: #0d2859 !important;
}
.btn-primary:before {
  content: '';
  left: 0;
  top: 0;
  bottom: auto;
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: white;
  z-index: -1;
  transition: all 0.3s;
}
.btn-primary:hover {
  color: black !important;
}
.btn-primary:hover:before {
  height: 100%;
  top: auto;
  bottom: 0;
}
.btn-secondary {
  border: 0;
  position: relative;
  z-index: 1;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-secondary:before {
  content: '';
  left: 0;
  top: 0;
  bottom: auto;
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: white;
  z-index: -1;
  transition: all 0.3s;
}
.btn-secondary:hover {
  color: black !important;
}
.btn-secondary:hover:before {
  height: 100%;
  top: auto;
  bottom: 0;
}
.btn-info {
  border: 0;
  position: relative;
  z-index: 1;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-info:before {
  content: '';
  left: 0;
  top: 0;
  bottom: auto;
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: white;
  z-index: -1;
  transition: all 0.3s;
}
.btn-info:hover {
  color: black !important;
}
.btn-info:hover:before {
  height: 100%;
  top: auto;
  bottom: 0;
}
.btn-success {
  border: 0;
  position: relative;
  z-index: 1;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-success:before {
  content: '';
  left: 0;
  top: 0;
  bottom: auto;
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: white;
  z-index: -1;
  transition: all 0.3s;
}
.btn-success:hover {
  color: black !important;
}
.btn-success:hover:before {
  height: 100%;
  top: auto;
  bottom: 0;
}
.btn-warning {
  border: 0;
  position: relative;
  z-index: 1;
}
.btn-warning,
.btn-warning:active {
  background-color: #96f77d !important;
  border-color: #96f77d !important;
  color: #000000 !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #000000 !important;
  background-color: #96f77d !important;
  border-color: #96f77d !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #000000 !important;
  background-color: #96f77d !important;
  border-color: #96f77d !important;
}
.btn-warning:before {
  content: '';
  left: 0;
  top: 0;
  bottom: auto;
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: white;
  z-index: -1;
  transition: all 0.3s;
}
.btn-warning:hover {
  color: black !important;
}
.btn-warning:hover:before {
  height: 100%;
  top: auto;
  bottom: 0;
}
.btn-danger {
  border: 0;
  position: relative;
  z-index: 1;
}
.btn-danger,
.btn-danger:active {
  background-color: #ffb5b5 !important;
  border-color: #ffb5b5 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ffb5b5 !important;
  border-color: #ffb5b5 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ffb5b5 !important;
  border-color: #ffb5b5 !important;
}
.btn-danger:before {
  content: '';
  left: 0;
  top: 0;
  bottom: auto;
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: white;
  z-index: -1;
  transition: all 0.3s;
}
.btn-danger:hover {
  color: black !important;
}
.btn-danger:hover:before {
  height: 100%;
  top: auto;
  bottom: 0;
}
.btn-white {
  border: 0;
  position: relative;
  z-index: 1;
}
.btn-white,
.btn-white:active {
  background-color: #eaeaea !important;
  border-color: #eaeaea !important;
  color: #000000 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #000000 !important;
  background-color: #eaeaea !important;
  border-color: #eaeaea !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #000000 !important;
  background-color: #eaeaea !important;
  border-color: #eaeaea !important;
}
.btn-white:before {
  content: '';
  left: 0;
  top: 0;
  bottom: auto;
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: white;
  z-index: -1;
  transition: all 0.3s;
}
.btn-white:hover {
  color: black !important;
}
.btn-white:hover:before {
  height: 100%;
  top: auto;
  bottom: 0;
}
.btn-white:before {
  content: '';
  left: 0;
  top: 0;
  bottom: auto;
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: #0d2859;
  z-index: -1;
  transition: all 0.3s;
}
.btn-white:hover:before {
  height: 100%;
  top: auto;
  bottom: 0;
}
.btn-black {
  position: relative;
  z-index: 1;
  border: 0;
}
.btn-black,
.btn-black:active {
  background-color: rgba(0, 0, 0, 0.5) !important;
  border-color: rgba(0, 0, 0, 0.5) !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: rgba(0, 0, 0, 0.5) !important;
  border-color: rgba(0, 0, 0, 0.5) !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: rgba(0, 0, 0, 0.5) !important;
  border-color: rgba(0, 0, 0, 0.5) !important;
}
.btn-black:before {
  content: '';
  left: 0;
  top: 0;
  bottom: auto;
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: white;
  z-index: -1;
  transition: all 0.3s;
}
.btn-black:hover {
  color: black !important;
}
.btn-black:hover:before {
  height: 100%;
  top: auto;
  bottom: 0;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #0d2859;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #02060d !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: #0d2859 !important;
  border-color: #0d2859 !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: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #96f77d;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #54f22b !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #1c6e07 !important;
  background-color: #96f77d !important;
  border-color: #96f77d !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffb5b5;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5e5e !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: #ffb5b5 !important;
  border-color: #ffb5b5 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #272727;
}
.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: #272727 !important;
  border-color: #272727 !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: #0d2859 !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #96f77d !important;
}
.text-danger {
  color: #ffb5b5 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #272727 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #0d2859 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #48f11d !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff4f4f !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #fafafa !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
.nav-tabs .nav-link.active {
  color: #0d2859;
}
.nav-tabs .nav-link:not(.active) {
  color: #272727;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #96f77d;
}
.alert-danger {
  background-color: #ffb5b5;
}
.mbr-gallery-filter li.active .btn {
  background-color: #0d2859;
  border-color: #0d2859;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #0d2859;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #1d5ac8;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.5rem;
}
.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: #0d2859 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.5rem;
}
blockquote {
  border-color: #0d2859;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #0d2859;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #0d2859;
}
.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: #0d2859;
  border-bottom-color: #0d2859;
}
.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: #0d2859 !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='%230d2859' %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-uYUQkQrbG0 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uYUQkQrbG0 nav.navbar {
  position: fixed;
}
.cid-uYUQkQrbG0 .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-uYUQkQrbG0 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uYUQkQrbG0 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uYUQkQrbG0 .dropdown-item:hover,
.cid-uYUQkQrbG0 .dropdown-item:focus {
  background: #0d2859 !important;
  color: white !important;
}
.cid-uYUQkQrbG0 .dropdown-item:hover span {
  color: white;
}
.cid-uYUQkQrbG0 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uYUQkQrbG0 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uYUQkQrbG0 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uYUQkQrbG0 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uYUQkQrbG0 .nav-link {
  position: relative;
}
.cid-uYUQkQrbG0 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uYUQkQrbG0 .container {
    flex-wrap: wrap;
  }
}
.cid-uYUQkQrbG0 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uYUQkQrbG0 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uYUQkQrbG0 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uYUQkQrbG0 .dropdown-menu,
.cid-uYUQkQrbG0 .navbar.opened {
  background: #4479d9 !important;
}
.cid-uYUQkQrbG0 .nav-item:focus,
.cid-uYUQkQrbG0 .nav-link:focus {
  outline: none;
}
.cid-uYUQkQrbG0 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uYUQkQrbG0 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uYUQkQrbG0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uYUQkQrbG0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uYUQkQrbG0 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uYUQkQrbG0 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uYUQkQrbG0 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #4479d9;
}
.cid-uYUQkQrbG0 .navbar.opened {
  transition: all 0.3s;
}
.cid-uYUQkQrbG0 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uYUQkQrbG0 .navbar .navbar-logo img {
  width: auto;
}
.cid-uYUQkQrbG0 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uYUQkQrbG0 .navbar.collapsed {
  justify-content: center;
}
.cid-uYUQkQrbG0 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uYUQkQrbG0 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uYUQkQrbG0 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.8rem);
  }
}
.cid-uYUQkQrbG0 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uYUQkQrbG0 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uYUQkQrbG0 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uYUQkQrbG0 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uYUQkQrbG0 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uYUQkQrbG0 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uYUQkQrbG0 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uYUQkQrbG0 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uYUQkQrbG0 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uYUQkQrbG0 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uYUQkQrbG0 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uYUQkQrbG0 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uYUQkQrbG0 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uYUQkQrbG0 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uYUQkQrbG0 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uYUQkQrbG0 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uYUQkQrbG0 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uYUQkQrbG0 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uYUQkQrbG0 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uYUQkQrbG0 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uYUQkQrbG0 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uYUQkQrbG0 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uYUQkQrbG0 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uYUQkQrbG0 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uYUQkQrbG0 .dropdown-item.active,
.cid-uYUQkQrbG0 .dropdown-item:active {
  background-color: transparent;
}
.cid-uYUQkQrbG0 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uYUQkQrbG0 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uYUQkQrbG0 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uYUQkQrbG0 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #4479d9;
}
.cid-uYUQkQrbG0 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uYUQkQrbG0 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uYUQkQrbG0 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uYUQkQrbG0 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uYUQkQrbG0 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uYUQkQrbG0 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uYUQkQrbG0 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uYUQkQrbG0 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uYUQkQrbG0 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uYUQkQrbG0 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uYUQkQrbG0 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uYUQkQrbG0 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uYUQkQrbG0 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uYUQkQrbG0 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uYUQkQrbG0 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uYUQkQrbG0 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uYUQkQrbG0 .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-uYUQkQrbG0 .navbar {
    height: 70px;
  }
  .cid-uYUQkQrbG0 .navbar.opened {
    height: auto;
  }
  .cid-uYUQkQrbG0 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t3rSRumjVC {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-color: #6ba7ed;
}
.cid-t3rSRumjVC .mbr-section-head {
  max-width: 800px;
}
@media (min-width: 1400px) {
  .cid-t3rSRumjVC .mbr-section-head {
    padding: 0 2rem;
  }
}
.cid-t3rSRumjVC .social {
  display: inline-flex;
  align-items: center;
}
.cid-t3rSRumjVC .social .socicon {
  padding-right: 0.6rem;
  color: #0d2859;
  font-size: 1.2rem;
}
.cid-t3rSRumjVC .soc-wrapper {
  width: 100%;
}
.cid-t3rSRumjVC .item-wrapper {
  border-top: 1px solid #efefef;
  padding-top: 2rem;
  position: relative;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-t3rSRumjVC .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
@media (min-width: 1400px) {
  .cid-t3rSRumjVC .item {
    padding: 0 3rem;
  }
}
.cid-t3rSRumjVC img,
.cid-t3rSRumjVC .item-img {
  width: 100%;
  padding-bottom: 1rem;
  height: 100%;
  height: 450px;
  object-fit: cover;
}
.cid-t3rSRumjVC .item:focus,
.cid-t3rSRumjVC span:focus {
  outline: none;
}
.cid-t3rSRumjVC .mbr-section-title {
  color: #101112;
}
.cid-t3rSRumjVC .mbr-text,
.cid-t3rSRumjVC .mbr-section-btn {
  color: #000000;
}
.cid-t3rSRumjVC .mbr-section-subtitle {
  color: #353535;
}
.cid-uYURyBX7qH {
  padding-top: 1rem;
  padding-bottom: 6rem;
  background-color: #6ba7ed;
}
.cid-uYURyBX7qH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYURyBX7qH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYURyBX7qH .text-wrap {
  width: 100%;
}
.cid-uYURyBX7qH .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 767px) {
  .cid-uYURyBX7qH .mbr-section-head {
    margin-bottom: 60px;
  }
}
.cid-uYURyBX7qH .mbr-section-title {
  color: #829D85;
  margin-bottom: 0;
}
.cid-uYURyBX7qH .mbr-text {
  color: #353535;
  margin-top: 20px;
}
.cid-uYURyBX7qH .item-row {
  row-gap: 40px;
  margin-left: -20px;
  margin-right: -20px;
}
.cid-uYURyBX7qH .item-row > [class*="col"] {
  padding-left: 20px;
  padding-right: 20px;
}
.cid-uYURyBX7qH .item-wrapper {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  height: 100%;
  background-color: #6ba7ed;
  overflow: hidden;
  border: 1px solid rgba(15, 56, 130, 0.8);
  border-radius: 45px;
}
.cid-uYURyBX7qH .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.cid-uYURyBX7qH .item-img img {
  aspect-ratio: 0.83333333;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-uYURyBX7qH .item-title-wrap {
  padding: 45px 26px;
  border-radius: 0 0 45px 45px;
  border: 1px solid rgba(15, 56, 130, 0.8);
  background-color: rgba(110, 199, 242, 0.8);
}
.cid-uYURyBX7qH .item-title {
  width: 100%;
  margin: 0;
  color: #000000;
}
.cid-uYURyBX7qH .item-text-wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  flex-grow: 1;
  padding: 26px;
}
.cid-uYURyBX7qH .item-text {
  color: #353535;
  margin: 0;
}
.cid-uYURyBX7qH .mbr-section-btn {
  margin-top: 10px;
}
.cid-uYURyBX7qH .mbr-section-btn .btn {
  width: 180px;
  min-width: auto;
  min-height: 55px;
  max-width: 100%;
}
.cid-uYURyBX7qH .item-text,
.cid-uYURyBX7qH .mbr-section-btn {
  color: #000000;
}
.cid-uYUUlyPrAP {
  padding-top: 2rem;
  padding-bottom: 6rem;
  background-color: #6ba7ed;
}
.cid-uYUUlyPrAP img,
.cid-uYUUlyPrAP .item-img {
  width: 100%;
  height: 100%;
  height: 500px;
  object-fit: cover;
}
.cid-uYUUlyPrAP .item:focus,
.cid-uYUUlyPrAP span:focus {
  outline: none;
}
.cid-uYUUlyPrAP .item {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uYUUlyPrAP .item {
    margin-bottom: 1rem;
  }
}
.cid-uYUUlyPrAP .item-content {
  margin-top: 2rem;
  padding: 0 2.25rem 2.25rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-uYUUlyPrAP .item-content {
    padding: 0 1.5rem 1.5rem;
    padding-top: 1rem;
    margin-top: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uYUUlyPrAP .item-content {
    padding: 2rem 1.5rem;
    padding-top: 1rem;
    margin-top: 1rem;
  }
}
.cid-uYUUlyPrAP .item-wrapper {
  position: relative;
  background: #6ba7ed;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uYUUlyPrAP .item-wrapper .item-footer {
  margin-top: auto;
}
.cid-uYUUlyPrAP .mbr-section-title {
  color: #000000;
}
.cid-uYUUlyPrAP .item-title {
  text-align: left;
}
.cid-uYUUlyPrAP .item-subtitle {
  text-align: left;
}
.cid-uYUUlyPrAP .mbr-text,
.cid-uYUUlyPrAP .item .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-uYUUlyPrAP .content-head {
  max-width: 800px;
}
.cid-uZ1VPcx7Gs {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background: linear-gradient(to bottom, #6ba7ed, #6ba7ed);
}
.cid-uZ1VPcx7Gs .item-subtitle {
  line-height: 1.2;
  color: #000000;
}
.cid-uZ1VPcx7Gs .item-title {
  border-bottom: 1px solid currentColor;
  color: #232323;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}
.cid-uZ1VPcx7Gs img,
.cid-uZ1VPcx7Gs .item-img {
  width: 100%;
  height: 100%;
  height: 500px;
  object-fit: cover;
}
.cid-uZ1VPcx7Gs .item:focus,
.cid-uZ1VPcx7Gs span:focus {
  outline: none;
}
.cid-uZ1VPcx7Gs .item {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uZ1VPcx7Gs .item {
    margin-bottom: 1rem;
  }
}
.cid-uZ1VPcx7Gs .item-wrapper {
  position: relative;
  border-radius: 4px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uZ1VPcx7Gs .mbr-section-title {
  color: #232323;
}
.cid-uZ1VPcx7Gs .mbr-text,
.cid-uZ1VPcx7Gs .mbr-section-btn {
  color: #000000;
}
.cid-uZ1VPcx7Gs .content-head {
  max-width: 800px;
}
.cid-uZ1W6SMaeJ {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background: linear-gradient(to bottom, #6ba7ed, #6ba7ed);
}
.cid-uZ1W6SMaeJ .item-subtitle {
  line-height: 1.2;
  color: #000000;
}
.cid-uZ1W6SMaeJ .item-title {
  border-bottom: 1px solid currentColor;
  color: #232323;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}
.cid-uZ1W6SMaeJ img,
.cid-uZ1W6SMaeJ .item-img {
  width: 100%;
  height: 100%;
  height: 500px;
  object-fit: cover;
}
.cid-uZ1W6SMaeJ .item:focus,
.cid-uZ1W6SMaeJ span:focus {
  outline: none;
}
.cid-uZ1W6SMaeJ .item {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uZ1W6SMaeJ .item {
    margin-bottom: 1rem;
  }
}
.cid-uZ1W6SMaeJ .item-wrapper {
  position: relative;
  border-radius: 4px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uZ1W6SMaeJ .mbr-section-title {
  color: #232323;
}
.cid-uZ1W6SMaeJ .mbr-text,
.cid-uZ1W6SMaeJ .mbr-section-btn {
  color: #000000;
}
.cid-uZ1W6SMaeJ .content-head {
  max-width: 800px;
}
.cid-uZ2hH5skZ5 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #4479d9;
  overflow: hidden;
}
.cid-uYUUZZCZKe {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-color: #6ba7ed;
}
.cid-uYUUZZCZKe img,
.cid-uYUUZZCZKe .item-img {
  width: 100%;
}
.cid-uYUUZZCZKe .item:focus,
.cid-uYUUZZCZKe span:focus {
  outline: none;
}
.cid-uYUUZZCZKe .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uYUUZZCZKe .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #6ba7ed;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uYUUZZCZKe .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uYUUZZCZKe .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uYUUZZCZKe .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uYUUZZCZKe .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uYUUZZCZKe .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uYUUZZCZKe .mbr-section-title {
  color: #232323;
}
.cid-uYUUZZCZKe .mbr-text,
.cid-uYUUZZCZKe .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-uYUUZZCZKe .item-title {
  text-align: left;
}
.cid-uYUUZZCZKe .item-subtitle {
  text-align: center;
}
.cid-uYUQkQrbG0 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uYUQkQrbG0 nav.navbar {
  position: fixed;
}
.cid-uYUQkQrbG0 .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-uYUQkQrbG0 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uYUQkQrbG0 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uYUQkQrbG0 .dropdown-item:hover,
.cid-uYUQkQrbG0 .dropdown-item:focus {
  background: #0d2859 !important;
  color: white !important;
}
.cid-uYUQkQrbG0 .dropdown-item:hover span {
  color: white;
}
.cid-uYUQkQrbG0 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uYUQkQrbG0 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uYUQkQrbG0 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uYUQkQrbG0 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uYUQkQrbG0 .nav-link {
  position: relative;
}
.cid-uYUQkQrbG0 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uYUQkQrbG0 .container {
    flex-wrap: wrap;
  }
}
.cid-uYUQkQrbG0 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uYUQkQrbG0 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uYUQkQrbG0 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uYUQkQrbG0 .dropdown-menu,
.cid-uYUQkQrbG0 .navbar.opened {
  background: #4479d9 !important;
}
.cid-uYUQkQrbG0 .nav-item:focus,
.cid-uYUQkQrbG0 .nav-link:focus {
  outline: none;
}
.cid-uYUQkQrbG0 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uYUQkQrbG0 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uYUQkQrbG0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uYUQkQrbG0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uYUQkQrbG0 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uYUQkQrbG0 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uYUQkQrbG0 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #4479d9;
}
.cid-uYUQkQrbG0 .navbar.opened {
  transition: all 0.3s;
}
.cid-uYUQkQrbG0 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uYUQkQrbG0 .navbar .navbar-logo img {
  width: auto;
}
.cid-uYUQkQrbG0 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uYUQkQrbG0 .navbar.collapsed {
  justify-content: center;
}
.cid-uYUQkQrbG0 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uYUQkQrbG0 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uYUQkQrbG0 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.8rem);
  }
}
.cid-uYUQkQrbG0 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uYUQkQrbG0 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uYUQkQrbG0 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uYUQkQrbG0 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uYUQkQrbG0 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uYUQkQrbG0 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uYUQkQrbG0 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uYUQkQrbG0 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uYUQkQrbG0 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uYUQkQrbG0 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uYUQkQrbG0 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uYUQkQrbG0 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uYUQkQrbG0 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uYUQkQrbG0 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uYUQkQrbG0 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uYUQkQrbG0 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uYUQkQrbG0 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uYUQkQrbG0 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uYUQkQrbG0 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uYUQkQrbG0 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uYUQkQrbG0 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uYUQkQrbG0 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uYUQkQrbG0 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uYUQkQrbG0 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uYUQkQrbG0 .dropdown-item.active,
.cid-uYUQkQrbG0 .dropdown-item:active {
  background-color: transparent;
}
.cid-uYUQkQrbG0 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uYUQkQrbG0 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uYUQkQrbG0 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uYUQkQrbG0 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #4479d9;
}
.cid-uYUQkQrbG0 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uYUQkQrbG0 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uYUQkQrbG0 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uYUQkQrbG0 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uYUQkQrbG0 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uYUQkQrbG0 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uYUQkQrbG0 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uYUQkQrbG0 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uYUQkQrbG0 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uYUQkQrbG0 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uYUQkQrbG0 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uYUQkQrbG0 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uYUQkQrbG0 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uYUQkQrbG0 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uYUQkQrbG0 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uYUQkQrbG0 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uYUQkQrbG0 .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-uYUQkQrbG0 .navbar {
    height: 70px;
  }
  .cid-uYUQkQrbG0 .navbar.opened {
    height: auto;
  }
  .cid-uYUQkQrbG0 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uYUUUUsW9h {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #6ba7ed;
  overflow: hidden;
}
.cid-uYUUUUsW9h .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYUUUUsW9h .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYUUUUsW9h .row {
  flex-wrap: nowrap;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uYUUUUsW9h .row {
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  .cid-uYUUUUsW9h .col-text {
    order: 2;
  }
}
.cid-uYUUUUsW9h .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uYUUUUsW9h .text-wrap {
    margin-top: 30px;
  }
}
.cid-uYUUUUsW9h .mbr-section-title {
  color: #000000;
}
.cid-uYUUUUsW9h .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uYUUUUsW9h .mbr-text {
    margin-top: 12px;
  }
}
.cid-uYUUUUsW9h .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uYUUUUsW9h .mbr-section-btn {
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .cid-uYUUUUsW9h .col-img {
    order: 1;
  }
}
.cid-uYUUUUsW9h .img-wrap {
  position: relative;
  width: 100%;
}
.cid-uYUUUUsW9h .img-wrap .img-box {
  position: relative;
  z-index: 3;
  width: 100%;
  border-radius: 65px 65px 65px 0;
  overflow: hidden;
  border-radius: 65px 65px 0 65px;
}
@media (max-width: 1199px) {
  .cid-uYUUUUsW9h .img-wrap .img-box {
    border-radius: 55px 55px 55px 0;
    border-radius: 55px 55px 0 55px;
  }
}
@media (max-width: 991px) {
  .cid-uYUUUUsW9h .img-wrap .img-box {
    border-radius: 65px 65px 65px 0;
    border-radius: 65px 65px 0 65px;
  }
}
@media (max-width: 767px) {
  .cid-uYUUUUsW9h .img-wrap .img-box {
    border-radius: 55px 55px 55px 0;
    border-radius: 55px  55px 0 55px;
  }
}
@media (max-width: 575px) {
  .cid-uYUUUUsW9h .img-wrap .img-box {
    border-radius: 45px 45px 45px 0;
    border-radius: 45px 45px 0 45px;
  }
}
.cid-uYUUUUsW9h .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-uYUVU68TS9 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #6ba7ed;
}
.cid-uYUVU68TS9 .row {
  flex-direction: row-reverse;
}
.cid-uYUVU68TS9 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-uYUVU68TS9 .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-uYUVU68TS9 .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-uYUVU68TS9 .mbr-card-title {
  color: #000000;
}
.cid-uYUVU68TS9 .mbr-card-subtitle {
  color: #000000;
  text-align: left;
}
.cid-uYUVU68TS9 .mbr-text,
.cid-uYUVU68TS9 .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-uYUVU68TS9 .row {
  align-items: center;
}
.cid-uZ1WXr7IPZ {
  padding-top: 1rem;
  padding-bottom: 6rem;
  background-color: #6ba7ed;
}
.cid-uZ1WXr7IPZ img,
.cid-uZ1WXr7IPZ .item-img {
  width: 100%;
}
.cid-uZ1WXr7IPZ .item:focus,
.cid-uZ1WXr7IPZ span:focus {
  outline: none;
}
.cid-uZ1WXr7IPZ .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uZ1WXr7IPZ .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #6ba7ed;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uZ1WXr7IPZ .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uZ1WXr7IPZ .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uZ1WXr7IPZ .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uZ1WXr7IPZ .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uZ1WXr7IPZ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uZ1WXr7IPZ .mbr-section-title {
  color: #232323;
}
.cid-uZ1WXr7IPZ .mbr-text,
.cid-uZ1WXr7IPZ .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-uZ1WXr7IPZ .item-title {
  text-align: left;
}
.cid-uZ1WXr7IPZ .item-subtitle {
  text-align: center;
}
.cid-uYUUXZhoWB {
  padding-top: 2rem;
  padding-bottom: 10rem;
  background-color: #6ba7ed;
}
.cid-uYUUXZhoWB img,
.cid-uYUUXZhoWB .item-img {
  width: 100%;
}
.cid-uYUUXZhoWB .item:focus,
.cid-uYUUXZhoWB span:focus {
  outline: none;
}
.cid-uYUUXZhoWB .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uYUUXZhoWB .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #6ba7ed;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uYUUXZhoWB .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uYUUXZhoWB .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uYUUXZhoWB .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uYUUXZhoWB .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uYUUXZhoWB .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uYUUXZhoWB .mbr-section-title {
  color: #ffffff;
}
.cid-uYUUXZhoWB .mbr-text,
.cid-uYUUXZhoWB .mbr-section-btn {
  text-align: center;
}
.cid-uYUUXZhoWB .item-title {
  text-align: center;
  color: #000000;
}
.cid-uYUUXZhoWB .item-subtitle {
  text-align: left;
}
.cid-uZ2hH5skZ5 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #4479d9;
  overflow: hidden;
}
.cid-uYUQkQrbG0 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uYUQkQrbG0 nav.navbar {
  position: fixed;
}
.cid-uYUQkQrbG0 .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-uYUQkQrbG0 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uYUQkQrbG0 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uYUQkQrbG0 .dropdown-item:hover,
.cid-uYUQkQrbG0 .dropdown-item:focus {
  background: #0d2859 !important;
  color: white !important;
}
.cid-uYUQkQrbG0 .dropdown-item:hover span {
  color: white;
}
.cid-uYUQkQrbG0 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uYUQkQrbG0 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uYUQkQrbG0 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uYUQkQrbG0 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uYUQkQrbG0 .nav-link {
  position: relative;
}
.cid-uYUQkQrbG0 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uYUQkQrbG0 .container {
    flex-wrap: wrap;
  }
}
.cid-uYUQkQrbG0 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uYUQkQrbG0 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uYUQkQrbG0 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uYUQkQrbG0 .dropdown-menu,
.cid-uYUQkQrbG0 .navbar.opened {
  background: #4479d9 !important;
}
.cid-uYUQkQrbG0 .nav-item:focus,
.cid-uYUQkQrbG0 .nav-link:focus {
  outline: none;
}
.cid-uYUQkQrbG0 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uYUQkQrbG0 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uYUQkQrbG0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uYUQkQrbG0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uYUQkQrbG0 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uYUQkQrbG0 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uYUQkQrbG0 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #4479d9;
}
.cid-uYUQkQrbG0 .navbar.opened {
  transition: all 0.3s;
}
.cid-uYUQkQrbG0 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uYUQkQrbG0 .navbar .navbar-logo img {
  width: auto;
}
.cid-uYUQkQrbG0 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uYUQkQrbG0 .navbar.collapsed {
  justify-content: center;
}
.cid-uYUQkQrbG0 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uYUQkQrbG0 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uYUQkQrbG0 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.8rem);
  }
}
.cid-uYUQkQrbG0 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uYUQkQrbG0 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uYUQkQrbG0 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uYUQkQrbG0 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uYUQkQrbG0 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uYUQkQrbG0 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uYUQkQrbG0 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uYUQkQrbG0 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uYUQkQrbG0 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uYUQkQrbG0 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uYUQkQrbG0 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uYUQkQrbG0 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uYUQkQrbG0 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uYUQkQrbG0 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uYUQkQrbG0 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uYUQkQrbG0 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uYUQkQrbG0 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uYUQkQrbG0 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uYUQkQrbG0 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uYUQkQrbG0 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uYUQkQrbG0 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uYUQkQrbG0 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uYUQkQrbG0 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uYUQkQrbG0 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uYUQkQrbG0 .dropdown-item.active,
.cid-uYUQkQrbG0 .dropdown-item:active {
  background-color: transparent;
}
.cid-uYUQkQrbG0 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uYUQkQrbG0 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uYUQkQrbG0 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uYUQkQrbG0 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #4479d9;
}
.cid-uYUQkQrbG0 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uYUQkQrbG0 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uYUQkQrbG0 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uYUQkQrbG0 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uYUQkQrbG0 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uYUQkQrbG0 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uYUQkQrbG0 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uYUQkQrbG0 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uYUQkQrbG0 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uYUQkQrbG0 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uYUQkQrbG0 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uYUQkQrbG0 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uYUQkQrbG0 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uYUQkQrbG0 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uYUQkQrbG0 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uYUQkQrbG0 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uYUQkQrbG0 .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-uYUQkQrbG0 .navbar {
    height: 70px;
  }
  .cid-uYUQkQrbG0 .navbar.opened {
    height: auto;
  }
  .cid-uYUQkQrbG0 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uYV1zURv02 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #6ba7ed;
}
.cid-uYV1zURv02 .row {
  flex-direction: row-reverse;
}
.cid-uYV1zURv02 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-uYV1zURv02 .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-uYV1zURv02 .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-uYV1zURv02 .mbr-card-title {
  color: #000000;
}
.cid-uYV1zURv02 .mbr-card-subtitle {
  color: #000000;
  text-align: left;
}
.cid-uYV1zURv02 .mbr-text,
.cid-uYV1zURv02 .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-uYV1zURv02 .row {
  align-items: center;
}
.cid-uZ2626DX1f {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #6ba7ed;
}
.cid-uZ2626DX1f .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ2626DX1f .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZ2626DX1f .content-wrapper {
  position: relative;
  z-index: 1;
  width: 80%;
  margin: 0 auto;
  margin-bottom: 82px;
}
@media (max-width: 992px) {
  .cid-uZ2626DX1f .content-wrapper {
    width: 100%;
    margin-bottom: 28px;
  }
}
.cid-uZ2626DX1f .content-wrapper .label-wrapper {
  margin-bottom: 42px;
}
@media (max-width: 992px) {
  .cid-uZ2626DX1f .content-wrapper .label-wrapper {
    margin-bottom: 28px;
  }
}
.cid-uZ2626DX1f .content-wrapper .label-wrapper .label-wrap {
  padding: 14px 24px;
  display: inline-flex;
  align-items: center;
  background-color: #362c52;
}
@media (max-width: 992px) {
  .cid-uZ2626DX1f .content-wrapper .label-wrapper .label-wrap {
    padding: 10px 16px;
  }
}
.cid-uZ2626DX1f .content-wrapper .label-wrapper .label-wrap .iconfont-wrapper {
  display: inline-flex;
  margin-right: 14px;
}
.cid-uZ2626DX1f .content-wrapper .label-wrapper .label-wrap .iconfont-wrapper .mbr-iconfont {
  font-size: 19px;
}
.cid-uZ2626DX1f .content-wrapper .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-uZ2626DX1f .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uZ2626DX1f .content-wrapper .title-wrapper .subtitle-wrapper .mbr-section-subtitle {
  display: inline-block;
  margin-bottom: 0;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(90deg, #2ba7ff, #ca45ff 50%, #fe881b);
}
.cid-uZ2626DX1f .items-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 -7px;
}
.cid-uZ2626DX1f .items-wrapper .item {
  width: 33.33%;
  padding: 0 7px;
  margin-bottom: 14px;
  animation: none !important;
}
@media (max-width: 1440px) {
  .cid-uZ2626DX1f .items-wrapper .item {
    width: 50%;
  }
}
@media (max-width: 992px) {
  .cid-uZ2626DX1f .items-wrapper .item {
    width: 100%;
    margin-bottom: 16px;
  }
}
.cid-uZ2626DX1f .items-wrapper .item:hover .item-wrapper::after,
.cid-uZ2626DX1f .items-wrapper .item:focus .item-wrapper::after {
  width: 90%;
  height: 200px;
  top: -155px;
}
.cid-uZ2626DX1f .items-wrapper .item .item-wrapper {
  position: relative;
  padding: 46px;
  min-height: 485px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  overflow: hidden !important;
}
@media (max-width: 992px) {
  .cid-uZ2626DX1f .items-wrapper .item .item-wrapper {
    min-height: auto;
    padding: 18px;
  }
}
.cid-uZ2626DX1f .items-wrapper .item .item-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #4479d9;
  opacity: .5;
  backdrop-filter: blur(36px);
  pointer-events: none;
}
.cid-uZ2626DX1f .items-wrapper .item .item-wrapper::after {
  content: '';
  position: absolute;
  top: -200px;
  width: 0;
  height: 0;
  border-radius: 100%;
  background-image: linear-gradient(45deg, #d66eff 30%, #0f3882);
  filter: blur(2rem);
  pointer-events: none;
  transition: all .5s ease;
  z-index: 1;
}
.cid-uZ2626DX1f .items-wrapper .item .item-wrapper .item-img {
  width: 100%;
  position: relative;
  z-index: 2;
  margin-bottom: 42px;
}
@media (max-width: 992px) {
  .cid-uZ2626DX1f .items-wrapper .item .item-wrapper .item-img {
    margin-bottom: 22px;
  }
}
.cid-uZ2626DX1f .items-wrapper .item .item-wrapper .item-img img {
  height: 250px;
  width: 100%;
  object-fit: cover;
}
.cid-uZ2626DX1f .items-wrapper .item .item-wrapper .card-box {
  position: relative;
  z-index: 1;
}
.cid-uZ2626DX1f .items-wrapper .item .item-wrapper .card-box .item-title {
  margin-bottom: 22px;
}
.cid-uZ2626DX1f .items-wrapper .item .item-wrapper .card-box .item-date {
  margin-bottom: 0;
}
.cid-uZ2626DX1f .items-wrapper .item .item-wrapper .card-box .mbr-section-btn {
  margin-top: 22px;
  width: 100%;
}
.cid-uZ2626DX1f .items-wrapper .item .item-wrapper .card-box .mbr-section-btn .btn {
  width: 100%;
  margin-bottom: 0;
}
.cid-uZ2626DX1f .mbr-label,
.cid-uZ2626DX1f .label-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uZ2626DX1f .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uZ2626DX1f .mbr-section-subtitle,
.cid-uZ2626DX1f .subtitle-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uZ2626DX1f .item-title {
  color: #ffffff;
}
.cid-uZ2626DX1f .item-date {
  color: #000000;
}
.cid-uZ262mMxrN {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #6ba7ed;
}
.cid-uZ262mMxrN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ262mMxrN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZ262mMxrN .content-wrapper {
  position: relative;
  z-index: 1;
  width: 80%;
  margin: 0 auto;
  margin-bottom: 82px;
}
@media (max-width: 992px) {
  .cid-uZ262mMxrN .content-wrapper {
    width: 100%;
    margin-bottom: 28px;
  }
}
.cid-uZ262mMxrN .content-wrapper .label-wrapper {
  margin-bottom: 42px;
}
@media (max-width: 992px) {
  .cid-uZ262mMxrN .content-wrapper .label-wrapper {
    margin-bottom: 28px;
  }
}
.cid-uZ262mMxrN .content-wrapper .label-wrapper .label-wrap {
  padding: 14px 24px;
  display: inline-flex;
  align-items: center;
  background-color: #362c52;
}
@media (max-width: 992px) {
  .cid-uZ262mMxrN .content-wrapper .label-wrapper .label-wrap {
    padding: 10px 16px;
  }
}
.cid-uZ262mMxrN .content-wrapper .label-wrapper .label-wrap .iconfont-wrapper {
  display: inline-flex;
  margin-right: 14px;
}
.cid-uZ262mMxrN .content-wrapper .label-wrapper .label-wrap .iconfont-wrapper .mbr-iconfont {
  font-size: 19px;
}
.cid-uZ262mMxrN .content-wrapper .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-uZ262mMxrN .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uZ262mMxrN .content-wrapper .title-wrapper .subtitle-wrapper .mbr-section-subtitle {
  display: inline-block;
  margin-bottom: 0;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(90deg, #2ba7ff, #ca45ff 50%, #fe881b);
}
.cid-uZ262mMxrN .items-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 -7px;
}
.cid-uZ262mMxrN .items-wrapper .item {
  width: 33.33%;
  padding: 0 7px;
  margin-bottom: 14px;
  animation: none !important;
}
@media (max-width: 1440px) {
  .cid-uZ262mMxrN .items-wrapper .item {
    width: 50%;
  }
}
@media (max-width: 992px) {
  .cid-uZ262mMxrN .items-wrapper .item {
    width: 100%;
    margin-bottom: 16px;
  }
}
.cid-uZ262mMxrN .items-wrapper .item:hover .item-wrapper::after,
.cid-uZ262mMxrN .items-wrapper .item:focus .item-wrapper::after {
  width: 90%;
  height: 200px;
  top: -155px;
}
.cid-uZ262mMxrN .items-wrapper .item .item-wrapper {
  position: relative;
  padding: 46px;
  min-height: 485px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  overflow: hidden !important;
}
@media (max-width: 992px) {
  .cid-uZ262mMxrN .items-wrapper .item .item-wrapper {
    min-height: auto;
    padding: 18px;
  }
}
.cid-uZ262mMxrN .items-wrapper .item .item-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #4479d9;
  opacity: .5;
  backdrop-filter: blur(36px);
  pointer-events: none;
}
.cid-uZ262mMxrN .items-wrapper .item .item-wrapper::after {
  content: '';
  position: absolute;
  top: -200px;
  width: 0;
  height: 0;
  border-radius: 100%;
  background-image: linear-gradient(45deg, #d66eff 30%, #0f3882);
  filter: blur(2rem);
  pointer-events: none;
  transition: all .5s ease;
  z-index: 1;
}
.cid-uZ262mMxrN .items-wrapper .item .item-wrapper .item-img {
  width: 100%;
  position: relative;
  z-index: 2;
  margin-bottom: 42px;
}
@media (max-width: 992px) {
  .cid-uZ262mMxrN .items-wrapper .item .item-wrapper .item-img {
    margin-bottom: 22px;
  }
}
.cid-uZ262mMxrN .items-wrapper .item .item-wrapper .item-img img {
  height: 250px;
  width: 100%;
  object-fit: cover;
}
.cid-uZ262mMxrN .items-wrapper .item .item-wrapper .card-box {
  position: relative;
  z-index: 1;
}
.cid-uZ262mMxrN .items-wrapper .item .item-wrapper .card-box .item-title {
  margin-bottom: 22px;
}
.cid-uZ262mMxrN .items-wrapper .item .item-wrapper .card-box .item-date {
  margin-bottom: 0;
}
.cid-uZ262mMxrN .items-wrapper .item .item-wrapper .card-box .mbr-section-btn {
  margin-top: 22px;
  width: 100%;
}
.cid-uZ262mMxrN .items-wrapper .item .item-wrapper .card-box .mbr-section-btn .btn {
  width: 100%;
  margin-bottom: 0;
}
.cid-uZ262mMxrN .mbr-label,
.cid-uZ262mMxrN .label-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uZ262mMxrN .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uZ262mMxrN .mbr-section-subtitle,
.cid-uZ262mMxrN .subtitle-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uZ262mMxrN .item-title {
  color: #ffffff;
}
.cid-uZ262mMxrN .item-date {
  color: #000000;
}
.cid-uZ263l8fib {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #6ba7ed;
}
.cid-uZ263l8fib .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ263l8fib .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZ263l8fib .content-wrapper {
  position: relative;
  z-index: 1;
  width: 80%;
  margin: 0 auto;
  margin-bottom: 82px;
}
@media (max-width: 992px) {
  .cid-uZ263l8fib .content-wrapper {
    width: 100%;
    margin-bottom: 28px;
  }
}
.cid-uZ263l8fib .content-wrapper .label-wrapper {
  margin-bottom: 42px;
}
@media (max-width: 992px) {
  .cid-uZ263l8fib .content-wrapper .label-wrapper {
    margin-bottom: 28px;
  }
}
.cid-uZ263l8fib .content-wrapper .label-wrapper .label-wrap {
  padding: 14px 24px;
  display: inline-flex;
  align-items: center;
  background-color: #362c52;
}
@media (max-width: 992px) {
  .cid-uZ263l8fib .content-wrapper .label-wrapper .label-wrap {
    padding: 10px 16px;
  }
}
.cid-uZ263l8fib .content-wrapper .label-wrapper .label-wrap .iconfont-wrapper {
  display: inline-flex;
  margin-right: 14px;
}
.cid-uZ263l8fib .content-wrapper .label-wrapper .label-wrap .iconfont-wrapper .mbr-iconfont {
  font-size: 19px;
}
.cid-uZ263l8fib .content-wrapper .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-uZ263l8fib .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uZ263l8fib .content-wrapper .title-wrapper .subtitle-wrapper .mbr-section-subtitle {
  display: inline-block;
  margin-bottom: 0;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(90deg, #2ba7ff, #ca45ff 50%, #fe881b);
}
.cid-uZ263l8fib .items-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 -7px;
}
.cid-uZ263l8fib .items-wrapper .item {
  width: 33.33%;
  padding: 0 7px;
  margin-bottom: 14px;
  animation: none !important;
}
@media (max-width: 1440px) {
  .cid-uZ263l8fib .items-wrapper .item {
    width: 50%;
  }
}
@media (max-width: 992px) {
  .cid-uZ263l8fib .items-wrapper .item {
    width: 100%;
    margin-bottom: 16px;
  }
}
.cid-uZ263l8fib .items-wrapper .item:hover .item-wrapper::after,
.cid-uZ263l8fib .items-wrapper .item:focus .item-wrapper::after {
  width: 90%;
  height: 200px;
  top: -155px;
}
.cid-uZ263l8fib .items-wrapper .item .item-wrapper {
  position: relative;
  padding: 46px;
  min-height: 485px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  overflow: hidden !important;
}
@media (max-width: 992px) {
  .cid-uZ263l8fib .items-wrapper .item .item-wrapper {
    min-height: auto;
    padding: 18px;
  }
}
.cid-uZ263l8fib .items-wrapper .item .item-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #4479d9;
  opacity: .5;
  backdrop-filter: blur(36px);
  pointer-events: none;
}
.cid-uZ263l8fib .items-wrapper .item .item-wrapper::after {
  content: '';
  position: absolute;
  top: -200px;
  width: 0;
  height: 0;
  border-radius: 100%;
  background-image: linear-gradient(45deg, #d66eff 30%, #0f3882);
  filter: blur(2rem);
  pointer-events: none;
  transition: all .5s ease;
  z-index: 1;
}
.cid-uZ263l8fib .items-wrapper .item .item-wrapper .item-img {
  width: 100%;
  position: relative;
  z-index: 2;
  margin-bottom: 42px;
}
@media (max-width: 992px) {
  .cid-uZ263l8fib .items-wrapper .item .item-wrapper .item-img {
    margin-bottom: 22px;
  }
}
.cid-uZ263l8fib .items-wrapper .item .item-wrapper .item-img img {
  height: 250px;
  width: 100%;
  object-fit: cover;
}
.cid-uZ263l8fib .items-wrapper .item .item-wrapper .card-box {
  position: relative;
  z-index: 1;
}
.cid-uZ263l8fib .items-wrapper .item .item-wrapper .card-box .item-title {
  margin-bottom: 22px;
}
.cid-uZ263l8fib .items-wrapper .item .item-wrapper .card-box .item-date {
  margin-bottom: 0;
}
.cid-uZ263l8fib .items-wrapper .item .item-wrapper .card-box .mbr-section-btn {
  margin-top: 22px;
  width: 100%;
}
.cid-uZ263l8fib .items-wrapper .item .item-wrapper .card-box .mbr-section-btn .btn {
  width: 100%;
  margin-bottom: 0;
}
.cid-uZ263l8fib .mbr-label,
.cid-uZ263l8fib .label-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uZ263l8fib .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uZ263l8fib .mbr-section-subtitle,
.cid-uZ263l8fib .subtitle-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uZ263l8fib .item-title {
  color: #ffffff;
}
.cid-uZ263l8fib .item-date {
  color: #000000;
}
.cid-uZ2hH5skZ5 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #4479d9;
  overflow: hidden;
}
.cid-uZ1Yg5ZCzB {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-color: #6ba7ed;
}
.cid-uZ1Yg5ZCzB img,
.cid-uZ1Yg5ZCzB .item-img {
  width: 100%;
}
.cid-uZ1Yg5ZCzB .item:focus,
.cid-uZ1Yg5ZCzB span:focus {
  outline: none;
}
.cid-uZ1Yg5ZCzB .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uZ1Yg5ZCzB .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #6ba7ed;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uZ1Yg5ZCzB .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uZ1Yg5ZCzB .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uZ1Yg5ZCzB .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uZ1Yg5ZCzB .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uZ1Yg5ZCzB .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uZ1Yg5ZCzB .mbr-section-title {
  color: #232323;
}
.cid-uZ1Yg5ZCzB .mbr-text,
.cid-uZ1Yg5ZCzB .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-uZ1Yg5ZCzB .item-title {
  text-align: left;
}
.cid-uZ1Yg5ZCzB .item-subtitle {
  text-align: center;
}
.cid-uYUQkQrbG0 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uYUQkQrbG0 nav.navbar {
  position: fixed;
}
.cid-uYUQkQrbG0 .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-uYUQkQrbG0 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uYUQkQrbG0 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uYUQkQrbG0 .dropdown-item:hover,
.cid-uYUQkQrbG0 .dropdown-item:focus {
  background: #0d2859 !important;
  color: white !important;
}
.cid-uYUQkQrbG0 .dropdown-item:hover span {
  color: white;
}
.cid-uYUQkQrbG0 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uYUQkQrbG0 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uYUQkQrbG0 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uYUQkQrbG0 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uYUQkQrbG0 .nav-link {
  position: relative;
}
.cid-uYUQkQrbG0 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uYUQkQrbG0 .container {
    flex-wrap: wrap;
  }
}
.cid-uYUQkQrbG0 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uYUQkQrbG0 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uYUQkQrbG0 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uYUQkQrbG0 .dropdown-menu,
.cid-uYUQkQrbG0 .navbar.opened {
  background: #4479d9 !important;
}
.cid-uYUQkQrbG0 .nav-item:focus,
.cid-uYUQkQrbG0 .nav-link:focus {
  outline: none;
}
.cid-uYUQkQrbG0 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uYUQkQrbG0 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uYUQkQrbG0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uYUQkQrbG0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uYUQkQrbG0 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uYUQkQrbG0 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uYUQkQrbG0 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #4479d9;
}
.cid-uYUQkQrbG0 .navbar.opened {
  transition: all 0.3s;
}
.cid-uYUQkQrbG0 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uYUQkQrbG0 .navbar .navbar-logo img {
  width: auto;
}
.cid-uYUQkQrbG0 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uYUQkQrbG0 .navbar.collapsed {
  justify-content: center;
}
.cid-uYUQkQrbG0 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uYUQkQrbG0 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uYUQkQrbG0 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.8rem);
  }
}
.cid-uYUQkQrbG0 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uYUQkQrbG0 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uYUQkQrbG0 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uYUQkQrbG0 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uYUQkQrbG0 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uYUQkQrbG0 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uYUQkQrbG0 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uYUQkQrbG0 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uYUQkQrbG0 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uYUQkQrbG0 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uYUQkQrbG0 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uYUQkQrbG0 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uYUQkQrbG0 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uYUQkQrbG0 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uYUQkQrbG0 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uYUQkQrbG0 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uYUQkQrbG0 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uYUQkQrbG0 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uYUQkQrbG0 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uYUQkQrbG0 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uYUQkQrbG0 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uYUQkQrbG0 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uYUQkQrbG0 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uYUQkQrbG0 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uYUQkQrbG0 .dropdown-item.active,
.cid-uYUQkQrbG0 .dropdown-item:active {
  background-color: transparent;
}
.cid-uYUQkQrbG0 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uYUQkQrbG0 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uYUQkQrbG0 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uYUQkQrbG0 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #4479d9;
}
.cid-uYUQkQrbG0 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uYUQkQrbG0 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uYUQkQrbG0 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uYUQkQrbG0 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uYUQkQrbG0 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uYUQkQrbG0 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uYUQkQrbG0 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uYUQkQrbG0 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uYUQkQrbG0 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uYUQkQrbG0 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uYUQkQrbG0 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uYUQkQrbG0 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uYUQkQrbG0 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uYUQkQrbG0 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uYUQkQrbG0 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uYUQkQrbG0 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uYUQkQrbG0 .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-uYUQkQrbG0 .navbar {
    height: 70px;
  }
  .cid-uYUQkQrbG0 .navbar.opened {
    height: auto;
  }
  .cid-uYUQkQrbG0 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uYUXp2R6wZ {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #6ba7ed;
}
.cid-uYUXp2R6wZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYUXp2R6wZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYUXp2R6wZ .container {
  max-width: 100%;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-uYUXp2R6wZ .row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.cid-uYUXp2R6wZ .row > [class*="col"] {
  padding-left: 0;
  padding-right: 0;
}
.cid-uYUXp2R6wZ .col-title {
  width: 100%;
  max-width: 1140px;
  padding: 0 10px !important;
  margin: 0 auto 40px;
}
.cid-uYUXp2R6wZ .mbr-section-title {
  color: #112B6D;
  margin-bottom: 20px !important;
}
.cid-uYUXp2R6wZ .mbr-section-subtitle {
  color: #112B6D;
  margin-bottom: 0.9rem !important;
}
.cid-uYUXp2R6wZ .cards-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 0 !important;
}
@media (max-width: 767px) {
  .cid-uYUXp2R6wZ .cards-container {
    flex-wrap: wrap;
  }
}
.cid-uYUXp2R6wZ .card {
  width: 33.33333333%;
  border-radius: 0;
}
@media (max-width: 767px) {
  .cid-uYUXp2R6wZ .card {
    width: 100%;
  }
}
.cid-uYUXp2R6wZ .card-box {
  width: 100%;
  padding: 6% 6% 6% 6%;
}
@media (max-width: 767px) {
  .cid-uYUXp2R6wZ .card-box {
    display: flex;
    align-items: center;
    padding: 20px 0;
  }
}
@media (max-width: 576px) {
  .cid-uYUXp2R6wZ .card-box {
    flex-wrap: wrap;
  }
}
.cid-uYUXp2R6wZ .img-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}
@media (max-width: 767px) {
  .cid-uYUXp2R6wZ .img-container {
    width: 50%;
    padding: 10px;
  }
}
@media (max-width: 575px) {
  .cid-uYUXp2R6wZ .img-container {
    width: 100%;
  }
}
.cid-uYUXp2R6wZ .img-bg {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  aspect-ratio: 1;
  background-color: #fa603c;
  border-radius: 50%;
  display: none;
}
.cid-uYUXp2R6wZ .image-wrapper {
  position: relative;
  z-index: 5;
  width: 100%;
}
.cid-uYUXp2R6wZ .image-wrapper img {
  width: auto;
  max-width: 70%;
  height: 280px;
  margin: 0 auto;
  object-fit: contain;
}
@media (max-width: 1399px) {
  .cid-uYUXp2R6wZ .image-wrapper img {
    height: 220px;
  }
}
@media (max-width: 1199px) {
  .cid-uYUXp2R6wZ .image-wrapper img {
    height: 186px;
  }
}
@media (max-width: 991px) {
  .cid-uYUXp2R6wZ .image-wrapper img {
    height: 148px;
  }
}
@media (max-width: 767px) {
  .cid-uYUXp2R6wZ .image-wrapper img {
    height: auto;
  }
}
.cid-uYUXp2R6wZ .card-container {
  width: 100%;
  padding-top: 12%;
}
@media (max-width: 767px) {
  .cid-uYUXp2R6wZ .card-container {
    width: 50%;
    padding: 10px;
  }
}
@media (max-width: 575px) {
  .cid-uYUXp2R6wZ .card-container {
    width: 100%;
  }
}
.cid-uYUXp2R6wZ .card-title {
  color: #000000;
  margin-bottom: 20px !important;
}
@media (max-width: 767px) and (min-width: 575px) {
  .cid-uYUXp2R6wZ .card-title {
    text-align: left !important;
  }
}
.cid-uYUXp2R6wZ .card-text {
  color: #112B6D;
  margin-bottom: 0.9rem !important;
}
@media (max-width: 767px) and (min-width: 575px) {
  .cid-uYUXp2R6wZ .card-text {
    text-align: left !important;
  }
}
@media (max-width: 767px) and (min-width: 575px) {
  .cid-uYUXp2R6wZ .mbr-section-btn {
    text-align: left !important;
  }
}
.cid-uZ1Y8e4hq4 {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #6ba7ed;
}
.cid-uZ1Y8e4hq4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ1Y8e4hq4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZ1Y8e4hq4 .container {
  max-width: 100%;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-uZ1Y8e4hq4 .row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.cid-uZ1Y8e4hq4 .row > [class*="col"] {
  padding-left: 0;
  padding-right: 0;
}
.cid-uZ1Y8e4hq4 .col-title {
  width: 100%;
  max-width: 1140px;
  padding: 0 10px !important;
  margin: 0 auto 40px;
}
.cid-uZ1Y8e4hq4 .mbr-section-title {
  color: #112B6D;
  margin-bottom: 20px !important;
}
.cid-uZ1Y8e4hq4 .mbr-section-subtitle {
  color: #112B6D;
  margin-bottom: 0.9rem !important;
}
.cid-uZ1Y8e4hq4 .cards-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 0 !important;
}
@media (max-width: 767px) {
  .cid-uZ1Y8e4hq4 .cards-container {
    flex-wrap: wrap;
  }
}
.cid-uZ1Y8e4hq4 .card {
  width: 33.33333333%;
  border-radius: 0;
}
@media (max-width: 767px) {
  .cid-uZ1Y8e4hq4 .card {
    width: 100%;
  }
}
.cid-uZ1Y8e4hq4 .card-box {
  width: 100%;
  padding: 6% 6% 6% 6%;
}
@media (max-width: 767px) {
  .cid-uZ1Y8e4hq4 .card-box {
    display: flex;
    align-items: center;
    padding: 20px 0;
  }
}
@media (max-width: 576px) {
  .cid-uZ1Y8e4hq4 .card-box {
    flex-wrap: wrap;
  }
}
.cid-uZ1Y8e4hq4 .img-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}
@media (max-width: 767px) {
  .cid-uZ1Y8e4hq4 .img-container {
    width: 50%;
    padding: 10px;
  }
}
@media (max-width: 575px) {
  .cid-uZ1Y8e4hq4 .img-container {
    width: 100%;
  }
}
.cid-uZ1Y8e4hq4 .img-bg {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  aspect-ratio: 1;
  background-color: #fa603c;
  border-radius: 50%;
  display: none;
}
.cid-uZ1Y8e4hq4 .image-wrapper {
  position: relative;
  z-index: 5;
  width: 100%;
}
.cid-uZ1Y8e4hq4 .image-wrapper img {
  width: auto;
  max-width: 70%;
  height: 280px;
  margin: 0 auto;
  object-fit: contain;
}
@media (max-width: 1399px) {
  .cid-uZ1Y8e4hq4 .image-wrapper img {
    height: 220px;
  }
}
@media (max-width: 1199px) {
  .cid-uZ1Y8e4hq4 .image-wrapper img {
    height: 186px;
  }
}
@media (max-width: 991px) {
  .cid-uZ1Y8e4hq4 .image-wrapper img {
    height: 148px;
  }
}
@media (max-width: 767px) {
  .cid-uZ1Y8e4hq4 .image-wrapper img {
    height: auto;
  }
}
.cid-uZ1Y8e4hq4 .card-container {
  width: 100%;
  padding-top: 12%;
}
@media (max-width: 767px) {
  .cid-uZ1Y8e4hq4 .card-container {
    width: 50%;
    padding: 10px;
  }
}
@media (max-width: 575px) {
  .cid-uZ1Y8e4hq4 .card-container {
    width: 100%;
  }
}
.cid-uZ1Y8e4hq4 .card-title {
  color: #000000;
  margin-bottom: 20px !important;
}
@media (max-width: 767px) and (min-width: 575px) {
  .cid-uZ1Y8e4hq4 .card-title {
    text-align: left !important;
  }
}
.cid-uZ1Y8e4hq4 .card-text {
  color: #112B6D;
  margin-bottom: 0.9rem !important;
}
@media (max-width: 767px) and (min-width: 575px) {
  .cid-uZ1Y8e4hq4 .card-text {
    text-align: left !important;
  }
}
@media (max-width: 767px) and (min-width: 575px) {
  .cid-uZ1Y8e4hq4 .mbr-section-btn {
    text-align: left !important;
  }
}
.cid-uYUXnag0sv {
  padding-top: 6rem;
  padding-bottom: 10rem;
  background-color: #6ba7ed;
}
.cid-uYUXnag0sv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYUXnag0sv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYUXnag0sv .text-wrap {
  width: 100%;
}
.cid-uYUXnag0sv .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 767px) {
  .cid-uYUXnag0sv .mbr-section-head {
    margin-bottom: 60px;
  }
}
.cid-uYUXnag0sv .mbr-section-title {
  color: #829D85;
  margin-bottom: 0;
}
.cid-uYUXnag0sv .mbr-text {
  color: #353535;
  margin-top: 20px;
}
.cid-uYUXnag0sv .item-row {
  row-gap: 40px;
  margin-left: -20px;
  margin-right: -20px;
}
.cid-uYUXnag0sv .item-row > [class*="col"] {
  padding-left: 20px;
  padding-right: 20px;
}
.cid-uYUXnag0sv .item-wrapper {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  height: 100%;
  background-color: #6ba7ed;
  overflow: hidden;
  border: 1px solid rgba(13, 40, 89, 0.8);
  border-radius: 45px;
}
.cid-uYUXnag0sv .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.cid-uYUXnag0sv .item-img img {
  aspect-ratio: 0.66666667;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-uYUXnag0sv .item-title-wrap {
  padding: 45px 26px;
  border-radius: 0 0 45px 45px;
  border: 1px solid rgba(13, 40, 89, 0.8);
  background-color: rgba(169, 187, 171, 0.8);
}
.cid-uYUXnag0sv .item-title {
  width: 100%;
  margin: 0;
  color: #987A5A;
}
.cid-uYUXnag0sv .item-text-wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  flex-grow: 1;
  padding: 26px;
}
.cid-uYUXnag0sv .item-text {
  color: #353535;
  margin: 0;
}
.cid-uYUXnag0sv .mbr-section-btn {
  margin-top: 10px;
}
.cid-uYUXnag0sv .mbr-section-btn .btn {
  width: 180px;
  min-width: auto;
  min-height: 55px;
  max-width: 100%;
}
.cid-uYUXnag0sv .item-text,
.cid-uYUXnag0sv .mbr-section-btn {
  color: #000000;
}
.cid-uZ2hH5skZ5 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #4479d9;
  overflow: hidden;
}
.cid-uYUQkQrbG0 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uYUQkQrbG0 nav.navbar {
  position: fixed;
}
.cid-uYUQkQrbG0 .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-uYUQkQrbG0 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uYUQkQrbG0 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uYUQkQrbG0 .dropdown-item:hover,
.cid-uYUQkQrbG0 .dropdown-item:focus {
  background: #0d2859 !important;
  color: white !important;
}
.cid-uYUQkQrbG0 .dropdown-item:hover span {
  color: white;
}
.cid-uYUQkQrbG0 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uYUQkQrbG0 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uYUQkQrbG0 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uYUQkQrbG0 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uYUQkQrbG0 .nav-link {
  position: relative;
}
.cid-uYUQkQrbG0 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uYUQkQrbG0 .container {
    flex-wrap: wrap;
  }
}
.cid-uYUQkQrbG0 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uYUQkQrbG0 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uYUQkQrbG0 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uYUQkQrbG0 .dropdown-menu,
.cid-uYUQkQrbG0 .navbar.opened {
  background: #4479d9 !important;
}
.cid-uYUQkQrbG0 .nav-item:focus,
.cid-uYUQkQrbG0 .nav-link:focus {
  outline: none;
}
.cid-uYUQkQrbG0 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uYUQkQrbG0 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uYUQkQrbG0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uYUQkQrbG0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uYUQkQrbG0 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uYUQkQrbG0 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uYUQkQrbG0 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #4479d9;
}
.cid-uYUQkQrbG0 .navbar.opened {
  transition: all 0.3s;
}
.cid-uYUQkQrbG0 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uYUQkQrbG0 .navbar .navbar-logo img {
  width: auto;
}
.cid-uYUQkQrbG0 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uYUQkQrbG0 .navbar.collapsed {
  justify-content: center;
}
.cid-uYUQkQrbG0 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uYUQkQrbG0 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uYUQkQrbG0 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.8rem);
  }
}
.cid-uYUQkQrbG0 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uYUQkQrbG0 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uYUQkQrbG0 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uYUQkQrbG0 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uYUQkQrbG0 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uYUQkQrbG0 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uYUQkQrbG0 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uYUQkQrbG0 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uYUQkQrbG0 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uYUQkQrbG0 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uYUQkQrbG0 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uYUQkQrbG0 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uYUQkQrbG0 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uYUQkQrbG0 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uYUQkQrbG0 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uYUQkQrbG0 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uYUQkQrbG0 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uYUQkQrbG0 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uYUQkQrbG0 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uYUQkQrbG0 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uYUQkQrbG0 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uYUQkQrbG0 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uYUQkQrbG0 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uYUQkQrbG0 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uYUQkQrbG0 .dropdown-item.active,
.cid-uYUQkQrbG0 .dropdown-item:active {
  background-color: transparent;
}
.cid-uYUQkQrbG0 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uYUQkQrbG0 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uYUQkQrbG0 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uYUQkQrbG0 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #4479d9;
}
.cid-uYUQkQrbG0 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uYUQkQrbG0 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uYUQkQrbG0 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uYUQkQrbG0 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uYUQkQrbG0 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uYUQkQrbG0 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uYUQkQrbG0 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uYUQkQrbG0 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uYUQkQrbG0 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uYUQkQrbG0 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uYUQkQrbG0 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uYUQkQrbG0 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uYUQkQrbG0 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uYUQkQrbG0 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uYUQkQrbG0 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uYUQkQrbG0 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uYUQkQrbG0 .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-uYUQkQrbG0 .navbar {
    height: 70px;
  }
  .cid-uYUQkQrbG0 .navbar.opened {
    height: auto;
  }
  .cid-uYUQkQrbG0 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uYV0zjX7PY {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-color: #6ba7ed;
}
.cid-uYV0zjX7PY .mbr-section-head {
  max-width: 800px;
}
@media (min-width: 1400px) {
  .cid-uYV0zjX7PY .mbr-section-head {
    padding: 0 2rem;
  }
}
.cid-uYV0zjX7PY .social {
  display: inline-flex;
  align-items: center;
}
.cid-uYV0zjX7PY .social .socicon {
  padding-right: 0.6rem;
  color: #0d2859;
  font-size: 1.2rem;
}
.cid-uYV0zjX7PY .soc-wrapper {
  width: 100%;
}
.cid-uYV0zjX7PY .item-wrapper {
  border-top: 1px solid #efefef;
  padding-top: 2rem;
  position: relative;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uYV0zjX7PY .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
@media (min-width: 1400px) {
  .cid-uYV0zjX7PY .item {
    padding: 0 3rem;
  }
}
.cid-uYV0zjX7PY img,
.cid-uYV0zjX7PY .item-img {
  width: 100%;
  padding-bottom: 1rem;
  height: 100%;
  height: 450px;
  object-fit: cover;
}
.cid-uYV0zjX7PY .item:focus,
.cid-uYV0zjX7PY span:focus {
  outline: none;
}
.cid-uYV0zjX7PY .mbr-section-title {
  color: #101112;
}
.cid-uYV0zjX7PY .mbr-text,
.cid-uYV0zjX7PY .mbr-section-btn {
  color: #000000;
}
.cid-uYV0zjX7PY .mbr-section-subtitle {
  color: #353535;
}
.cid-uZ21RBcla5 {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #6ba7ed;
}
.cid-uZ21RBcla5 .mbr-section-head {
  max-width: 800px;
}
@media (min-width: 1400px) {
  .cid-uZ21RBcla5 .mbr-section-head {
    padding: 0 2rem;
  }
}
.cid-uZ21RBcla5 .social {
  display: inline-flex;
  align-items: center;
}
.cid-uZ21RBcla5 .social .socicon {
  padding-right: 0.6rem;
  color: #0d2859;
  font-size: 1.2rem;
}
.cid-uZ21RBcla5 .soc-wrapper {
  width: 100%;
}
.cid-uZ21RBcla5 .item-wrapper {
  border-top: 1px solid #efefef;
  padding-top: 2rem;
  position: relative;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uZ21RBcla5 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
@media (min-width: 1400px) {
  .cid-uZ21RBcla5 .item {
    padding: 0 3rem;
  }
}
.cid-uZ21RBcla5 img,
.cid-uZ21RBcla5 .item-img {
  width: 100%;
  padding-bottom: 1rem;
  height: 100%;
  height: 450px;
  object-fit: cover;
}
.cid-uZ21RBcla5 .item:focus,
.cid-uZ21RBcla5 span:focus {
  outline: none;
}
.cid-uZ21RBcla5 .mbr-section-title {
  color: #101112;
}
.cid-uZ21RBcla5 .mbr-text,
.cid-uZ21RBcla5 .mbr-section-btn {
  color: #000000;
}
.cid-uZ21RBcla5 .mbr-section-subtitle {
  color: #353535;
}
.cid-uZ21C5pz4r {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #6ba7ed;
}
.cid-uZ21C5pz4r .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ21C5pz4r .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZ21C5pz4r .content-wrapper {
  position: relative;
  z-index: 1;
  width: 80%;
  margin: 0 auto;
  margin-bottom: 82px;
}
@media (max-width: 992px) {
  .cid-uZ21C5pz4r .content-wrapper {
    width: 100%;
    margin-bottom: 28px;
  }
}
.cid-uZ21C5pz4r .content-wrapper .label-wrapper {
  margin-bottom: 42px;
}
@media (max-width: 992px) {
  .cid-uZ21C5pz4r .content-wrapper .label-wrapper {
    margin-bottom: 28px;
  }
}
.cid-uZ21C5pz4r .content-wrapper .label-wrapper .label-wrap {
  padding: 14px 24px;
  display: inline-flex;
  align-items: center;
  background-color: #362c52;
}
@media (max-width: 992px) {
  .cid-uZ21C5pz4r .content-wrapper .label-wrapper .label-wrap {
    padding: 10px 16px;
  }
}
.cid-uZ21C5pz4r .content-wrapper .label-wrapper .label-wrap .iconfont-wrapper {
  display: inline-flex;
  margin-right: 14px;
}
.cid-uZ21C5pz4r .content-wrapper .label-wrapper .label-wrap .iconfont-wrapper .mbr-iconfont {
  font-size: 19px;
}
.cid-uZ21C5pz4r .content-wrapper .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-uZ21C5pz4r .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uZ21C5pz4r .content-wrapper .title-wrapper .subtitle-wrapper .mbr-section-subtitle {
  display: inline-block;
  margin-bottom: 0;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(90deg, #2ba7ff, #ca45ff 50%, #fe881b);
}
.cid-uZ21C5pz4r .items-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 -7px;
}
.cid-uZ21C5pz4r .items-wrapper .item {
  width: 33.33%;
  padding: 0 7px;
  margin-bottom: 14px;
  animation: none !important;
}
@media (max-width: 1440px) {
  .cid-uZ21C5pz4r .items-wrapper .item {
    width: 50%;
  }
}
@media (max-width: 992px) {
  .cid-uZ21C5pz4r .items-wrapper .item {
    width: 100%;
    margin-bottom: 16px;
  }
}
.cid-uZ21C5pz4r .items-wrapper .item:hover .item-wrapper::after,
.cid-uZ21C5pz4r .items-wrapper .item:focus .item-wrapper::after {
  width: 90%;
  height: 200px;
  top: -155px;
}
.cid-uZ21C5pz4r .items-wrapper .item .item-wrapper {
  position: relative;
  padding: 46px;
  min-height: 485px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  overflow: hidden !important;
}
@media (max-width: 992px) {
  .cid-uZ21C5pz4r .items-wrapper .item .item-wrapper {
    min-height: auto;
    padding: 18px;
  }
}
.cid-uZ21C5pz4r .items-wrapper .item .item-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #4479d9;
  opacity: .5;
  backdrop-filter: blur(36px);
  pointer-events: none;
}
.cid-uZ21C5pz4r .items-wrapper .item .item-wrapper::after {
  content: '';
  position: absolute;
  top: -200px;
  width: 0;
  height: 0;
  border-radius: 100%;
  background-image: linear-gradient(45deg, #d66eff 30%, #0f3882);
  filter: blur(2rem);
  pointer-events: none;
  transition: all .5s ease;
  z-index: 1;
}
.cid-uZ21C5pz4r .items-wrapper .item .item-wrapper .item-img {
  width: 100%;
  position: relative;
  z-index: 2;
  margin-bottom: 42px;
}
@media (max-width: 992px) {
  .cid-uZ21C5pz4r .items-wrapper .item .item-wrapper .item-img {
    margin-bottom: 22px;
  }
}
.cid-uZ21C5pz4r .items-wrapper .item .item-wrapper .item-img img {
  height: 250px;
  width: 100%;
  object-fit: cover;
}
.cid-uZ21C5pz4r .items-wrapper .item .item-wrapper .card-box {
  position: relative;
  z-index: 1;
}
.cid-uZ21C5pz4r .items-wrapper .item .item-wrapper .card-box .item-title {
  margin-bottom: 22px;
}
.cid-uZ21C5pz4r .items-wrapper .item .item-wrapper .card-box .item-date {
  margin-bottom: 0;
}
.cid-uZ21C5pz4r .items-wrapper .item .item-wrapper .card-box .mbr-section-btn {
  margin-top: 22px;
  width: 100%;
}
.cid-uZ21C5pz4r .items-wrapper .item .item-wrapper .card-box .mbr-section-btn .btn {
  width: 100%;
  margin-bottom: 0;
}
.cid-uZ21C5pz4r .mbr-label,
.cid-uZ21C5pz4r .label-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uZ21C5pz4r .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uZ21C5pz4r .mbr-section-subtitle,
.cid-uZ21C5pz4r .subtitle-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uZ21C5pz4r .item-title {
  color: #ffffff;
}
.cid-uZ21C5pz4r .item-date {
  color: #000000;
}
.cid-uZ223kYzkq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #6ba7ed;
}
.cid-uZ223kYzkq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ223kYzkq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZ223kYzkq .title-wrapper {
  position: relative;
  z-index: 1;
  width: 60%;
  margin: 0 auto;
  margin-bottom: 82px;
}
@media (max-width: 1440px) {
  .cid-uZ223kYzkq .title-wrapper {
    width: 80%;
  }
}
@media (max-width: 992px) {
  .cid-uZ223kYzkq .title-wrapper {
    width: 100%;
    margin-bottom: 28px;
  }
}
.cid-uZ223kYzkq .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uZ223kYzkq .title-wrapper .subtitle-wrapper .mbr-section-subtitle {
  display: inline-block;
  margin-bottom: 0;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(90deg, #2ba7ff, #ca45ff 50%, #fe881b);
}
.cid-uZ223kYzkq .title-wrapper .mbr-text {
  margin-top: 22px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uZ223kYzkq .title-wrapper .mbr-text {
    margin-top: 18px;
  }
}
.cid-uZ223kYzkq .items-wrapper .item {
  margin-bottom: 82px;
}
.cid-uZ223kYzkq .items-wrapper .item:last-child {
  margin-bottom: 0;
}
@media (max-width: 1440px) {
  .cid-uZ223kYzkq .items-wrapper .item {
    margin-bottom: 46px;
  }
  .cid-uZ223kYzkq .items-wrapper .item:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 992px) {
  .cid-uZ223kYzkq .items-wrapper .item {
    margin-bottom: 16px;
  }
  .cid-uZ223kYzkq .items-wrapper .item:last-child {
    margin-bottom: 16px;
  }
}
.cid-uZ223kYzkq .items-wrapper .item .item-wrapper {
  min-height: 460px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 82px;
  background-image: radial-gradient(circle at 5% 113%, #6592e6, #4479d9 110%);
  min-height: auto;
  justify-content: flex-end;
}
@media (max-width: 1440px) {
  .cid-uZ223kYzkq .items-wrapper .item .item-wrapper {
    padding: 46px;
  }
}
@media (max-width: 992px) {
  .cid-uZ223kYzkq .items-wrapper .item .item-wrapper {
    min-height: auto;
    padding: 18px;
  }
}
.cid-uZ223kYzkq .items-wrapper .item .item-wrapper .label-wrapper {
  position: relative;
  z-index: 2;
  margin-bottom: 22px;
}
.cid-uZ223kYzkq .items-wrapper .item .item-wrapper .label-wrapper .label-wrap {
  padding: 14px 24px;
  display: inline-flex;
  align-items: center;
  background-color: #362c52;
}
@media (max-width: 992px) {
  .cid-uZ223kYzkq .items-wrapper .item .item-wrapper .label-wrapper .label-wrap {
    padding: 10px 16px;
  }
}
.cid-uZ223kYzkq .items-wrapper .item .item-wrapper .label-wrapper .label-wrap .iconfont-wrapper {
  display: inline-flex;
  margin-right: 14px;
}
.cid-uZ223kYzkq .items-wrapper .item .item-wrapper .label-wrapper .label-wrap .iconfont-wrapper .mbr-iconfont {
  font-size: 19px;
}
.cid-uZ223kYzkq .items-wrapper .item .item-wrapper .label-wrapper .label-wrap .item-label {
  margin-bottom: 0;
}
.cid-uZ223kYzkq .items-wrapper .item .item-wrapper .card-box {
  position: relative;
}
.cid-uZ223kYzkq .items-wrapper .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-uZ223kYzkq .items-wrapper .item .item-wrapper .card-box .mbr-section-btn {
  margin-top: 22px;
}
.cid-uZ223kYzkq .items-wrapper .item .item-wrapper .card-box .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uZ223kYzkq .image-wrapper {
  padding: 0 115px;
  height: 100%;
}
@media (max-width: 1440px) {
  .cid-uZ223kYzkq .image-wrapper {
    padding: 0 46px;
  }
}
@media (max-width: 992px) {
  .cid-uZ223kYzkq .image-wrapper {
    padding: 0;
  }
}
.cid-uZ223kYzkq .image-wrapper img {
  position: sticky;
  top: 91px;
  height: 460px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 1440px) {
  .cid-uZ223kYzkq .image-wrapper img {
    top: 46px;
  }
}
@media (max-width: 992px) {
  .cid-uZ223kYzkq .image-wrapper img {
    height: 300px;
  }
}
.cid-uZ223kYzkq .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uZ223kYzkq .mbr-section-subtitle,
.cid-uZ223kYzkq .subtitle-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uZ223kYzkq .mbr-text {
  color: #a997ce;
  text-align: center;
}
.cid-uZ223kYzkq .item-label {
  color: #ffffff;
}
.cid-uZ223kYzkq .item-text {
  color: #a997ce;
}
.cid-uZ223kYzkq .item-text,
.cid-uZ223kYzkq .mbr-section-btn {
  color: #000000;
}
.cid-uZ22e62n75 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #6ba7ed;
}
.cid-uZ22e62n75 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ22e62n75 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZ22e62n75 .title-wrapper {
  position: relative;
  z-index: 1;
  width: 60%;
  margin: 0 auto;
  margin-bottom: 82px;
}
@media (max-width: 1440px) {
  .cid-uZ22e62n75 .title-wrapper {
    width: 80%;
  }
}
@media (max-width: 992px) {
  .cid-uZ22e62n75 .title-wrapper {
    width: 100%;
    margin-bottom: 28px;
  }
}
.cid-uZ22e62n75 .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uZ22e62n75 .title-wrapper .subtitle-wrapper .mbr-section-subtitle {
  display: inline-block;
  margin-bottom: 0;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(90deg, #2ba7ff, #ca45ff 50%, #fe881b);
}
.cid-uZ22e62n75 .title-wrapper .mbr-text {
  margin-top: 22px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uZ22e62n75 .title-wrapper .mbr-text {
    margin-top: 18px;
  }
}
.cid-uZ22e62n75 .items-wrapper .item {
  margin-bottom: 82px;
}
.cid-uZ22e62n75 .items-wrapper .item:last-child {
  margin-bottom: 0;
}
@media (max-width: 1440px) {
  .cid-uZ22e62n75 .items-wrapper .item {
    margin-bottom: 46px;
  }
  .cid-uZ22e62n75 .items-wrapper .item:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 992px) {
  .cid-uZ22e62n75 .items-wrapper .item {
    margin-bottom: 16px;
  }
  .cid-uZ22e62n75 .items-wrapper .item:last-child {
    margin-bottom: 16px;
  }
}
.cid-uZ22e62n75 .items-wrapper .item .item-wrapper {
  min-height: 460px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 82px;
  background-image: radial-gradient(circle at 5% 113%, #6592e6, #4479d9 110%);
  min-height: auto;
  justify-content: flex-end;
}
@media (max-width: 1440px) {
  .cid-uZ22e62n75 .items-wrapper .item .item-wrapper {
    padding: 46px;
  }
}
@media (max-width: 992px) {
  .cid-uZ22e62n75 .items-wrapper .item .item-wrapper {
    min-height: auto;
    padding: 18px;
  }
}
.cid-uZ22e62n75 .items-wrapper .item .item-wrapper .label-wrapper {
  position: relative;
  z-index: 2;
  margin-bottom: 22px;
}
.cid-uZ22e62n75 .items-wrapper .item .item-wrapper .label-wrapper .label-wrap {
  padding: 14px 24px;
  display: inline-flex;
  align-items: center;
  background-color: #362c52;
}
@media (max-width: 992px) {
  .cid-uZ22e62n75 .items-wrapper .item .item-wrapper .label-wrapper .label-wrap {
    padding: 10px 16px;
  }
}
.cid-uZ22e62n75 .items-wrapper .item .item-wrapper .label-wrapper .label-wrap .iconfont-wrapper {
  display: inline-flex;
  margin-right: 14px;
}
.cid-uZ22e62n75 .items-wrapper .item .item-wrapper .label-wrapper .label-wrap .iconfont-wrapper .mbr-iconfont {
  font-size: 19px;
}
.cid-uZ22e62n75 .items-wrapper .item .item-wrapper .label-wrapper .label-wrap .item-label {
  margin-bottom: 0;
}
.cid-uZ22e62n75 .items-wrapper .item .item-wrapper .card-box {
  position: relative;
}
.cid-uZ22e62n75 .items-wrapper .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-uZ22e62n75 .items-wrapper .item .item-wrapper .card-box .mbr-section-btn {
  margin-top: 22px;
}
.cid-uZ22e62n75 .items-wrapper .item .item-wrapper .card-box .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uZ22e62n75 .image-wrapper {
  padding: 0 115px;
  height: 100%;
}
@media (max-width: 1440px) {
  .cid-uZ22e62n75 .image-wrapper {
    padding: 0 46px;
  }
}
@media (max-width: 992px) {
  .cid-uZ22e62n75 .image-wrapper {
    padding: 0;
  }
}
.cid-uZ22e62n75 .image-wrapper img {
  position: sticky;
  top: 91px;
  height: 460px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 1440px) {
  .cid-uZ22e62n75 .image-wrapper img {
    top: 46px;
  }
}
@media (max-width: 992px) {
  .cid-uZ22e62n75 .image-wrapper img {
    height: 300px;
  }
}
.cid-uZ22e62n75 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uZ22e62n75 .mbr-section-subtitle,
.cid-uZ22e62n75 .subtitle-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uZ22e62n75 .mbr-text {
  color: #a997ce;
  text-align: center;
}
.cid-uZ22e62n75 .item-label {
  color: #ffffff;
}
.cid-uZ22e62n75 .item-text {
  color: #a997ce;
}
.cid-uZ22e62n75 .item-text,
.cid-uZ22e62n75 .mbr-section-btn {
  color: #000000;
}
.cid-uZ2hH5skZ5 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #4479d9;
  overflow: hidden;
}
.cid-uYUQkQrbG0 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uYUQkQrbG0 nav.navbar {
  position: fixed;
}
.cid-uYUQkQrbG0 .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-uYUQkQrbG0 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uYUQkQrbG0 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uYUQkQrbG0 .dropdown-item:hover,
.cid-uYUQkQrbG0 .dropdown-item:focus {
  background: #0d2859 !important;
  color: white !important;
}
.cid-uYUQkQrbG0 .dropdown-item:hover span {
  color: white;
}
.cid-uYUQkQrbG0 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uYUQkQrbG0 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uYUQkQrbG0 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uYUQkQrbG0 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uYUQkQrbG0 .nav-link {
  position: relative;
}
.cid-uYUQkQrbG0 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uYUQkQrbG0 .container {
    flex-wrap: wrap;
  }
}
.cid-uYUQkQrbG0 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uYUQkQrbG0 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uYUQkQrbG0 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uYUQkQrbG0 .dropdown-menu,
.cid-uYUQkQrbG0 .navbar.opened {
  background: #4479d9 !important;
}
.cid-uYUQkQrbG0 .nav-item:focus,
.cid-uYUQkQrbG0 .nav-link:focus {
  outline: none;
}
.cid-uYUQkQrbG0 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uYUQkQrbG0 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uYUQkQrbG0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uYUQkQrbG0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uYUQkQrbG0 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uYUQkQrbG0 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uYUQkQrbG0 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #4479d9;
}
.cid-uYUQkQrbG0 .navbar.opened {
  transition: all 0.3s;
}
.cid-uYUQkQrbG0 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uYUQkQrbG0 .navbar .navbar-logo img {
  width: auto;
}
.cid-uYUQkQrbG0 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uYUQkQrbG0 .navbar.collapsed {
  justify-content: center;
}
.cid-uYUQkQrbG0 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uYUQkQrbG0 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uYUQkQrbG0 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.8rem);
  }
}
.cid-uYUQkQrbG0 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uYUQkQrbG0 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uYUQkQrbG0 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uYUQkQrbG0 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uYUQkQrbG0 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uYUQkQrbG0 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uYUQkQrbG0 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uYUQkQrbG0 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uYUQkQrbG0 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uYUQkQrbG0 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uYUQkQrbG0 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uYUQkQrbG0 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uYUQkQrbG0 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uYUQkQrbG0 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uYUQkQrbG0 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uYUQkQrbG0 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uYUQkQrbG0 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uYUQkQrbG0 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uYUQkQrbG0 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uYUQkQrbG0 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uYUQkQrbG0 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uYUQkQrbG0 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uYUQkQrbG0 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uYUQkQrbG0 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uYUQkQrbG0 .dropdown-item.active,
.cid-uYUQkQrbG0 .dropdown-item:active {
  background-color: transparent;
}
.cid-uYUQkQrbG0 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uYUQkQrbG0 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uYUQkQrbG0 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uYUQkQrbG0 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #4479d9;
}
.cid-uYUQkQrbG0 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uYUQkQrbG0 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uYUQkQrbG0 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uYUQkQrbG0 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uYUQkQrbG0 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uYUQkQrbG0 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uYUQkQrbG0 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uYUQkQrbG0 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uYUQkQrbG0 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uYUQkQrbG0 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uYUQkQrbG0 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uYUQkQrbG0 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uYUQkQrbG0 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uYUQkQrbG0 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uYUQkQrbG0 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uYUQkQrbG0 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uYUQkQrbG0 .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-uYUQkQrbG0 .navbar {
    height: 70px;
  }
  .cid-uYUQkQrbG0 .navbar.opened {
    height: auto;
  }
  .cid-uYUQkQrbG0 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uYUYmRwiXl {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-color: #6ba7ed;
}
.cid-uYUYmRwiXl img,
.cid-uYUYmRwiXl .item-img {
  height: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-uYUYmRwiXl .item:focus,
.cid-uYUYmRwiXl span:focus {
  outline: none;
}
.cid-uYUYmRwiXl .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uYUYmRwiXl .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #6ba7ed;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uYUYmRwiXl .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uYUYmRwiXl .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uYUYmRwiXl .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uYUYmRwiXl .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uYUYmRwiXl .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uYUYmRwiXl .mbr-section-title {
  color: #232323;
}
.cid-uYUYmRwiXl .mbr-text,
.cid-uYUYmRwiXl .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-uYUYmRwiXl .item-title {
  text-align: left;
}
.cid-uYUYmRwiXl .item-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-uYUYoFgL7W {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #6ba7ed;
}
.cid-uYUYoFgL7W .mbr-section-head {
  max-width: 800px;
}
@media (min-width: 1400px) {
  .cid-uYUYoFgL7W .mbr-section-head {
    padding: 0 2rem;
  }
}
.cid-uYUYoFgL7W .social {
  display: inline-flex;
  align-items: center;
}
.cid-uYUYoFgL7W .social .socicon {
  padding-right: 0.6rem;
  color: #0d2859;
  font-size: 1.2rem;
}
.cid-uYUYoFgL7W .soc-wrapper {
  width: 100%;
}
.cid-uYUYoFgL7W .item-wrapper {
  border-top: 1px solid #efefef;
  padding-top: 2rem;
  position: relative;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uYUYoFgL7W .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
@media (min-width: 1400px) {
  .cid-uYUYoFgL7W .item {
    padding: 0 3rem;
  }
}
.cid-uYUYoFgL7W img,
.cid-uYUYoFgL7W .item-img {
  width: 100%;
  padding-bottom: 1rem;
  height: 100%;
  height: 450px;
  object-fit: cover;
}
.cid-uYUYoFgL7W .item:focus,
.cid-uYUYoFgL7W span:focus {
  outline: none;
}
.cid-uYUYoFgL7W .mbr-section-title {
  color: #101112;
}
.cid-uYUYoFgL7W .mbr-text,
.cid-uYUYoFgL7W .mbr-section-btn {
  color: #000000;
}
.cid-uYUYoFgL7W .mbr-section-subtitle {
  color: #353535;
}
.cid-uZ1YWZ1qJT {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #6ba7ed;
}
.cid-uZ1YWZ1qJT .mbr-section-head {
  max-width: 800px;
}
@media (min-width: 1400px) {
  .cid-uZ1YWZ1qJT .mbr-section-head {
    padding: 0 2rem;
  }
}
.cid-uZ1YWZ1qJT .social {
  display: inline-flex;
  align-items: center;
}
.cid-uZ1YWZ1qJT .social .socicon {
  padding-right: 0.6rem;
  color: #0d2859;
  font-size: 1.2rem;
}
.cid-uZ1YWZ1qJT .soc-wrapper {
  width: 100%;
}
.cid-uZ1YWZ1qJT .item-wrapper {
  border-top: 1px solid #efefef;
  padding-top: 2rem;
  position: relative;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uZ1YWZ1qJT .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
@media (min-width: 1400px) {
  .cid-uZ1YWZ1qJT .item {
    padding: 0 3rem;
  }
}
.cid-uZ1YWZ1qJT img,
.cid-uZ1YWZ1qJT .item-img {
  width: 100%;
  padding-bottom: 1rem;
  height: 100%;
  height: 450px;
  object-fit: cover;
}
.cid-uZ1YWZ1qJT .item:focus,
.cid-uZ1YWZ1qJT span:focus {
  outline: none;
}
.cid-uZ1YWZ1qJT .mbr-section-title {
  color: #101112;
}
.cid-uZ1YWZ1qJT .mbr-text,
.cid-uZ1YWZ1qJT .mbr-section-btn {
  color: #000000;
}
.cid-uZ1YWZ1qJT .mbr-section-subtitle {
  color: #353535;
}
.cid-uZ1Z4akIk8 {
  padding-top: 2rem;
  padding-bottom: 10rem;
  background-color: #6ba7ed;
}
.cid-uZ1Z4akIk8 img,
.cid-uZ1Z4akIk8 .item-img {
  width: 100%;
}
.cid-uZ1Z4akIk8 .item:focus,
.cid-uZ1Z4akIk8 span:focus {
  outline: none;
}
.cid-uZ1Z4akIk8 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uZ1Z4akIk8 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #6ba7ed;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uZ1Z4akIk8 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uZ1Z4akIk8 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uZ1Z4akIk8 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uZ1Z4akIk8 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uZ1Z4akIk8 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uZ1Z4akIk8 .mbr-section-title {
  color: #232323;
}
.cid-uZ1Z4akIk8 .mbr-text,
.cid-uZ1Z4akIk8 .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-uZ1Z4akIk8 .item-title {
  text-align: left;
}
.cid-uZ1Z4akIk8 .item-subtitle {
  text-align: center;
}
.cid-uZ2hH5skZ5 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #4479d9;
  overflow: hidden;
}
.cid-uYUQkQrbG0 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uYUQkQrbG0 nav.navbar {
  position: fixed;
}
.cid-uYUQkQrbG0 .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-uYUQkQrbG0 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uYUQkQrbG0 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uYUQkQrbG0 .dropdown-item:hover,
.cid-uYUQkQrbG0 .dropdown-item:focus {
  background: #0d2859 !important;
  color: white !important;
}
.cid-uYUQkQrbG0 .dropdown-item:hover span {
  color: white;
}
.cid-uYUQkQrbG0 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uYUQkQrbG0 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uYUQkQrbG0 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uYUQkQrbG0 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uYUQkQrbG0 .nav-link {
  position: relative;
}
.cid-uYUQkQrbG0 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uYUQkQrbG0 .container {
    flex-wrap: wrap;
  }
}
.cid-uYUQkQrbG0 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uYUQkQrbG0 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uYUQkQrbG0 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uYUQkQrbG0 .dropdown-menu,
.cid-uYUQkQrbG0 .navbar.opened {
  background: #4479d9 !important;
}
.cid-uYUQkQrbG0 .nav-item:focus,
.cid-uYUQkQrbG0 .nav-link:focus {
  outline: none;
}
.cid-uYUQkQrbG0 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uYUQkQrbG0 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uYUQkQrbG0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uYUQkQrbG0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uYUQkQrbG0 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uYUQkQrbG0 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uYUQkQrbG0 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #4479d9;
}
.cid-uYUQkQrbG0 .navbar.opened {
  transition: all 0.3s;
}
.cid-uYUQkQrbG0 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uYUQkQrbG0 .navbar .navbar-logo img {
  width: auto;
}
.cid-uYUQkQrbG0 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uYUQkQrbG0 .navbar.collapsed {
  justify-content: center;
}
.cid-uYUQkQrbG0 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uYUQkQrbG0 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uYUQkQrbG0 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.8rem);
  }
}
.cid-uYUQkQrbG0 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uYUQkQrbG0 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uYUQkQrbG0 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uYUQkQrbG0 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uYUQkQrbG0 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uYUQkQrbG0 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uYUQkQrbG0 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uYUQkQrbG0 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uYUQkQrbG0 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uYUQkQrbG0 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uYUQkQrbG0 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uYUQkQrbG0 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uYUQkQrbG0 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uYUQkQrbG0 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uYUQkQrbG0 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uYUQkQrbG0 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uYUQkQrbG0 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uYUQkQrbG0 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uYUQkQrbG0 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uYUQkQrbG0 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uYUQkQrbG0 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uYUQkQrbG0 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uYUQkQrbG0 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uYUQkQrbG0 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uYUQkQrbG0 .dropdown-item.active,
.cid-uYUQkQrbG0 .dropdown-item:active {
  background-color: transparent;
}
.cid-uYUQkQrbG0 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uYUQkQrbG0 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uYUQkQrbG0 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uYUQkQrbG0 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #4479d9;
}
.cid-uYUQkQrbG0 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uYUQkQrbG0 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uYUQkQrbG0 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uYUQkQrbG0 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uYUQkQrbG0 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uYUQkQrbG0 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uYUQkQrbG0 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uYUQkQrbG0 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uYUQkQrbG0 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uYUQkQrbG0 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uYUQkQrbG0 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uYUQkQrbG0 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uYUQkQrbG0 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uYUQkQrbG0 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uYUQkQrbG0 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uYUQkQrbG0 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uYUQkQrbG0 .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-uYUQkQrbG0 .navbar {
    height: 70px;
  }
  .cid-uYUQkQrbG0 .navbar.opened {
    height: auto;
  }
  .cid-uYUQkQrbG0 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uZ24lyt6F9 {
  padding-top: 12rem;
  padding-bottom: 5rem;
  background-color: #6ba7ed;
}
.cid-uZ24lyt6F9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ24lyt6F9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZ24lyt6F9 .card {
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-uZ24lyt6F9 .title-wrap {
    margin-bottom: 40px;
  }
}
.cid-uZ24lyt6F9 .title-wrapper {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uZ24lyt6F9 .title-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uZ24lyt6F9 .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uZ24lyt6F9 .title-wrapper .mbr-section-subtitle {
  margin-bottom: 0;
}
.cid-uZ24lyt6F9 .main-btn {
  margin-bottom: 80px;
  text-align: right;
}
@media (max-width: 992px) {
  .cid-uZ24lyt6F9 .main-btn {
    margin-bottom: 0;
    text-align: left;
  }
}
.cid-uZ24lyt6F9 .main-btn .btn {
  margin-bottom: 0;
}
.cid-uZ24lyt6F9 .items-wrapper {
  justify-content: center;
  margin: 0 -12px;
}
.cid-uZ24lyt6F9 .items-wrapper .item {
  position: relative;
  padding: 0 12px;
  margin-bottom: 40px;
}
.cid-uZ24lyt6F9 .items-wrapper .item:hover .item-wrapper .image-wrapper .item-img::before,
.cid-uZ24lyt6F9 .items-wrapper .item:focus .item-wrapper .image-wrapper .item-img::before {
  opacity: .5;
}
.cid-uZ24lyt6F9 .items-wrapper .item:hover .item-wrapper .image-wrapper .icon-wrapper .mbr-iconfont,
.cid-uZ24lyt6F9 .items-wrapper .item:focus .item-wrapper .image-wrapper .icon-wrapper .mbr-iconfont {
  transform: translateX(0) rotate(0);
  opacity: 1;
}
.cid-uZ24lyt6F9 .items-wrapper .item .item-wrapper {
  will-change: transform;
  animation: none !important;
}
.cid-uZ24lyt6F9 .items-wrapper .item .item-wrapper .image-wrapper {
  position: relative;
  margin-bottom: 16px;
}
.cid-uZ24lyt6F9 .items-wrapper .item .item-wrapper .image-wrapper .item-img {
  position: relative;
  overflow: hidden;
}
.cid-uZ24lyt6F9 .items-wrapper .item .item-wrapper .image-wrapper .item-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #dfadf3;
  opacity: 0;
  pointer-events: none;
  transition: all .5s ease;
}
.cid-uZ24lyt6F9 .items-wrapper .item .item-wrapper .image-wrapper .item-img img {
  height: 300px;
  width: 100%;
  object-fit: cover;
}
.cid-uZ24lyt6F9 .items-wrapper .item .item-wrapper .image-wrapper .icon-wrapper {
  position: absolute;
  bottom: 16px;
  right: 16px;
}
.cid-uZ24lyt6F9 .items-wrapper .item .item-wrapper .image-wrapper .icon-wrapper .mbr-iconfont {
  width: 34px;
  height: 34px;
  min-width: 34px;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background-color: #323232;
  opacity: 0;
  transform: translateX(12px) rotate(45deg);
  transition: all .5s ease;
}
.cid-uZ24lyt6F9 .items-wrapper .item .item-wrapper .image-wrapper .label-wrap {
  position: absolute;
  right: 0;
  top: 0;
  padding: 0 0 8px 12px;
  background-color: #6ba7ed;
  border-radius: 0 0 0 12px;
  z-index: 2;
}
.cid-uZ24lyt6F9 .items-wrapper .item .item-wrapper .image-wrapper .label-wrap .item-label {
  display: inline-flex;
  margin-bottom: 0;
}
.cid-uZ24lyt6F9 .items-wrapper .item .item-wrapper .image-wrapper .label-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: -20px;
  width: 20px;
  height: 20px;
  background-color: transparent;
  border-top-right-radius: 12px;
  box-shadow: 10px -6px 0 2px #6ba7ed;
}
.cid-uZ24lyt6F9 .items-wrapper .item .item-wrapper .image-wrapper .label-wrap::after {
  content: '';
  position: absolute;
  top: 32px;
  right: 0;
  width: 20px;
  height: 20px;
  background-color: transparent;
  border-top-right-radius: 12px;
  box-shadow: 10px -6px 0 4px #6ba7ed;
}
.cid-uZ24lyt6F9 .items-wrapper .item .item-wrapper .item-content .item-title {
  margin-bottom: 8px;
}
.cid-uZ24lyt6F9 .items-wrapper .item .item-wrapper .item-content .item-date {
  margin-bottom: 0;
}
.cid-uZ24lyt6F9 .items-wrapper .item .item-wrapper .item-content .item-btn {
  margin-top: 16px;
}
.cid-uZ24lyt6F9 .items-wrapper .item .item-wrapper .item-content .item-btn .btn {
  margin-bottom: 0;
}
.cid-uZ24lyt6F9 .btn-wrapper {
  margin-left: 2%;
  margin-right: 0;
}
.cid-uZ24lyt6F9 .mbr-section-title {
  color: #808080;
}
.cid-uZ24lyt6F9 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZ24lyt6F9 .item-title {
  color: #ffffff;
}
.cid-uZ24lyt6F9 .item-date {
  color: #000000;
}
.cid-uZ24lyt6F9 .item-label {
  color: #ffffff;
}
.cid-uZ24lTAPH3 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #6ba7ed;
}
.cid-uZ24lTAPH3 .row {
  flex-direction: row-reverse;
}
.cid-uZ24lTAPH3 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-uZ24lTAPH3 .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-uZ24lTAPH3 .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-uZ24lTAPH3 .mbr-card-title {
  color: #000000;
}
.cid-uZ24lTAPH3 .mbr-card-subtitle {
  color: #000000;
  text-align: left;
}
.cid-uZ24lTAPH3 .mbr-text,
.cid-uZ24lTAPH3 .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-uZ24lTAPH3 .row {
  align-items: center;
}
.cid-uZ24mEULDj {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #6ba7ed;
}
.cid-uZ24mEULDj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ24mEULDj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZ24mEULDj .content-wrapper {
  position: relative;
  z-index: 1;
  width: 80%;
  margin: 0 auto;
  margin-bottom: 82px;
}
@media (max-width: 992px) {
  .cid-uZ24mEULDj .content-wrapper {
    width: 100%;
    margin-bottom: 28px;
  }
}
.cid-uZ24mEULDj .content-wrapper .label-wrapper {
  margin-bottom: 42px;
}
@media (max-width: 992px) {
  .cid-uZ24mEULDj .content-wrapper .label-wrapper {
    margin-bottom: 28px;
  }
}
.cid-uZ24mEULDj .content-wrapper .label-wrapper .label-wrap {
  padding: 14px 24px;
  display: inline-flex;
  align-items: center;
  background-color: #362c52;
}
@media (max-width: 992px) {
  .cid-uZ24mEULDj .content-wrapper .label-wrapper .label-wrap {
    padding: 10px 16px;
  }
}
.cid-uZ24mEULDj .content-wrapper .label-wrapper .label-wrap .iconfont-wrapper {
  display: inline-flex;
  margin-right: 14px;
}
.cid-uZ24mEULDj .content-wrapper .label-wrapper .label-wrap .iconfont-wrapper .mbr-iconfont {
  font-size: 19px;
}
.cid-uZ24mEULDj .content-wrapper .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-uZ24mEULDj .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uZ24mEULDj .content-wrapper .title-wrapper .subtitle-wrapper .mbr-section-subtitle {
  display: inline-block;
  margin-bottom: 0;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(90deg, #2ba7ff, #ca45ff 50%, #fe881b);
}
.cid-uZ24mEULDj .items-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 -7px;
}
.cid-uZ24mEULDj .items-wrapper .item {
  width: 33.33%;
  padding: 0 7px;
  margin-bottom: 14px;
  animation: none !important;
}
@media (max-width: 1440px) {
  .cid-uZ24mEULDj .items-wrapper .item {
    width: 50%;
  }
}
@media (max-width: 992px) {
  .cid-uZ24mEULDj .items-wrapper .item {
    width: 100%;
    margin-bottom: 16px;
  }
}
.cid-uZ24mEULDj .items-wrapper .item:hover .item-wrapper::after,
.cid-uZ24mEULDj .items-wrapper .item:focus .item-wrapper::after {
  width: 90%;
  height: 200px;
  top: -155px;
}
.cid-uZ24mEULDj .items-wrapper .item .item-wrapper {
  position: relative;
  padding: 46px;
  min-height: 485px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  overflow: hidden !important;
}
@media (max-width: 992px) {
  .cid-uZ24mEULDj .items-wrapper .item .item-wrapper {
    min-height: auto;
    padding: 18px;
  }
}
.cid-uZ24mEULDj .items-wrapper .item .item-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #4479d9;
  opacity: .5;
  backdrop-filter: blur(36px);
  pointer-events: none;
}
.cid-uZ24mEULDj .items-wrapper .item .item-wrapper::after {
  content: '';
  position: absolute;
  top: -200px;
  width: 0;
  height: 0;
  border-radius: 100%;
  background-image: linear-gradient(45deg, #d66eff 30%, #0f3882);
  filter: blur(2rem);
  pointer-events: none;
  transition: all .5s ease;
  z-index: 1;
}
.cid-uZ24mEULDj .items-wrapper .item .item-wrapper .item-img {
  width: 100%;
  position: relative;
  z-index: 2;
  margin-bottom: 42px;
}
@media (max-width: 992px) {
  .cid-uZ24mEULDj .items-wrapper .item .item-wrapper .item-img {
    margin-bottom: 22px;
  }
}
.cid-uZ24mEULDj .items-wrapper .item .item-wrapper .item-img img {
  height: 250px;
  width: 100%;
  object-fit: cover;
}
.cid-uZ24mEULDj .items-wrapper .item .item-wrapper .card-box {
  position: relative;
  z-index: 1;
}
.cid-uZ24mEULDj .items-wrapper .item .item-wrapper .card-box .item-title {
  margin-bottom: 22px;
}
.cid-uZ24mEULDj .items-wrapper .item .item-wrapper .card-box .item-date {
  margin-bottom: 0;
}
.cid-uZ24mEULDj .items-wrapper .item .item-wrapper .card-box .mbr-section-btn {
  margin-top: 22px;
  width: 100%;
}
.cid-uZ24mEULDj .items-wrapper .item .item-wrapper .card-box .mbr-section-btn .btn {
  width: 100%;
  margin-bottom: 0;
}
.cid-uZ24mEULDj .mbr-label,
.cid-uZ24mEULDj .label-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uZ24mEULDj .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uZ24mEULDj .mbr-section-subtitle,
.cid-uZ24mEULDj .subtitle-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uZ24mEULDj .item-title {
  color: #ffffff;
}
.cid-uZ24mEULDj .item-date {
  color: #000000;
}
.cid-uZ24n6dHVj {
  padding-top: 3rem;
  padding-bottom: 12rem;
  background-color: #6ba7ed;
}
.cid-uZ24n6dHVj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ24n6dHVj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZ24n6dHVj .content-wrapper {
  position: relative;
  z-index: 1;
  width: 80%;
  margin: 0 auto;
  margin-bottom: 82px;
}
@media (max-width: 992px) {
  .cid-uZ24n6dHVj .content-wrapper {
    width: 100%;
    margin-bottom: 28px;
  }
}
.cid-uZ24n6dHVj .content-wrapper .label-wrapper {
  margin-bottom: 42px;
}
@media (max-width: 992px) {
  .cid-uZ24n6dHVj .content-wrapper .label-wrapper {
    margin-bottom: 28px;
  }
}
.cid-uZ24n6dHVj .content-wrapper .label-wrapper .label-wrap {
  padding: 14px 24px;
  display: inline-flex;
  align-items: center;
  background-color: #362c52;
}
@media (max-width: 992px) {
  .cid-uZ24n6dHVj .content-wrapper .label-wrapper .label-wrap {
    padding: 10px 16px;
  }
}
.cid-uZ24n6dHVj .content-wrapper .label-wrapper .label-wrap .iconfont-wrapper {
  display: inline-flex;
  margin-right: 14px;
}
.cid-uZ24n6dHVj .content-wrapper .label-wrapper .label-wrap .iconfont-wrapper .mbr-iconfont {
  font-size: 19px;
}
.cid-uZ24n6dHVj .content-wrapper .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-uZ24n6dHVj .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uZ24n6dHVj .content-wrapper .title-wrapper .subtitle-wrapper .mbr-section-subtitle {
  display: inline-block;
  margin-bottom: 0;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(90deg, #2ba7ff, #ca45ff 50%, #fe881b);
}
.cid-uZ24n6dHVj .items-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 -7px;
}
.cid-uZ24n6dHVj .items-wrapper .item {
  width: 33.33%;
  padding: 0 7px;
  margin-bottom: 14px;
  animation: none !important;
}
@media (max-width: 1440px) {
  .cid-uZ24n6dHVj .items-wrapper .item {
    width: 50%;
  }
}
@media (max-width: 992px) {
  .cid-uZ24n6dHVj .items-wrapper .item {
    width: 100%;
    margin-bottom: 16px;
  }
}
.cid-uZ24n6dHVj .items-wrapper .item:hover .item-wrapper::after,
.cid-uZ24n6dHVj .items-wrapper .item:focus .item-wrapper::after {
  width: 90%;
  height: 200px;
  top: -155px;
}
.cid-uZ24n6dHVj .items-wrapper .item .item-wrapper {
  position: relative;
  padding: 46px;
  min-height: 485px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  overflow: hidden !important;
}
@media (max-width: 992px) {
  .cid-uZ24n6dHVj .items-wrapper .item .item-wrapper {
    min-height: auto;
    padding: 18px;
  }
}
.cid-uZ24n6dHVj .items-wrapper .item .item-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #4479d9;
  opacity: .5;
  backdrop-filter: blur(36px);
  pointer-events: none;
}
.cid-uZ24n6dHVj .items-wrapper .item .item-wrapper::after {
  content: '';
  position: absolute;
  top: -200px;
  width: 0;
  height: 0;
  border-radius: 100%;
  background-image: linear-gradient(45deg, #d66eff 30%, #0f3882);
  filter: blur(2rem);
  pointer-events: none;
  transition: all .5s ease;
  z-index: 1;
}
.cid-uZ24n6dHVj .items-wrapper .item .item-wrapper .item-img {
  width: 100%;
  position: relative;
  z-index: 2;
  margin-bottom: 42px;
}
@media (max-width: 992px) {
  .cid-uZ24n6dHVj .items-wrapper .item .item-wrapper .item-img {
    margin-bottom: 22px;
  }
}
.cid-uZ24n6dHVj .items-wrapper .item .item-wrapper .item-img img {
  height: 250px;
  width: 100%;
  object-fit: cover;
}
.cid-uZ24n6dHVj .items-wrapper .item .item-wrapper .card-box {
  position: relative;
  z-index: 1;
}
.cid-uZ24n6dHVj .items-wrapper .item .item-wrapper .card-box .item-title {
  margin-bottom: 22px;
}
.cid-uZ24n6dHVj .items-wrapper .item .item-wrapper .card-box .item-date {
  margin-bottom: 0;
}
.cid-uZ24n6dHVj .items-wrapper .item .item-wrapper .card-box .mbr-section-btn {
  margin-top: 22px;
  width: 100%;
}
.cid-uZ24n6dHVj .items-wrapper .item .item-wrapper .card-box .mbr-section-btn .btn {
  width: 100%;
  margin-bottom: 0;
}
.cid-uZ24n6dHVj .mbr-label,
.cid-uZ24n6dHVj .label-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uZ24n6dHVj .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uZ24n6dHVj .mbr-section-subtitle,
.cid-uZ24n6dHVj .subtitle-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uZ24n6dHVj .item-title {
  color: #ffffff;
}
.cid-uZ24n6dHVj .item-date {
  color: #000000;
}
.cid-uZ2hH5skZ5 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #4479d9;
  overflow: hidden;
}
.cid-uYUQkQrbG0 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uYUQkQrbG0 nav.navbar {
  position: fixed;
}
.cid-uYUQkQrbG0 .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-uYUQkQrbG0 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uYUQkQrbG0 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uYUQkQrbG0 .dropdown-item:hover,
.cid-uYUQkQrbG0 .dropdown-item:focus {
  background: #0d2859 !important;
  color: white !important;
}
.cid-uYUQkQrbG0 .dropdown-item:hover span {
  color: white;
}
.cid-uYUQkQrbG0 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uYUQkQrbG0 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uYUQkQrbG0 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uYUQkQrbG0 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uYUQkQrbG0 .nav-link {
  position: relative;
}
.cid-uYUQkQrbG0 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uYUQkQrbG0 .container {
    flex-wrap: wrap;
  }
}
.cid-uYUQkQrbG0 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uYUQkQrbG0 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uYUQkQrbG0 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uYUQkQrbG0 .dropdown-menu,
.cid-uYUQkQrbG0 .navbar.opened {
  background: #4479d9 !important;
}
.cid-uYUQkQrbG0 .nav-item:focus,
.cid-uYUQkQrbG0 .nav-link:focus {
  outline: none;
}
.cid-uYUQkQrbG0 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uYUQkQrbG0 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uYUQkQrbG0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uYUQkQrbG0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uYUQkQrbG0 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uYUQkQrbG0 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uYUQkQrbG0 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #4479d9;
}
.cid-uYUQkQrbG0 .navbar.opened {
  transition: all 0.3s;
}
.cid-uYUQkQrbG0 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uYUQkQrbG0 .navbar .navbar-logo img {
  width: auto;
}
.cid-uYUQkQrbG0 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uYUQkQrbG0 .navbar.collapsed {
  justify-content: center;
}
.cid-uYUQkQrbG0 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uYUQkQrbG0 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uYUQkQrbG0 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.8rem);
  }
}
.cid-uYUQkQrbG0 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uYUQkQrbG0 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uYUQkQrbG0 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uYUQkQrbG0 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uYUQkQrbG0 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uYUQkQrbG0 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uYUQkQrbG0 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uYUQkQrbG0 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uYUQkQrbG0 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uYUQkQrbG0 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uYUQkQrbG0 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uYUQkQrbG0 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uYUQkQrbG0 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uYUQkQrbG0 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uYUQkQrbG0 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uYUQkQrbG0 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uYUQkQrbG0 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uYUQkQrbG0 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uYUQkQrbG0 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uYUQkQrbG0 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uYUQkQrbG0 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uYUQkQrbG0 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uYUQkQrbG0 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uYUQkQrbG0 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uYUQkQrbG0 .dropdown-item.active,
.cid-uYUQkQrbG0 .dropdown-item:active {
  background-color: transparent;
}
.cid-uYUQkQrbG0 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uYUQkQrbG0 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uYUQkQrbG0 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uYUQkQrbG0 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #4479d9;
}
.cid-uYUQkQrbG0 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uYUQkQrbG0 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uYUQkQrbG0 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uYUQkQrbG0 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uYUQkQrbG0 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uYUQkQrbG0 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uYUQkQrbG0 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uYUQkQrbG0 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uYUQkQrbG0 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uYUQkQrbG0 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uYUQkQrbG0 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uYUQkQrbG0 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uYUQkQrbG0 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uYUQkQrbG0 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uYUQkQrbG0 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uYUQkQrbG0 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uYUQkQrbG0 .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-uYUQkQrbG0 .navbar {
    height: 70px;
  }
  .cid-uYUQkQrbG0 .navbar.opened {
    height: auto;
  }
  .cid-uYUQkQrbG0 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uZ22v8VHm1 {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #6ba7ed;
}
.cid-uZ22v8VHm1 img,
.cid-uZ22v8VHm1 .item-img {
  width: 100%;
}
.cid-uZ22v8VHm1 .item:focus,
.cid-uZ22v8VHm1 span:focus {
  outline: none;
}
.cid-uZ22v8VHm1 .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uZ22v8VHm1 .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #6ba7ed;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uZ22v8VHm1 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uZ22v8VHm1 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uZ22v8VHm1 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uZ22v8VHm1 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uZ22v8VHm1 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uZ22v8VHm1 .mbr-section-title {
  color: #ffffff;
}
.cid-uZ22v8VHm1 .mbr-text,
.cid-uZ22v8VHm1 .mbr-section-btn {
  text-align: center;
}
.cid-uZ22v8VHm1 .item-title {
  text-align: center;
  color: #000000;
}
.cid-uZ22v8VHm1 .item-subtitle {
  text-align: left;
}
.cid-uZ22w2DJlO {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #6ba7ed;
}
.cid-uZ22w2DJlO .row {
  flex-direction: row-reverse;
}
.cid-uZ22w2DJlO .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-uZ22w2DJlO .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-uZ22w2DJlO .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-uZ22w2DJlO .mbr-card-title {
  color: #000000;
}
.cid-uZ22w2DJlO .mbr-card-subtitle {
  color: #000000;
  text-align: left;
}
.cid-uZ22w2DJlO .mbr-text,
.cid-uZ22w2DJlO .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-uZ22w2DJlO .row {
  align-items: center;
}
.cid-uZ22wrVNyY {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #6ba7ed;
}
.cid-uZ22wrVNyY .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-uZ22wrVNyY .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-uZ22wrVNyY .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-uZ22wrVNyY .mbr-card-title {
  color: #000000;
}
.cid-uZ22wrVNyY .mbr-card-subtitle {
  color: #000000;
  text-align: left;
}
.cid-uZ22wrVNyY .mbr-text,
.cid-uZ22wrVNyY .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-uZ22wrVNyY .row {
  align-items: center;
}
.cid-uZ23pQl8A2 {
  padding-top: 2rem;
  padding-bottom: 10rem;
  background-color: #6ba7ed;
}
.cid-uZ23pQl8A2 img,
.cid-uZ23pQl8A2 .item-img {
  width: 100%;
}
.cid-uZ23pQl8A2 .item:focus,
.cid-uZ23pQl8A2 span:focus {
  outline: none;
}
.cid-uZ23pQl8A2 .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uZ23pQl8A2 .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #6ba7ed;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uZ23pQl8A2 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uZ23pQl8A2 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uZ23pQl8A2 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uZ23pQl8A2 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uZ23pQl8A2 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uZ23pQl8A2 .mbr-section-title {
  color: #ffffff;
}
.cid-uZ23pQl8A2 .mbr-text,
.cid-uZ23pQl8A2 .mbr-section-btn {
  text-align: center;
}
.cid-uZ23pQl8A2 .item-title {
  text-align: center;
  color: #000000;
}
.cid-uZ23pQl8A2 .item-subtitle {
  text-align: left;
}
.cid-uZ2hH5skZ5 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #4479d9;
  overflow: hidden;
}
.cid-uYUQkQrbG0 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uYUQkQrbG0 nav.navbar {
  position: fixed;
}
.cid-uYUQkQrbG0 .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-uYUQkQrbG0 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uYUQkQrbG0 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uYUQkQrbG0 .dropdown-item:hover,
.cid-uYUQkQrbG0 .dropdown-item:focus {
  background: #0d2859 !important;
  color: white !important;
}
.cid-uYUQkQrbG0 .dropdown-item:hover span {
  color: white;
}
.cid-uYUQkQrbG0 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uYUQkQrbG0 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uYUQkQrbG0 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uYUQkQrbG0 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uYUQkQrbG0 .nav-link {
  position: relative;
}
.cid-uYUQkQrbG0 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uYUQkQrbG0 .container {
    flex-wrap: wrap;
  }
}
.cid-uYUQkQrbG0 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uYUQkQrbG0 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uYUQkQrbG0 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uYUQkQrbG0 .dropdown-menu,
.cid-uYUQkQrbG0 .navbar.opened {
  background: #4479d9 !important;
}
.cid-uYUQkQrbG0 .nav-item:focus,
.cid-uYUQkQrbG0 .nav-link:focus {
  outline: none;
}
.cid-uYUQkQrbG0 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uYUQkQrbG0 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uYUQkQrbG0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uYUQkQrbG0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uYUQkQrbG0 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uYUQkQrbG0 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uYUQkQrbG0 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #4479d9;
}
.cid-uYUQkQrbG0 .navbar.opened {
  transition: all 0.3s;
}
.cid-uYUQkQrbG0 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uYUQkQrbG0 .navbar .navbar-logo img {
  width: auto;
}
.cid-uYUQkQrbG0 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uYUQkQrbG0 .navbar.collapsed {
  justify-content: center;
}
.cid-uYUQkQrbG0 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uYUQkQrbG0 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uYUQkQrbG0 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.8rem);
  }
}
.cid-uYUQkQrbG0 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uYUQkQrbG0 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uYUQkQrbG0 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uYUQkQrbG0 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uYUQkQrbG0 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uYUQkQrbG0 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uYUQkQrbG0 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uYUQkQrbG0 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uYUQkQrbG0 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uYUQkQrbG0 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uYUQkQrbG0 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uYUQkQrbG0 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uYUQkQrbG0 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uYUQkQrbG0 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uYUQkQrbG0 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uYUQkQrbG0 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uYUQkQrbG0 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uYUQkQrbG0 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uYUQkQrbG0 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uYUQkQrbG0 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uYUQkQrbG0 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uYUQkQrbG0 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uYUQkQrbG0 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uYUQkQrbG0 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uYUQkQrbG0 .dropdown-item.active,
.cid-uYUQkQrbG0 .dropdown-item:active {
  background-color: transparent;
}
.cid-uYUQkQrbG0 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uYUQkQrbG0 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uYUQkQrbG0 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uYUQkQrbG0 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #4479d9;
}
.cid-uYUQkQrbG0 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uYUQkQrbG0 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uYUQkQrbG0 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uYUQkQrbG0 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uYUQkQrbG0 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uYUQkQrbG0 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uYUQkQrbG0 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uYUQkQrbG0 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uYUQkQrbG0 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uYUQkQrbG0 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uYUQkQrbG0 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uYUQkQrbG0 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uYUQkQrbG0 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uYUQkQrbG0 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uYUQkQrbG0 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uYUQkQrbG0 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uYUQkQrbG0 .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-uYUQkQrbG0 .navbar {
    height: 70px;
  }
  .cid-uYUQkQrbG0 .navbar.opened {
    height: auto;
  }
  .cid-uYUQkQrbG0 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uZ256PBofu {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-color: #6ba7ed;
}
.cid-uZ256PBofu img,
.cid-uZ256PBofu .item-img {
  width: 100%;
}
.cid-uZ256PBofu .item:focus,
.cid-uZ256PBofu span:focus {
  outline: none;
}
.cid-uZ256PBofu .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uZ256PBofu .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #6ba7ed;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uZ256PBofu .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uZ256PBofu .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uZ256PBofu .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uZ256PBofu .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uZ256PBofu .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uZ256PBofu .mbr-section-title {
  color: #232323;
}
.cid-uZ256PBofu .mbr-text,
.cid-uZ256PBofu .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-uZ256PBofu .item-title {
  text-align: left;
}
.cid-uZ256PBofu .item-subtitle {
  text-align: center;
}
.cid-uZ2572AyJX {
  padding-top: 1rem;
  padding-bottom: 6rem;
  background-color: #6ba7ed;
}
.cid-uZ2572AyJX img,
.cid-uZ2572AyJX .item-img {
  width: 100%;
}
.cid-uZ2572AyJX .item:focus,
.cid-uZ2572AyJX span:focus {
  outline: none;
}
.cid-uZ2572AyJX .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uZ2572AyJX .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #6ba7ed;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uZ2572AyJX .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uZ2572AyJX .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uZ2572AyJX .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uZ2572AyJX .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uZ2572AyJX .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uZ2572AyJX .mbr-section-title {
  color: #232323;
}
.cid-uZ2572AyJX .mbr-text,
.cid-uZ2572AyJX .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-uZ2572AyJX .item-title {
  text-align: left;
}
.cid-uZ2572AyJX .item-subtitle {
  text-align: center;
}
.cid-uZ257e3xUy {
  padding-top: 1rem;
  padding-bottom: 6rem;
  background-color: #6ba7ed;
}
.cid-uZ257e3xUy img,
.cid-uZ257e3xUy .item-img {
  width: 100%;
}
.cid-uZ257e3xUy .item:focus,
.cid-uZ257e3xUy span:focus {
  outline: none;
}
.cid-uZ257e3xUy .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uZ257e3xUy .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #6ba7ed;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uZ257e3xUy .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uZ257e3xUy .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uZ257e3xUy .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uZ257e3xUy .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uZ257e3xUy .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uZ257e3xUy .mbr-section-title {
  color: #232323;
}
.cid-uZ257e3xUy .mbr-text,
.cid-uZ257e3xUy .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-uZ257e3xUy .item-title {
  text-align: left;
}
.cid-uZ257e3xUy .item-subtitle {
  text-align: center;
}
.cid-uZ2hH5skZ5 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #4479d9;
  overflow: hidden;
}
