body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.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: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #6592e6 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #b8860b !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #b8860b !important;
  border-color: #b8860b !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #664a06 !important;
  border-color: #664a06 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #664a06 !important;
  border-color: #664a06 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #6592e6;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #2260d2 !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: #6592e6 !important;
  border-color: #6592e6 !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: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #b8860b;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #664a06 !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: #b8860b !important;
  border-color: #b8860b !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #6592e6 !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #b8860b !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #205ac5 !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: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #584005 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #6592e6;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #b8860b;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #6592e6;
  border-color: #6592e6;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #6592e6;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.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: #f4c44e;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #6592e6 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #6592e6;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #6592e6;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #6592e6;
}
.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: #6592e6;
  border-bottom-color: #6592e6;
}
.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: #6592e6 !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='%236592e6' %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;
}
*:focus-visible {
  outline: red solid 2px !important;
  outline-offset: 2px !important;
  transition: outline 0.2s ease-in-out;
}
.cid-sVfMKoiVKq {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sVfMKoiVKq nav.navbar {
  position: fixed;
}
.cid-sVfMKoiVKq .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-sVfMKoiVKq .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sVfMKoiVKq .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sVfMKoiVKq .dropdown-item:hover,
.cid-sVfMKoiVKq .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sVfMKoiVKq .dropdown-item:hover span {
  color: white;
}
.cid-sVfMKoiVKq .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sVfMKoiVKq .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sVfMKoiVKq .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sVfMKoiVKq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sVfMKoiVKq .nav-link {
  position: relative;
}
.cid-sVfMKoiVKq .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-sVfMKoiVKq .container {
    flex-wrap: nowrap;
  }
}
.cid-sVfMKoiVKq .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sVfMKoiVKq .dropdown-menu,
.cid-sVfMKoiVKq .navbar.opened {
  background: #1b5487 !important;
}
.cid-sVfMKoiVKq .nav-item:focus,
.cid-sVfMKoiVKq .nav-link:focus {
  outline: none;
}
.cid-sVfMKoiVKq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sVfMKoiVKq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sVfMKoiVKq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sVfMKoiVKq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sVfMKoiVKq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sVfMKoiVKq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sVfMKoiVKq .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: #1b5487;
}
.cid-sVfMKoiVKq .navbar.opened {
  transition: all 0.3s;
}
.cid-sVfMKoiVKq .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sVfMKoiVKq .navbar .navbar-logo img {
  width: auto;
}
.cid-sVfMKoiVKq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sVfMKoiVKq .navbar.collapsed {
  justify-content: center;
}
.cid-sVfMKoiVKq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sVfMKoiVKq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sVfMKoiVKq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sVfMKoiVKq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sVfMKoiVKq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sVfMKoiVKq .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-sVfMKoiVKq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sVfMKoiVKq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sVfMKoiVKq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sVfMKoiVKq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sVfMKoiVKq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sVfMKoiVKq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sVfMKoiVKq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sVfMKoiVKq .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-sVfMKoiVKq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sVfMKoiVKq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sVfMKoiVKq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sVfMKoiVKq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sVfMKoiVKq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sVfMKoiVKq .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sVfMKoiVKq .navbar.navbar-short {
  min-height: 60px;
}
.cid-sVfMKoiVKq .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sVfMKoiVKq .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sVfMKoiVKq .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-sVfMKoiVKq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sVfMKoiVKq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sVfMKoiVKq .dropdown-item.active,
.cid-sVfMKoiVKq .dropdown-item:active {
  background-color: transparent;
}
.cid-sVfMKoiVKq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sVfMKoiVKq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sVfMKoiVKq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sVfMKoiVKq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1b5487;
}
.cid-sVfMKoiVKq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sVfMKoiVKq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sVfMKoiVKq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sVfMKoiVKq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sVfMKoiVKq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sVfMKoiVKq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sVfMKoiVKq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sVfMKoiVKq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sVfMKoiVKq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sVfMKoiVKq .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sVfMKoiVKq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sVfMKoiVKq .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-sVfMKoiVKq .navbar {
    height: 70px;
  }
  .cid-sVfMKoiVKq .navbar.opened {
    height: auto;
  }
  .cid-sVfMKoiVKq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sQVMkFXZio {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/stars-1359x1030.jpg");
}
.cid-sQVMkFXZio .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sQVMkFXZio .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sQVMkFXZio .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-sQVMkFXZio .mbr-section-title {
  text-align: center;
  color: #1b5487;
}
.cid-sQVMkFXZio .mbr-text,
.cid-sQVMkFXZio .mbr-section-btn {
  text-align: center;
  color: #1b5487;
}
.cid-sQPO3lHmrh {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-sQPO3lHmrh img,
.cid-sQPO3lHmrh .item-img {
  width: 100%;
}
.cid-sQPO3lHmrh .item:focus,
.cid-sQPO3lHmrh span:focus {
  outline: none;
}
.cid-sQPO3lHmrh .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sQPO3lHmrh .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sQPO3lHmrh .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-sQPO3lHmrh .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sQPO3lHmrh .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-sQPO3lHmrh .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-sQPO3lHmrh .item-wrapper {
  background: transparent;
}
.cid-sQPO3lHmrh .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sQPO3lHmrh .mbr-section-title {
  color: #232323;
}
.cid-sQPO3lHmrh .mbr-text,
.cid-sQPO3lHmrh .mbr-section-btn {
  text-align: left;
}
.cid-sQPO3lHmrh .item-title {
  text-align: left;
  color: #1b5487;
}
.cid-sQPO3lHmrh .item-subtitle {
  text-align: center;
}
.cid-sR74rWu8pN {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/5230-version-2-2000x1249.jpg");
}
.cid-sR74rWu8pN .mbr-text,
.cid-sR74rWu8pN .mbr-section-btn {
  color: #232323;
}
.cid-sR74rWu8pN .card-title,
.cid-sR74rWu8pN .card-box {
  color: #ffffff;
}
.cid-sR74rWu8pN .mbr-text,
.cid-sR74rWu8pN .link-wrap {
  color: #ffffff;
}
.cid-sR2F7kyg8c {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #1b5487;
}
.cid-sR2F7kyg8c img {
  border-radius: 0px;
}
.cid-sR2F7kyg8c .mbr-section-title {
  color: #000000;
  text-align: left;
  padding-top: 0.4rem;
}
.cid-sR2F7kyg8c .date {
  text-transform: uppercase;
  color: #6592e6;
  text-align: left;
  padding-top: 1rem;
}
.cid-sR2F7kyg8c .author {
  color: #626262;
  text-align: left;
  padding-top: 0.8rem;
}
.cid-sR2F7kyg8c .heading {
  text-align: center;
  padding: 0;
  margin: 0;
  padding-bottom: 100px;
}
.cid-sR2F7kyg8c .right {
  display: flex;
  flex-direction: column;
}
.cid-sR2F7kyg8c .mbr-section-btn {
  border: 2px solid #6592e6;
  width: auto;
}
.cid-sR2F7kyg8c .mbr-section-btn:hover {
  background-color: #6592e6;
  border: 2px solid #6592e6;
}
.cid-sR2F7kyg8c .card-heading {
  padding-top: 0;
  color: #ffffff;
}
.cid-sR2F7kyg8c .mbr-text {
  padding-top: 10px;
}
.cid-sR07eTCoPb {
  padding-top: 45px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/stars4-1388x664.jpg");
}
.cid-sR07eTCoPb .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-sR07eTCoPb H4 {
  color: #1b5487;
}
.cid-sSqANUBAqI {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-sSqANUBAqI .mbr-text {
  text-align: center;
}
.cid-sQRdu5Cwvm {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #1b5487;
  overflow: hidden;
}
.cid-sVfMKoiVKq {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sVfMKoiVKq nav.navbar {
  position: fixed;
}
.cid-sVfMKoiVKq .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-sVfMKoiVKq .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sVfMKoiVKq .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sVfMKoiVKq .dropdown-item:hover,
.cid-sVfMKoiVKq .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sVfMKoiVKq .dropdown-item:hover span {
  color: white;
}
.cid-sVfMKoiVKq .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sVfMKoiVKq .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sVfMKoiVKq .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sVfMKoiVKq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sVfMKoiVKq .nav-link {
  position: relative;
}
.cid-sVfMKoiVKq .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-sVfMKoiVKq .container {
    flex-wrap: nowrap;
  }
}
.cid-sVfMKoiVKq .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sVfMKoiVKq .dropdown-menu,
.cid-sVfMKoiVKq .navbar.opened {
  background: #1b5487 !important;
}
.cid-sVfMKoiVKq .nav-item:focus,
.cid-sVfMKoiVKq .nav-link:focus {
  outline: none;
}
.cid-sVfMKoiVKq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sVfMKoiVKq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sVfMKoiVKq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sVfMKoiVKq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sVfMKoiVKq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sVfMKoiVKq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sVfMKoiVKq .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: #1b5487;
}
.cid-sVfMKoiVKq .navbar.opened {
  transition: all 0.3s;
}
.cid-sVfMKoiVKq .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sVfMKoiVKq .navbar .navbar-logo img {
  width: auto;
}
.cid-sVfMKoiVKq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sVfMKoiVKq .navbar.collapsed {
  justify-content: center;
}
.cid-sVfMKoiVKq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sVfMKoiVKq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sVfMKoiVKq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sVfMKoiVKq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sVfMKoiVKq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sVfMKoiVKq .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-sVfMKoiVKq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sVfMKoiVKq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sVfMKoiVKq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sVfMKoiVKq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sVfMKoiVKq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sVfMKoiVKq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sVfMKoiVKq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sVfMKoiVKq .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-sVfMKoiVKq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sVfMKoiVKq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sVfMKoiVKq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sVfMKoiVKq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sVfMKoiVKq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sVfMKoiVKq .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sVfMKoiVKq .navbar.navbar-short {
  min-height: 60px;
}
.cid-sVfMKoiVKq .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sVfMKoiVKq .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sVfMKoiVKq .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-sVfMKoiVKq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sVfMKoiVKq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sVfMKoiVKq .dropdown-item.active,
.cid-sVfMKoiVKq .dropdown-item:active {
  background-color: transparent;
}
.cid-sVfMKoiVKq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sVfMKoiVKq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sVfMKoiVKq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sVfMKoiVKq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1b5487;
}
.cid-sVfMKoiVKq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sVfMKoiVKq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sVfMKoiVKq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sVfMKoiVKq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sVfMKoiVKq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sVfMKoiVKq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sVfMKoiVKq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sVfMKoiVKq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sVfMKoiVKq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sVfMKoiVKq .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sVfMKoiVKq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sVfMKoiVKq .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-sVfMKoiVKq .navbar {
    height: 70px;
  }
  .cid-sVfMKoiVKq .navbar.opened {
    height: auto;
  }
  .cid-sVfMKoiVKq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sR7f4V9cGi {
  display: flex;
  background-image: url("../../../assets/images/5230-version-2-1642x939.jpg");
}
.cid-sR7f4V9cGi .mbr-overlay {
  background-color: #353535;
  opacity: 0.1;
}
.cid-sR7f4V9cGi .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-sR7f4V9cGi {
    align-items: flex-end;
  }
  .cid-sR7f4V9cGi .row {
    justify-content: flex-start;
  }
  .cid-sR7f4V9cGi .content-wrap {
    width: 100%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-sR7f4V9cGi .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-sR7f4V9cGi {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sR7f4V9cGi .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-sR7f4V9cGi .content-wrap {
    width: 100%;
  }
}
.cid-sR7f4V9cGi .mbr-section-title {
  text-align: left;
}
.cid-sRildYlC93 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #498885;
}
.cid-sRildYlC93 img {
  border-radius: 0px;
}
.cid-sRildYlC93 .mbr-section-title {
  color: #000000;
  text-align: left;
  padding-top: 0.4rem;
}
.cid-sRildYlC93 .date {
  text-transform: uppercase;
  color: #6592e6;
  text-align: left;
  padding-top: 1rem;
}
.cid-sRildYlC93 .author {
  color: #626262;
  text-align: left;
  padding-top: 0.8rem;
}
.cid-sRildYlC93 .heading {
  text-align: center;
  padding: 0;
  margin: 0;
  padding-bottom: 100px;
}
.cid-sRildYlC93 .right {
  display: flex;
  flex-direction: column;
}
.cid-sRildYlC93 .mbr-section-btn {
  border: 2px solid #6592e6;
  width: auto;
}
.cid-sRildYlC93 .mbr-section-btn:hover {
  background-color: #6592e6;
  border: 2px solid #6592e6;
}
.cid-sRildYlC93 .card-heading {
  padding-top: 0;
  color: #ffffff;
}
.cid-sRildYlC93 .mbr-text {
  padding-top: 10px;
}
.cid-sR7nG9Qg1A {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sR7nG9Qg1A .mbr-section-subtitle {
  color: #232323;
}
.cid-sR7nG9Qg1A .mbr-text {
  color: #232323;
}
.cid-sRcWcseYPD {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/stars-1359x1030.jpg");
}
.cid-sRcWcseYPD .mbr-overlay {
  background: #fafafa;
  opacity: 0.1;
}
.cid-sRcWcseYPD img,
.cid-sRcWcseYPD .item-img {
  width: 100%;
}
.cid-sRcWcseYPD .item:focus,
.cid-sRcWcseYPD span:focus {
  outline: none;
}
.cid-sRcWcseYPD .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sRcWcseYPD .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sRcWcseYPD .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-sRcWcseYPD .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sRcWcseYPD .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-sRcWcseYPD .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-sRcWcseYPD .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sRcWcseYPD .mbr-section-title {
  color: #1b5487;
}
.cid-sRcWcseYPD .mbr-text,
.cid-sRcWcseYPD .mbr-section-btn {
  text-align: left;
}
.cid-sRcWcseYPD .item-title {
  text-align: left;
}
.cid-sRcWcseYPD .item-subtitle {
  text-align: left;
}
.cid-sR7p7NyqJq {
  padding-top: 45px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/stars4-1388x664.jpg");
}
.cid-sR7p7NyqJq .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-sR7p7NyqJq H4 {
  color: #1b5487;
}
.cid-sSqwdx5W5a {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-sSqwdx5W5a .mbr-text {
  text-align: center;
}
.cid-sQRdu5Cwvm {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #1b5487;
  overflow: hidden;
}
.cid-sVfMKoiVKq {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sVfMKoiVKq nav.navbar {
  position: fixed;
}
.cid-sVfMKoiVKq .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-sVfMKoiVKq .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sVfMKoiVKq .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sVfMKoiVKq .dropdown-item:hover,
.cid-sVfMKoiVKq .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sVfMKoiVKq .dropdown-item:hover span {
  color: white;
}
.cid-sVfMKoiVKq .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sVfMKoiVKq .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sVfMKoiVKq .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sVfMKoiVKq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sVfMKoiVKq .nav-link {
  position: relative;
}
.cid-sVfMKoiVKq .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-sVfMKoiVKq .container {
    flex-wrap: nowrap;
  }
}
.cid-sVfMKoiVKq .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sVfMKoiVKq .dropdown-menu,
.cid-sVfMKoiVKq .navbar.opened {
  background: #1b5487 !important;
}
.cid-sVfMKoiVKq .nav-item:focus,
.cid-sVfMKoiVKq .nav-link:focus {
  outline: none;
}
.cid-sVfMKoiVKq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sVfMKoiVKq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sVfMKoiVKq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sVfMKoiVKq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sVfMKoiVKq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sVfMKoiVKq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sVfMKoiVKq .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: #1b5487;
}
.cid-sVfMKoiVKq .navbar.opened {
  transition: all 0.3s;
}
.cid-sVfMKoiVKq .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sVfMKoiVKq .navbar .navbar-logo img {
  width: auto;
}
.cid-sVfMKoiVKq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sVfMKoiVKq .navbar.collapsed {
  justify-content: center;
}
.cid-sVfMKoiVKq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sVfMKoiVKq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sVfMKoiVKq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sVfMKoiVKq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sVfMKoiVKq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sVfMKoiVKq .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-sVfMKoiVKq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sVfMKoiVKq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sVfMKoiVKq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sVfMKoiVKq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sVfMKoiVKq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sVfMKoiVKq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sVfMKoiVKq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sVfMKoiVKq .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-sVfMKoiVKq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sVfMKoiVKq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sVfMKoiVKq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sVfMKoiVKq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sVfMKoiVKq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sVfMKoiVKq .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sVfMKoiVKq .navbar.navbar-short {
  min-height: 60px;
}
.cid-sVfMKoiVKq .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sVfMKoiVKq .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sVfMKoiVKq .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-sVfMKoiVKq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sVfMKoiVKq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sVfMKoiVKq .dropdown-item.active,
.cid-sVfMKoiVKq .dropdown-item:active {
  background-color: transparent;
}
.cid-sVfMKoiVKq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sVfMKoiVKq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sVfMKoiVKq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sVfMKoiVKq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1b5487;
}
.cid-sVfMKoiVKq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sVfMKoiVKq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sVfMKoiVKq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sVfMKoiVKq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sVfMKoiVKq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sVfMKoiVKq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sVfMKoiVKq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sVfMKoiVKq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sVfMKoiVKq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sVfMKoiVKq .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sVfMKoiVKq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sVfMKoiVKq .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-sVfMKoiVKq .navbar {
    height: 70px;
  }
  .cid-sVfMKoiVKq .navbar.opened {
    height: auto;
  }
  .cid-sVfMKoiVKq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sSqyqapZ3p {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/stars-1359x1030.jpg");
}
.cid-sSqyqapZ3p .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sSqyqapZ3p .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sSqyqapZ3p .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-sSqyqapZ3p .mbr-section-title {
  text-align: left;
  color: #1b5487;
}
.cid-sSqyqapZ3p .mbr-text,
.cid-sSqyqapZ3p .mbr-section-btn {
  text-align: center;
  color: #1b5487;
}
.cid-sRnPFmZm8Q {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/stars-1359x1030.jpg");
}
.cid-sRnPFmZm8Q img,
.cid-sRnPFmZm8Q .item-img {
  width: 100%;
}
.cid-sRnPFmZm8Q .item:focus,
.cid-sRnPFmZm8Q span:focus {
  outline: none;
}
.cid-sRnPFmZm8Q .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sRnPFmZm8Q .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sRnPFmZm8Q .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sRnPFmZm8Q .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-sRnPFmZm8Q .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sRnPFmZm8Q .mbr-section-title {
  color: #1b5487;
}
.cid-sRnPFmZm8Q .mbr-text,
.cid-sRnPFmZm8Q .mbr-section-btn {
  text-align: left;
}
.cid-sRnPFmZm8Q .item-title {
  text-align: left;
}
.cid-sRnPFmZm8Q .item-subtitle {
  text-align: left;
}
.cid-sRp1w42pQI {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/stars-1359x1030.jpg");
}
.cid-sRp1w42pQI .mbr-overlay {
  background: #fafafa;
  opacity: 0.1;
}
.cid-sRp1w42pQI img,
.cid-sRp1w42pQI .item-img {
  width: 100%;
}
.cid-sRp1w42pQI .item:focus,
.cid-sRp1w42pQI span:focus {
  outline: none;
}
.cid-sRp1w42pQI .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sRp1w42pQI .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sRp1w42pQI .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sRp1w42pQI .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-sRp1w42pQI .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sRp1w42pQI .mbr-section-title {
  color: #1b5487;
}
.cid-sRp1w42pQI .mbr-text,
.cid-sRp1w42pQI .mbr-section-btn {
  text-align: left;
}
.cid-sRp1w42pQI .item-title {
  text-align: left;
}
.cid-sRp1w42pQI .item-subtitle {
  text-align: left;
}
.cid-sRpLXdrg6i {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/stars-1359x1030.jpg");
}
.cid-sRpLXdrg6i .video-wrapper iframe {
  width: 100%;
}
.cid-sRpLXdrg6i .mbr-section-title,
.cid-sRpLXdrg6i .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sRpLXdrg6i .text-wrapper {
    padding: 2rem;
  }
}
.cid-sRpLXdrg6i .mbr-section-subtitle {
  color: #1b5487;
}
.cid-sRGjnIofKG {
  padding-top: 45px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/stars4-1388x664.jpg");
}
.cid-sRGjnIofKG .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-sRGjnIofKG H4 {
  color: #1b5487;
}
.cid-sSqwgAImGp {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-sSqwgAImGp .mbr-text {
  text-align: center;
}
.cid-sQRdu5Cwvm {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #1b5487;
  overflow: hidden;
}
.cid-sVfMKoiVKq {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sVfMKoiVKq nav.navbar {
  position: fixed;
}
.cid-sVfMKoiVKq .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-sVfMKoiVKq .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sVfMKoiVKq .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sVfMKoiVKq .dropdown-item:hover,
.cid-sVfMKoiVKq .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sVfMKoiVKq .dropdown-item:hover span {
  color: white;
}
.cid-sVfMKoiVKq .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sVfMKoiVKq .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sVfMKoiVKq .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sVfMKoiVKq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sVfMKoiVKq .nav-link {
  position: relative;
}
.cid-sVfMKoiVKq .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-sVfMKoiVKq .container {
    flex-wrap: nowrap;
  }
}
.cid-sVfMKoiVKq .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sVfMKoiVKq .dropdown-menu,
.cid-sVfMKoiVKq .navbar.opened {
  background: #1b5487 !important;
}
.cid-sVfMKoiVKq .nav-item:focus,
.cid-sVfMKoiVKq .nav-link:focus {
  outline: none;
}
.cid-sVfMKoiVKq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sVfMKoiVKq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sVfMKoiVKq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sVfMKoiVKq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sVfMKoiVKq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sVfMKoiVKq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sVfMKoiVKq .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: #1b5487;
}
.cid-sVfMKoiVKq .navbar.opened {
  transition: all 0.3s;
}
.cid-sVfMKoiVKq .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sVfMKoiVKq .navbar .navbar-logo img {
  width: auto;
}
.cid-sVfMKoiVKq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sVfMKoiVKq .navbar.collapsed {
  justify-content: center;
}
.cid-sVfMKoiVKq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sVfMKoiVKq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sVfMKoiVKq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sVfMKoiVKq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sVfMKoiVKq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sVfMKoiVKq .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-sVfMKoiVKq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sVfMKoiVKq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sVfMKoiVKq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sVfMKoiVKq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sVfMKoiVKq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sVfMKoiVKq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sVfMKoiVKq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sVfMKoiVKq .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-sVfMKoiVKq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sVfMKoiVKq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sVfMKoiVKq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sVfMKoiVKq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sVfMKoiVKq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sVfMKoiVKq .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sVfMKoiVKq .navbar.navbar-short {
  min-height: 60px;
}
.cid-sVfMKoiVKq .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sVfMKoiVKq .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sVfMKoiVKq .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-sVfMKoiVKq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sVfMKoiVKq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sVfMKoiVKq .dropdown-item.active,
.cid-sVfMKoiVKq .dropdown-item:active {
  background-color: transparent;
}
.cid-sVfMKoiVKq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sVfMKoiVKq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sVfMKoiVKq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sVfMKoiVKq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1b5487;
}
.cid-sVfMKoiVKq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sVfMKoiVKq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sVfMKoiVKq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sVfMKoiVKq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sVfMKoiVKq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sVfMKoiVKq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sVfMKoiVKq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sVfMKoiVKq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sVfMKoiVKq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sVfMKoiVKq .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sVfMKoiVKq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sVfMKoiVKq .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-sVfMKoiVKq .navbar {
    height: 70px;
  }
  .cid-sVfMKoiVKq .navbar.opened {
    height: auto;
  }
  .cid-sVfMKoiVKq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sRuPXqfxSH {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/stars-1359x1030.jpg");
}
.cid-sRuPXqfxSH .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sRuPXqfxSH .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sRuPXqfxSH .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-sRuPXqfxSH .mbr-section-title {
  text-align: left;
  color: #1b5487;
}
.cid-sRuPXqfxSH .mbr-text,
.cid-sRuPXqfxSH .mbr-section-btn {
  text-align: center;
  color: #1b5487;
}
.cid-sRuSSxeNbs {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/stars-1359x1030.jpg");
}
.cid-sRuSSxeNbs .mbr-overlay {
  background: #fafafa;
  opacity: 0.1;
}
.cid-sRuSSxeNbs img,
.cid-sRuSSxeNbs .item-img {
  width: 100%;
  height: 100%;
  height: 200px;
  object-fit: cover;
}
.cid-sRuSSxeNbs .item:focus,
.cid-sRuSSxeNbs span:focus {
  outline: none;
}
.cid-sRuSSxeNbs .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sRuSSxeNbs .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sRuSSxeNbs .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sRuSSxeNbs .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-sRuSSxeNbs .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sRuSSxeNbs .mbr-section-title {
  color: #1b5487;
}
.cid-sRuSSxeNbs .mbr-text,
.cid-sRuSSxeNbs .mbr-section-btn {
  text-align: left;
}
.cid-sRuSSxeNbs .item-title {
  text-align: left;
}
.cid-sRuSSxeNbs .item-subtitle {
  text-align: left;
}
.cid-sRuSTN53P6 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/stars-1359x1030.jpg");
}
.cid-sRuSTN53P6 img,
.cid-sRuSTN53P6 .item-img {
  width: 100%;
  height: 100%;
  height: 200px;
  object-fit: cover;
}
.cid-sRuSTN53P6 .item:focus,
.cid-sRuSTN53P6 span:focus {
  outline: none;
}
.cid-sRuSTN53P6 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sRuSTN53P6 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sRuSTN53P6 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sRuSTN53P6 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-sRuSTN53P6 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sRuSTN53P6 .mbr-section-title {
  color: #1b5487;
}
.cid-sRuSTN53P6 .mbr-text,
.cid-sRuSTN53P6 .mbr-section-btn {
  text-align: left;
}
.cid-sRuSTN53P6 .item-title {
  text-align: left;
}
.cid-sRuSTN53P6 .item-subtitle {
  text-align: left;
}
.cid-sRGjhrbohc {
  padding-top: 45px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/stars4-1388x664.jpg");
}
.cid-sRGjhrbohc .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-sRGjhrbohc H4 {
  color: #1b5487;
}
.cid-sSqwjT5ZSi {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-sSqwjT5ZSi .mbr-text {
  text-align: center;
}
.cid-sQRdu5Cwvm {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #1b5487;
  overflow: hidden;
}
.cid-sVfMKoiVKq {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sVfMKoiVKq nav.navbar {
  position: fixed;
}
.cid-sVfMKoiVKq .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-sVfMKoiVKq .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sVfMKoiVKq .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sVfMKoiVKq .dropdown-item:hover,
.cid-sVfMKoiVKq .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sVfMKoiVKq .dropdown-item:hover span {
  color: white;
}
.cid-sVfMKoiVKq .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sVfMKoiVKq .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sVfMKoiVKq .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sVfMKoiVKq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sVfMKoiVKq .nav-link {
  position: relative;
}
.cid-sVfMKoiVKq .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-sVfMKoiVKq .container {
    flex-wrap: nowrap;
  }
}
.cid-sVfMKoiVKq .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sVfMKoiVKq .dropdown-menu,
.cid-sVfMKoiVKq .navbar.opened {
  background: #1b5487 !important;
}
.cid-sVfMKoiVKq .nav-item:focus,
.cid-sVfMKoiVKq .nav-link:focus {
  outline: none;
}
.cid-sVfMKoiVKq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sVfMKoiVKq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sVfMKoiVKq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sVfMKoiVKq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sVfMKoiVKq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sVfMKoiVKq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sVfMKoiVKq .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: #1b5487;
}
.cid-sVfMKoiVKq .navbar.opened {
  transition: all 0.3s;
}
.cid-sVfMKoiVKq .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sVfMKoiVKq .navbar .navbar-logo img {
  width: auto;
}
.cid-sVfMKoiVKq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sVfMKoiVKq .navbar.collapsed {
  justify-content: center;
}
.cid-sVfMKoiVKq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sVfMKoiVKq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sVfMKoiVKq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sVfMKoiVKq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sVfMKoiVKq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sVfMKoiVKq .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-sVfMKoiVKq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sVfMKoiVKq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sVfMKoiVKq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sVfMKoiVKq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sVfMKoiVKq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sVfMKoiVKq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sVfMKoiVKq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sVfMKoiVKq .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-sVfMKoiVKq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sVfMKoiVKq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sVfMKoiVKq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sVfMKoiVKq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sVfMKoiVKq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sVfMKoiVKq .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sVfMKoiVKq .navbar.navbar-short {
  min-height: 60px;
}
.cid-sVfMKoiVKq .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sVfMKoiVKq .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sVfMKoiVKq .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-sVfMKoiVKq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sVfMKoiVKq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sVfMKoiVKq .dropdown-item.active,
.cid-sVfMKoiVKq .dropdown-item:active {
  background-color: transparent;
}
.cid-sVfMKoiVKq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sVfMKoiVKq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sVfMKoiVKq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sVfMKoiVKq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1b5487;
}
.cid-sVfMKoiVKq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sVfMKoiVKq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sVfMKoiVKq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sVfMKoiVKq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sVfMKoiVKq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sVfMKoiVKq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sVfMKoiVKq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sVfMKoiVKq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sVfMKoiVKq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sVfMKoiVKq .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sVfMKoiVKq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sVfMKoiVKq .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-sVfMKoiVKq .navbar {
    height: 70px;
  }
  .cid-sVfMKoiVKq .navbar.opened {
    height: auto;
  }
  .cid-sVfMKoiVKq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sSmYHNUZes {
  padding-top: 8rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/dafs-2000x1421.png");
}
@media (max-width: 1000px) {
  .cid-sSmYHNUZes {
    padding-top: 4rem;
    padding-bottom: 2.5rem;
  }
}
@media (max-width: 768px) {
  .cid-sSmYHNUZes {
    padding-top: 2.4rem;
    padding-bottom: 1.5rem;
  }
}
.cid-sSmYHNUZes .mbr-section-title {
  color: #ffffff;
}
.cid-sSmYHNUZes .mbr-text,
.cid-sSmYHNUZes .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-sSmYHNUZes .mbr-section-title,
.cid-sSmYHNUZes .mbr-text {
  color: #353535;
}
.cid-sRGjddA3y1 {
  padding-top: 45px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/stars4-1388x664.jpg");
}
.cid-sRGjddA3y1 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-sRGjddA3y1 H4 {
  color: #1b5487;
}
.cid-sSqwqzmQ8g {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-sSqwqzmQ8g .mbr-text {
  text-align: center;
}
.cid-sQRdu5Cwvm {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #1b5487;
  overflow: hidden;
}
.cid-sVfMKoiVKq {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sVfMKoiVKq nav.navbar {
  position: fixed;
}
.cid-sVfMKoiVKq .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-sVfMKoiVKq .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sVfMKoiVKq .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sVfMKoiVKq .dropdown-item:hover,
.cid-sVfMKoiVKq .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sVfMKoiVKq .dropdown-item:hover span {
  color: white;
}
.cid-sVfMKoiVKq .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sVfMKoiVKq .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sVfMKoiVKq .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sVfMKoiVKq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sVfMKoiVKq .nav-link {
  position: relative;
}
.cid-sVfMKoiVKq .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-sVfMKoiVKq .container {
    flex-wrap: nowrap;
  }
}
.cid-sVfMKoiVKq .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sVfMKoiVKq .dropdown-menu,
.cid-sVfMKoiVKq .navbar.opened {
  background: #1b5487 !important;
}
.cid-sVfMKoiVKq .nav-item:focus,
.cid-sVfMKoiVKq .nav-link:focus {
  outline: none;
}
.cid-sVfMKoiVKq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sVfMKoiVKq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sVfMKoiVKq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sVfMKoiVKq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sVfMKoiVKq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sVfMKoiVKq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sVfMKoiVKq .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: #1b5487;
}
.cid-sVfMKoiVKq .navbar.opened {
  transition: all 0.3s;
}
.cid-sVfMKoiVKq .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sVfMKoiVKq .navbar .navbar-logo img {
  width: auto;
}
.cid-sVfMKoiVKq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sVfMKoiVKq .navbar.collapsed {
  justify-content: center;
}
.cid-sVfMKoiVKq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sVfMKoiVKq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sVfMKoiVKq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sVfMKoiVKq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sVfMKoiVKq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sVfMKoiVKq .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-sVfMKoiVKq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sVfMKoiVKq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sVfMKoiVKq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sVfMKoiVKq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sVfMKoiVKq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sVfMKoiVKq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sVfMKoiVKq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sVfMKoiVKq .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-sVfMKoiVKq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sVfMKoiVKq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sVfMKoiVKq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sVfMKoiVKq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sVfMKoiVKq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sVfMKoiVKq .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sVfMKoiVKq .navbar.navbar-short {
  min-height: 60px;
}
.cid-sVfMKoiVKq .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sVfMKoiVKq .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sVfMKoiVKq .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-sVfMKoiVKq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sVfMKoiVKq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sVfMKoiVKq .dropdown-item.active,
.cid-sVfMKoiVKq .dropdown-item:active {
  background-color: transparent;
}
.cid-sVfMKoiVKq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sVfMKoiVKq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sVfMKoiVKq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sVfMKoiVKq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1b5487;
}
.cid-sVfMKoiVKq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sVfMKoiVKq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sVfMKoiVKq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sVfMKoiVKq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sVfMKoiVKq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sVfMKoiVKq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sVfMKoiVKq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sVfMKoiVKq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sVfMKoiVKq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sVfMKoiVKq .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sVfMKoiVKq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sVfMKoiVKq .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-sVfMKoiVKq .navbar {
    height: 70px;
  }
  .cid-sVfMKoiVKq .navbar.opened {
    height: auto;
  }
  .cid-sVfMKoiVKq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sRAHyCs9nL {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/stars-1359x1030.jpg");
}
.cid-sRAHyCs9nL .row {
  flex-direction: row-reverse;
}
.cid-sRAHyCs9nL .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sRAHyCs9nL .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sRAHyCs9nL .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-sRAHyCs9nL .mbr-section-title {
  text-align: left;
  color: #1b5487;
}
.cid-sRAHyCs9nL .mbr-text,
.cid-sRAHyCs9nL .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-sRAKpxZiGO {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sRGjvUK2rv {
  padding-top: 45px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/stars4-1388x664.jpg");
}
.cid-sRGjvUK2rv .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-sRGjvUK2rv H4 {
  color: #1b5487;
}
.cid-sSqwvuLQ4i {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-sSqwvuLQ4i .mbr-text {
  text-align: center;
}
.cid-sQRdu5Cwvm {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #1b5487;
  overflow: hidden;
}
.cid-sVfMKoiVKq {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sVfMKoiVKq nav.navbar {
  position: fixed;
}
.cid-sVfMKoiVKq .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-sVfMKoiVKq .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sVfMKoiVKq .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sVfMKoiVKq .dropdown-item:hover,
.cid-sVfMKoiVKq .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sVfMKoiVKq .dropdown-item:hover span {
  color: white;
}
.cid-sVfMKoiVKq .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sVfMKoiVKq .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sVfMKoiVKq .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sVfMKoiVKq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sVfMKoiVKq .nav-link {
  position: relative;
}
.cid-sVfMKoiVKq .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-sVfMKoiVKq .container {
    flex-wrap: nowrap;
  }
}
.cid-sVfMKoiVKq .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sVfMKoiVKq .dropdown-menu,
.cid-sVfMKoiVKq .navbar.opened {
  background: #1b5487 !important;
}
.cid-sVfMKoiVKq .nav-item:focus,
.cid-sVfMKoiVKq .nav-link:focus {
  outline: none;
}
.cid-sVfMKoiVKq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sVfMKoiVKq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sVfMKoiVKq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sVfMKoiVKq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sVfMKoiVKq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sVfMKoiVKq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sVfMKoiVKq .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: #1b5487;
}
.cid-sVfMKoiVKq .navbar.opened {
  transition: all 0.3s;
}
.cid-sVfMKoiVKq .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sVfMKoiVKq .navbar .navbar-logo img {
  width: auto;
}
.cid-sVfMKoiVKq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sVfMKoiVKq .navbar.collapsed {
  justify-content: center;
}
.cid-sVfMKoiVKq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sVfMKoiVKq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sVfMKoiVKq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sVfMKoiVKq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sVfMKoiVKq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sVfMKoiVKq .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-sVfMKoiVKq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sVfMKoiVKq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sVfMKoiVKq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sVfMKoiVKq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sVfMKoiVKq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sVfMKoiVKq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sVfMKoiVKq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sVfMKoiVKq .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-sVfMKoiVKq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sVfMKoiVKq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sVfMKoiVKq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sVfMKoiVKq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sVfMKoiVKq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sVfMKoiVKq .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sVfMKoiVKq .navbar.navbar-short {
  min-height: 60px;
}
.cid-sVfMKoiVKq .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sVfMKoiVKq .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sVfMKoiVKq .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-sVfMKoiVKq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sVfMKoiVKq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sVfMKoiVKq .dropdown-item.active,
.cid-sVfMKoiVKq .dropdown-item:active {
  background-color: transparent;
}
.cid-sVfMKoiVKq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sVfMKoiVKq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sVfMKoiVKq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sVfMKoiVKq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1b5487;
}
.cid-sVfMKoiVKq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sVfMKoiVKq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sVfMKoiVKq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sVfMKoiVKq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sVfMKoiVKq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sVfMKoiVKq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sVfMKoiVKq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sVfMKoiVKq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sVfMKoiVKq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sVfMKoiVKq .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sVfMKoiVKq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sVfMKoiVKq .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-sVfMKoiVKq .navbar {
    height: 70px;
  }
  .cid-sVfMKoiVKq .navbar.opened {
    height: auto;
  }
  .cid-sVfMKoiVKq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sRFQXoT9nW {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/stars-1359x1030.jpg");
}
.cid-sRFQXoT9nW .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sRFQXoT9nW .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sRFQXoT9nW .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-sRFQXoT9nW .mbr-section-title {
  text-align: left;
  color: #1b5487;
}
.cid-sRFQXoT9nW .mbr-text,
.cid-sRFQXoT9nW .mbr-section-btn {
  text-align: left;
  color: #1b5487;
}
.cid-sRFXgrWqH6 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/stars-1359x1030.jpg");
}
.cid-sRFXgrWqH6 img,
.cid-sRFXgrWqH6 .item-img {
  width: 100%;
}
.cid-sRFXgrWqH6 .item:focus,
.cid-sRFXgrWqH6 span:focus {
  outline: none;
}
.cid-sRFXgrWqH6 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sRFXgrWqH6 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sRFXgrWqH6 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sRFXgrWqH6 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-sRFXgrWqH6 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sRFXgrWqH6 .mbr-section-title {
  color: #1b5487;
}
.cid-sRFXgrWqH6 .mbr-text,
.cid-sRFXgrWqH6 .mbr-section-btn {
  text-align: left;
}
.cid-sRFXgrWqH6 .item-title {
  text-align: left;
}
.cid-sRFXgrWqH6 .item-subtitle {
  text-align: left;
}
.cid-sRFYMq68SV {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/stars-1359x1030.jpg");
}
.cid-sRFYMq68SV img,
.cid-sRFYMq68SV .item-img {
  width: 100%;
}
.cid-sRFYMq68SV .item:focus,
.cid-sRFYMq68SV span:focus {
  outline: none;
}
.cid-sRFYMq68SV .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sRFYMq68SV .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sRFYMq68SV .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sRFYMq68SV .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-sRFYMq68SV .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sRFYMq68SV .mbr-section-title {
  color: #1b5487;
}
.cid-sRFYMq68SV .mbr-text,
.cid-sRFYMq68SV .mbr-section-btn {
  text-align: left;
}
.cid-sRFYMq68SV .item-title {
  text-align: left;
}
.cid-sRFYMq68SV .item-subtitle {
  text-align: left;
}
.cid-sSmMgqDyDx {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/stars4-1388x664.jpg");
}
.cid-sSmMgqDyDx .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sSmMgqDyDx .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sSmMgqDyDx .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-sSmMgqDyDx .mbr-section-title {
  color: #6f6d6d;
  text-align: center;
}
.cid-sSmMgqDyDx .mbr-text,
.cid-sSmMgqDyDx .mbr-section-btn {
  text-align: center;
}
.cid-sRGi9XNm7W {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sRGi9XNm7W .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-sRGi9XNm7W H4 {
  color: #1b5487;
}
.cid-sSqwziItqo {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-sSqwziItqo .mbr-text {
  text-align: center;
}
.cid-sQRdu5Cwvm {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #1b5487;
  overflow: hidden;
}
.cid-sVfMKoiVKq {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sVfMKoiVKq nav.navbar {
  position: fixed;
}
.cid-sVfMKoiVKq .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-sVfMKoiVKq .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sVfMKoiVKq .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sVfMKoiVKq .dropdown-item:hover,
.cid-sVfMKoiVKq .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sVfMKoiVKq .dropdown-item:hover span {
  color: white;
}
.cid-sVfMKoiVKq .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sVfMKoiVKq .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sVfMKoiVKq .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sVfMKoiVKq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sVfMKoiVKq .nav-link {
  position: relative;
}
.cid-sVfMKoiVKq .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-sVfMKoiVKq .container {
    flex-wrap: nowrap;
  }
}
.cid-sVfMKoiVKq .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sVfMKoiVKq .dropdown-menu,
.cid-sVfMKoiVKq .navbar.opened {
  background: #1b5487 !important;
}
.cid-sVfMKoiVKq .nav-item:focus,
.cid-sVfMKoiVKq .nav-link:focus {
  outline: none;
}
.cid-sVfMKoiVKq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sVfMKoiVKq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sVfMKoiVKq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sVfMKoiVKq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sVfMKoiVKq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sVfMKoiVKq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sVfMKoiVKq .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: #1b5487;
}
.cid-sVfMKoiVKq .navbar.opened {
  transition: all 0.3s;
}
.cid-sVfMKoiVKq .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sVfMKoiVKq .navbar .navbar-logo img {
  width: auto;
}
.cid-sVfMKoiVKq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sVfMKoiVKq .navbar.collapsed {
  justify-content: center;
}
.cid-sVfMKoiVKq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sVfMKoiVKq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sVfMKoiVKq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sVfMKoiVKq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sVfMKoiVKq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sVfMKoiVKq .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-sVfMKoiVKq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sVfMKoiVKq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sVfMKoiVKq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sVfMKoiVKq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sVfMKoiVKq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sVfMKoiVKq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sVfMKoiVKq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sVfMKoiVKq .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-sVfMKoiVKq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sVfMKoiVKq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sVfMKoiVKq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sVfMKoiVKq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sVfMKoiVKq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sVfMKoiVKq .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sVfMKoiVKq .navbar.navbar-short {
  min-height: 60px;
}
.cid-sVfMKoiVKq .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sVfMKoiVKq .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sVfMKoiVKq .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-sVfMKoiVKq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sVfMKoiVKq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sVfMKoiVKq .dropdown-item.active,
.cid-sVfMKoiVKq .dropdown-item:active {
  background-color: transparent;
}
.cid-sVfMKoiVKq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sVfMKoiVKq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sVfMKoiVKq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sVfMKoiVKq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1b5487;
}
.cid-sVfMKoiVKq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sVfMKoiVKq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sVfMKoiVKq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sVfMKoiVKq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sVfMKoiVKq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sVfMKoiVKq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sVfMKoiVKq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sVfMKoiVKq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sVfMKoiVKq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sVfMKoiVKq .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sVfMKoiVKq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sVfMKoiVKq .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-sVfMKoiVKq .navbar {
    height: 70px;
  }
  .cid-sVfMKoiVKq .navbar.opened {
    height: auto;
  }
  .cid-sVfMKoiVKq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sRGkLnFClo {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/stars-1359x1030.jpg");
}
.cid-sRGkLnFClo .row {
  flex-direction: row-reverse;
}
.cid-sRGkLnFClo .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sRGkLnFClo .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sRGkLnFClo .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-sRGkLnFClo .mbr-section-title {
  text-align: center;
  color: #1b5487;
}
.cid-sRGkLnFClo .mbr-text,
.cid-sRGkLnFClo .mbr-section-btn {
  text-align: center;
  color: #1b5487;
}
.cid-sRGlLFHixy {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sRGrNbbtQZ {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/stars-1359x1030.jpg");
}
.cid-sRGrNbbtQZ h2,
.cid-sRGrNbbtQZ h3,
.cid-sRGrNbbtQZ h4,
.cid-sRGrNbbtQZ p {
  margin: 0;
}
.cid-sRGrNbbtQZ ul {
  padding: 0;
  list-style-type: none;
}
.cid-sRGrNbbtQZ .text-wrap {
  margin-top: 10px;
  margin-bottom: 30px;
}
.cid-sRGrNbbtQZ .mbr-section-title {
  color: #000000;
  margin-bottom: 10px;
}
.cid-sRGrNbbtQZ .mbr-text {
  color: #6b6b6b;
  margin: 10px 0;
}
.cid-sRGrNbbtQZ .list {
  margin: 25px 0;
  color: #6b6b6b;
}
.cid-sRGrNbbtQZ .mbr-card-text {
  margin: 10px 0;
}
.cid-sRGrNbbtQZ .mbr-card-text::before {
  content: "* ";
  display: inline;
}
.cid-v7rWhTTAon {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sRGt90IN1M {
  padding-top: 45px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/stars4-1388x664.jpg");
}
.cid-sRGt90IN1M .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-sRGt90IN1M H4 {
  color: #1b5487;
}
.cid-sSqwLL1uqd {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-sSqwLL1uqd .mbr-text {
  text-align: center;
}
.cid-sQRdu5Cwvm {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #1b5487;
  overflow: hidden;
}
.cid-sVfMKoiVKq {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sVfMKoiVKq nav.navbar {
  position: fixed;
}
.cid-sVfMKoiVKq .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-sVfMKoiVKq .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sVfMKoiVKq .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sVfMKoiVKq .dropdown-item:hover,
.cid-sVfMKoiVKq .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sVfMKoiVKq .dropdown-item:hover span {
  color: white;
}
.cid-sVfMKoiVKq .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sVfMKoiVKq .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sVfMKoiVKq .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sVfMKoiVKq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sVfMKoiVKq .nav-link {
  position: relative;
}
.cid-sVfMKoiVKq .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-sVfMKoiVKq .container {
    flex-wrap: nowrap;
  }
}
.cid-sVfMKoiVKq .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sVfMKoiVKq .dropdown-menu,
.cid-sVfMKoiVKq .navbar.opened {
  background: #1b5487 !important;
}
.cid-sVfMKoiVKq .nav-item:focus,
.cid-sVfMKoiVKq .nav-link:focus {
  outline: none;
}
.cid-sVfMKoiVKq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sVfMKoiVKq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sVfMKoiVKq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sVfMKoiVKq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sVfMKoiVKq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sVfMKoiVKq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sVfMKoiVKq .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: #1b5487;
}
.cid-sVfMKoiVKq .navbar.opened {
  transition: all 0.3s;
}
.cid-sVfMKoiVKq .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sVfMKoiVKq .navbar .navbar-logo img {
  width: auto;
}
.cid-sVfMKoiVKq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sVfMKoiVKq .navbar.collapsed {
  justify-content: center;
}
.cid-sVfMKoiVKq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sVfMKoiVKq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sVfMKoiVKq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sVfMKoiVKq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sVfMKoiVKq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sVfMKoiVKq .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-sVfMKoiVKq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sVfMKoiVKq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sVfMKoiVKq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sVfMKoiVKq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sVfMKoiVKq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sVfMKoiVKq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sVfMKoiVKq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sVfMKoiVKq .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-sVfMKoiVKq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sVfMKoiVKq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sVfMKoiVKq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sVfMKoiVKq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sVfMKoiVKq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sVfMKoiVKq .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sVfMKoiVKq .navbar.navbar-short {
  min-height: 60px;
}
.cid-sVfMKoiVKq .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sVfMKoiVKq .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sVfMKoiVKq .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-sVfMKoiVKq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sVfMKoiVKq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sVfMKoiVKq .dropdown-item.active,
.cid-sVfMKoiVKq .dropdown-item:active {
  background-color: transparent;
}
.cid-sVfMKoiVKq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sVfMKoiVKq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sVfMKoiVKq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sVfMKoiVKq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1b5487;
}
.cid-sVfMKoiVKq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sVfMKoiVKq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sVfMKoiVKq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sVfMKoiVKq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sVfMKoiVKq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sVfMKoiVKq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sVfMKoiVKq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sVfMKoiVKq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sVfMKoiVKq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sVfMKoiVKq .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sVfMKoiVKq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sVfMKoiVKq .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-sVfMKoiVKq .navbar {
    height: 70px;
  }
  .cid-sVfMKoiVKq .navbar.opened {
    height: auto;
  }
  .cid-sVfMKoiVKq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sRGvpqFNbk {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/stars-1359x1030.jpg");
}
.cid-sRGvpqFNbk .row {
  flex-direction: row-reverse;
}
.cid-sRGvpqFNbk .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sRGvpqFNbk .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sRGvpqFNbk .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-sRGvpqFNbk .mbr-section-title {
  text-align: center;
  color: #1b5487;
}
.cid-sRGvpqFNbk .mbr-text,
.cid-sRGvpqFNbk .mbr-section-btn {
  text-align: center;
  color: #1b5487;
}
.cid-sRGvpqZNf6 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sRGvprbN32 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/stars-1359x1030.jpg");
}
.cid-sRGvprbN32 h2,
.cid-sRGvprbN32 h3,
.cid-sRGvprbN32 h4,
.cid-sRGvprbN32 p {
  margin: 0;
}
.cid-sRGvprbN32 ul {
  padding: 0;
  list-style-type: none;
}
.cid-sRGvprbN32 .text-wrap {
  margin-top: 10px;
  margin-bottom: 30px;
}
.cid-sRGvprbN32 .mbr-section-title {
  color: #000000;
  margin-bottom: 10px;
}
.cid-sRGvprbN32 .mbr-text {
  color: #6b6b6b;
  margin: 10px 0;
}
.cid-sRGvprbN32 .list {
  margin: 25px 0;
  color: #6b6b6b;
}
.cid-sRGvprbN32 .mbr-card-text {
  margin: 10px 0;
}
.cid-sRGvprbN32 .mbr-card-text::before {
  content: "* ";
  display: inline;
}
.cid-v7rXzzeVDf {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sRGvprpPIg {
  padding-top: 45px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/stars4-1388x664.jpg");
}
.cid-sRGvprpPIg .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-sRGvprpPIg H4 {
  color: #1b5487;
}
.cid-sSqwF6UFf6 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-sSqwF6UFf6 .mbr-text {
  text-align: center;
}
.cid-sRGvprHWdv {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #1b5487;
  overflow: hidden;
}
.cid-sVfMKoiVKq {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sVfMKoiVKq nav.navbar {
  position: fixed;
}
.cid-sVfMKoiVKq .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-sVfMKoiVKq .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sVfMKoiVKq .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sVfMKoiVKq .dropdown-item:hover,
.cid-sVfMKoiVKq .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sVfMKoiVKq .dropdown-item:hover span {
  color: white;
}
.cid-sVfMKoiVKq .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sVfMKoiVKq .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sVfMKoiVKq .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sVfMKoiVKq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sVfMKoiVKq .nav-link {
  position: relative;
}
.cid-sVfMKoiVKq .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-sVfMKoiVKq .container {
    flex-wrap: nowrap;
  }
}
.cid-sVfMKoiVKq .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sVfMKoiVKq .dropdown-menu,
.cid-sVfMKoiVKq .navbar.opened {
  background: #1b5487 !important;
}
.cid-sVfMKoiVKq .nav-item:focus,
.cid-sVfMKoiVKq .nav-link:focus {
  outline: none;
}
.cid-sVfMKoiVKq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sVfMKoiVKq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sVfMKoiVKq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sVfMKoiVKq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sVfMKoiVKq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sVfMKoiVKq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sVfMKoiVKq .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: #1b5487;
}
.cid-sVfMKoiVKq .navbar.opened {
  transition: all 0.3s;
}
.cid-sVfMKoiVKq .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sVfMKoiVKq .navbar .navbar-logo img {
  width: auto;
}
.cid-sVfMKoiVKq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sVfMKoiVKq .navbar.collapsed {
  justify-content: center;
}
.cid-sVfMKoiVKq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sVfMKoiVKq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sVfMKoiVKq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sVfMKoiVKq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sVfMKoiVKq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sVfMKoiVKq .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-sVfMKoiVKq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sVfMKoiVKq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sVfMKoiVKq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sVfMKoiVKq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sVfMKoiVKq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sVfMKoiVKq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sVfMKoiVKq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sVfMKoiVKq .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-sVfMKoiVKq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sVfMKoiVKq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sVfMKoiVKq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sVfMKoiVKq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sVfMKoiVKq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sVfMKoiVKq .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sVfMKoiVKq .navbar.navbar-short {
  min-height: 60px;
}
.cid-sVfMKoiVKq .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sVfMKoiVKq .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sVfMKoiVKq .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-sVfMKoiVKq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sVfMKoiVKq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sVfMKoiVKq .dropdown-item.active,
.cid-sVfMKoiVKq .dropdown-item:active {
  background-color: transparent;
}
.cid-sVfMKoiVKq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sVfMKoiVKq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sVfMKoiVKq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sVfMKoiVKq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1b5487;
}
.cid-sVfMKoiVKq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sVfMKoiVKq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sVfMKoiVKq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sVfMKoiVKq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sVfMKoiVKq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sVfMKoiVKq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sVfMKoiVKq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sVfMKoiVKq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sVfMKoiVKq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sVfMKoiVKq .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sVfMKoiVKq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sVfMKoiVKq .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-sVfMKoiVKq .navbar {
    height: 70px;
  }
  .cid-sVfMKoiVKq .navbar.opened {
    height: auto;
  }
  .cid-sVfMKoiVKq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sRRASAz8Z4 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sRRASAz8Z4 .mbr-section-subtitle {
  color: #1b5487;
}
.cid-sRRASAz8Z4 .mbr-section-title {
  color: #6f6d6d;
}
.cid-vukXsGoxGU {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/stars-1359x1030.jpg");
}
.cid-vukXsGoxGU .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-vukXsGoxGU .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-vukXsGoxGU .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-vukXsGoxGU .mbr-section-title {
  color: #1b5487;
  text-align: left;
}
.cid-vukXsGoxGU .mbr-text,
.cid-vukXsGoxGU .mbr-section-btn {
  text-align: left;
}
.cid-v7rRnMqrHp {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/stars-1359x1030.jpg");
}
.cid-v7rRnMqrHp .row {
  flex-direction: row-reverse;
}
.cid-v7rRnMqrHp .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-v7rRnMqrHp .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-v7rRnMqrHp .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-v7rRnMqrHp .mbr-section-title {
  color: #1b5487;
  text-align: left;
}
.cid-v7rRnMqrHp .mbr-text,
.cid-v7rRnMqrHp .mbr-section-btn {
  text-align: left;
}
.cid-um55q53Syd {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/stars4-1388x664.jpg");
}
.cid-um55q53Syd .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-um55q53Syd .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-um55q53Syd .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-um55q53Syd .mbr-section-title {
  color: #1b5487;
  text-align: left;
}
.cid-um55q53Syd .mbr-text,
.cid-um55q53Syd .mbr-section-btn {
  text-align: left;
}
.cid-t5f7W86DXt {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/stars2-1359x784.jpg");
}
.cid-t5f7W86DXt .main-container .main-img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 991px) {
  .cid-t5f7W86DXt .main-container {
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 767px) {
  .cid-t5f7W86DXt .main-container .main-title {
    margin-top: 1rem;
  }
}
.cid-t5f7W86DXt .mbr-section-title {
  color: #1b5487;
}
.cid-t5f7W86DXt .mbr-section-subtitle {
  color: #1b5487;
}
.cid-sRRmuxc1ED {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/stars4-1388x664.jpg");
}
.cid-sRRmuxc1ED .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sRRmuxc1ED .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sRRmuxc1ED .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-sRRmuxc1ED .mbr-section-title {
  color: #1b5487;
  text-align: left;
}
.cid-sRRmuxc1ED .mbr-text,
.cid-sRRmuxc1ED .mbr-section-btn {
  text-align: left;
}
.cid-sRRnEu7oV7 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/stars-1359x1030.jpg");
}
.cid-sRRnEu7oV7 .row {
  flex-direction: row-reverse;
}
.cid-sRRnEu7oV7 .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sRRnEu7oV7 .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sRRnEu7oV7 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-sRRnEu7oV7 .mbr-section-title {
  color: #1b5487;
  text-align: left;
}
.cid-sRRnEu7oV7 .mbr-text,
.cid-sRRnEu7oV7 .mbr-section-btn {
  text-align: left;
}
.cid-sRQYTq5Vgu {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/stars4-1388x664.jpg");
}
.cid-sRQYTq5Vgu .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sRQYTq5Vgu .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sRQYTq5Vgu .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-sRQYTq5Vgu .mbr-section-title {
  color: #1b5487;
  text-align: left;
}
.cid-sRQYTq5Vgu .mbr-text,
.cid-sRQYTq5Vgu .mbr-section-btn {
  text-align: left;
  color: #6f6d6d;
}
.cid-sRRrS9z3W8 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/stars-1359x1030.jpg");
}
.cid-sRRrS9z3W8 .row {
  flex-direction: row-reverse;
}
.cid-sRRrS9z3W8 .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sRRrS9z3W8 .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sRRrS9z3W8 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-sRRrS9z3W8 .mbr-section-title {
  color: #1b5487;
  text-align: center;
}
.cid-sRRrS9z3W8 .mbr-text,
.cid-sRRrS9z3W8 .mbr-section-btn {
  text-align: left;
}
.cid-sRRsRzGGSo {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sRRsRzGGSo .mbr-section-subtitle {
  text-align: center;
}
.cid-sRRJclOHO8 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/stars-1359x1030.jpg");
}
.cid-sRRJclOHO8 .row {
  flex-direction: row-reverse;
}
.cid-sRRJclOHO8 .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sRRJclOHO8 .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sRRJclOHO8 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-sRRJclOHO8 .mbr-section-title {
  color: #1b5487;
  text-align: right;
}
.cid-sRRJclOHO8 .mbr-text,
.cid-sRRJclOHO8 .mbr-section-btn {
  text-align: right;
}
.cid-sRRN6mgtUj {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sRRNQWPb1k {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/stars4-1388x664.jpg");
}
.cid-sRRNQWPb1k .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sRRNQWPb1k .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sRRNQWPb1k .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-sRRNQWPb1k .mbr-section-title {
  color: #1b5487;
  text-align: left;
}
.cid-sRRNQWPb1k .mbr-text,
.cid-sRRNQWPb1k .mbr-section-btn {
  text-align: left;
}
.cid-sRRP3fA6Ct {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #fff2cd;
}
.cid-sSqwPfxi0j {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-sSqwPfxi0j .mbr-text {
  text-align: center;
}
.cid-sRGvprHWdv {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #1b5487;
  overflow: hidden;
}
.cid-sRRa9Med5e.popup-builder {
  background-color: #ffffff;
}
.cid-sRRa9Med5e.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sRRa9Med5e.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sRRa9Med5e .modal-content,
.cid-sRRa9Med5e .modal-dialog {
  height: auto;
}
.cid-sRRa9Med5e .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sRRa9Med5e .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sRRa9Med5e .form-wrapper .mbr-form .form-group,
  .cid-sRRa9Med5e .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sRRa9Med5e .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sRRa9Med5e .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sRRa9Med5e .mbr-text {
  text-align: left;
}
.cid-sRRa9Med5e .pt-0 {
  padding-top: 0 !important;
}
.cid-sRRa9Med5e .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sRRa9Med5e .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sRRa9Med5e .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sRRa9Med5e .modal-open {
  overflow: hidden;
}
.cid-sRRa9Med5e .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sRRa9Med5e .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sRRa9Med5e .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sRRa9Med5e .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-sRRa9Med5e .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sRRa9Med5e .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sRRa9Med5e .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sRRa9Med5e .modal-content {
  background: #fafafa;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-sRRa9Med5e .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-sRRa9Med5e .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sRRa9Med5e .modal-backdrop.fade {
  opacity: 0;
}
.cid-sRRa9Med5e .modal-backdrop.show {
  opacity: .5;
}
.cid-sRRa9Med5e .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-sRRa9Med5e .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-sRRa9Med5e .modal-header {
    padding: 1rem;
  }
}
.cid-sRRa9Med5e .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sRRa9Med5e .modal-header .close svg {
  fill: #353535;
}
.cid-sRRa9Med5e .modal-header .close:hover {
  opacity: 1;
}
.cid-sRRa9Med5e .modal-header .close:focus {
  outline: none;
}
.cid-sRRa9Med5e .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: left;
  color: #1b5487;
}
.cid-sRRa9Med5e .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-sRRa9Med5e .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sRRa9Med5e .modal-body {
    padding: 1rem;
  }
}
.cid-sRRa9Med5e .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sRRa9Med5e .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sRRa9Med5e .modal-footer {
    padding: 1rem;
  }
}
.cid-sRRa9Med5e .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sRRa9Med5e .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sRRa9Med5e .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sRRa9Med5e .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sRRa9Med5e .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-sRRa9Med5e .modal-lg,
  .cid-sRRa9Med5e .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-sRRa9Med5e .modal-xl {
    max-width: 1140px;
  }
}
.cid-sRRa9Med5e .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sRRa9Med5e .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-sRRa9Med5e .form-group {
  margin-bottom: 1rem;
}
.cid-sRRa9Med5e .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sRRa9Med5e .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sRRa9Med5e .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-sRRa9Med5e .mbr-section-btn {
  margin: 0;
}
.cid-sRRa9Med5e .mbr-section-btn .btn {
  margin: 0;
}
.cid-sVfMKoiVKq {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sVfMKoiVKq nav.navbar {
  position: fixed;
}
.cid-sVfMKoiVKq .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-sVfMKoiVKq .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sVfMKoiVKq .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sVfMKoiVKq .dropdown-item:hover,
.cid-sVfMKoiVKq .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sVfMKoiVKq .dropdown-item:hover span {
  color: white;
}
.cid-sVfMKoiVKq .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sVfMKoiVKq .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sVfMKoiVKq .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sVfMKoiVKq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sVfMKoiVKq .nav-link {
  position: relative;
}
.cid-sVfMKoiVKq .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-sVfMKoiVKq .container {
    flex-wrap: nowrap;
  }
}
.cid-sVfMKoiVKq .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sVfMKoiVKq .dropdown-menu,
.cid-sVfMKoiVKq .navbar.opened {
  background: #1b5487 !important;
}
.cid-sVfMKoiVKq .nav-item:focus,
.cid-sVfMKoiVKq .nav-link:focus {
  outline: none;
}
.cid-sVfMKoiVKq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sVfMKoiVKq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sVfMKoiVKq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sVfMKoiVKq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sVfMKoiVKq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sVfMKoiVKq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sVfMKoiVKq .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: #1b5487;
}
.cid-sVfMKoiVKq .navbar.opened {
  transition: all 0.3s;
}
.cid-sVfMKoiVKq .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sVfMKoiVKq .navbar .navbar-logo img {
  width: auto;
}
.cid-sVfMKoiVKq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sVfMKoiVKq .navbar.collapsed {
  justify-content: center;
}
.cid-sVfMKoiVKq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sVfMKoiVKq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sVfMKoiVKq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sVfMKoiVKq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sVfMKoiVKq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sVfMKoiVKq .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-sVfMKoiVKq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sVfMKoiVKq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sVfMKoiVKq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sVfMKoiVKq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sVfMKoiVKq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sVfMKoiVKq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sVfMKoiVKq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sVfMKoiVKq .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-sVfMKoiVKq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sVfMKoiVKq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sVfMKoiVKq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sVfMKoiVKq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sVfMKoiVKq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sVfMKoiVKq .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sVfMKoiVKq .navbar.navbar-short {
  min-height: 60px;
}
.cid-sVfMKoiVKq .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sVfMKoiVKq .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sVfMKoiVKq .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-sVfMKoiVKq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sVfMKoiVKq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sVfMKoiVKq .dropdown-item.active,
.cid-sVfMKoiVKq .dropdown-item:active {
  background-color: transparent;
}
.cid-sVfMKoiVKq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sVfMKoiVKq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sVfMKoiVKq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sVfMKoiVKq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1b5487;
}
.cid-sVfMKoiVKq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sVfMKoiVKq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sVfMKoiVKq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sVfMKoiVKq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sVfMKoiVKq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sVfMKoiVKq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sVfMKoiVKq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sVfMKoiVKq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sVfMKoiVKq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sVfMKoiVKq .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sVfMKoiVKq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sVfMKoiVKq .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-sVfMKoiVKq .navbar {
    height: 70px;
  }
  .cid-sVfMKoiVKq .navbar.opened {
    height: auto;
  }
  .cid-sVfMKoiVKq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sRS1U3WPsu {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #2b6da9;
}
.cid-sRS1U3WPsu img,
.cid-sRS1U3WPsu .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-sRS1U3WPsu .item:focus,
.cid-sRS1U3WPsu span:focus {
  outline: none;
}
.cid-sRS1U3WPsu .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sRS1U3WPsu .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sRS1U3WPsu .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-sRS1U3WPsu .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sRS1U3WPsu .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-sRS1U3WPsu .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-sRS1U3WPsu .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sRS1U3WPsu .mbr-section-title {
  color: #ffffff;
}
.cid-sRS1U3WPsu .mbr-text,
.cid-sRS1U3WPsu .mbr-section-btn {
  text-align: left;
}
.cid-sRS1U3WPsu .item-title {
  text-align: left;
}
.cid-sRS1U3WPsu .item-subtitle {
  text-align: left;
}
.cid-sRSf8bGUOa {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #2b6da9;
}
.cid-sRSf8bGUOa img,
.cid-sRSf8bGUOa .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-sRSf8bGUOa .item:focus,
.cid-sRSf8bGUOa span:focus {
  outline: none;
}
.cid-sRSf8bGUOa .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sRSf8bGUOa .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sRSf8bGUOa .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-sRSf8bGUOa .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sRSf8bGUOa .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-sRSf8bGUOa .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-sRSf8bGUOa .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sRSf8bGUOa .mbr-section-title {
  color: #1b5487;
}
.cid-sRSf8bGUOa .mbr-text,
.cid-sRSf8bGUOa .mbr-section-btn {
  text-align: left;
}
.cid-sRSf8bGUOa .item-title {
  text-align: left;
}
.cid-sRSf8bGUOa .item-subtitle {
  text-align: left;
}
.cid-sRZrATxb81 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #2b6da9;
}
.cid-sRZrATxb81 img,
.cid-sRZrATxb81 .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-sRZrATxb81 .item:focus,
.cid-sRZrATxb81 span:focus {
  outline: none;
}
.cid-sRZrATxb81 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sRZrATxb81 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sRZrATxb81 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-sRZrATxb81 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sRZrATxb81 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-sRZrATxb81 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-sRZrATxb81 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sRZrATxb81 .mbr-section-title {
  color: #1b5487;
}
.cid-sRZrATxb81 .mbr-text,
.cid-sRZrATxb81 .mbr-section-btn {
  text-align: left;
}
.cid-sRZrATxb81 .item-title {
  text-align: left;
}
.cid-sRZrATxb81 .item-subtitle {
  text-align: left;
}
.cid-sSfoDmSF6k {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #2b6da9;
}
.cid-sSfoDmSF6k img,
.cid-sSfoDmSF6k .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-sSfoDmSF6k .item:focus,
.cid-sSfoDmSF6k span:focus {
  outline: none;
}
.cid-sSfoDmSF6k .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sSfoDmSF6k .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sSfoDmSF6k .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-sSfoDmSF6k .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sSfoDmSF6k .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-sSfoDmSF6k .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-sSfoDmSF6k .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sSfoDmSF6k .mbr-section-title {
  color: #1b5487;
}
.cid-sSfoDmSF6k .mbr-text,
.cid-sSfoDmSF6k .mbr-section-btn {
  text-align: left;
}
.cid-sSfoDmSF6k .item-title {
  text-align: left;
}
.cid-sSfoDmSF6k .item-subtitle {
  text-align: left;
}
.cid-sSlkiKfs6W {
  padding-top: 45px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/stars4-1388x664.jpg");
}
.cid-sSlkiKfs6W .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-sSlkiKfs6W H4 {
  color: #1b5487;
}
.cid-sSqwSQkAJb {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-sSqwSQkAJb .mbr-text {
  text-align: center;
}
.cid-sRGvprHWdv {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #1b5487;
  overflow: hidden;
}
.cid-sVfMKoiVKq {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sVfMKoiVKq nav.navbar {
  position: fixed;
}
.cid-sVfMKoiVKq .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-sVfMKoiVKq .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sVfMKoiVKq .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sVfMKoiVKq .dropdown-item:hover,
.cid-sVfMKoiVKq .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sVfMKoiVKq .dropdown-item:hover span {
  color: white;
}
.cid-sVfMKoiVKq .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sVfMKoiVKq .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sVfMKoiVKq .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sVfMKoiVKq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sVfMKoiVKq .nav-link {
  position: relative;
}
.cid-sVfMKoiVKq .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-sVfMKoiVKq .container {
    flex-wrap: nowrap;
  }
}
.cid-sVfMKoiVKq .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sVfMKoiVKq .dropdown-menu,
.cid-sVfMKoiVKq .navbar.opened {
  background: #1b5487 !important;
}
.cid-sVfMKoiVKq .nav-item:focus,
.cid-sVfMKoiVKq .nav-link:focus {
  outline: none;
}
.cid-sVfMKoiVKq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sVfMKoiVKq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sVfMKoiVKq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sVfMKoiVKq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sVfMKoiVKq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sVfMKoiVKq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sVfMKoiVKq .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: #1b5487;
}
.cid-sVfMKoiVKq .navbar.opened {
  transition: all 0.3s;
}
.cid-sVfMKoiVKq .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sVfMKoiVKq .navbar .navbar-logo img {
  width: auto;
}
.cid-sVfMKoiVKq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sVfMKoiVKq .navbar.collapsed {
  justify-content: center;
}
.cid-sVfMKoiVKq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sVfMKoiVKq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sVfMKoiVKq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sVfMKoiVKq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sVfMKoiVKq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sVfMKoiVKq .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-sVfMKoiVKq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sVfMKoiVKq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sVfMKoiVKq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sVfMKoiVKq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sVfMKoiVKq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sVfMKoiVKq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sVfMKoiVKq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sVfMKoiVKq .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-sVfMKoiVKq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sVfMKoiVKq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sVfMKoiVKq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sVfMKoiVKq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sVfMKoiVKq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sVfMKoiVKq .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sVfMKoiVKq .navbar.navbar-short {
  min-height: 60px;
}
.cid-sVfMKoiVKq .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sVfMKoiVKq .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sVfMKoiVKq .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-sVfMKoiVKq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sVfMKoiVKq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sVfMKoiVKq .dropdown-item.active,
.cid-sVfMKoiVKq .dropdown-item:active {
  background-color: transparent;
}
.cid-sVfMKoiVKq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sVfMKoiVKq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sVfMKoiVKq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sVfMKoiVKq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1b5487;
}
.cid-sVfMKoiVKq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sVfMKoiVKq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sVfMKoiVKq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sVfMKoiVKq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sVfMKoiVKq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sVfMKoiVKq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sVfMKoiVKq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sVfMKoiVKq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sVfMKoiVKq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sVfMKoiVKq .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sVfMKoiVKq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sVfMKoiVKq .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-sVfMKoiVKq .navbar {
    height: 70px;
  }
  .cid-sVfMKoiVKq .navbar.opened {
    height: auto;
  }
  .cid-sVfMKoiVKq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sSfHLZgB54 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/stars4-1388x664.jpg");
}
.cid-sSfHLZgB54 .row {
  flex-direction: row-reverse;
}
.cid-sSfHLZgB54 .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sSfHLZgB54 .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sSfHLZgB54 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-sSfHLZgB54 .mbr-section-title {
  color: #6f6d6d;
  text-align: center;
}
.cid-sSfHLZgB54 .mbr-text,
.cid-sSfHLZgB54 .mbr-section-btn {
  text-align: center;
}
.cid-sSleTTU9xS {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sSleTTU9xS .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-sSleTTU9xS H4 {
  color: #1b5487;
}
.cid-sSqwXmbQHU {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-sSqwXmbQHU .mbr-text {
  text-align: center;
}
.cid-sRGvprHWdv {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #1b5487;
  overflow: hidden;
}
.cid-sVfMKoiVKq {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sVfMKoiVKq nav.navbar {
  position: fixed;
}
.cid-sVfMKoiVKq .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-sVfMKoiVKq .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sVfMKoiVKq .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sVfMKoiVKq .dropdown-item:hover,
.cid-sVfMKoiVKq .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sVfMKoiVKq .dropdown-item:hover span {
  color: white;
}
.cid-sVfMKoiVKq .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sVfMKoiVKq .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sVfMKoiVKq .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sVfMKoiVKq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sVfMKoiVKq .nav-link {
  position: relative;
}
.cid-sVfMKoiVKq .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-sVfMKoiVKq .container {
    flex-wrap: nowrap;
  }
}
.cid-sVfMKoiVKq .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sVfMKoiVKq .dropdown-menu,
.cid-sVfMKoiVKq .navbar.opened {
  background: #1b5487 !important;
}
.cid-sVfMKoiVKq .nav-item:focus,
.cid-sVfMKoiVKq .nav-link:focus {
  outline: none;
}
.cid-sVfMKoiVKq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sVfMKoiVKq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sVfMKoiVKq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sVfMKoiVKq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sVfMKoiVKq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sVfMKoiVKq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sVfMKoiVKq .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: #1b5487;
}
.cid-sVfMKoiVKq .navbar.opened {
  transition: all 0.3s;
}
.cid-sVfMKoiVKq .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sVfMKoiVKq .navbar .navbar-logo img {
  width: auto;
}
.cid-sVfMKoiVKq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sVfMKoiVKq .navbar.collapsed {
  justify-content: center;
}
.cid-sVfMKoiVKq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sVfMKoiVKq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sVfMKoiVKq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sVfMKoiVKq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sVfMKoiVKq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sVfMKoiVKq .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-sVfMKoiVKq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sVfMKoiVKq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sVfMKoiVKq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sVfMKoiVKq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sVfMKoiVKq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sVfMKoiVKq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sVfMKoiVKq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sVfMKoiVKq .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-sVfMKoiVKq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sVfMKoiVKq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sVfMKoiVKq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sVfMKoiVKq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sVfMKoiVKq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sVfMKoiVKq .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sVfMKoiVKq .navbar.navbar-short {
  min-height: 60px;
}
.cid-sVfMKoiVKq .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sVfMKoiVKq .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sVfMKoiVKq .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-sVfMKoiVKq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sVfMKoiVKq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sVfMKoiVKq .dropdown-item.active,
.cid-sVfMKoiVKq .dropdown-item:active {
  background-color: transparent;
}
.cid-sVfMKoiVKq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sVfMKoiVKq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sVfMKoiVKq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sVfMKoiVKq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1b5487;
}
.cid-sVfMKoiVKq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sVfMKoiVKq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sVfMKoiVKq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sVfMKoiVKq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sVfMKoiVKq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sVfMKoiVKq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sVfMKoiVKq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sVfMKoiVKq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sVfMKoiVKq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sVfMKoiVKq .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sVfMKoiVKq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sVfMKoiVKq .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-sVfMKoiVKq .navbar {
    height: 70px;
  }
  .cid-sVfMKoiVKq .navbar.opened {
    height: auto;
  }
  .cid-sVfMKoiVKq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sSl7oyoZtH {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/stars4-1388x664.jpg");
}
.cid-sSl7oyoZtH .row {
  flex-direction: row-reverse;
}
.cid-sSl7oyoZtH .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sSl7oyoZtH .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sSl7oyoZtH .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-sSl7oyoZtH .mbr-section-title {
  color: #6f6d6d;
  text-align: center;
}
.cid-sSl7oyoZtH .mbr-text,
.cid-sSl7oyoZtH .mbr-section-btn {
  text-align: center;
}
.cid-sSl8yECAmd {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sSl8Rxmrn0 {
  padding-top: 45px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/stars4-1388x664.jpg");
}
.cid-sSl8Rxmrn0 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-sSl8Rxmrn0 H4 {
  color: #1b5487;
}
.cid-sSqx3h2F0T {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-sSqx3h2F0T .mbr-text {
  text-align: center;
}
.cid-sRGvprHWdv {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #1b5487;
  overflow: hidden;
}
.cid-sVfMKoiVKq {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sVfMKoiVKq nav.navbar {
  position: fixed;
}
.cid-sVfMKoiVKq .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-sVfMKoiVKq .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sVfMKoiVKq .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sVfMKoiVKq .dropdown-item:hover,
.cid-sVfMKoiVKq .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sVfMKoiVKq .dropdown-item:hover span {
  color: white;
}
.cid-sVfMKoiVKq .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sVfMKoiVKq .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sVfMKoiVKq .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sVfMKoiVKq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sVfMKoiVKq .nav-link {
  position: relative;
}
.cid-sVfMKoiVKq .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-sVfMKoiVKq .container {
    flex-wrap: nowrap;
  }
}
.cid-sVfMKoiVKq .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sVfMKoiVKq .dropdown-menu,
.cid-sVfMKoiVKq .navbar.opened {
  background: #1b5487 !important;
}
.cid-sVfMKoiVKq .nav-item:focus,
.cid-sVfMKoiVKq .nav-link:focus {
  outline: none;
}
.cid-sVfMKoiVKq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sVfMKoiVKq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sVfMKoiVKq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sVfMKoiVKq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sVfMKoiVKq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sVfMKoiVKq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sVfMKoiVKq .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: #1b5487;
}
.cid-sVfMKoiVKq .navbar.opened {
  transition: all 0.3s;
}
.cid-sVfMKoiVKq .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sVfMKoiVKq .navbar .navbar-logo img {
  width: auto;
}
.cid-sVfMKoiVKq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sVfMKoiVKq .navbar.collapsed {
  justify-content: center;
}
.cid-sVfMKoiVKq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sVfMKoiVKq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sVfMKoiVKq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sVfMKoiVKq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sVfMKoiVKq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sVfMKoiVKq .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-sVfMKoiVKq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sVfMKoiVKq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sVfMKoiVKq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sVfMKoiVKq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sVfMKoiVKq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sVfMKoiVKq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sVfMKoiVKq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sVfMKoiVKq .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-sVfMKoiVKq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sVfMKoiVKq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sVfMKoiVKq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sVfMKoiVKq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sVfMKoiVKq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sVfMKoiVKq .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sVfMKoiVKq .navbar.navbar-short {
  min-height: 60px;
}
.cid-sVfMKoiVKq .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sVfMKoiVKq .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sVfMKoiVKq .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-sVfMKoiVKq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sVfMKoiVKq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sVfMKoiVKq .dropdown-item.active,
.cid-sVfMKoiVKq .dropdown-item:active {
  background-color: transparent;
}
.cid-sVfMKoiVKq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sVfMKoiVKq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sVfMKoiVKq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sVfMKoiVKq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1b5487;
}
.cid-sVfMKoiVKq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sVfMKoiVKq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sVfMKoiVKq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sVfMKoiVKq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sVfMKoiVKq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sVfMKoiVKq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sVfMKoiVKq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sVfMKoiVKq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sVfMKoiVKq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sVfMKoiVKq .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sVfMKoiVKq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sVfMKoiVKq .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-sVfMKoiVKq .navbar {
    height: 70px;
  }
  .cid-sVfMKoiVKq .navbar.opened {
    height: auto;
  }
  .cid-sVfMKoiVKq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sSlawhy8bd {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/stars4-1388x664.jpg");
}
.cid-sSlawhy8bd .row {
  flex-direction: row-reverse;
}
.cid-sSlawhy8bd .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sSlawhy8bd .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sSlawhy8bd .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-sSlawhy8bd .mbr-section-title {
  color: #6f6d6d;
  text-align: center;
}
.cid-sSlawhy8bd .mbr-text,
.cid-sSlawhy8bd .mbr-section-btn {
  text-align: center;
}
.cid-sSlbhom38c {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sSlbF5NGx4 {
  padding-top: 45px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/stars4-1388x664.jpg");
}
.cid-sSlbF5NGx4 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-sSlbF5NGx4 H4 {
  color: #1b5487;
}
.cid-sSqx7VSUUc {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-sSqx7VSUUc .mbr-text {
  text-align: center;
}
.cid-sRGvprHWdv {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #1b5487;
  overflow: hidden;
}
.cid-sVfMKoiVKq {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sVfMKoiVKq nav.navbar {
  position: fixed;
}
.cid-sVfMKoiVKq .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-sVfMKoiVKq .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sVfMKoiVKq .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sVfMKoiVKq .dropdown-item:hover,
.cid-sVfMKoiVKq .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sVfMKoiVKq .dropdown-item:hover span {
  color: white;
}
.cid-sVfMKoiVKq .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sVfMKoiVKq .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sVfMKoiVKq .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sVfMKoiVKq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sVfMKoiVKq .nav-link {
  position: relative;
}
.cid-sVfMKoiVKq .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-sVfMKoiVKq .container {
    flex-wrap: nowrap;
  }
}
.cid-sVfMKoiVKq .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sVfMKoiVKq .dropdown-menu,
.cid-sVfMKoiVKq .navbar.opened {
  background: #1b5487 !important;
}
.cid-sVfMKoiVKq .nav-item:focus,
.cid-sVfMKoiVKq .nav-link:focus {
  outline: none;
}
.cid-sVfMKoiVKq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sVfMKoiVKq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sVfMKoiVKq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sVfMKoiVKq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sVfMKoiVKq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sVfMKoiVKq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sVfMKoiVKq .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: #1b5487;
}
.cid-sVfMKoiVKq .navbar.opened {
  transition: all 0.3s;
}
.cid-sVfMKoiVKq .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sVfMKoiVKq .navbar .navbar-logo img {
  width: auto;
}
.cid-sVfMKoiVKq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sVfMKoiVKq .navbar.collapsed {
  justify-content: center;
}
.cid-sVfMKoiVKq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sVfMKoiVKq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sVfMKoiVKq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sVfMKoiVKq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sVfMKoiVKq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sVfMKoiVKq .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-sVfMKoiVKq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sVfMKoiVKq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sVfMKoiVKq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sVfMKoiVKq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sVfMKoiVKq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sVfMKoiVKq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sVfMKoiVKq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sVfMKoiVKq .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-sVfMKoiVKq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sVfMKoiVKq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sVfMKoiVKq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sVfMKoiVKq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sVfMKoiVKq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sVfMKoiVKq .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sVfMKoiVKq .navbar.navbar-short {
  min-height: 60px;
}
.cid-sVfMKoiVKq .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sVfMKoiVKq .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sVfMKoiVKq .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-sVfMKoiVKq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sVfMKoiVKq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sVfMKoiVKq .dropdown-item.active,
.cid-sVfMKoiVKq .dropdown-item:active {
  background-color: transparent;
}
.cid-sVfMKoiVKq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sVfMKoiVKq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sVfMKoiVKq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sVfMKoiVKq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1b5487;
}
.cid-sVfMKoiVKq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sVfMKoiVKq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sVfMKoiVKq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sVfMKoiVKq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sVfMKoiVKq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sVfMKoiVKq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sVfMKoiVKq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sVfMKoiVKq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sVfMKoiVKq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sVfMKoiVKq .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sVfMKoiVKq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sVfMKoiVKq .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-sVfMKoiVKq .navbar {
    height: 70px;
  }
  .cid-sVfMKoiVKq .navbar.opened {
    height: auto;
  }
  .cid-sVfMKoiVKq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sSlcPl87Xh {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/stars4-1388x664.jpg");
}
.cid-sSlcPl87Xh .row {
  flex-direction: row-reverse;
}
.cid-sSlcPl87Xh .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sSlcPl87Xh .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sSlcPl87Xh .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-sSlcPl87Xh .mbr-section-title {
  color: #6f6d6d;
  text-align: center;
}
.cid-sSlcPl87Xh .mbr-text,
.cid-sSlcPl87Xh .mbr-section-btn {
  text-align: center;
}
.cid-sSlewxSWDg {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sSleMKhqLi {
  padding-top: 45px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/stars4-1388x664.jpg");
}
.cid-sSleMKhqLi .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-sSleMKhqLi H4 {
  color: #1b5487;
}
.cid-sSqxabvSBP {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-sSqxabvSBP .mbr-text {
  text-align: center;
}
.cid-sRGvprHWdv {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #1b5487;
  overflow: hidden;
}
.cid-sVfMKoiVKq {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sVfMKoiVKq nav.navbar {
  position: fixed;
}
.cid-sVfMKoiVKq .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-sVfMKoiVKq .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sVfMKoiVKq .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sVfMKoiVKq .dropdown-item:hover,
.cid-sVfMKoiVKq .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sVfMKoiVKq .dropdown-item:hover span {
  color: white;
}
.cid-sVfMKoiVKq .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sVfMKoiVKq .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sVfMKoiVKq .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sVfMKoiVKq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sVfMKoiVKq .nav-link {
  position: relative;
}
.cid-sVfMKoiVKq .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-sVfMKoiVKq .container {
    flex-wrap: nowrap;
  }
}
.cid-sVfMKoiVKq .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sVfMKoiVKq .dropdown-menu,
.cid-sVfMKoiVKq .navbar.opened {
  background: #1b5487 !important;
}
.cid-sVfMKoiVKq .nav-item:focus,
.cid-sVfMKoiVKq .nav-link:focus {
  outline: none;
}
.cid-sVfMKoiVKq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sVfMKoiVKq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sVfMKoiVKq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sVfMKoiVKq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sVfMKoiVKq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sVfMKoiVKq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sVfMKoiVKq .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: #1b5487;
}
.cid-sVfMKoiVKq .navbar.opened {
  transition: all 0.3s;
}
.cid-sVfMKoiVKq .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sVfMKoiVKq .navbar .navbar-logo img {
  width: auto;
}
.cid-sVfMKoiVKq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sVfMKoiVKq .navbar.collapsed {
  justify-content: center;
}
.cid-sVfMKoiVKq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sVfMKoiVKq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sVfMKoiVKq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sVfMKoiVKq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sVfMKoiVKq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sVfMKoiVKq .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-sVfMKoiVKq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sVfMKoiVKq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sVfMKoiVKq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sVfMKoiVKq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sVfMKoiVKq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sVfMKoiVKq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sVfMKoiVKq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sVfMKoiVKq .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-sVfMKoiVKq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sVfMKoiVKq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sVfMKoiVKq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sVfMKoiVKq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sVfMKoiVKq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sVfMKoiVKq .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sVfMKoiVKq .navbar.navbar-short {
  min-height: 60px;
}
.cid-sVfMKoiVKq .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sVfMKoiVKq .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sVfMKoiVKq .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-sVfMKoiVKq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sVfMKoiVKq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sVfMKoiVKq .dropdown-item.active,
.cid-sVfMKoiVKq .dropdown-item:active {
  background-color: transparent;
}
.cid-sVfMKoiVKq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sVfMKoiVKq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sVfMKoiVKq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sVfMKoiVKq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1b5487;
}
.cid-sVfMKoiVKq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sVfMKoiVKq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sVfMKoiVKq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sVfMKoiVKq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sVfMKoiVKq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sVfMKoiVKq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sVfMKoiVKq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sVfMKoiVKq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sVfMKoiVKq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sVfMKoiVKq .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sVfMKoiVKq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sVfMKoiVKq .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-sVfMKoiVKq .navbar {
    height: 70px;
  }
  .cid-sVfMKoiVKq .navbar.opened {
    height: auto;
  }
  .cid-sVfMKoiVKq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sSlhFAykti {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/stars4-1388x664.jpg");
}
.cid-sSlhFAykti .row {
  flex-direction: row-reverse;
}
.cid-sSlhFAykti .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sSlhFAykti .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sSlhFAykti .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-sSlhFAykti .mbr-section-title {
  color: #6f6d6d;
  text-align: center;
}
.cid-sSlhFAykti .mbr-text,
.cid-sSlhFAykti .mbr-section-btn {
  text-align: center;
}
.cid-sSlhO2K3SX {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sSlhGIZZnt {
  padding-top: 45px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/stars4-1388x664.jpg");
}
.cid-sSlhGIZZnt .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-sSlhGIZZnt H4 {
  color: #1b5487;
}
.cid-sSqxcue9Wy {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-sSqxcue9Wy .mbr-text {
  text-align: center;
}
.cid-sRGvprHWdv {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #1b5487;
  overflow: hidden;
}
.cid-sVfMKoiVKq {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sVfMKoiVKq nav.navbar {
  position: fixed;
}
.cid-sVfMKoiVKq .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-sVfMKoiVKq .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sVfMKoiVKq .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sVfMKoiVKq .dropdown-item:hover,
.cid-sVfMKoiVKq .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sVfMKoiVKq .dropdown-item:hover span {
  color: white;
}
.cid-sVfMKoiVKq .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sVfMKoiVKq .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sVfMKoiVKq .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sVfMKoiVKq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sVfMKoiVKq .nav-link {
  position: relative;
}
.cid-sVfMKoiVKq .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-sVfMKoiVKq .container {
    flex-wrap: nowrap;
  }
}
.cid-sVfMKoiVKq .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sVfMKoiVKq .dropdown-menu,
.cid-sVfMKoiVKq .navbar.opened {
  background: #1b5487 !important;
}
.cid-sVfMKoiVKq .nav-item:focus,
.cid-sVfMKoiVKq .nav-link:focus {
  outline: none;
}
.cid-sVfMKoiVKq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sVfMKoiVKq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sVfMKoiVKq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sVfMKoiVKq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sVfMKoiVKq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sVfMKoiVKq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sVfMKoiVKq .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: #1b5487;
}
.cid-sVfMKoiVKq .navbar.opened {
  transition: all 0.3s;
}
.cid-sVfMKoiVKq .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sVfMKoiVKq .navbar .navbar-logo img {
  width: auto;
}
.cid-sVfMKoiVKq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sVfMKoiVKq .navbar.collapsed {
  justify-content: center;
}
.cid-sVfMKoiVKq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sVfMKoiVKq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sVfMKoiVKq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sVfMKoiVKq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sVfMKoiVKq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sVfMKoiVKq .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-sVfMKoiVKq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sVfMKoiVKq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sVfMKoiVKq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sVfMKoiVKq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sVfMKoiVKq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sVfMKoiVKq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sVfMKoiVKq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sVfMKoiVKq .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-sVfMKoiVKq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sVfMKoiVKq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sVfMKoiVKq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sVfMKoiVKq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sVfMKoiVKq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sVfMKoiVKq .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sVfMKoiVKq .navbar.navbar-short {
  min-height: 60px;
}
.cid-sVfMKoiVKq .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sVfMKoiVKq .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sVfMKoiVKq .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-sVfMKoiVKq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sVfMKoiVKq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sVfMKoiVKq .dropdown-item.active,
.cid-sVfMKoiVKq .dropdown-item:active {
  background-color: transparent;
}
.cid-sVfMKoiVKq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sVfMKoiVKq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sVfMKoiVKq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sVfMKoiVKq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1b5487;
}
.cid-sVfMKoiVKq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sVfMKoiVKq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sVfMKoiVKq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sVfMKoiVKq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sVfMKoiVKq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sVfMKoiVKq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sVfMKoiVKq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sVfMKoiVKq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sVfMKoiVKq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sVfMKoiVKq .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sVfMKoiVKq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sVfMKoiVKq .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-sVfMKoiVKq .navbar {
    height: 70px;
  }
  .cid-sVfMKoiVKq .navbar.opened {
    height: auto;
  }
  .cid-sVfMKoiVKq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sSlkKi0t0S {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/stars4-1388x664.jpg");
}
.cid-sSlkKi0t0S .row {
  flex-direction: row-reverse;
}
.cid-sSlkKi0t0S .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sSlkKi0t0S .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sSlkKi0t0S .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-sSlkKi0t0S .mbr-section-title {
  color: #6f6d6d;
  text-align: center;
}
.cid-sSlkKi0t0S .mbr-text,
.cid-sSlkKi0t0S .mbr-section-btn {
  text-align: center;
}
.cid-sSllOukpMv {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sSlmmN1Aav {
  padding-top: 45px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/stars4-1388x664.jpg");
}
.cid-sSlmmN1Aav .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-sSlmmN1Aav H4 {
  color: #1b5487;
}
.cid-sSqxkCDMzZ {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-sSqxkCDMzZ .mbr-text {
  text-align: center;
}
.cid-sRGvprHWdv {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #1b5487;
  overflow: hidden;
}
.cid-sVfMKoiVKq {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sVfMKoiVKq nav.navbar {
  position: fixed;
}
.cid-sVfMKoiVKq .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-sVfMKoiVKq .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sVfMKoiVKq .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sVfMKoiVKq .dropdown-item:hover,
.cid-sVfMKoiVKq .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sVfMKoiVKq .dropdown-item:hover span {
  color: white;
}
.cid-sVfMKoiVKq .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sVfMKoiVKq .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sVfMKoiVKq .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sVfMKoiVKq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sVfMKoiVKq .nav-link {
  position: relative;
}
.cid-sVfMKoiVKq .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-sVfMKoiVKq .container {
    flex-wrap: nowrap;
  }
}
.cid-sVfMKoiVKq .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sVfMKoiVKq .dropdown-menu,
.cid-sVfMKoiVKq .navbar.opened {
  background: #1b5487 !important;
}
.cid-sVfMKoiVKq .nav-item:focus,
.cid-sVfMKoiVKq .nav-link:focus {
  outline: none;
}
.cid-sVfMKoiVKq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sVfMKoiVKq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sVfMKoiVKq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sVfMKoiVKq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sVfMKoiVKq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sVfMKoiVKq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sVfMKoiVKq .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: #1b5487;
}
.cid-sVfMKoiVKq .navbar.opened {
  transition: all 0.3s;
}
.cid-sVfMKoiVKq .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sVfMKoiVKq .navbar .navbar-logo img {
  width: auto;
}
.cid-sVfMKoiVKq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sVfMKoiVKq .navbar.collapsed {
  justify-content: center;
}
.cid-sVfMKoiVKq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sVfMKoiVKq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sVfMKoiVKq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sVfMKoiVKq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sVfMKoiVKq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sVfMKoiVKq .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-sVfMKoiVKq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sVfMKoiVKq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sVfMKoiVKq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sVfMKoiVKq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sVfMKoiVKq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sVfMKoiVKq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sVfMKoiVKq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sVfMKoiVKq .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-sVfMKoiVKq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sVfMKoiVKq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sVfMKoiVKq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sVfMKoiVKq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sVfMKoiVKq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sVfMKoiVKq .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sVfMKoiVKq .navbar.navbar-short {
  min-height: 60px;
}
.cid-sVfMKoiVKq .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sVfMKoiVKq .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sVfMKoiVKq .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-sVfMKoiVKq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sVfMKoiVKq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sVfMKoiVKq .dropdown-item.active,
.cid-sVfMKoiVKq .dropdown-item:active {
  background-color: transparent;
}
.cid-sVfMKoiVKq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sVfMKoiVKq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sVfMKoiVKq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sVfMKoiVKq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1b5487;
}
.cid-sVfMKoiVKq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sVfMKoiVKq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sVfMKoiVKq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sVfMKoiVKq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sVfMKoiVKq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sVfMKoiVKq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sVfMKoiVKq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sVfMKoiVKq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sVfMKoiVKq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sVfMKoiVKq .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sVfMKoiVKq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sVfMKoiVKq .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-sVfMKoiVKq .navbar {
    height: 70px;
  }
  .cid-sVfMKoiVKq .navbar.opened {
    height: auto;
  }
  .cid-sVfMKoiVKq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sSlnIPxNZn {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/stars4-1388x664.jpg");
}
.cid-sSlnIPxNZn .row {
  flex-direction: row-reverse;
}
.cid-sSlnIPxNZn .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sSlnIPxNZn .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sSlnIPxNZn .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-sSlnIPxNZn .mbr-section-title {
  color: #6f6d6d;
  text-align: center;
}
.cid-sSlnIPxNZn .mbr-text,
.cid-sSlnIPxNZn .mbr-section-btn {
  text-align: center;
}
.cid-sSlon6OXsI {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sSlp3tn9Oc {
  padding-top: 45px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/stars4-1388x664.jpg");
}
.cid-sSlp3tn9Oc .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-sSlp3tn9Oc H4 {
  color: #1b5487;
}
.cid-sSqxnz6cl5 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-sSqxnz6cl5 .mbr-text {
  text-align: center;
}
.cid-sRGvprHWdv {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #1b5487;
  overflow: hidden;
}
.cid-sVfMKoiVKq {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sVfMKoiVKq nav.navbar {
  position: fixed;
}
.cid-sVfMKoiVKq .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-sVfMKoiVKq .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sVfMKoiVKq .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sVfMKoiVKq .dropdown-item:hover,
.cid-sVfMKoiVKq .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sVfMKoiVKq .dropdown-item:hover span {
  color: white;
}
.cid-sVfMKoiVKq .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sVfMKoiVKq .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sVfMKoiVKq .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sVfMKoiVKq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sVfMKoiVKq .nav-link {
  position: relative;
}
.cid-sVfMKoiVKq .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-sVfMKoiVKq .container {
    flex-wrap: nowrap;
  }
}
.cid-sVfMKoiVKq .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sVfMKoiVKq .dropdown-menu,
.cid-sVfMKoiVKq .navbar.opened {
  background: #1b5487 !important;
}
.cid-sVfMKoiVKq .nav-item:focus,
.cid-sVfMKoiVKq .nav-link:focus {
  outline: none;
}
.cid-sVfMKoiVKq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sVfMKoiVKq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sVfMKoiVKq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sVfMKoiVKq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sVfMKoiVKq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sVfMKoiVKq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sVfMKoiVKq .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: #1b5487;
}
.cid-sVfMKoiVKq .navbar.opened {
  transition: all 0.3s;
}
.cid-sVfMKoiVKq .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sVfMKoiVKq .navbar .navbar-logo img {
  width: auto;
}
.cid-sVfMKoiVKq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sVfMKoiVKq .navbar.collapsed {
  justify-content: center;
}
.cid-sVfMKoiVKq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sVfMKoiVKq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sVfMKoiVKq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sVfMKoiVKq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sVfMKoiVKq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sVfMKoiVKq .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-sVfMKoiVKq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sVfMKoiVKq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sVfMKoiVKq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sVfMKoiVKq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sVfMKoiVKq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sVfMKoiVKq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sVfMKoiVKq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sVfMKoiVKq .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-sVfMKoiVKq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sVfMKoiVKq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sVfMKoiVKq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sVfMKoiVKq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sVfMKoiVKq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sVfMKoiVKq .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sVfMKoiVKq .navbar.navbar-short {
  min-height: 60px;
}
.cid-sVfMKoiVKq .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sVfMKoiVKq .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sVfMKoiVKq .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-sVfMKoiVKq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sVfMKoiVKq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sVfMKoiVKq .dropdown-item.active,
.cid-sVfMKoiVKq .dropdown-item:active {
  background-color: transparent;
}
.cid-sVfMKoiVKq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sVfMKoiVKq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sVfMKoiVKq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sVfMKoiVKq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1b5487;
}
.cid-sVfMKoiVKq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sVfMKoiVKq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sVfMKoiVKq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sVfMKoiVKq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sVfMKoiVKq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sVfMKoiVKq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sVfMKoiVKq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sVfMKoiVKq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sVfMKoiVKq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sVfMKoiVKq .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sVfMKoiVKq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sVfMKoiVKq .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-sVfMKoiVKq .navbar {
    height: 70px;
  }
  .cid-sVfMKoiVKq .navbar.opened {
    height: auto;
  }
  .cid-sVfMKoiVKq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sSlqE77cQ7 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/stars4-1388x664.jpg");
}
.cid-sSlqE77cQ7 .row {
  flex-direction: row-reverse;
}
.cid-sSlqE77cQ7 .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sSlqE77cQ7 .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sSlqE77cQ7 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-sSlqE77cQ7 .mbr-section-title {
  color: #6f6d6d;
  text-align: center;
}
.cid-sSlqE77cQ7 .mbr-text,
.cid-sSlqE77cQ7 .mbr-section-btn {
  text-align: center;
}
.cid-sSlt0v6tEC {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/stars-1359x1030.jpg");
}
.cid-sSlt0v6tEC img,
.cid-sSlt0v6tEC .item-img {
  width: 100%;
}
.cid-sSlt0v6tEC .item:focus,
.cid-sSlt0v6tEC span:focus {
  outline: none;
}
.cid-sSlt0v6tEC .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sSlt0v6tEC .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-sSlt0v6tEC .item {
  padding: 0;
  margin: 0;
}
.cid-sSlt0v6tEC .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sSlt0v6tEC .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sSlt0v6tEC .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-sSlt0v6tEC .item-wrapper {
  background: transparent;
}
.cid-sSlt0v6tEC .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sSlt0v6tEC .mbr-section-title {
  color: #232323;
}
.cid-sSlt0v6tEC .mbr-text,
.cid-sSlt0v6tEC .mbr-section-btn {
  text-align: left;
}
.cid-sSlt0v6tEC .item-title {
  text-align: left;
}
.cid-sSlt0v6tEC .item-subtitle {
  text-align: center;
}
.cid-sSmcbTITmf {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/stars2-1359x784.jpg");
}
.cid-sSmcbTITmf img,
.cid-sSmcbTITmf .item-img {
  width: 100%;
}
.cid-sSmcbTITmf .item:focus,
.cid-sSmcbTITmf span:focus {
  outline: none;
}
.cid-sSmcbTITmf .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sSmcbTITmf .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-sSmcbTITmf .item {
  padding: 0;
  margin: 0;
}
.cid-sSmcbTITmf .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sSmcbTITmf .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sSmcbTITmf .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-sSmcbTITmf .item-wrapper {
  background: transparent;
}
.cid-sSmcbTITmf .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sSmcbTITmf .mbr-section-title {
  color: #232323;
}
.cid-sSmcbTITmf .mbr-text,
.cid-sSmcbTITmf .mbr-section-btn {
  text-align: left;
}
.cid-sSmcbTITmf .item-title {
  text-align: left;
}
.cid-sSmcbTITmf .item-subtitle {
  text-align: center;
}
.cid-sSmdVc7r8Z {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/stars2-1359x784.jpg");
}
.cid-sSmdVc7r8Z img,
.cid-sSmdVc7r8Z .item-img {
  width: 100%;
}
.cid-sSmdVc7r8Z .item:focus,
.cid-sSmdVc7r8Z span:focus {
  outline: none;
}
.cid-sSmdVc7r8Z .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sSmdVc7r8Z .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-sSmdVc7r8Z .item {
  padding: 0;
  margin: 0;
}
.cid-sSmdVc7r8Z .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sSmdVc7r8Z .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sSmdVc7r8Z .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-sSmdVc7r8Z .item-wrapper {
  background: transparent;
}
.cid-sSmdVc7r8Z .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sSmdVc7r8Z .mbr-section-title {
  color: #232323;
}
.cid-sSmdVc7r8Z .mbr-text,
.cid-sSmdVc7r8Z .mbr-section-btn {
  text-align: left;
}
.cid-sSmdVc7r8Z .item-title {
  text-align: left;
}
.cid-sSmdVc7r8Z .item-subtitle {
  text-align: center;
}
.cid-sSmfdojMLT {
  padding-top: 45px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/stars4-1388x664.jpg");
}
.cid-sSmfdojMLT .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-sSmfdojMLT H4 {
  color: #1b5487;
}
.cid-sSqxrc3ZkS {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-sSqxrc3ZkS .mbr-text {
  text-align: center;
}
.cid-sRGvprHWdv {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #1b5487;
  overflow: hidden;
}
.cid-sVfMKoiVKq {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sVfMKoiVKq nav.navbar {
  position: fixed;
}
.cid-sVfMKoiVKq .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-sVfMKoiVKq .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sVfMKoiVKq .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sVfMKoiVKq .dropdown-item:hover,
.cid-sVfMKoiVKq .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sVfMKoiVKq .dropdown-item:hover span {
  color: white;
}
.cid-sVfMKoiVKq .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sVfMKoiVKq .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sVfMKoiVKq .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sVfMKoiVKq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sVfMKoiVKq .nav-link {
  position: relative;
}
.cid-sVfMKoiVKq .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-sVfMKoiVKq .container {
    flex-wrap: nowrap;
  }
}
.cid-sVfMKoiVKq .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sVfMKoiVKq .dropdown-menu,
.cid-sVfMKoiVKq .navbar.opened {
  background: #1b5487 !important;
}
.cid-sVfMKoiVKq .nav-item:focus,
.cid-sVfMKoiVKq .nav-link:focus {
  outline: none;
}
.cid-sVfMKoiVKq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sVfMKoiVKq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sVfMKoiVKq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sVfMKoiVKq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sVfMKoiVKq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sVfMKoiVKq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sVfMKoiVKq .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: #1b5487;
}
.cid-sVfMKoiVKq .navbar.opened {
  transition: all 0.3s;
}
.cid-sVfMKoiVKq .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sVfMKoiVKq .navbar .navbar-logo img {
  width: auto;
}
.cid-sVfMKoiVKq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sVfMKoiVKq .navbar.collapsed {
  justify-content: center;
}
.cid-sVfMKoiVKq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sVfMKoiVKq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sVfMKoiVKq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sVfMKoiVKq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sVfMKoiVKq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sVfMKoiVKq .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-sVfMKoiVKq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sVfMKoiVKq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sVfMKoiVKq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sVfMKoiVKq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sVfMKoiVKq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sVfMKoiVKq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sVfMKoiVKq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sVfMKoiVKq .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-sVfMKoiVKq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sVfMKoiVKq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sVfMKoiVKq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sVfMKoiVKq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sVfMKoiVKq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sVfMKoiVKq .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sVfMKoiVKq .navbar.navbar-short {
  min-height: 60px;
}
.cid-sVfMKoiVKq .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sVfMKoiVKq .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sVfMKoiVKq .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-sVfMKoiVKq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sVfMKoiVKq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sVfMKoiVKq .dropdown-item.active,
.cid-sVfMKoiVKq .dropdown-item:active {
  background-color: transparent;
}
.cid-sVfMKoiVKq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sVfMKoiVKq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sVfMKoiVKq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sVfMKoiVKq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1b5487;
}
.cid-sVfMKoiVKq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sVfMKoiVKq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sVfMKoiVKq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sVfMKoiVKq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sVfMKoiVKq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sVfMKoiVKq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sVfMKoiVKq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sVfMKoiVKq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sVfMKoiVKq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sVfMKoiVKq .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sVfMKoiVKq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sVfMKoiVKq .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-sVfMKoiVKq .navbar {
    height: 70px;
  }
  .cid-sVfMKoiVKq .navbar.opened {
    height: auto;
  }
  .cid-sVfMKoiVKq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sSmifbrt2L {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/stars4-1388x664.jpg");
}
.cid-sSmifbrt2L .row {
  flex-direction: row-reverse;
}
.cid-sSmifbrt2L .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sSmifbrt2L .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sSmifbrt2L .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-sSmifbrt2L .mbr-section-title {
  color: #6f6d6d;
  text-align: center;
}
.cid-sSmifbrt2L .mbr-text,
.cid-sSmifbrt2L .mbr-section-btn {
  text-align: center;
}
.cid-sSmjsKfoUn {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sSmjsKfoUn .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-sSmjsKfoUn H4 {
  color: #1b5487;
}
.cid-sSqxuZifUi {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-sSqxuZifUi .mbr-text {
  text-align: center;
}
.cid-sRGvprHWdv {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #1b5487;
  overflow: hidden;
}
.cid-sVfMKoiVKq {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sVfMKoiVKq nav.navbar {
  position: fixed;
}
.cid-sVfMKoiVKq .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-sVfMKoiVKq .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sVfMKoiVKq .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sVfMKoiVKq .dropdown-item:hover,
.cid-sVfMKoiVKq .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sVfMKoiVKq .dropdown-item:hover span {
  color: white;
}
.cid-sVfMKoiVKq .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sVfMKoiVKq .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sVfMKoiVKq .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sVfMKoiVKq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sVfMKoiVKq .nav-link {
  position: relative;
}
.cid-sVfMKoiVKq .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-sVfMKoiVKq .container {
    flex-wrap: nowrap;
  }
}
.cid-sVfMKoiVKq .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sVfMKoiVKq .dropdown-menu,
.cid-sVfMKoiVKq .navbar.opened {
  background: #1b5487 !important;
}
.cid-sVfMKoiVKq .nav-item:focus,
.cid-sVfMKoiVKq .nav-link:focus {
  outline: none;
}
.cid-sVfMKoiVKq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sVfMKoiVKq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sVfMKoiVKq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sVfMKoiVKq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sVfMKoiVKq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sVfMKoiVKq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sVfMKoiVKq .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: #1b5487;
}
.cid-sVfMKoiVKq .navbar.opened {
  transition: all 0.3s;
}
.cid-sVfMKoiVKq .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sVfMKoiVKq .navbar .navbar-logo img {
  width: auto;
}
.cid-sVfMKoiVKq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sVfMKoiVKq .navbar.collapsed {
  justify-content: center;
}
.cid-sVfMKoiVKq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sVfMKoiVKq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sVfMKoiVKq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sVfMKoiVKq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sVfMKoiVKq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sVfMKoiVKq .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-sVfMKoiVKq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sVfMKoiVKq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sVfMKoiVKq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sVfMKoiVKq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sVfMKoiVKq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sVfMKoiVKq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sVfMKoiVKq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sVfMKoiVKq .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-sVfMKoiVKq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sVfMKoiVKq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sVfMKoiVKq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sVfMKoiVKq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sVfMKoiVKq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sVfMKoiVKq .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sVfMKoiVKq .navbar.navbar-short {
  min-height: 60px;
}
.cid-sVfMKoiVKq .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sVfMKoiVKq .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sVfMKoiVKq .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-sVfMKoiVKq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sVfMKoiVKq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sVfMKoiVKq .dropdown-item.active,
.cid-sVfMKoiVKq .dropdown-item:active {
  background-color: transparent;
}
.cid-sVfMKoiVKq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sVfMKoiVKq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sVfMKoiVKq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sVfMKoiVKq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1b5487;
}
.cid-sVfMKoiVKq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sVfMKoiVKq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sVfMKoiVKq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sVfMKoiVKq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sVfMKoiVKq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sVfMKoiVKq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sVfMKoiVKq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sVfMKoiVKq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sVfMKoiVKq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sVfMKoiVKq .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sVfMKoiVKq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sVfMKoiVKq .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-sVfMKoiVKq .navbar {
    height: 70px;
  }
  .cid-sVfMKoiVKq .navbar.opened {
    height: auto;
  }
  .cid-sVfMKoiVKq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sSmn0KQ8If {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/stars4-1388x664.jpg");
}
.cid-sSmn0KQ8If .row {
  flex-direction: row-reverse;
}
.cid-sSmn0KQ8If .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sSmn0KQ8If .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sSmn0KQ8If .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-sSmn0KQ8If .mbr-section-title {
  color: #6f6d6d;
  text-align: center;
}
.cid-sSmn0KQ8If .mbr-text,
.cid-sSmn0KQ8If .mbr-section-btn {
  text-align: center;
}
.cid-sSmnWxze9p {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sSmnYXj4wd {
  padding-top: 45px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/stars4-1388x664.jpg");
}
.cid-sSmnYXj4wd .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-sSmnYXj4wd H4 {
  color: #1b5487;
}
.cid-sSqxCaiKMJ {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-sSqxCaiKMJ .mbr-text {
  text-align: center;
}
.cid-sQRdu5Cwvm {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #1b5487;
  overflow: hidden;
}
.cid-sVfMKoiVKq {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sVfMKoiVKq nav.navbar {
  position: fixed;
}
.cid-sVfMKoiVKq .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-sVfMKoiVKq .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sVfMKoiVKq .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sVfMKoiVKq .dropdown-item:hover,
.cid-sVfMKoiVKq .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sVfMKoiVKq .dropdown-item:hover span {
  color: white;
}
.cid-sVfMKoiVKq .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sVfMKoiVKq .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sVfMKoiVKq .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sVfMKoiVKq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sVfMKoiVKq .nav-link {
  position: relative;
}
.cid-sVfMKoiVKq .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-sVfMKoiVKq .container {
    flex-wrap: nowrap;
  }
}
.cid-sVfMKoiVKq .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sVfMKoiVKq .dropdown-menu,
.cid-sVfMKoiVKq .navbar.opened {
  background: #1b5487 !important;
}
.cid-sVfMKoiVKq .nav-item:focus,
.cid-sVfMKoiVKq .nav-link:focus {
  outline: none;
}
.cid-sVfMKoiVKq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sVfMKoiVKq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sVfMKoiVKq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sVfMKoiVKq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sVfMKoiVKq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sVfMKoiVKq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sVfMKoiVKq .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: #1b5487;
}
.cid-sVfMKoiVKq .navbar.opened {
  transition: all 0.3s;
}
.cid-sVfMKoiVKq .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sVfMKoiVKq .navbar .navbar-logo img {
  width: auto;
}
.cid-sVfMKoiVKq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sVfMKoiVKq .navbar.collapsed {
  justify-content: center;
}
.cid-sVfMKoiVKq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sVfMKoiVKq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sVfMKoiVKq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sVfMKoiVKq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sVfMKoiVKq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sVfMKoiVKq .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-sVfMKoiVKq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sVfMKoiVKq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sVfMKoiVKq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sVfMKoiVKq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sVfMKoiVKq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sVfMKoiVKq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sVfMKoiVKq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sVfMKoiVKq .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-sVfMKoiVKq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sVfMKoiVKq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sVfMKoiVKq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sVfMKoiVKq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sVfMKoiVKq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sVfMKoiVKq .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sVfMKoiVKq .navbar.navbar-short {
  min-height: 60px;
}
.cid-sVfMKoiVKq .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sVfMKoiVKq .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sVfMKoiVKq .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-sVfMKoiVKq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sVfMKoiVKq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sVfMKoiVKq .dropdown-item.active,
.cid-sVfMKoiVKq .dropdown-item:active {
  background-color: transparent;
}
.cid-sVfMKoiVKq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sVfMKoiVKq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sVfMKoiVKq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sVfMKoiVKq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1b5487;
}
.cid-sVfMKoiVKq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sVfMKoiVKq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sVfMKoiVKq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sVfMKoiVKq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sVfMKoiVKq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sVfMKoiVKq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sVfMKoiVKq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sVfMKoiVKq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sVfMKoiVKq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sVfMKoiVKq .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sVfMKoiVKq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sVfMKoiVKq .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-sVfMKoiVKq .navbar {
    height: 70px;
  }
  .cid-sVfMKoiVKq .navbar.opened {
    height: auto;
  }
  .cid-sVfMKoiVKq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sSmvw6QLl5 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/stars4-1388x664.jpg");
}
.cid-sSmvw6QLl5 .row {
  flex-direction: row-reverse;
}
.cid-sSmvw6QLl5 .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sSmvw6QLl5 .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sSmvw6QLl5 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-sSmvw6QLl5 .mbr-section-title {
  color: #6f6d6d;
  text-align: center;
}
.cid-sSmvw6QLl5 .mbr-text,
.cid-sSmvw6QLl5 .mbr-section-btn {
  text-align: center;
}
.cid-sSmvSDNgFU {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #2b7ec7;
}
.cid-sSmvSDNgFU .mbr-text {
  color: #ffffff;
}
.cid-sSmwdMP0H2 {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sSqxKCjhEH {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-sSqxKCjhEH .mbr-text {
  text-align: center;
}
.cid-sSmvVXt5sf {
  padding-top: 45px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/stars4-1388x664.jpg");
}
.cid-sSmvVXt5sf .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-sSmvVXt5sf H4 {
  color: #1b5487;
}
.cid-sQRdu5Cwvm {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #1b5487;
  overflow: hidden;
}
.cid-sVfMKoiVKq {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sVfMKoiVKq nav.navbar {
  position: fixed;
}
.cid-sVfMKoiVKq .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-sVfMKoiVKq .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sVfMKoiVKq .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sVfMKoiVKq .dropdown-item:hover,
.cid-sVfMKoiVKq .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sVfMKoiVKq .dropdown-item:hover span {
  color: white;
}
.cid-sVfMKoiVKq .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sVfMKoiVKq .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sVfMKoiVKq .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sVfMKoiVKq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sVfMKoiVKq .nav-link {
  position: relative;
}
.cid-sVfMKoiVKq .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-sVfMKoiVKq .container {
    flex-wrap: nowrap;
  }
}
.cid-sVfMKoiVKq .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sVfMKoiVKq .dropdown-menu,
.cid-sVfMKoiVKq .navbar.opened {
  background: #1b5487 !important;
}
.cid-sVfMKoiVKq .nav-item:focus,
.cid-sVfMKoiVKq .nav-link:focus {
  outline: none;
}
.cid-sVfMKoiVKq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sVfMKoiVKq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sVfMKoiVKq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sVfMKoiVKq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sVfMKoiVKq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sVfMKoiVKq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sVfMKoiVKq .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: #1b5487;
}
.cid-sVfMKoiVKq .navbar.opened {
  transition: all 0.3s;
}
.cid-sVfMKoiVKq .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sVfMKoiVKq .navbar .navbar-logo img {
  width: auto;
}
.cid-sVfMKoiVKq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sVfMKoiVKq .navbar.collapsed {
  justify-content: center;
}
.cid-sVfMKoiVKq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sVfMKoiVKq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sVfMKoiVKq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sVfMKoiVKq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sVfMKoiVKq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sVfMKoiVKq .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-sVfMKoiVKq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sVfMKoiVKq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sVfMKoiVKq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sVfMKoiVKq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sVfMKoiVKq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sVfMKoiVKq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sVfMKoiVKq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sVfMKoiVKq .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-sVfMKoiVKq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sVfMKoiVKq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sVfMKoiVKq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sVfMKoiVKq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sVfMKoiVKq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sVfMKoiVKq .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sVfMKoiVKq .navbar.navbar-short {
  min-height: 60px;
}
.cid-sVfMKoiVKq .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sVfMKoiVKq .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sVfMKoiVKq .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-sVfMKoiVKq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sVfMKoiVKq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sVfMKoiVKq .dropdown-item.active,
.cid-sVfMKoiVKq .dropdown-item:active {
  background-color: transparent;
}
.cid-sVfMKoiVKq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sVfMKoiVKq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sVfMKoiVKq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sVfMKoiVKq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1b5487;
}
.cid-sVfMKoiVKq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sVfMKoiVKq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sVfMKoiVKq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sVfMKoiVKq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sVfMKoiVKq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sVfMKoiVKq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sVfMKoiVKq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sVfMKoiVKq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sVfMKoiVKq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sVfMKoiVKq .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sVfMKoiVKq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sVfMKoiVKq .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-sVfMKoiVKq .navbar {
    height: 70px;
  }
  .cid-sVfMKoiVKq .navbar.opened {
    height: auto;
  }
  .cid-sVfMKoiVKq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sSmAUbe7lO {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/stars4-1388x664.jpg");
}
.cid-sSmAUbe7lO .row {
  flex-direction: row-reverse;
}
.cid-sSmAUbe7lO .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sSmAUbe7lO .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sSmAUbe7lO .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-sSmAUbe7lO .mbr-section-title {
  color: #6f6d6d;
  text-align: center;
}
.cid-sSmAUbe7lO .mbr-text,
.cid-sSmAUbe7lO .mbr-section-btn {
  text-align: center;
}
.cid-sSmAWmZuyM {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #2b7ec7;
}
.cid-sSmAWmZuyM .mbr-text {
  color: #ffffff;
}
.cid-sSmBB2AT5Y {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sSqxPGpOC6 {
  padding-top: 45px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/stars4-1388x664.jpg");
}
.cid-sSqxPGpOC6 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-sSqxPGpOC6 H4 {
  color: #1b5487;
}
.cid-sSqxO9UAl3 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-sSqxO9UAl3 .mbr-text {
  text-align: center;
}
.cid-sQRdu5Cwvm {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #1b5487;
  overflow: hidden;
}
.cid-sVfMKoiVKq {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sVfMKoiVKq nav.navbar {
  position: fixed;
}
.cid-sVfMKoiVKq .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-sVfMKoiVKq .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sVfMKoiVKq .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sVfMKoiVKq .dropdown-item:hover,
.cid-sVfMKoiVKq .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sVfMKoiVKq .dropdown-item:hover span {
  color: white;
}
.cid-sVfMKoiVKq .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sVfMKoiVKq .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sVfMKoiVKq .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sVfMKoiVKq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sVfMKoiVKq .nav-link {
  position: relative;
}
.cid-sVfMKoiVKq .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-sVfMKoiVKq .container {
    flex-wrap: nowrap;
  }
}
.cid-sVfMKoiVKq .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sVfMKoiVKq .dropdown-menu,
.cid-sVfMKoiVKq .navbar.opened {
  background: #1b5487 !important;
}
.cid-sVfMKoiVKq .nav-item:focus,
.cid-sVfMKoiVKq .nav-link:focus {
  outline: none;
}
.cid-sVfMKoiVKq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sVfMKoiVKq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sVfMKoiVKq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sVfMKoiVKq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sVfMKoiVKq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sVfMKoiVKq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sVfMKoiVKq .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: #1b5487;
}
.cid-sVfMKoiVKq .navbar.opened {
  transition: all 0.3s;
}
.cid-sVfMKoiVKq .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sVfMKoiVKq .navbar .navbar-logo img {
  width: auto;
}
.cid-sVfMKoiVKq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sVfMKoiVKq .navbar.collapsed {
  justify-content: center;
}
.cid-sVfMKoiVKq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sVfMKoiVKq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sVfMKoiVKq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sVfMKoiVKq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sVfMKoiVKq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sVfMKoiVKq .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-sVfMKoiVKq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sVfMKoiVKq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sVfMKoiVKq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sVfMKoiVKq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sVfMKoiVKq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sVfMKoiVKq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sVfMKoiVKq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sVfMKoiVKq .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-sVfMKoiVKq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sVfMKoiVKq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sVfMKoiVKq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sVfMKoiVKq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sVfMKoiVKq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sVfMKoiVKq .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sVfMKoiVKq .navbar.navbar-short {
  min-height: 60px;
}
.cid-sVfMKoiVKq .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sVfMKoiVKq .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sVfMKoiVKq .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-sVfMKoiVKq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sVfMKoiVKq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sVfMKoiVKq .dropdown-item.active,
.cid-sVfMKoiVKq .dropdown-item:active {
  background-color: transparent;
}
.cid-sVfMKoiVKq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sVfMKoiVKq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sVfMKoiVKq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sVfMKoiVKq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1b5487;
}
.cid-sVfMKoiVKq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sVfMKoiVKq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sVfMKoiVKq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sVfMKoiVKq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sVfMKoiVKq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sVfMKoiVKq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sVfMKoiVKq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sVfMKoiVKq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sVfMKoiVKq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sVfMKoiVKq .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sVfMKoiVKq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sVfMKoiVKq .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-sVfMKoiVKq .navbar {
    height: 70px;
  }
  .cid-sVfMKoiVKq .navbar.opened {
    height: auto;
  }
  .cid-sVfMKoiVKq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sSmpmXBy8B {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/stars4-1388x664.jpg");
}
.cid-sSmpmXBy8B .row {
  flex-direction: row-reverse;
}
.cid-sSmpmXBy8B .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sSmpmXBy8B .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sSmpmXBy8B .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-sSmpmXBy8B .mbr-section-title {
  color: #6f6d6d;
  text-align: center;
}
.cid-sSmpmXBy8B .mbr-text,
.cid-sSmpmXBy8B .mbr-section-btn {
  text-align: center;
}
.cid-sSmreanoHS {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #6f6d6d;
}
.cid-sSmreanoHS img,
.cid-sSmreanoHS .item-img {
  width: 100%;
}
.cid-sSmreanoHS .item:focus,
.cid-sSmreanoHS span:focus {
  outline: none;
}
.cid-sSmreanoHS .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sSmreanoHS .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sSmreanoHS .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sSmreanoHS .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-sSmreanoHS .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sSmreanoHS .mbr-section-title {
  color: #232323;
}
.cid-sSmreanoHS .mbr-text,
.cid-sSmreanoHS .mbr-section-btn {
  text-align: left;
}
.cid-sSmreanoHS .item-title {
  text-align: left;
}
.cid-sSmreanoHS .item-subtitle {
  text-align: left;
}
.cid-sSmq7NgVK4 {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sSmuDqCAyB {
  padding-top: 45px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/stars4-1388x664.jpg");
}
.cid-sSmuDqCAyB .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-sSmuDqCAyB H4 {
  color: #1b5487;
}
.cid-sSqxHsFAE0 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-sSqxHsFAE0 .mbr-text {
  text-align: center;
}
.cid-sQRdu5Cwvm {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #1b5487;
  overflow: hidden;
}
.cid-sVfMKoiVKq {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sVfMKoiVKq nav.navbar {
  position: fixed;
}
.cid-sVfMKoiVKq .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-sVfMKoiVKq .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sVfMKoiVKq .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sVfMKoiVKq .dropdown-item:hover,
.cid-sVfMKoiVKq .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sVfMKoiVKq .dropdown-item:hover span {
  color: white;
}
.cid-sVfMKoiVKq .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sVfMKoiVKq .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sVfMKoiVKq .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sVfMKoiVKq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sVfMKoiVKq .nav-link {
  position: relative;
}
.cid-sVfMKoiVKq .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-sVfMKoiVKq .container {
    flex-wrap: nowrap;
  }
}
.cid-sVfMKoiVKq .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sVfMKoiVKq .dropdown-menu,
.cid-sVfMKoiVKq .navbar.opened {
  background: #1b5487 !important;
}
.cid-sVfMKoiVKq .nav-item:focus,
.cid-sVfMKoiVKq .nav-link:focus {
  outline: none;
}
.cid-sVfMKoiVKq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sVfMKoiVKq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sVfMKoiVKq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sVfMKoiVKq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sVfMKoiVKq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sVfMKoiVKq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sVfMKoiVKq .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: #1b5487;
}
.cid-sVfMKoiVKq .navbar.opened {
  transition: all 0.3s;
}
.cid-sVfMKoiVKq .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sVfMKoiVKq .navbar .navbar-logo img {
  width: auto;
}
.cid-sVfMKoiVKq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sVfMKoiVKq .navbar.collapsed {
  justify-content: center;
}
.cid-sVfMKoiVKq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sVfMKoiVKq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sVfMKoiVKq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sVfMKoiVKq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sVfMKoiVKq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sVfMKoiVKq .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-sVfMKoiVKq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sVfMKoiVKq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sVfMKoiVKq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sVfMKoiVKq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sVfMKoiVKq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sVfMKoiVKq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sVfMKoiVKq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sVfMKoiVKq .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-sVfMKoiVKq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sVfMKoiVKq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sVfMKoiVKq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sVfMKoiVKq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sVfMKoiVKq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sVfMKoiVKq .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sVfMKoiVKq .navbar.navbar-short {
  min-height: 60px;
}
.cid-sVfMKoiVKq .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sVfMKoiVKq .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sVfMKoiVKq .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-sVfMKoiVKq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sVfMKoiVKq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sVfMKoiVKq .dropdown-item.active,
.cid-sVfMKoiVKq .dropdown-item:active {
  background-color: transparent;
}
.cid-sVfMKoiVKq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sVfMKoiVKq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sVfMKoiVKq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sVfMKoiVKq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1b5487;
}
.cid-sVfMKoiVKq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sVfMKoiVKq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sVfMKoiVKq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sVfMKoiVKq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sVfMKoiVKq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sVfMKoiVKq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sVfMKoiVKq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sVfMKoiVKq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sVfMKoiVKq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sVfMKoiVKq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sVfMKoiVKq .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sVfMKoiVKq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sVfMKoiVKq .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-sVfMKoiVKq .navbar {
    height: 70px;
  }
  .cid-sVfMKoiVKq .navbar.opened {
    height: auto;
  }
  .cid-sVfMKoiVKq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sSmDuIR04y {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/stars4-1388x664.jpg");
}
.cid-sSmDuIR04y .row {
  flex-direction: row-reverse;
}
.cid-sSmDuIR04y .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sSmDuIR04y .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sSmDuIR04y .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-sSmDuIR04y .mbr-section-title {
  color: #6f6d6d;
  text-align: center;
}
.cid-sSmDuIR04y .mbr-text,
.cid-sSmDuIR04y .mbr-section-btn {
  text-align: center;
}
.cid-sSmGU5LWKX {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/stars-1359x1030.jpg");
}
.cid-sSmGU5LWKX .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sSmGU5LWKX .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sSmGU5LWKX .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-sSmGU5LWKX .mbr-section-title {
  color: #6f6d6d;
  text-align: center;
}
.cid-sSmGU5LWKX .mbr-text,
.cid-sSmGU5LWKX .mbr-section-btn {
  text-align: center;
}
.cid-sSmHXNv9wy {
  padding-top: 75px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/stars4-1388x664.jpg");
}
.cid-sSmHXNv9wy .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-sSmHXNv9wy H4 {
  color: #1b5487;
}
.cid-sSqxSMZIIr {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-sSqxSMZIIr .mbr-text {
  text-align: center;
}
.cid-sQRdu5Cwvm {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #1b5487;
  overflow: hidden;
}
