@import url(https://fonts.googleapis.com/css?family=Titillium+Web:400,300,700);
@import url(https://fonts.googleapis.com/css?family=Raleway:400,300,700);
.btn {
  border-width: 2px;
}
body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Roboto', sans-serif;
  font-size: 3.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 4.5rem;
}
.display-2 {
  font-family: 'Roboto', sans-serif;
  font-size: 2.6rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.25rem;
}
.display-4 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.5rem;
}
.display-5 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.8rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.25rem;
}
.display-7 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.75rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 2.88rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.52rem;
    font-size: calc( 1.91rem + (3.6 - 1.91) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.91rem + (3.6 - 1.91) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.08rem;
    font-size: calc( 1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.44rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #149dcc !important;
}
.bg-success {
  background-color: #07761a !important;
}
.bg-info {
  background-color: #82786e !important;
}
.bg-warning {
  background-color: #879a9f !important;
}
.bg-danger {
  background-color: #091a81 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #149dcc !important;
  border-color: #149dcc !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: #0c607d !important;
  border-color: #0c607d !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #0c607d !important;
  border-color: #0c607d !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff3366 !important;
  border-color: #ff3366 !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: #db0037 !important;
  border-color: #db0037 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #db0037 !important;
  border-color: #db0037 !important;
}
.btn-info,
.btn-info:active {
  background-color: #82786e !important;
  border-color: #82786e !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: #534d46 !important;
  border-color: #534d46 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #534d46 !important;
  border-color: #534d46 !important;
}
.btn-success,
.btn-success:active {
  background-color: #07761a !important;
  border-color: #07761a !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: #022408 !important;
  border-color: #022408 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #022408 !important;
  border-color: #022408 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #879a9f !important;
  border-color: #879a9f !important;
  color: #ffffff !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: #ffffff !important;
  background-color: #5c6e73 !important;
  border-color: #5c6e73 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #5c6e73 !important;
  border-color: #5c6e73 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #091a81 !important;
  border-color: #091a81 !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: #030a30 !important;
  border-color: #030a30 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #030a30 !important;
  border-color: #030a30 !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: #149dcc;
  color: #149dcc;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #0c607d !important;
  background-color: transparent!important;
  border-color: #0c607d !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #149dcc !important;
  border-color: #149dcc !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #ff3366;
  color: #ff3366;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #db0037 !important;
  background-color: transparent!important;
  border-color: #db0037 !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff3366 !important;
  border-color: #ff3366 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #82786e;
  color: #82786e;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #534d46 !important;
  background-color: transparent!important;
  border-color: #534d46 !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #82786e !important;
  border-color: #82786e !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #07761a;
  color: #07761a;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #022408 !important;
  background-color: transparent!important;
  border-color: #022408 !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #07761a !important;
  border-color: #07761a !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #879a9f;
  color: #879a9f;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #5c6e73 !important;
  background-color: transparent!important;
  border-color: #5c6e73 !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #879a9f !important;
  border-color: #879a9f !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #091a81;
  color: #091a81;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #030a30 !important;
  background-color: transparent!important;
  border-color: #030a30 !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #091a81 !important;
  border-color: #091a81 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: #cfcfcf !important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #149dcc !important;
}
.text-secondary {
  color: #ff3366 !important;
}
.text-success {
  color: #07761a !important;
}
.text-info {
  color: #82786e !important;
}
.text-warning {
  color: #879a9f !important;
}
.text-danger {
  color: #091a81 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #0b566f !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #cc0033 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #011605 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #4b453f !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #55666b !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #020722 !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: #149dcc;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #82786e;
}
.alert-warning {
  background-color: #879a9f;
}
.alert-danger {
  background-color: #091a81;
}
.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: #149dcc;
  border-color: #149dcc;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #149dcc;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #b4e6f8;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #0eee35;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #beb8b2;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ced6d8;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #1a39ef;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Roboto', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.5rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #149dcc !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Roboto', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.5rem;
}
blockquote {
  border-color: #149dcc;
}
/* 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: #149dcc;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #149dcc;
}
.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: #149dcc;
  border-bottom-color: #149dcc;
}
.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: #149dcc !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #ff3366 !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='%23149dcc' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-tqsSDwfoMR {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tqsSDwfoMR nav.navbar {
  position: fixed;
}
.cid-tqsSDwfoMR .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-tqsSDwfoMR .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tqsSDwfoMR .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tqsSDwfoMR .dropdown-item:hover,
.cid-tqsSDwfoMR .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tqsSDwfoMR .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tqsSDwfoMR .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tqsSDwfoMR .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tqsSDwfoMR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tqsSDwfoMR .nav-link {
  position: relative;
}
.cid-tqsSDwfoMR .container {
  display: flex;
  margin: auto;
}
.cid-tqsSDwfoMR .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tqsSDwfoMR .dropdown-menu,
.cid-tqsSDwfoMR .navbar.opened {
  background: #091a81 !important;
}
.cid-tqsSDwfoMR .nav-item:focus,
.cid-tqsSDwfoMR .nav-link:focus {
  outline: none;
}
.cid-tqsSDwfoMR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tqsSDwfoMR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tqsSDwfoMR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tqsSDwfoMR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tqsSDwfoMR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tqsSDwfoMR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tqsSDwfoMR .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: #091a81;
}
.cid-tqsSDwfoMR .navbar.opened {
  transition: all 0.3s;
}
.cid-tqsSDwfoMR .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tqsSDwfoMR .navbar .navbar-logo img {
  width: auto;
}
.cid-tqsSDwfoMR .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tqsSDwfoMR .navbar.collapsed {
  justify-content: center;
}
.cid-tqsSDwfoMR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tqsSDwfoMR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tqsSDwfoMR .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-tqsSDwfoMR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tqsSDwfoMR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tqsSDwfoMR .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-tqsSDwfoMR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tqsSDwfoMR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tqsSDwfoMR .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tqsSDwfoMR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tqsSDwfoMR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tqsSDwfoMR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tqsSDwfoMR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tqsSDwfoMR .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-tqsSDwfoMR .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tqsSDwfoMR .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tqsSDwfoMR .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tqsSDwfoMR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tqsSDwfoMR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tqsSDwfoMR .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tqsSDwfoMR .navbar.navbar-short {
  min-height: 60px;
}
.cid-tqsSDwfoMR .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tqsSDwfoMR .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tqsSDwfoMR .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-tqsSDwfoMR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tqsSDwfoMR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tqsSDwfoMR .dropdown-item.active,
.cid-tqsSDwfoMR .dropdown-item:active {
  background-color: transparent;
}
.cid-tqsSDwfoMR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tqsSDwfoMR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tqsSDwfoMR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tqsSDwfoMR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #091a81;
}
.cid-tqsSDwfoMR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tqsSDwfoMR .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tqsSDwfoMR ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tqsSDwfoMR .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tqsSDwfoMR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tqsSDwfoMR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tqsSDwfoMR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tqsSDwfoMR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tqsSDwfoMR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tqsSDwfoMR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tqsSDwfoMR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqsSDwfoMR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tqsSDwfoMR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tqsSDwfoMR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqsSDwfoMR .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tqsSDwfoMR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tqsSDwfoMR .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-tqsSDwfoMR .navbar {
    height: 70px;
  }
  .cid-tqsSDwfoMR .navbar.opened {
    height: auto;
  }
  .cid-tqsSDwfoMR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tqsOyajY3A {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-1-1920x1341.jpg");
}
.cid-tqsOyajY3A .icons-media-container {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-top: 4rem;
}
.cid-tqsOyajY3A .icons-media-container .mbr-iconfont {
  font-size: 96px;
  color: #ffffff;
}
.cid-tqsOyajY3A .icons-media-container .icon-block {
  padding-bottom: 1rem;
}
.cid-tqsOyajY3A .mbr-text {
  color: #ffffff;
}
.cid-tqsOyajY3A .card {
  padding-bottom: 1.5rem;
}
.cid-tqsOyajY3A .card-wrapper {
  min-height: 220px;
  transition: all 0.3s;
  border-radius: 4px;
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tqsOyajY3A .card-wrapper .mbr-iconfont {
  display: block;
  font-size: 4rem;
  color: #ffffff;
  margin-bottom: 2rem;
}
.cid-tqsOyajY3A .card-wrapper .card-title {
  color: #ffffff;
}
.cid-tqsOyajY3A H1 {
  text-align: left;
}
.cid-tqsOyajY3A .mbr-text,
.cid-tqsOyajY3A .mbr-section-btn {
  text-align: left;
  color: #e43f3f;
}
.cid-tqsOyajY3A .card-wrapper .card-title,
.cid-tqsOyajY3A .card-box {
  color: #091a81;
  text-align: left;
}
#custom-html-1 div {
  height: 20px;
}
.cid-tqt23N3mCl {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tqt23N3mCl .mbr-section-title {
  color: #091a81;
}
.cid-tqt23N3mCl .mbr-section-subtitle {
  color: #091a81;
}
.cid-tqt329wXjn {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tqt329wXjn img,
.cid-tqt329wXjn .item-img {
  width: 100%;
}
.cid-tqt329wXjn .item:focus,
.cid-tqt329wXjn span:focus {
  outline: none;
}
.cid-tqt329wXjn .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tqt329wXjn .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tqt329wXjn .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tqt329wXjn .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tqt329wXjn .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tqt329wXjn .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tqt329wXjn .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tqt329wXjn .mbr-section-title {
  color: #232323;
}
.cid-tqt329wXjn .mbr-text,
.cid-tqt329wXjn .mbr-section-btn {
  text-align: left;
}
.cid-tqt329wXjn .item-title {
  text-align: left;
  color: #091a81;
}
.cid-tqt329wXjn .item-subtitle {
  text-align: left;
}
#custom-html-7 div {
  height: 20px;
}
.cid-tqsUIRzFhH {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #091a81;
}
.cid-tqsUIRzFhH .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tqsUIRzFhH .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tqsUIRzFhH .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tqsUIRzFhH .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tqsUIRzFhH div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tqsUIRzFhH .copyright {
  color: #ffffff;
}
.cid-tqCL5NTEeI {
  z-index: 1000;
  width: 100%;
}
.cid-tqCL5NTEeI .navbar-dropdown {
  background-color: #091a81 !important;
  padding: 0;
  position: fixed;
}
.cid-tqCL5NTEeI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #091a81 !important;
  background: #091a81;
}
.cid-tqCL5NTEeI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-tqCL5NTEeI .menu_box .navbar.opened,
  .cid-tqCL5NTEeI .menu_box .navbar-collapse {
    background-color: transparent !important;
    transition: all 0s ease 0s;
  }
}
.cid-tqCL5NTEeI nav.navbar {
  position: fixed;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cid-tqCL5NTEeI .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-tqCL5NTEeI .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tqCL5NTEeI .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-tqCL5NTEeI .btn {
  min-height: 24px;
  border: none;
  box-shadow: none;
  margin-top: 0;
}
.cid-tqCL5NTEeI .btn:hover {
  border: none;
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-tqCL5NTEeI .offcanvas {
    padding: 120px 60px 35px;
    width: 480px;
    background-color: #1e4381;
  }
  .cid-tqCL5NTEeI .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-tqCL5NTEeI .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-tqCL5NTEeI .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-tqCL5NTEeI .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-tqCL5NTEeI .offcanvas-body .mbr-text,
  .cid-tqCL5NTEeI .offcanvas-body .mbr-section-subtitle {
    margin-top: 14px;
  }
  .cid-tqCL5NTEeI .offcanvas-body .offcanvas_contact {
    margin: 35px 0;
  }
  .cid-tqCL5NTEeI .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-tqCL5NTEeI .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #ee2947;
  }
  .cid-tqCL5NTEeI .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-tqCL5NTEeI .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-tqCL5NTEeI .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-tqCL5NTEeI .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-tqCL5NTEeI ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-tqCL5NTEeI .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tqCL5NTEeI .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-tqCL5NTEeI .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-tqCL5NTEeI li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
  }
  .cid-tqCL5NTEeI li.nav-item:hover {
    opacity: .8;
  }
  .cid-tqCL5NTEeI .lg_brand {
    margin: 0 1rem;
  }
}
.cid-tqCL5NTEeI .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-tqCL5NTEeI .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-tqCL5NTEeI .nav-item {
    margin: 0 !important;
  }
}
.cid-tqCL5NTEeI .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-tqCL5NTEeI .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: 72px !important;
    left: -40px !important;
  }
  .cid-tqCL5NTEeI .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-tqCL5NTEeI .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tqCL5NTEeI .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-tqCL5NTEeI .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-tqCL5NTEeI .offcanvas_box {
    display: none;
  }
}
.cid-tqCL5NTEeI .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-tqCL5NTEeI .nav-dropdown .link {
  font-weight: 600 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-tqCL5NTEeI .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tqCL5NTEeI .nav-link {
  position: relative;
  color: #1e4381;
}
.cid-tqCL5NTEeI .container {
  display: flex;
  margin: auto;
}
.cid-tqCL5NTEeI .iconfont-wrapper {
  color: #f3722f;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-tqCL5NTEeI .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-tqCL5NTEeI .iconfont-wrapper:hover {
  color: #149dcc;
}
.cid-tqCL5NTEeI .navbar-caption {
  color: #1e4381;
}
.cid-tqCL5NTEeI .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-tqCL5NTEeI .navbar-nav {
    margin: 0;
  }
}
.cid-tqCL5NTEeI .dropdown-menu,
.cid-tqCL5NTEeI .navbar.opened {
  background-color: false !important;
}
.cid-tqCL5NTEeI .nav-item:focus,
.cid-tqCL5NTEeI .nav-link:focus {
  outline: none;
}
.cid-tqCL5NTEeI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tqCL5NTEeI .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tqCL5NTEeI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tqCL5NTEeI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tqCL5NTEeI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tqCL5NTEeI .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tqCL5NTEeI .navbar {
  min-height: 140px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0px;
}
.cid-tqCL5NTEeI .navbar.opened {
  transition: all 0.3s;
}
.cid-tqCL5NTEeI .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-tqCL5NTEeI .navbar .navbar-logo img {
  min-width: 100px;
  min-height: 100px;
  object-fit: cover;
}
.cid-tqCL5NTEeI .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-tqCL5NTEeI .navbar.collapsed {
  justify-content: center;
}
.cid-tqCL5NTEeI .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tqCL5NTEeI .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tqCL5NTEeI .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tqCL5NTEeI .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tqCL5NTEeI .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tqCL5NTEeI .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-tqCL5NTEeI .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tqCL5NTEeI .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-tqCL5NTEeI .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-tqCL5NTEeI .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tqCL5NTEeI .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tqCL5NTEeI .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-tqCL5NTEeI .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tqCL5NTEeI .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tqCL5NTEeI .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tqCL5NTEeI .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-tqCL5NTEeI .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tqCL5NTEeI .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-tqCL5NTEeI .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tqCL5NTEeI .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tqCL5NTEeI .navbar .icons-menu {
    padding: 0;
  }
}
.cid-tqCL5NTEeI .navbar.navbar-short {
  min-height: 60px;
}
.cid-tqCL5NTEeI .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tqCL5NTEeI .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tqCL5NTEeI .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-tqCL5NTEeI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tqCL5NTEeI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tqCL5NTEeI .dropdown-item.active,
.cid-tqCL5NTEeI .dropdown-item:active {
  background-color: transparent;
}
.cid-tqCL5NTEeI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tqCL5NTEeI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tqCL5NTEeI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tqCL5NTEeI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tqCL5NTEeI ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-tqCL5NTEeI .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tqCL5NTEeI button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #091a81;
  background: #ffffff;
}
.cid-tqCL5NTEeI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ee2947;
}
.cid-tqCL5NTEeI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tqCL5NTEeI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tqCL5NTEeI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tqCL5NTEeI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tqCL5NTEeI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqCL5NTEeI nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tqCL5NTEeI nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tqCL5NTEeI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqCL5NTEeI a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-tqCL5NTEeI .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tqCL5NTEeI .navbar {
    height: 70px;
  }
  .cid-tqCL5NTEeI .navbar.opened {
    height: auto;
  }
  .cid-tqCL5NTEeI .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tqCL5NTEeI .mbr-section-btn .btn,
.cid-tqCL5NTEeI .mbr-section-btn-main .btn {
  max-height: 34px;
  border: 1px solid #07761a !important;
  box-shadow: none;
}
.cid-tqCL5NTEeI .mbr-section-btn .btn:hover,
.cid-tqCL5NTEeI .mbr-section-btn-main .btn:hover {
  color: #07761a !important;
  border: 1px solid #07761a !important;
  box-shadow: none !important;
  opacity: .8;
}
.cid-tqCL5NTEeI .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-tqCL5NTEeI .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-tqCL5NTEeI .navbar-caption:hover {
  color: #149dcc;
}
.cid-tqCL5NTEeI .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tqCL5NTEeI .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-tqCL5NTEeI .text_widget {
  color: #ffffff;
}
.cid-tqCL5NTEeI .mbr-section-subtitle,
.cid-tqCL5NTEeI .text_widget {
  text-align: left;
}
.cid-tqCL5NTEeI a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-tqtiSwOUxO {
  background-image: url("../../../assets/images/mbr-1920x1334.jpg");
}
.cid-tqtiSwOUxO .btn {
  border-radius: 100px;
}
.cid-tqtiSwOUxO h1,
.cid-tqtiSwOUxO p,
.cid-tqtiSwOUxO h2 {
  color: #ffffff;
}
.cid-tqtiSwOUxO label {
  color: #ffffff;
}
.cid-tqtiSwOUxO .form-control-label {
  color: #ffffff;
}
.cid-tqtiSwOUxO SMALL {
  color: #000000;
  font-family: 'Raleway', sans-serif;
}
.cid-tqtiSwOUxO .rs-form-control {
  background-color: #f5f5f5;
  border-radius: 3px;
  box-shadow: none;
  color: #565656;
  font-size: 1.3rem;
  line-height: 1.53;
  min-height: 3.5em;
  padding: 0.5em 1.07em 0.5em;
  width: 100%;
  background-image: none;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
.cid-tqtiSwOUxO .rs-form-control,
.cid-tqtiSwOUxO .rs-form-control:focus {
  border: 1px solid #e8e8e8;
}
.cid-tqtiSwOUxO .rs-form-active .rs-form-control:invalid {
  border-color: #f28281;
}
.cid-tqtiSwOUxO .rs-form-control-label {
  cursor: pointer;
  font-size: 0.875rem;
  margin-bottom: 0.357em;
  padding: 0;
}
.cid-tqtiSwOUxO .rs-form-control,
.cid-tqtiSwOUxO .rs-form-control-file,
.cid-tqtiSwOUxO .rs-form-control-range {
  display: block;
}
.cid-tqtiSwOUxO .regular-checkbox {
  display: none;
}
.cid-tqtiSwOUxO .regular-checkbox + label {
  width: 100%;
  background-color: #fafafa;
  border: 1px solid #cacece;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 9px;
  border-radius: 3px;
  display: inline-block;
  position: relative;
}
.cid-tqtiSwOUxO .regular-checkbox + label:active,
.cid-tqtiSwOUxO .regular-checkbox:checked + label:active {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px 1px 3px rgba(0, 0, 0, 0.1);
}
.cid-tqtiSwOUxO .regular-checkbox:checked + label {
  background-color: #e9ecee;
  border: 1px solid #adb8c0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05), inset 15px 10px -12px rgba(255, 255, 255, 0.1);
  color: #000000;
}
.cid-tqtiSwOUxO .regular-checkbox:checked + label:after {
  content: '\2714';
  font-size: 17px;
  position: absolute;
  top: 0px;
  left: 3px;
  color: #000000;
}
.cid-tqtiSwOUxO .big-checkbox + label {
  font-size: 1.3rem;
  font-family: 'Raleway', sans-serif;
  padding: 18px;
  color: #000000;
}
.cid-tqtiSwOUxO .big-checkbox:checked + label:after {
  font-size: 1.3rem;
  font-family: 'Raleway', sans-serif;
  left: 6px;
  color: #000000;
}
.cid-tqtiSwOUxO .adj-top {
  padding-top: 20px !important;
}
.cid-tqtiSwOUxO #notes {
  background-color: #cdcdcd;
  color: #000000;
  padding: 5px;
}
.cid-tqtiSwOUxO .boldit {
  font-weight: 700;
}
.cid-tqtiSwOUxO .RSform-title {
  color: #ffffff;
  font-size: 24px;
}
.cid-tqtiSwOUxO .mbr-section-title2 {
  font-size: 35px;
  color: #ffffff;
  margin-top: 0rem !important;
  margin-bottom: 2.2rem !important;
}
.cid-tqsUIRzFhH {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #091a81;
}
.cid-tqsUIRzFhH .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tqsUIRzFhH .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tqsUIRzFhH .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tqsUIRzFhH .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tqsUIRzFhH div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tqsUIRzFhH .copyright {
  color: #ffffff;
}
#custom-html-d H3 {
  font-size: 24px;
  color: #b8312f;
}
.cid-tqCMJLGT3A {
  z-index: 1000;
  width: 100%;
}
.cid-tqCMJLGT3A .navbar-dropdown {
  background-color: #091a81 !important;
  padding: 0;
  position: fixed;
}
.cid-tqCMJLGT3A .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #091a81 !important;
  background: #091a81;
}
.cid-tqCMJLGT3A .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-tqCMJLGT3A .menu_box .navbar.opened,
  .cid-tqCMJLGT3A .menu_box .navbar-collapse {
    background-color: transparent !important;
    transition: all 0s ease 0s;
  }
}
.cid-tqCMJLGT3A nav.navbar {
  position: fixed;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cid-tqCMJLGT3A .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-tqCMJLGT3A .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tqCMJLGT3A .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-tqCMJLGT3A .btn {
  min-height: 24px;
  border: none;
  box-shadow: none;
  margin-top: 0;
}
.cid-tqCMJLGT3A .btn:hover {
  border: none;
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-tqCMJLGT3A .offcanvas {
    padding: 120px 60px 35px;
    width: 480px;
    background-color: #1e4381;
  }
  .cid-tqCMJLGT3A .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-tqCMJLGT3A .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-tqCMJLGT3A .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-tqCMJLGT3A .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-tqCMJLGT3A .offcanvas-body .mbr-text,
  .cid-tqCMJLGT3A .offcanvas-body .mbr-section-subtitle {
    margin-top: 14px;
  }
  .cid-tqCMJLGT3A .offcanvas-body .offcanvas_contact {
    margin: 35px 0;
  }
  .cid-tqCMJLGT3A .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-tqCMJLGT3A .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #ee2947;
  }
  .cid-tqCMJLGT3A .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-tqCMJLGT3A .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-tqCMJLGT3A .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-tqCMJLGT3A .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-tqCMJLGT3A ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-tqCMJLGT3A .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tqCMJLGT3A .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-tqCMJLGT3A .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-tqCMJLGT3A li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
  }
  .cid-tqCMJLGT3A li.nav-item:hover {
    opacity: .8;
  }
  .cid-tqCMJLGT3A .lg_brand {
    margin: 0 1rem;
  }
}
.cid-tqCMJLGT3A .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-tqCMJLGT3A .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-tqCMJLGT3A .nav-item {
    margin: 0 !important;
  }
}
.cid-tqCMJLGT3A .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-tqCMJLGT3A .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: 72px !important;
    left: -40px !important;
  }
  .cid-tqCMJLGT3A .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-tqCMJLGT3A .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tqCMJLGT3A .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-tqCMJLGT3A .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-tqCMJLGT3A .offcanvas_box {
    display: none;
  }
}
.cid-tqCMJLGT3A .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-tqCMJLGT3A .nav-dropdown .link {
  font-weight: 600 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-tqCMJLGT3A .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tqCMJLGT3A .nav-link {
  position: relative;
  color: #1e4381;
}
.cid-tqCMJLGT3A .container {
  display: flex;
  margin: auto;
}
.cid-tqCMJLGT3A .iconfont-wrapper {
  color: #f3722f;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-tqCMJLGT3A .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-tqCMJLGT3A .iconfont-wrapper:hover {
  color: #149dcc;
}
.cid-tqCMJLGT3A .navbar-caption {
  color: #1e4381;
}
.cid-tqCMJLGT3A .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-tqCMJLGT3A .navbar-nav {
    margin: 0;
  }
}
.cid-tqCMJLGT3A .dropdown-menu,
.cid-tqCMJLGT3A .navbar.opened {
  background-color: false !important;
}
.cid-tqCMJLGT3A .nav-item:focus,
.cid-tqCMJLGT3A .nav-link:focus {
  outline: none;
}
.cid-tqCMJLGT3A .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tqCMJLGT3A .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tqCMJLGT3A .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tqCMJLGT3A .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tqCMJLGT3A .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tqCMJLGT3A .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tqCMJLGT3A .navbar {
  min-height: 140px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0px;
}
.cid-tqCMJLGT3A .navbar.opened {
  transition: all 0.3s;
}
.cid-tqCMJLGT3A .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-tqCMJLGT3A .navbar .navbar-logo img {
  min-width: 100px;
  min-height: 100px;
  object-fit: cover;
}
.cid-tqCMJLGT3A .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-tqCMJLGT3A .navbar.collapsed {
  justify-content: center;
}
.cid-tqCMJLGT3A .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tqCMJLGT3A .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tqCMJLGT3A .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tqCMJLGT3A .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tqCMJLGT3A .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tqCMJLGT3A .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-tqCMJLGT3A .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tqCMJLGT3A .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-tqCMJLGT3A .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-tqCMJLGT3A .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tqCMJLGT3A .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tqCMJLGT3A .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-tqCMJLGT3A .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tqCMJLGT3A .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tqCMJLGT3A .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tqCMJLGT3A .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-tqCMJLGT3A .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tqCMJLGT3A .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-tqCMJLGT3A .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tqCMJLGT3A .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tqCMJLGT3A .navbar .icons-menu {
    padding: 0;
  }
}
.cid-tqCMJLGT3A .navbar.navbar-short {
  min-height: 60px;
}
.cid-tqCMJLGT3A .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tqCMJLGT3A .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tqCMJLGT3A .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-tqCMJLGT3A .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tqCMJLGT3A .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tqCMJLGT3A .dropdown-item.active,
.cid-tqCMJLGT3A .dropdown-item:active {
  background-color: transparent;
}
.cid-tqCMJLGT3A .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tqCMJLGT3A .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tqCMJLGT3A .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tqCMJLGT3A .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tqCMJLGT3A ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-tqCMJLGT3A .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tqCMJLGT3A button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #091a81;
  background: #ffffff;
}
.cid-tqCMJLGT3A button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ee2947;
}
.cid-tqCMJLGT3A button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tqCMJLGT3A button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tqCMJLGT3A button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tqCMJLGT3A button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tqCMJLGT3A nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqCMJLGT3A nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tqCMJLGT3A nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tqCMJLGT3A nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqCMJLGT3A a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-tqCMJLGT3A .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tqCMJLGT3A .navbar {
    height: 70px;
  }
  .cid-tqCMJLGT3A .navbar.opened {
    height: auto;
  }
  .cid-tqCMJLGT3A .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tqCMJLGT3A .mbr-section-btn .btn,
.cid-tqCMJLGT3A .mbr-section-btn-main .btn {
  max-height: 34px;
  border: 1px solid #07761a !important;
  box-shadow: none;
}
.cid-tqCMJLGT3A .mbr-section-btn .btn:hover,
.cid-tqCMJLGT3A .mbr-section-btn-main .btn:hover {
  color: #07761a !important;
  border: 1px solid #07761a !important;
  box-shadow: none !important;
  opacity: .8;
}
.cid-tqCMJLGT3A .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-tqCMJLGT3A .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-tqCMJLGT3A .navbar-caption:hover {
  color: #149dcc;
}
.cid-tqCMJLGT3A .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tqCMJLGT3A .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-tqCMJLGT3A .text_widget {
  color: #ffffff;
}
.cid-tqCMJLGT3A .mbr-section-subtitle,
.cid-tqCMJLGT3A .text_widget {
  text-align: left;
}
.cid-tqCMJLGT3A a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-tqtmRF0d3C {
  background-image: url("../../../assets/images/mbr-1920x1276.jpg");
}
.cid-tqtmRF0d3C h1,
.cid-tqtmRF0d3C p,
.cid-tqtmRF0d3C h2 {
  color: #ffffff;
}
.cid-tqtmRF0d3C .mbr-section-title {
  font-size: 70px;
}
.cid-tqtmRF0d3C .mbr-section-title2 {
  font-size: 35px;
  color: #ffffff;
  margin-top: 0rem !important;
  margin-bottom: 2.2rem !important;
}
#custom-html-f div {
  height: 20px;
}
#custom-html-g label {
  color: #000000;
}
#custom-html-g .form-control-label {
  color: #ffffff;
}
#custom-html-g SMALL {
  color: #000000;
  font-family: 'Raleway', sans-serif;
}
#custom-html-g .btn {
  border-radius: 100px;
}
#custom-html-g .rs-form-control {
  background-color: #cdcdcd;
  border-radius: 3px;
  box-shadow: none;
  color: #565656;
  font-size: 1.3rem;
  line-height: 1.53;
  min-height: 3.5em;
  padding: 0.5em 1.07em 0.5em;
}
#custom-html-g .rs-form-control,
#custom-html-g .rs-form-control:focus {
  border: 1px solid #e8e8e8;
}
#custom-html-g .rs-form-active .rs-form-control:invalid {
  border-color: #f28281;
}
#custom-html-g .rs-form-control-label {
  cursor: pointer;
  font-size: 0.875rem;
  margin-bottom: 0.357em;
  padding: 0;
}
#custom-html-g .rs-form-control,
#custom-html-g .rs-form-control-file,
#custom-html-g .rs-form-control-range {
  display: block;
}
#custom-html-g .rs-form-control {
  width: 100%;
  background-image: none;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
#custom-html-g .regular-checkbox {
  display: none;
}
#custom-html-g .regular-checkbox + label {
  width: 100%;
  background-color: #fafafa;
  border: 1px solid #cacece;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 9px;
  border-radius: 3px;
  display: inline-block;
  position: relative;
}
#custom-html-g .regular-checkbox + label:active,
#custom-html-g .regular-checkbox:checked + label:active {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px 1px 3px rgba(0, 0, 0, 0.1);
}
#custom-html-g .regular-checkbox:checked + label {
  background-color: #e9ecee;
  border: 1px solid #adb8c0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05), inset 15px 10px -12px rgba(255, 255, 255, 0.1);
  color: #000000;
}
#custom-html-g .regular-checkbox:checked + label:after {
  content: '\2714';
  font-size: 17px;
  position: absolute;
  top: 0px;
  left: 3px;
  color: #000000;
}
#custom-html-g .big-checkbox + label {
  font-size: 1.3rem;
  font-family: 'Raleway', sans-serif;
  padding: 18px;
  color: #000000;
}
#custom-html-g .big-checkbox:checked + label:after {
  font-size: 1.3rem;
  font-family: 'Raleway', sans-serif;
  left: 6px;
  color: #000000;
}
#custom-html-g .adj-top {
  padding-top: 20px !important;
}
#custom-html-g #notes {
  background-color: #cdcdcd;
  color: #000000;
  padding: 5px;
}
#custom-html-g .boldit {
  font-weight: 700;
}
#custom-html-g .RSform-title {
  color: #ffffff;
  font-size: 24px;
}
#custom-html-g .mbr-section-title,
#custom-html-g p {
  color: #000;
}
#custom-html-g .mbr-section-title {
  color: #000000;
}
#custom-html-g .lead P {
  color: #000000;
}
.cid-tqsUIRzFhH {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #091a81;
}
.cid-tqsUIRzFhH .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tqsUIRzFhH .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tqsUIRzFhH .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tqsUIRzFhH .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tqsUIRzFhH div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tqsUIRzFhH .copyright {
  color: #ffffff;
}
.cid-tqCN1TmyE9 {
  z-index: 1000;
  width: 100%;
}
.cid-tqCN1TmyE9 .navbar-dropdown {
  background-color: #091a81 !important;
  padding: 0;
  position: fixed;
}
.cid-tqCN1TmyE9 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #091a81 !important;
  background: #091a81;
}
.cid-tqCN1TmyE9 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-tqCN1TmyE9 .menu_box .navbar.opened,
  .cid-tqCN1TmyE9 .menu_box .navbar-collapse {
    background-color: transparent !important;
    transition: all 0s ease 0s;
  }
}
.cid-tqCN1TmyE9 nav.navbar {
  position: fixed;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cid-tqCN1TmyE9 .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-tqCN1TmyE9 .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tqCN1TmyE9 .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-tqCN1TmyE9 .btn {
  min-height: 24px;
  border: none;
  box-shadow: none;
  margin-top: 0;
}
.cid-tqCN1TmyE9 .btn:hover {
  border: none;
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-tqCN1TmyE9 .offcanvas {
    padding: 120px 60px 35px;
    width: 480px;
    background-color: #1e4381;
  }
  .cid-tqCN1TmyE9 .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-tqCN1TmyE9 .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-tqCN1TmyE9 .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-tqCN1TmyE9 .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-tqCN1TmyE9 .offcanvas-body .mbr-text,
  .cid-tqCN1TmyE9 .offcanvas-body .mbr-section-subtitle {
    margin-top: 14px;
  }
  .cid-tqCN1TmyE9 .offcanvas-body .offcanvas_contact {
    margin: 35px 0;
  }
  .cid-tqCN1TmyE9 .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-tqCN1TmyE9 .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #ee2947;
  }
  .cid-tqCN1TmyE9 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-tqCN1TmyE9 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-tqCN1TmyE9 .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-tqCN1TmyE9 .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-tqCN1TmyE9 ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-tqCN1TmyE9 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tqCN1TmyE9 .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-tqCN1TmyE9 .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-tqCN1TmyE9 li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
  }
  .cid-tqCN1TmyE9 li.nav-item:hover {
    opacity: .8;
  }
  .cid-tqCN1TmyE9 .lg_brand {
    margin: 0 1rem;
  }
}
.cid-tqCN1TmyE9 .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-tqCN1TmyE9 .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-tqCN1TmyE9 .nav-item {
    margin: 0 !important;
  }
}
.cid-tqCN1TmyE9 .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-tqCN1TmyE9 .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: 72px !important;
    left: -40px !important;
  }
  .cid-tqCN1TmyE9 .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-tqCN1TmyE9 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tqCN1TmyE9 .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-tqCN1TmyE9 .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-tqCN1TmyE9 .offcanvas_box {
    display: none;
  }
}
.cid-tqCN1TmyE9 .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-tqCN1TmyE9 .nav-dropdown .link {
  font-weight: 600 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-tqCN1TmyE9 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tqCN1TmyE9 .nav-link {
  position: relative;
  color: #1e4381;
}
.cid-tqCN1TmyE9 .container {
  display: flex;
  margin: auto;
}
.cid-tqCN1TmyE9 .iconfont-wrapper {
  color: #f3722f;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-tqCN1TmyE9 .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-tqCN1TmyE9 .iconfont-wrapper:hover {
  color: #149dcc;
}
.cid-tqCN1TmyE9 .navbar-caption {
  color: #1e4381;
}
.cid-tqCN1TmyE9 .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-tqCN1TmyE9 .navbar-nav {
    margin: 0;
  }
}
.cid-tqCN1TmyE9 .dropdown-menu,
.cid-tqCN1TmyE9 .navbar.opened {
  background-color: false !important;
}
.cid-tqCN1TmyE9 .nav-item:focus,
.cid-tqCN1TmyE9 .nav-link:focus {
  outline: none;
}
.cid-tqCN1TmyE9 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tqCN1TmyE9 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tqCN1TmyE9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tqCN1TmyE9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tqCN1TmyE9 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tqCN1TmyE9 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tqCN1TmyE9 .navbar {
  min-height: 140px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0px;
}
.cid-tqCN1TmyE9 .navbar.opened {
  transition: all 0.3s;
}
.cid-tqCN1TmyE9 .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-tqCN1TmyE9 .navbar .navbar-logo img {
  min-width: 100px;
  min-height: 100px;
  object-fit: cover;
}
.cid-tqCN1TmyE9 .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-tqCN1TmyE9 .navbar.collapsed {
  justify-content: center;
}
.cid-tqCN1TmyE9 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tqCN1TmyE9 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tqCN1TmyE9 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tqCN1TmyE9 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tqCN1TmyE9 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tqCN1TmyE9 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-tqCN1TmyE9 .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tqCN1TmyE9 .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-tqCN1TmyE9 .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-tqCN1TmyE9 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tqCN1TmyE9 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tqCN1TmyE9 .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-tqCN1TmyE9 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tqCN1TmyE9 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tqCN1TmyE9 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tqCN1TmyE9 .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-tqCN1TmyE9 .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tqCN1TmyE9 .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-tqCN1TmyE9 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tqCN1TmyE9 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tqCN1TmyE9 .navbar .icons-menu {
    padding: 0;
  }
}
.cid-tqCN1TmyE9 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tqCN1TmyE9 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tqCN1TmyE9 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tqCN1TmyE9 .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-tqCN1TmyE9 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tqCN1TmyE9 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tqCN1TmyE9 .dropdown-item.active,
.cid-tqCN1TmyE9 .dropdown-item:active {
  background-color: transparent;
}
.cid-tqCN1TmyE9 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tqCN1TmyE9 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tqCN1TmyE9 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tqCN1TmyE9 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tqCN1TmyE9 ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-tqCN1TmyE9 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tqCN1TmyE9 button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #091a81;
  background: #ffffff;
}
.cid-tqCN1TmyE9 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ee2947;
}
.cid-tqCN1TmyE9 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tqCN1TmyE9 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tqCN1TmyE9 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tqCN1TmyE9 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tqCN1TmyE9 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqCN1TmyE9 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tqCN1TmyE9 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tqCN1TmyE9 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqCN1TmyE9 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-tqCN1TmyE9 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tqCN1TmyE9 .navbar {
    height: 70px;
  }
  .cid-tqCN1TmyE9 .navbar.opened {
    height: auto;
  }
  .cid-tqCN1TmyE9 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tqCN1TmyE9 .mbr-section-btn .btn,
.cid-tqCN1TmyE9 .mbr-section-btn-main .btn {
  max-height: 34px;
  border: 1px solid #07761a !important;
  box-shadow: none;
}
.cid-tqCN1TmyE9 .mbr-section-btn .btn:hover,
.cid-tqCN1TmyE9 .mbr-section-btn-main .btn:hover {
  color: #07761a !important;
  border: 1px solid #07761a !important;
  box-shadow: none !important;
  opacity: .8;
}
.cid-tqCN1TmyE9 .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-tqCN1TmyE9 .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-tqCN1TmyE9 .navbar-caption:hover {
  color: #149dcc;
}
.cid-tqCN1TmyE9 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tqCN1TmyE9 .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-tqCN1TmyE9 .text_widget {
  color: #ffffff;
}
.cid-tqCN1TmyE9 .mbr-section-subtitle,
.cid-tqCN1TmyE9 .text_widget {
  text-align: left;
}
.cid-tqCN1TmyE9 a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
#custom-html-k H3 {
  font-size: 24px;
  color: #b8312f;
}
.cid-tqtt8Mvzzz {
  background-image: url("../../../assets/images/mbr-29-1920x1280.jpg");
}
.cid-tqtt8Mvzzz h1,
.cid-tqtt8Mvzzz p,
.cid-tqtt8Mvzzz h2 {
  color: #ffffff;
}
.cid-tqtt8Mvzzz .mbr-section-title {
  font-size: 70px;
}
.cid-tqtt8Mvzzz .mbr-section-title2 {
  font-size: 35px;
  color: #ffffff;
  margin-top: 0rem !important;
  margin-bottom: 2.2rem !important;
}
.cid-tqtt8Mvzzz .btn {
  border-radius: 100px;
}
.cid-tqsUIRzFhH {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #091a81;
}
.cid-tqsUIRzFhH .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tqsUIRzFhH .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tqsUIRzFhH .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tqsUIRzFhH .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tqsUIRzFhH div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tqsUIRzFhH .copyright {
  color: #ffffff;
}
.cid-tqCN9I5Wyg {
  z-index: 1000;
  width: 100%;
}
.cid-tqCN9I5Wyg .navbar-dropdown {
  background-color: #091a81 !important;
  padding: 0;
  position: fixed;
}
.cid-tqCN9I5Wyg .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #091a81 !important;
  background: #091a81;
}
.cid-tqCN9I5Wyg .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-tqCN9I5Wyg .menu_box .navbar.opened,
  .cid-tqCN9I5Wyg .menu_box .navbar-collapse {
    background-color: transparent !important;
    transition: all 0s ease 0s;
  }
}
.cid-tqCN9I5Wyg nav.navbar {
  position: fixed;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cid-tqCN9I5Wyg .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-tqCN9I5Wyg .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tqCN9I5Wyg .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-tqCN9I5Wyg .btn {
  min-height: 24px;
  border: none;
  box-shadow: none;
  margin-top: 0;
}
.cid-tqCN9I5Wyg .btn:hover {
  border: none;
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-tqCN9I5Wyg .offcanvas {
    padding: 120px 60px 35px;
    width: 480px;
    background-color: #1e4381;
  }
  .cid-tqCN9I5Wyg .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-tqCN9I5Wyg .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-tqCN9I5Wyg .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-tqCN9I5Wyg .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-tqCN9I5Wyg .offcanvas-body .mbr-text,
  .cid-tqCN9I5Wyg .offcanvas-body .mbr-section-subtitle {
    margin-top: 14px;
  }
  .cid-tqCN9I5Wyg .offcanvas-body .offcanvas_contact {
    margin: 35px 0;
  }
  .cid-tqCN9I5Wyg .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-tqCN9I5Wyg .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #ee2947;
  }
  .cid-tqCN9I5Wyg .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-tqCN9I5Wyg .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-tqCN9I5Wyg .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-tqCN9I5Wyg .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-tqCN9I5Wyg ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-tqCN9I5Wyg .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tqCN9I5Wyg .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-tqCN9I5Wyg .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-tqCN9I5Wyg li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
  }
  .cid-tqCN9I5Wyg li.nav-item:hover {
    opacity: .8;
  }
  .cid-tqCN9I5Wyg .lg_brand {
    margin: 0 1rem;
  }
}
.cid-tqCN9I5Wyg .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-tqCN9I5Wyg .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-tqCN9I5Wyg .nav-item {
    margin: 0 !important;
  }
}
.cid-tqCN9I5Wyg .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-tqCN9I5Wyg .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: 72px !important;
    left: -40px !important;
  }
  .cid-tqCN9I5Wyg .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-tqCN9I5Wyg .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tqCN9I5Wyg .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-tqCN9I5Wyg .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-tqCN9I5Wyg .offcanvas_box {
    display: none;
  }
}
.cid-tqCN9I5Wyg .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-tqCN9I5Wyg .nav-dropdown .link {
  font-weight: 600 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-tqCN9I5Wyg .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tqCN9I5Wyg .nav-link {
  position: relative;
  color: #1e4381;
}
.cid-tqCN9I5Wyg .container {
  display: flex;
  margin: auto;
}
.cid-tqCN9I5Wyg .iconfont-wrapper {
  color: #f3722f;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-tqCN9I5Wyg .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-tqCN9I5Wyg .iconfont-wrapper:hover {
  color: #149dcc;
}
.cid-tqCN9I5Wyg .navbar-caption {
  color: #1e4381;
}
.cid-tqCN9I5Wyg .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-tqCN9I5Wyg .navbar-nav {
    margin: 0;
  }
}
.cid-tqCN9I5Wyg .dropdown-menu,
.cid-tqCN9I5Wyg .navbar.opened {
  background-color: false !important;
}
.cid-tqCN9I5Wyg .nav-item:focus,
.cid-tqCN9I5Wyg .nav-link:focus {
  outline: none;
}
.cid-tqCN9I5Wyg .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tqCN9I5Wyg .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tqCN9I5Wyg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tqCN9I5Wyg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tqCN9I5Wyg .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tqCN9I5Wyg .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tqCN9I5Wyg .navbar {
  min-height: 140px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0px;
}
.cid-tqCN9I5Wyg .navbar.opened {
  transition: all 0.3s;
}
.cid-tqCN9I5Wyg .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-tqCN9I5Wyg .navbar .navbar-logo img {
  min-width: 100px;
  min-height: 100px;
  object-fit: cover;
}
.cid-tqCN9I5Wyg .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-tqCN9I5Wyg .navbar.collapsed {
  justify-content: center;
}
.cid-tqCN9I5Wyg .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tqCN9I5Wyg .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tqCN9I5Wyg .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tqCN9I5Wyg .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tqCN9I5Wyg .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tqCN9I5Wyg .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-tqCN9I5Wyg .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tqCN9I5Wyg .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-tqCN9I5Wyg .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-tqCN9I5Wyg .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tqCN9I5Wyg .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tqCN9I5Wyg .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-tqCN9I5Wyg .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tqCN9I5Wyg .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tqCN9I5Wyg .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tqCN9I5Wyg .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-tqCN9I5Wyg .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tqCN9I5Wyg .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-tqCN9I5Wyg .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tqCN9I5Wyg .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tqCN9I5Wyg .navbar .icons-menu {
    padding: 0;
  }
}
.cid-tqCN9I5Wyg .navbar.navbar-short {
  min-height: 60px;
}
.cid-tqCN9I5Wyg .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tqCN9I5Wyg .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tqCN9I5Wyg .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-tqCN9I5Wyg .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tqCN9I5Wyg .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tqCN9I5Wyg .dropdown-item.active,
.cid-tqCN9I5Wyg .dropdown-item:active {
  background-color: transparent;
}
.cid-tqCN9I5Wyg .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tqCN9I5Wyg .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tqCN9I5Wyg .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tqCN9I5Wyg .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tqCN9I5Wyg ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-tqCN9I5Wyg .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tqCN9I5Wyg button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #091a81;
  background: #ffffff;
}
.cid-tqCN9I5Wyg button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ee2947;
}
.cid-tqCN9I5Wyg button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tqCN9I5Wyg button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tqCN9I5Wyg button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tqCN9I5Wyg button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tqCN9I5Wyg nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqCN9I5Wyg nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tqCN9I5Wyg nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tqCN9I5Wyg nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqCN9I5Wyg a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-tqCN9I5Wyg .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tqCN9I5Wyg .navbar {
    height: 70px;
  }
  .cid-tqCN9I5Wyg .navbar.opened {
    height: auto;
  }
  .cid-tqCN9I5Wyg .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tqCN9I5Wyg .mbr-section-btn .btn,
.cid-tqCN9I5Wyg .mbr-section-btn-main .btn {
  max-height: 34px;
  border: 1px solid #07761a !important;
  box-shadow: none;
}
.cid-tqCN9I5Wyg .mbr-section-btn .btn:hover,
.cid-tqCN9I5Wyg .mbr-section-btn-main .btn:hover {
  color: #07761a !important;
  border: 1px solid #07761a !important;
  box-shadow: none !important;
  opacity: .8;
}
.cid-tqCN9I5Wyg .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-tqCN9I5Wyg .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-tqCN9I5Wyg .navbar-caption:hover {
  color: #149dcc;
}
.cid-tqCN9I5Wyg .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tqCN9I5Wyg .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-tqCN9I5Wyg .text_widget {
  color: #ffffff;
}
.cid-tqCN9I5Wyg .mbr-section-subtitle,
.cid-tqCN9I5Wyg .text_widget {
  text-align: left;
}
.cid-tqCN9I5Wyg a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
#custom-html-p H3 {
  font-size: 24px;
  color: #b8312f;
}
.cid-tqtvOJ4vm8 {
  background-image: url("../../../assets/images/mbr-28-1920x1280.jpg");
}
.cid-tqtvOJ4vm8 h1,
.cid-tqtvOJ4vm8 p,
.cid-tqtvOJ4vm8 h2 {
  color: #ffffff;
}
.cid-tqtvOJ4vm8 .mbr-section-title {
  font-size: 70px;
}
.cid-tqtvOJ4vm8 .mbr-section-title2 {
  font-size: 35px;
  color: #ffffff;
  margin-top: 0rem !important;
  margin-bottom: 2.2rem !important;
}
.cid-tqtvOJ4vm8 .btm {
  border-radius: 100px;
}
.cid-tqsUIRzFhH {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #091a81;
}
.cid-tqsUIRzFhH .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tqsUIRzFhH .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tqsUIRzFhH .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tqsUIRzFhH .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tqsUIRzFhH div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tqsUIRzFhH .copyright {
  color: #ffffff;
}
.cid-tqCNiWmQj3 {
  z-index: 1000;
  width: 100%;
}
.cid-tqCNiWmQj3 .navbar-dropdown {
  background-color: #091a81 !important;
  padding: 0;
  position: fixed;
}
.cid-tqCNiWmQj3 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #091a81 !important;
  background: #091a81;
}
.cid-tqCNiWmQj3 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-tqCNiWmQj3 .menu_box .navbar.opened,
  .cid-tqCNiWmQj3 .menu_box .navbar-collapse {
    background-color: transparent !important;
    transition: all 0s ease 0s;
  }
}
.cid-tqCNiWmQj3 nav.navbar {
  position: fixed;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cid-tqCNiWmQj3 .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-tqCNiWmQj3 .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tqCNiWmQj3 .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-tqCNiWmQj3 .btn {
  min-height: 24px;
  border: none;
  box-shadow: none;
  margin-top: 0;
}
.cid-tqCNiWmQj3 .btn:hover {
  border: none;
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-tqCNiWmQj3 .offcanvas {
    padding: 120px 60px 35px;
    width: 480px;
    background-color: #1e4381;
  }
  .cid-tqCNiWmQj3 .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-tqCNiWmQj3 .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-tqCNiWmQj3 .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-tqCNiWmQj3 .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-tqCNiWmQj3 .offcanvas-body .mbr-text,
  .cid-tqCNiWmQj3 .offcanvas-body .mbr-section-subtitle {
    margin-top: 14px;
  }
  .cid-tqCNiWmQj3 .offcanvas-body .offcanvas_contact {
    margin: 35px 0;
  }
  .cid-tqCNiWmQj3 .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-tqCNiWmQj3 .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #ee2947;
  }
  .cid-tqCNiWmQj3 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-tqCNiWmQj3 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-tqCNiWmQj3 .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-tqCNiWmQj3 .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-tqCNiWmQj3 ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-tqCNiWmQj3 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tqCNiWmQj3 .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-tqCNiWmQj3 .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-tqCNiWmQj3 li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
  }
  .cid-tqCNiWmQj3 li.nav-item:hover {
    opacity: .8;
  }
  .cid-tqCNiWmQj3 .lg_brand {
    margin: 0 1rem;
  }
}
.cid-tqCNiWmQj3 .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-tqCNiWmQj3 .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-tqCNiWmQj3 .nav-item {
    margin: 0 !important;
  }
}
.cid-tqCNiWmQj3 .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-tqCNiWmQj3 .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: 72px !important;
    left: -40px !important;
  }
  .cid-tqCNiWmQj3 .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-tqCNiWmQj3 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tqCNiWmQj3 .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-tqCNiWmQj3 .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-tqCNiWmQj3 .offcanvas_box {
    display: none;
  }
}
.cid-tqCNiWmQj3 .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-tqCNiWmQj3 .nav-dropdown .link {
  font-weight: 600 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-tqCNiWmQj3 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tqCNiWmQj3 .nav-link {
  position: relative;
  color: #1e4381;
}
.cid-tqCNiWmQj3 .container {
  display: flex;
  margin: auto;
}
.cid-tqCNiWmQj3 .iconfont-wrapper {
  color: #f3722f;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-tqCNiWmQj3 .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-tqCNiWmQj3 .iconfont-wrapper:hover {
  color: #149dcc;
}
.cid-tqCNiWmQj3 .navbar-caption {
  color: #1e4381;
}
.cid-tqCNiWmQj3 .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-tqCNiWmQj3 .navbar-nav {
    margin: 0;
  }
}
.cid-tqCNiWmQj3 .dropdown-menu,
.cid-tqCNiWmQj3 .navbar.opened {
  background-color: false !important;
}
.cid-tqCNiWmQj3 .nav-item:focus,
.cid-tqCNiWmQj3 .nav-link:focus {
  outline: none;
}
.cid-tqCNiWmQj3 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tqCNiWmQj3 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tqCNiWmQj3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tqCNiWmQj3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tqCNiWmQj3 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tqCNiWmQj3 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tqCNiWmQj3 .navbar {
  min-height: 140px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0px;
}
.cid-tqCNiWmQj3 .navbar.opened {
  transition: all 0.3s;
}
.cid-tqCNiWmQj3 .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-tqCNiWmQj3 .navbar .navbar-logo img {
  min-width: 100px;
  min-height: 100px;
  object-fit: cover;
}
.cid-tqCNiWmQj3 .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-tqCNiWmQj3 .navbar.collapsed {
  justify-content: center;
}
.cid-tqCNiWmQj3 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tqCNiWmQj3 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tqCNiWmQj3 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tqCNiWmQj3 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tqCNiWmQj3 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tqCNiWmQj3 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-tqCNiWmQj3 .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tqCNiWmQj3 .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-tqCNiWmQj3 .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-tqCNiWmQj3 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tqCNiWmQj3 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tqCNiWmQj3 .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-tqCNiWmQj3 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tqCNiWmQj3 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tqCNiWmQj3 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tqCNiWmQj3 .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-tqCNiWmQj3 .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tqCNiWmQj3 .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-tqCNiWmQj3 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tqCNiWmQj3 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tqCNiWmQj3 .navbar .icons-menu {
    padding: 0;
  }
}
.cid-tqCNiWmQj3 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tqCNiWmQj3 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tqCNiWmQj3 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tqCNiWmQj3 .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-tqCNiWmQj3 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tqCNiWmQj3 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tqCNiWmQj3 .dropdown-item.active,
.cid-tqCNiWmQj3 .dropdown-item:active {
  background-color: transparent;
}
.cid-tqCNiWmQj3 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tqCNiWmQj3 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tqCNiWmQj3 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tqCNiWmQj3 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tqCNiWmQj3 ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-tqCNiWmQj3 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tqCNiWmQj3 button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #091a81;
  background: #ffffff;
}
.cid-tqCNiWmQj3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ee2947;
}
.cid-tqCNiWmQj3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tqCNiWmQj3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tqCNiWmQj3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tqCNiWmQj3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tqCNiWmQj3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqCNiWmQj3 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tqCNiWmQj3 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tqCNiWmQj3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqCNiWmQj3 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-tqCNiWmQj3 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tqCNiWmQj3 .navbar {
    height: 70px;
  }
  .cid-tqCNiWmQj3 .navbar.opened {
    height: auto;
  }
  .cid-tqCNiWmQj3 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tqCNiWmQj3 .mbr-section-btn .btn,
.cid-tqCNiWmQj3 .mbr-section-btn-main .btn {
  max-height: 34px;
  border: 1px solid #07761a !important;
  box-shadow: none;
}
.cid-tqCNiWmQj3 .mbr-section-btn .btn:hover,
.cid-tqCNiWmQj3 .mbr-section-btn-main .btn:hover {
  color: #07761a !important;
  border: 1px solid #07761a !important;
  box-shadow: none !important;
  opacity: .8;
}
.cid-tqCNiWmQj3 .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-tqCNiWmQj3 .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-tqCNiWmQj3 .navbar-caption:hover {
  color: #149dcc;
}
.cid-tqCNiWmQj3 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tqCNiWmQj3 .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-tqCNiWmQj3 .text_widget {
  color: #ffffff;
}
.cid-tqCNiWmQj3 .mbr-section-subtitle,
.cid-tqCNiWmQj3 .text_widget {
  text-align: left;
}
.cid-tqCNiWmQj3 a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
#custom-html-u H3 {
  font-size: 24px;
  color: #b8312f;
}
.cid-tqtxMQwJVi {
  background-image: url("../../../assets/images/mbr-27-1920x1280.jpg");
}
.cid-tqsUIRzFhH {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #091a81;
}
.cid-tqsUIRzFhH .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tqsUIRzFhH .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tqsUIRzFhH .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tqsUIRzFhH .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tqsUIRzFhH div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tqsUIRzFhH .copyright {
  color: #ffffff;
}
.cid-tqsSDwfoMR {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tqsSDwfoMR nav.navbar {
  position: fixed;
}
.cid-tqsSDwfoMR .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-tqsSDwfoMR .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tqsSDwfoMR .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tqsSDwfoMR .dropdown-item:hover,
.cid-tqsSDwfoMR .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tqsSDwfoMR .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tqsSDwfoMR .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tqsSDwfoMR .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tqsSDwfoMR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tqsSDwfoMR .nav-link {
  position: relative;
}
.cid-tqsSDwfoMR .container {
  display: flex;
  margin: auto;
}
.cid-tqsSDwfoMR .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tqsSDwfoMR .dropdown-menu,
.cid-tqsSDwfoMR .navbar.opened {
  background: #091a81 !important;
}
.cid-tqsSDwfoMR .nav-item:focus,
.cid-tqsSDwfoMR .nav-link:focus {
  outline: none;
}
.cid-tqsSDwfoMR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tqsSDwfoMR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tqsSDwfoMR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tqsSDwfoMR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tqsSDwfoMR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tqsSDwfoMR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tqsSDwfoMR .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: #091a81;
}
.cid-tqsSDwfoMR .navbar.opened {
  transition: all 0.3s;
}
.cid-tqsSDwfoMR .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tqsSDwfoMR .navbar .navbar-logo img {
  width: auto;
}
.cid-tqsSDwfoMR .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tqsSDwfoMR .navbar.collapsed {
  justify-content: center;
}
.cid-tqsSDwfoMR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tqsSDwfoMR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tqsSDwfoMR .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-tqsSDwfoMR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tqsSDwfoMR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tqsSDwfoMR .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-tqsSDwfoMR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tqsSDwfoMR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tqsSDwfoMR .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tqsSDwfoMR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tqsSDwfoMR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tqsSDwfoMR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tqsSDwfoMR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tqsSDwfoMR .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-tqsSDwfoMR .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tqsSDwfoMR .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tqsSDwfoMR .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tqsSDwfoMR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tqsSDwfoMR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tqsSDwfoMR .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tqsSDwfoMR .navbar.navbar-short {
  min-height: 60px;
}
.cid-tqsSDwfoMR .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tqsSDwfoMR .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tqsSDwfoMR .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-tqsSDwfoMR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tqsSDwfoMR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tqsSDwfoMR .dropdown-item.active,
.cid-tqsSDwfoMR .dropdown-item:active {
  background-color: transparent;
}
.cid-tqsSDwfoMR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tqsSDwfoMR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tqsSDwfoMR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tqsSDwfoMR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #091a81;
}
.cid-tqsSDwfoMR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tqsSDwfoMR .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tqsSDwfoMR ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tqsSDwfoMR .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tqsSDwfoMR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tqsSDwfoMR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tqsSDwfoMR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tqsSDwfoMR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tqsSDwfoMR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tqsSDwfoMR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tqsSDwfoMR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqsSDwfoMR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tqsSDwfoMR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tqsSDwfoMR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqsSDwfoMR .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tqsSDwfoMR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tqsSDwfoMR .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-tqsSDwfoMR .navbar {
    height: 70px;
  }
  .cid-tqsSDwfoMR .navbar.opened {
    height: auto;
  }
  .cid-tqsSDwfoMR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tqtArTFnBe {
  background-image: url("../../../assets/images/mbr-26-1920x1280.jpg");
}
.cid-tqsUIRzFhH {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #091a81;
}
.cid-tqsUIRzFhH .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tqsUIRzFhH .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tqsUIRzFhH .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tqsUIRzFhH .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tqsUIRzFhH div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tqsUIRzFhH .copyright {
  color: #ffffff;
}
.cid-tqsSDwfoMR {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tqsSDwfoMR nav.navbar {
  position: fixed;
}
.cid-tqsSDwfoMR .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-tqsSDwfoMR .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tqsSDwfoMR .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tqsSDwfoMR .dropdown-item:hover,
.cid-tqsSDwfoMR .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tqsSDwfoMR .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tqsSDwfoMR .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tqsSDwfoMR .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tqsSDwfoMR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tqsSDwfoMR .nav-link {
  position: relative;
}
.cid-tqsSDwfoMR .container {
  display: flex;
  margin: auto;
}
.cid-tqsSDwfoMR .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tqsSDwfoMR .dropdown-menu,
.cid-tqsSDwfoMR .navbar.opened {
  background: #091a81 !important;
}
.cid-tqsSDwfoMR .nav-item:focus,
.cid-tqsSDwfoMR .nav-link:focus {
  outline: none;
}
.cid-tqsSDwfoMR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tqsSDwfoMR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tqsSDwfoMR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tqsSDwfoMR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tqsSDwfoMR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tqsSDwfoMR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tqsSDwfoMR .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: #091a81;
}
.cid-tqsSDwfoMR .navbar.opened {
  transition: all 0.3s;
}
.cid-tqsSDwfoMR .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tqsSDwfoMR .navbar .navbar-logo img {
  width: auto;
}
.cid-tqsSDwfoMR .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tqsSDwfoMR .navbar.collapsed {
  justify-content: center;
}
.cid-tqsSDwfoMR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tqsSDwfoMR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tqsSDwfoMR .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-tqsSDwfoMR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tqsSDwfoMR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tqsSDwfoMR .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-tqsSDwfoMR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tqsSDwfoMR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tqsSDwfoMR .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tqsSDwfoMR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tqsSDwfoMR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tqsSDwfoMR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tqsSDwfoMR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tqsSDwfoMR .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-tqsSDwfoMR .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tqsSDwfoMR .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tqsSDwfoMR .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tqsSDwfoMR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tqsSDwfoMR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tqsSDwfoMR .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tqsSDwfoMR .navbar.navbar-short {
  min-height: 60px;
}
.cid-tqsSDwfoMR .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tqsSDwfoMR .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tqsSDwfoMR .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-tqsSDwfoMR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tqsSDwfoMR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tqsSDwfoMR .dropdown-item.active,
.cid-tqsSDwfoMR .dropdown-item:active {
  background-color: transparent;
}
.cid-tqsSDwfoMR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tqsSDwfoMR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tqsSDwfoMR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tqsSDwfoMR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #091a81;
}
.cid-tqsSDwfoMR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tqsSDwfoMR .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tqsSDwfoMR ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tqsSDwfoMR .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tqsSDwfoMR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tqsSDwfoMR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tqsSDwfoMR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tqsSDwfoMR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tqsSDwfoMR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tqsSDwfoMR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tqsSDwfoMR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqsSDwfoMR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tqsSDwfoMR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tqsSDwfoMR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqsSDwfoMR .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tqsSDwfoMR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tqsSDwfoMR .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-tqsSDwfoMR .navbar {
    height: 70px;
  }
  .cid-tqsSDwfoMR .navbar.opened {
    height: auto;
  }
  .cid-tqsSDwfoMR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tqtFbJi1ww {
  background-image: url("../../../assets/images/mbr-1920x1460.jpg");
}
.cid-tqtFbJi1ww .mbr-section-title {
  text-align: left;
}
.cid-tqtFbJi1ww .mbr-text,
.cid-tqtFbJi1ww .mbr-section-btn {
  text-align: left;
  color: #e6c63b;
}
.cid-tqtFbJi1ww .rs-rounded {
  border-radius: 30px;
}
.cid-tqtFbJi1ww h1 {
  color: #ffffff;
}
.cid-tqtFbJi1ww h3 {
  font-weight: 700;
}
.cid-tqtFbJi1ww label {
  color: #ffffff;
}
.cid-tqtFbJi1ww .form-control-label {
  color: #ffffff;
}
.cid-tqtFbJi1ww SMALL {
  color: #000000;
  font-family: 'Raleway', sans-serif;
}
.cid-tqtFbJi1ww .rs-form-control {
  background-color: #f5f5f5;
  border-radius: 3px;
  box-shadow: none;
  color: #565656;
  font-size: 1.3rem;
  line-height: 1.53;
  min-height: 3.5em;
  padding: 0.5em 1.07em 0.5em;
  width: 100%;
  background-image: none;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
.cid-tqtFbJi1ww .rs-form-control,
.cid-tqtFbJi1ww .rs-form-control:focus {
  border: 1px solid #e8e8e8;
}
.cid-tqtFbJi1ww .rs-form-active .rs-form-control:invalid {
  border-color: #f28281;
}
.cid-tqtFbJi1ww .rs-form-control-label {
  cursor: pointer;
  font-size: 0.875rem;
  margin-bottom: 0.357em;
  padding: 0;
}
.cid-tqtFbJi1ww .rs-form-control,
.cid-tqtFbJi1ww .rs-form-control-file,
.cid-tqtFbJi1ww .rs-form-control-range {
  display: block;
}
.cid-tqtFbJi1ww .regular-checkbox {
  display: none;
}
.cid-tqtFbJi1ww .regular-checkbox + label {
  width: 100%;
  background-color: #fafafa;
  border: 1px solid #cacece;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 9px;
  border-radius: 3px;
  display: inline-block;
  position: relative;
}
.cid-tqtFbJi1ww .regular-checkbox + label:active,
.cid-tqtFbJi1ww .regular-checkbox:checked + label:active {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px 1px 3px rgba(0, 0, 0, 0.1);
}
.cid-tqtFbJi1ww .regular-checkbox:checked + label {
  background-color: #e9ecee;
  border: 1px solid #adb8c0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05), inset 15px 10px -12px rgba(255, 255, 255, 0.1);
  color: #000000;
}
.cid-tqtFbJi1ww .regular-checkbox:checked + label:after {
  content: '\2714';
  font-size: 17px;
  position: absolute;
  top: 0px;
  left: 3px;
  color: #000000;
}
.cid-tqtFbJi1ww .big-checkbox + label {
  font-size: 1.3rem;
  font-family: 'Raleway', sans-serif;
  padding: 18px;
  color: #000000;
}
.cid-tqtFbJi1ww .big-checkbox:checked + label:after {
  font-size: 1.3rem;
  font-family: 'Raleway', sans-serif;
  left: 6px;
  color: #000000;
}
.cid-tqtFbJi1ww .adj-top {
  padding-top: 20px !important;
}
.cid-tqtFbJi1ww #notes {
  background-color: #cdcdcd;
  color: #000000;
  padding: 5px;
}
.cid-tqtFbJi1ww .boldit {
  font-weight: 700;
}
.cid-tqtFbJi1ww H3 {
  color: #ffffff;
}
.cid-tqtFbJi1ww P {
  color: #f7da64;
  text-align: left;
}
.cid-tqtFbJi1ww SPAN {
  font-size: 19px;
}
.cid-tqsUIRzFhH {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #091a81;
}
.cid-tqsUIRzFhH .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tqsUIRzFhH .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tqsUIRzFhH .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tqsUIRzFhH .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tqsUIRzFhH div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tqsUIRzFhH .copyright {
  color: #ffffff;
}
.cid-tqsSDwfoMR {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tqsSDwfoMR nav.navbar {
  position: fixed;
}
.cid-tqsSDwfoMR .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-tqsSDwfoMR .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tqsSDwfoMR .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tqsSDwfoMR .dropdown-item:hover,
.cid-tqsSDwfoMR .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tqsSDwfoMR .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tqsSDwfoMR .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tqsSDwfoMR .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tqsSDwfoMR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tqsSDwfoMR .nav-link {
  position: relative;
}
.cid-tqsSDwfoMR .container {
  display: flex;
  margin: auto;
}
.cid-tqsSDwfoMR .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tqsSDwfoMR .dropdown-menu,
.cid-tqsSDwfoMR .navbar.opened {
  background: #091a81 !important;
}
.cid-tqsSDwfoMR .nav-item:focus,
.cid-tqsSDwfoMR .nav-link:focus {
  outline: none;
}
.cid-tqsSDwfoMR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tqsSDwfoMR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tqsSDwfoMR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tqsSDwfoMR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tqsSDwfoMR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tqsSDwfoMR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tqsSDwfoMR .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: #091a81;
}
.cid-tqsSDwfoMR .navbar.opened {
  transition: all 0.3s;
}
.cid-tqsSDwfoMR .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tqsSDwfoMR .navbar .navbar-logo img {
  width: auto;
}
.cid-tqsSDwfoMR .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tqsSDwfoMR .navbar.collapsed {
  justify-content: center;
}
.cid-tqsSDwfoMR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tqsSDwfoMR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tqsSDwfoMR .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-tqsSDwfoMR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tqsSDwfoMR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tqsSDwfoMR .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-tqsSDwfoMR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tqsSDwfoMR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tqsSDwfoMR .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tqsSDwfoMR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tqsSDwfoMR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tqsSDwfoMR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tqsSDwfoMR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tqsSDwfoMR .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-tqsSDwfoMR .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tqsSDwfoMR .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tqsSDwfoMR .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tqsSDwfoMR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tqsSDwfoMR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tqsSDwfoMR .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tqsSDwfoMR .navbar.navbar-short {
  min-height: 60px;
}
.cid-tqsSDwfoMR .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tqsSDwfoMR .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tqsSDwfoMR .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-tqsSDwfoMR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tqsSDwfoMR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tqsSDwfoMR .dropdown-item.active,
.cid-tqsSDwfoMR .dropdown-item:active {
  background-color: transparent;
}
.cid-tqsSDwfoMR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tqsSDwfoMR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tqsSDwfoMR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tqsSDwfoMR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #091a81;
}
.cid-tqsSDwfoMR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tqsSDwfoMR .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tqsSDwfoMR ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tqsSDwfoMR .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tqsSDwfoMR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tqsSDwfoMR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tqsSDwfoMR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tqsSDwfoMR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tqsSDwfoMR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tqsSDwfoMR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tqsSDwfoMR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqsSDwfoMR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tqsSDwfoMR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tqsSDwfoMR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqsSDwfoMR .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tqsSDwfoMR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tqsSDwfoMR .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-tqsSDwfoMR .navbar {
    height: 70px;
  }
  .cid-tqsSDwfoMR .navbar.opened {
    height: auto;
  }
  .cid-tqsSDwfoMR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tqtRPJWoqs {
  background-image: url("../../../assets/images/mbr-1920x1440.jpg");
}
.cid-tqtRPJWoqs .mbr-text,
.cid-tqtRPJWoqs .mbr-section-btn {
  color: #e6c63b;
}
.cid-tqtRPJWoqs h1 {
  color: #ffffff;
}
.cid-tqtRPJWoqs label {
  color: #ffffff;
}
.cid-tqtRPJWoqs .form-control-label {
  color: #ffffff;
}
.cid-tqtRPJWoqs SMALL {
  color: #000000;
  font-family: 'Raleway', sans-serif;
}
.cid-tqtRPJWoqs .rs-form-control {
  background-color: #f5f5f5;
  border-radius: 3px;
  box-shadow: none;
  color: #565656;
  font-size: 1.3rem;
  line-height: 1.53;
  min-height: 3.5em;
  padding: 0.5em 1.07em 0.5em;
  width: 100%;
  background-image: none;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
.cid-tqtRPJWoqs .rs-form-control,
.cid-tqtRPJWoqs .rs-form-control:focus {
  border: 1px solid #e8e8e8;
}
.cid-tqtRPJWoqs .rs-form-active .rs-form-control:invalid {
  border-color: #f28281;
}
.cid-tqtRPJWoqs .rs-form-control-label {
  cursor: pointer;
  font-size: 0.875rem;
  margin-bottom: 0.357em;
  padding: 0;
}
.cid-tqtRPJWoqs .rs-form-control,
.cid-tqtRPJWoqs .rs-form-control-file,
.cid-tqtRPJWoqs .rs-form-control-range {
  display: block;
}
.cid-tqtRPJWoqs .regular-checkbox {
  display: none;
}
.cid-tqtRPJWoqs .regular-checkbox + label {
  width: 100%;
  background-color: #fafafa;
  border: 1px solid #cacece;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 9px;
  border-radius: 3px;
  display: inline-block;
  position: relative;
}
.cid-tqtRPJWoqs .regular-checkbox + label:active,
.cid-tqtRPJWoqs .regular-checkbox:checked + label:active {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px 1px 3px rgba(0, 0, 0, 0.1);
}
.cid-tqtRPJWoqs .regular-checkbox:checked + label {
  background-color: #e9ecee;
  border: 1px solid #adb8c0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05), inset 15px 10px -12px rgba(255, 255, 255, 0.1);
  color: #000000;
}
.cid-tqtRPJWoqs .regular-checkbox:checked + label:after {
  content: '\2714';
  font-size: 17px;
  position: absolute;
  top: 0px;
  left: 3px;
  color: #000000;
}
.cid-tqtRPJWoqs .big-checkbox + label {
  font-size: 1.3rem;
  font-family: 'Raleway', sans-serif;
  padding: 18px;
  color: #000000;
}
.cid-tqtRPJWoqs .big-checkbox:checked + label:after {
  font-size: 1.3rem;
  font-family: 'Raleway', sans-serif;
  left: 6px;
  color: #000000;
}
.cid-tqtRPJWoqs .adj-top {
  padding-top: 20px !important;
}
.cid-tqtRPJWoqs #notes {
  background-color: #cdcdcd;
  color: #000000;
  padding: 5px;
}
.cid-tqtRPJWoqs .boldit {
  font-weight: 700;
}
.cid-tqtRPJWoqs H3 {
  color: #ffffff;
}
.cid-tqtRPJWoqs P {
  color: #f7da64;
  text-align: left;
}
.cid-tqtRPJWoqs SPAN {
  font-size: 19px;
}
.cid-tqsUIRzFhH {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #091a81;
}
.cid-tqsUIRzFhH .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tqsUIRzFhH .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tqsUIRzFhH .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tqsUIRzFhH .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tqsUIRzFhH div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tqsUIRzFhH .copyright {
  color: #ffffff;
}
.cid-tqsSDwfoMR {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tqsSDwfoMR nav.navbar {
  position: fixed;
}
.cid-tqsSDwfoMR .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-tqsSDwfoMR .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tqsSDwfoMR .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tqsSDwfoMR .dropdown-item:hover,
.cid-tqsSDwfoMR .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tqsSDwfoMR .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tqsSDwfoMR .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tqsSDwfoMR .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tqsSDwfoMR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tqsSDwfoMR .nav-link {
  position: relative;
}
.cid-tqsSDwfoMR .container {
  display: flex;
  margin: auto;
}
.cid-tqsSDwfoMR .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tqsSDwfoMR .dropdown-menu,
.cid-tqsSDwfoMR .navbar.opened {
  background: #091a81 !important;
}
.cid-tqsSDwfoMR .nav-item:focus,
.cid-tqsSDwfoMR .nav-link:focus {
  outline: none;
}
.cid-tqsSDwfoMR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tqsSDwfoMR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tqsSDwfoMR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tqsSDwfoMR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tqsSDwfoMR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tqsSDwfoMR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tqsSDwfoMR .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: #091a81;
}
.cid-tqsSDwfoMR .navbar.opened {
  transition: all 0.3s;
}
.cid-tqsSDwfoMR .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tqsSDwfoMR .navbar .navbar-logo img {
  width: auto;
}
.cid-tqsSDwfoMR .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tqsSDwfoMR .navbar.collapsed {
  justify-content: center;
}
.cid-tqsSDwfoMR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tqsSDwfoMR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tqsSDwfoMR .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-tqsSDwfoMR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tqsSDwfoMR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tqsSDwfoMR .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-tqsSDwfoMR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tqsSDwfoMR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tqsSDwfoMR .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tqsSDwfoMR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tqsSDwfoMR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tqsSDwfoMR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tqsSDwfoMR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tqsSDwfoMR .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-tqsSDwfoMR .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tqsSDwfoMR .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tqsSDwfoMR .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tqsSDwfoMR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tqsSDwfoMR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tqsSDwfoMR .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tqsSDwfoMR .navbar.navbar-short {
  min-height: 60px;
}
.cid-tqsSDwfoMR .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tqsSDwfoMR .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tqsSDwfoMR .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-tqsSDwfoMR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tqsSDwfoMR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tqsSDwfoMR .dropdown-item.active,
.cid-tqsSDwfoMR .dropdown-item:active {
  background-color: transparent;
}
.cid-tqsSDwfoMR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tqsSDwfoMR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tqsSDwfoMR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tqsSDwfoMR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #091a81;
}
.cid-tqsSDwfoMR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tqsSDwfoMR .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tqsSDwfoMR ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tqsSDwfoMR .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tqsSDwfoMR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tqsSDwfoMR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tqsSDwfoMR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tqsSDwfoMR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tqsSDwfoMR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tqsSDwfoMR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tqsSDwfoMR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqsSDwfoMR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tqsSDwfoMR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tqsSDwfoMR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqsSDwfoMR .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tqsSDwfoMR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tqsSDwfoMR .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-tqsSDwfoMR .navbar {
    height: 70px;
  }
  .cid-tqsSDwfoMR .navbar.opened {
    height: auto;
  }
  .cid-tqsSDwfoMR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tqx9ffhUoo {
  background-image: url("../../../assets/images/mbr-1-1920x1272.jpg");
}
#custom-html-1i .mbr-section-subtitle {
  color: #767676;
}
.cid-tqsUIRzFhH {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #091a81;
}
.cid-tqsUIRzFhH .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tqsUIRzFhH .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tqsUIRzFhH .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tqsUIRzFhH .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tqsUIRzFhH div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tqsUIRzFhH .copyright {
  color: #ffffff;
}
.cid-tqsSDwfoMR {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tqsSDwfoMR nav.navbar {
  position: fixed;
}
.cid-tqsSDwfoMR .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-tqsSDwfoMR .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tqsSDwfoMR .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tqsSDwfoMR .dropdown-item:hover,
.cid-tqsSDwfoMR .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tqsSDwfoMR .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tqsSDwfoMR .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tqsSDwfoMR .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tqsSDwfoMR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tqsSDwfoMR .nav-link {
  position: relative;
}
.cid-tqsSDwfoMR .container {
  display: flex;
  margin: auto;
}
.cid-tqsSDwfoMR .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tqsSDwfoMR .dropdown-menu,
.cid-tqsSDwfoMR .navbar.opened {
  background: #091a81 !important;
}
.cid-tqsSDwfoMR .nav-item:focus,
.cid-tqsSDwfoMR .nav-link:focus {
  outline: none;
}
.cid-tqsSDwfoMR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tqsSDwfoMR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tqsSDwfoMR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tqsSDwfoMR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tqsSDwfoMR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tqsSDwfoMR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tqsSDwfoMR .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: #091a81;
}
.cid-tqsSDwfoMR .navbar.opened {
  transition: all 0.3s;
}
.cid-tqsSDwfoMR .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tqsSDwfoMR .navbar .navbar-logo img {
  width: auto;
}
.cid-tqsSDwfoMR .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tqsSDwfoMR .navbar.collapsed {
  justify-content: center;
}
.cid-tqsSDwfoMR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tqsSDwfoMR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tqsSDwfoMR .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-tqsSDwfoMR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tqsSDwfoMR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tqsSDwfoMR .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-tqsSDwfoMR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tqsSDwfoMR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tqsSDwfoMR .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tqsSDwfoMR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tqsSDwfoMR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tqsSDwfoMR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tqsSDwfoMR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tqsSDwfoMR .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-tqsSDwfoMR .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tqsSDwfoMR .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tqsSDwfoMR .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tqsSDwfoMR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tqsSDwfoMR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tqsSDwfoMR .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tqsSDwfoMR .navbar.navbar-short {
  min-height: 60px;
}
.cid-tqsSDwfoMR .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tqsSDwfoMR .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tqsSDwfoMR .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-tqsSDwfoMR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tqsSDwfoMR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tqsSDwfoMR .dropdown-item.active,
.cid-tqsSDwfoMR .dropdown-item:active {
  background-color: transparent;
}
.cid-tqsSDwfoMR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tqsSDwfoMR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tqsSDwfoMR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tqsSDwfoMR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #091a81;
}
.cid-tqsSDwfoMR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tqsSDwfoMR .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tqsSDwfoMR ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tqsSDwfoMR .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tqsSDwfoMR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tqsSDwfoMR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tqsSDwfoMR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tqsSDwfoMR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tqsSDwfoMR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tqsSDwfoMR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tqsSDwfoMR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqsSDwfoMR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tqsSDwfoMR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tqsSDwfoMR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqsSDwfoMR .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tqsSDwfoMR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tqsSDwfoMR .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-tqsSDwfoMR .navbar {
    height: 70px;
  }
  .cid-tqsSDwfoMR .navbar.opened {
    height: auto;
  }
  .cid-tqsSDwfoMR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tqxbyWIOWZ {
  background-image: url("../../../assets/images/mbr-24-1920x1280.jpg");
}
.cid-tqxbyWIOWZ h1 {
  color: #ffffff;
}
.cid-tqxbyWIOWZ label {
  color: #ffffff;
}
.cid-tqxbyWIOWZ .form-control-label {
  color: #ffffff;
}
.cid-tqxbyWIOWZ SMALL {
  color: #000000;
  font-family: 'Raleway', sans-serif;
}
.cid-tqxbyWIOWZ .rs-form-control {
  background-color: #f5f5f5;
  border-radius: 3px;
  box-shadow: none;
  color: #565656;
  font-size: 1.3rem;
  line-height: 1.53;
  min-height: 3.5em;
  padding: 0.5em 1.07em 0.5em;
  width: 100%;
  background-image: none;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
.cid-tqxbyWIOWZ .rs-form-control,
.cid-tqxbyWIOWZ .rs-form-control:focus {
  border: 1px solid #e8e8e8;
}
.cid-tqxbyWIOWZ .rs-form-active .rs-form-control:invalid {
  border-color: #f28281;
}
.cid-tqxbyWIOWZ .rs-form-control-label {
  cursor: pointer;
  font-size: 0.875rem;
  margin-bottom: 0.357em;
  padding: 0;
}
.cid-tqxbyWIOWZ .rs-form-control,
.cid-tqxbyWIOWZ .rs-form-control-file,
.cid-tqxbyWIOWZ .rs-form-control-range {
  display: block;
}
.cid-tqxbyWIOWZ .regular-checkbox {
  display: none;
}
.cid-tqxbyWIOWZ .regular-checkbox + label {
  width: 100%;
  background-color: #fafafa;
  border: 1px solid #cacece;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 9px;
  border-radius: 3px;
  display: inline-block;
  position: relative;
}
.cid-tqxbyWIOWZ .regular-checkbox + label:active,
.cid-tqxbyWIOWZ .regular-checkbox:checked + label:active {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px 1px 3px rgba(0, 0, 0, 0.1);
}
.cid-tqxbyWIOWZ .regular-checkbox:checked + label {
  background-color: #e9ecee;
  border: 1px solid #adb8c0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05), inset 15px 10px -12px rgba(255, 255, 255, 0.1);
  color: #000000;
}
.cid-tqxbyWIOWZ .regular-checkbox:checked + label:after {
  content: '\2714';
  font-size: 17px;
  position: absolute;
  top: 0px;
  left: 3px;
  color: #000000;
}
.cid-tqxbyWIOWZ .big-checkbox + label {
  font-size: 1.3rem;
  font-family: 'Raleway', sans-serif;
  padding: 18px;
  color: #000000;
}
.cid-tqxbyWIOWZ .big-checkbox:checked + label:after {
  font-size: 1.3rem;
  font-family: 'Raleway', sans-serif;
  left: 6px;
  color: #000000;
}
.cid-tqxbyWIOWZ .adj-top {
  padding-top: 20px !important;
}
.cid-tqxbyWIOWZ #notes {
  background-color: #cdcdcd;
  color: #000000;
  padding: 5px;
}
.cid-tqxbyWIOWZ .boldit {
  font-weight: 700;
}
.cid-tqxbyWIOWZ H3 {
  color: #ffffff;
}
.cid-tqxbyWIOWZ P {
  color: #f7da64;
  text-align: left;
}
.cid-tqxbyWIOWZ SPAN {
  font-size: 19px;
}
.cid-tqxbyWIOWZ .mbr-text,
.cid-tqxbyWIOWZ .mbr-section-btn {
  color: #ffffff;
}
#custom-html-1m .mbr-section-subtitle {
  color: #767676;
}
.cid-tqsUIRzFhH {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #091a81;
}
.cid-tqsUIRzFhH .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tqsUIRzFhH .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tqsUIRzFhH .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tqsUIRzFhH .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tqsUIRzFhH div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tqsUIRzFhH .copyright {
  color: #ffffff;
}
.cid-tqsSDwfoMR {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tqsSDwfoMR nav.navbar {
  position: fixed;
}
.cid-tqsSDwfoMR .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-tqsSDwfoMR .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tqsSDwfoMR .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tqsSDwfoMR .dropdown-item:hover,
.cid-tqsSDwfoMR .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tqsSDwfoMR .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tqsSDwfoMR .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tqsSDwfoMR .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tqsSDwfoMR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tqsSDwfoMR .nav-link {
  position: relative;
}
.cid-tqsSDwfoMR .container {
  display: flex;
  margin: auto;
}
.cid-tqsSDwfoMR .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tqsSDwfoMR .dropdown-menu,
.cid-tqsSDwfoMR .navbar.opened {
  background: #091a81 !important;
}
.cid-tqsSDwfoMR .nav-item:focus,
.cid-tqsSDwfoMR .nav-link:focus {
  outline: none;
}
.cid-tqsSDwfoMR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tqsSDwfoMR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tqsSDwfoMR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tqsSDwfoMR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tqsSDwfoMR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tqsSDwfoMR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tqsSDwfoMR .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: #091a81;
}
.cid-tqsSDwfoMR .navbar.opened {
  transition: all 0.3s;
}
.cid-tqsSDwfoMR .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tqsSDwfoMR .navbar .navbar-logo img {
  width: auto;
}
.cid-tqsSDwfoMR .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tqsSDwfoMR .navbar.collapsed {
  justify-content: center;
}
.cid-tqsSDwfoMR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tqsSDwfoMR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tqsSDwfoMR .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-tqsSDwfoMR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tqsSDwfoMR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tqsSDwfoMR .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-tqsSDwfoMR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tqsSDwfoMR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tqsSDwfoMR .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tqsSDwfoMR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tqsSDwfoMR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tqsSDwfoMR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tqsSDwfoMR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tqsSDwfoMR .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-tqsSDwfoMR .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tqsSDwfoMR .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tqsSDwfoMR .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tqsSDwfoMR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tqsSDwfoMR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tqsSDwfoMR .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tqsSDwfoMR .navbar.navbar-short {
  min-height: 60px;
}
.cid-tqsSDwfoMR .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tqsSDwfoMR .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tqsSDwfoMR .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-tqsSDwfoMR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tqsSDwfoMR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tqsSDwfoMR .dropdown-item.active,
.cid-tqsSDwfoMR .dropdown-item:active {
  background-color: transparent;
}
.cid-tqsSDwfoMR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tqsSDwfoMR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tqsSDwfoMR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tqsSDwfoMR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #091a81;
}
.cid-tqsSDwfoMR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tqsSDwfoMR .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tqsSDwfoMR ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tqsSDwfoMR .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tqsSDwfoMR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tqsSDwfoMR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tqsSDwfoMR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tqsSDwfoMR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tqsSDwfoMR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tqsSDwfoMR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tqsSDwfoMR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqsSDwfoMR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tqsSDwfoMR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tqsSDwfoMR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqsSDwfoMR .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tqsSDwfoMR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tqsSDwfoMR .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-tqsSDwfoMR .navbar {
    height: 70px;
  }
  .cid-tqsSDwfoMR .navbar.opened {
    height: auto;
  }
  .cid-tqsSDwfoMR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tqxdkNkdKD {
  background-image: url("../../../assets/images/mbr-23-1920x1280.jpg");
}
.cid-tqxdkNkdKD h1 {
  color: #ffffff;
}
.cid-tqxdkNkdKD label {
  color: #ffffff;
}
.cid-tqxdkNkdKD .form-control-label {
  color: #ffffff;
}
.cid-tqxdkNkdKD SMALL {
  color: #000000;
  font-family: 'Raleway', sans-serif;
}
.cid-tqxdkNkdKD .rs-form-control {
  background-color: #f5f5f5;
  border-radius: 3px;
  box-shadow: none;
  color: #565656;
  font-size: 1.3rem;
  line-height: 1.53;
  min-height: 3.5em;
  padding: 0.5em 1.07em 0.5em;
  width: 100%;
  background-image: none;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
.cid-tqxdkNkdKD .rs-form-control,
.cid-tqxdkNkdKD .rs-form-control:focus {
  border: 1px solid #e8e8e8;
}
.cid-tqxdkNkdKD .rs-form-active .rs-form-control:invalid {
  border-color: #f28281;
}
.cid-tqxdkNkdKD .rs-form-control-label {
  cursor: pointer;
  font-size: 0.875rem;
  margin-bottom: 0.357em;
  padding: 0;
}
.cid-tqxdkNkdKD .rs-form-control,
.cid-tqxdkNkdKD .rs-form-control-file,
.cid-tqxdkNkdKD .rs-form-control-range {
  display: block;
}
.cid-tqxdkNkdKD .regular-checkbox {
  display: none;
}
.cid-tqxdkNkdKD .regular-checkbox + label {
  width: 100%;
  background-color: #fafafa;
  border: 1px solid #cacece;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 9px;
  border-radius: 3px;
  display: inline-block;
  position: relative;
}
.cid-tqxdkNkdKD .regular-checkbox + label:active,
.cid-tqxdkNkdKD .regular-checkbox:checked + label:active {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px 1px 3px rgba(0, 0, 0, 0.1);
}
.cid-tqxdkNkdKD .regular-checkbox:checked + label {
  background-color: #e9ecee;
  border: 1px solid #adb8c0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05), inset 15px 10px -12px rgba(255, 255, 255, 0.1);
  color: #000000;
}
.cid-tqxdkNkdKD .regular-checkbox:checked + label:after {
  content: '\2714';
  font-size: 17px;
  position: absolute;
  top: 0px;
  left: 3px;
  color: #000000;
}
.cid-tqxdkNkdKD .big-checkbox + label {
  font-size: 1.3rem;
  font-family: 'Raleway', sans-serif;
  padding: 18px;
  color: #000000;
}
.cid-tqxdkNkdKD .big-checkbox:checked + label:after {
  font-size: 1.3rem;
  font-family: 'Raleway', sans-serif;
  left: 6px;
  color: #000000;
}
.cid-tqxdkNkdKD .adj-top {
  padding-top: 20px !important;
}
.cid-tqxdkNkdKD #notes {
  background-color: #cdcdcd;
  color: #000000;
  padding: 5px;
}
.cid-tqxdkNkdKD .boldit {
  font-weight: 700;
}
.cid-tqxdkNkdKD H3 {
  color: #ffffff;
}
.cid-tqxdkNkdKD P {
  color: #f7da64;
  text-align: left;
}
.cid-tqxdkNkdKD SPAN {
  font-size: 19px;
}
.cid-tqxdkNkdKD .rs-rounded {
  border-radius: 35px;
}
.cid-tqxdkNkdKD .mbr-text,
.cid-tqxdkNkdKD .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
#custom-html-1q .mbr-section-subtitle {
  color: #767676;
}
.cid-tqsUIRzFhH {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #091a81;
}
.cid-tqsUIRzFhH .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tqsUIRzFhH .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tqsUIRzFhH .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tqsUIRzFhH .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tqsUIRzFhH div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tqsUIRzFhH .copyright {
  color: #ffffff;
}
.cid-tqsSDwfoMR {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tqsSDwfoMR nav.navbar {
  position: fixed;
}
.cid-tqsSDwfoMR .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-tqsSDwfoMR .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tqsSDwfoMR .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tqsSDwfoMR .dropdown-item:hover,
.cid-tqsSDwfoMR .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tqsSDwfoMR .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tqsSDwfoMR .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tqsSDwfoMR .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tqsSDwfoMR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tqsSDwfoMR .nav-link {
  position: relative;
}
.cid-tqsSDwfoMR .container {
  display: flex;
  margin: auto;
}
.cid-tqsSDwfoMR .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tqsSDwfoMR .dropdown-menu,
.cid-tqsSDwfoMR .navbar.opened {
  background: #091a81 !important;
}
.cid-tqsSDwfoMR .nav-item:focus,
.cid-tqsSDwfoMR .nav-link:focus {
  outline: none;
}
.cid-tqsSDwfoMR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tqsSDwfoMR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tqsSDwfoMR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tqsSDwfoMR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tqsSDwfoMR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tqsSDwfoMR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tqsSDwfoMR .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: #091a81;
}
.cid-tqsSDwfoMR .navbar.opened {
  transition: all 0.3s;
}
.cid-tqsSDwfoMR .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tqsSDwfoMR .navbar .navbar-logo img {
  width: auto;
}
.cid-tqsSDwfoMR .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tqsSDwfoMR .navbar.collapsed {
  justify-content: center;
}
.cid-tqsSDwfoMR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tqsSDwfoMR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tqsSDwfoMR .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-tqsSDwfoMR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tqsSDwfoMR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tqsSDwfoMR .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-tqsSDwfoMR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tqsSDwfoMR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tqsSDwfoMR .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tqsSDwfoMR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tqsSDwfoMR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tqsSDwfoMR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tqsSDwfoMR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tqsSDwfoMR .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-tqsSDwfoMR .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tqsSDwfoMR .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tqsSDwfoMR .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tqsSDwfoMR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tqsSDwfoMR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tqsSDwfoMR .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tqsSDwfoMR .navbar.navbar-short {
  min-height: 60px;
}
.cid-tqsSDwfoMR .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tqsSDwfoMR .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tqsSDwfoMR .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-tqsSDwfoMR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tqsSDwfoMR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tqsSDwfoMR .dropdown-item.active,
.cid-tqsSDwfoMR .dropdown-item:active {
  background-color: transparent;
}
.cid-tqsSDwfoMR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tqsSDwfoMR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tqsSDwfoMR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tqsSDwfoMR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #091a81;
}
.cid-tqsSDwfoMR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tqsSDwfoMR .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tqsSDwfoMR ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tqsSDwfoMR .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tqsSDwfoMR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tqsSDwfoMR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tqsSDwfoMR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tqsSDwfoMR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tqsSDwfoMR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tqsSDwfoMR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tqsSDwfoMR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqsSDwfoMR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tqsSDwfoMR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tqsSDwfoMR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqsSDwfoMR .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tqsSDwfoMR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tqsSDwfoMR .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-tqsSDwfoMR .navbar {
    height: 70px;
  }
  .cid-tqsSDwfoMR .navbar.opened {
    height: auto;
  }
  .cid-tqsSDwfoMR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
#custom-html-1t .rs-rounded {
  border-radius: 30px;
}
#custom-html-1t H3 {
  font-size: 24px;
  color: #b8312f;
}
#custom-html-1t h2 {
  font-size: 22px;
  color: #000000;
}
.cid-tqxeSXfdPs {
  background-image: url("../../../assets/images/mbr-2-1920x1281.jpg");
}
#custom-html-1y div {
  height: 20px;
}
#custom-html-1w .row {
  margin-right: 0px !important;
  margin-left: 0px !important;
}
#custom-html-1w label {
  color: #ffffff;
}
#custom-html-1w .form-control-label {
  color: #ffffff;
}
#custom-html-1w SMALL {
  color: #000000;
  font-family: 'Raleway', sans-serif;
}
#custom-html-1w .rs-form-control {
  background-color: #f5f5f5;
  border-radius: 3px;
  box-shadow: none;
  color: #565656;
  font-size: 1.3rem;
  line-height: 1.53;
  min-height: 3.5em;
  padding: 0.5em 1.07em 0.5em;
}
#custom-html-1w .rs-form-control,
#custom-html-1w .rs-form-control:focus {
  border: 1px solid #e8e8e8;
}
#custom-html-1w .rs-form-active .rs-form-control:invalid {
  border-color: #f28281;
}
#custom-html-1w .rs-form-control-label {
  cursor: pointer;
  font-size: 0.875rem;
  margin-bottom: 0.357em;
  padding: 0;
}
#custom-html-1w .rs-form-control,
#custom-html-1w .rs-form-control-file,
#custom-html-1w .rs-form-control-range {
  display: block;
}
#custom-html-1w .rs-form-control {
  width: 100%;
  background-image: none;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
#custom-html-1w .regular-checkbox {
  display: none;
}
#custom-html-1w .regular-checkbox + label {
  width: 100%;
  background-color: #fafafa;
  border: 1px solid #cacece;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 9px;
  border-radius: 3px;
  display: inline-block;
  position: relative;
}
#custom-html-1w .regular-checkbox + label:active,
#custom-html-1w .regular-checkbox:checked + label:active {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px 1px 3px rgba(0, 0, 0, 0.1);
}
#custom-html-1w .regular-checkbox:checked + label {
  background-color: #e9ecee;
  border: 1px solid #adb8c0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05), inset 15px 10px -12px rgba(255, 255, 255, 0.1);
  color: #000000;
}
#custom-html-1w .regular-checkbox:checked + label:after {
  content: '\2714';
  font-size: 17px;
  position: absolute;
  top: 0px;
  left: 3px;
  color: #000000;
}
#custom-html-1w .big-checkbox + label {
  font-size: 1.3rem;
  font-family: 'Raleway', sans-serif;
  padding: 18px;
  color: #000000;
}
#custom-html-1w .big-checkbox:checked + label:after {
  font-size: 1.3rem;
  font-family: 'Raleway', sans-serif;
  left: 6px;
  color: #000000;
}
#custom-html-1w .adj-top {
  padding-top: 20px !important;
}
#custom-html-1w #notes {
  background-color: #cdcdcd;
  color: #000000;
  padding: 5px;
}
#custom-html-1w .boldit {
  font-weight: 700;
}
#custom-html-1w H3 {
  color: #ffffff;
}
#custom-html-1w P {
  color: #f7da64;
  text-align: left;
}
#custom-html-1w SPAN {
  font-size: 19px;
}
#custom-html-1w .mbr-section-title,
#custom-html-1w p {
  color: #fff;
}
#custom-html-1v div {
  height: 20px;
}
#custom-html-1z {
  /*td.rsc * {
	padding: 0px 5px;
}*/
}
#custom-html-1z input {
  text-align: center;
}
#custom-html-1z table.rsc {
  border-collapse: collapse;
  width: 98%;
  margin: 4px;
  font-family: "Verdana", sans-serif;
  font-weight: 400;
  font-size: 14.0px;
}
#custom-html-1z th.rsc {
  background: #3d493b;
  color: #fff;
  font-weight: bold;
  padding: 0px 5px;
  text-align: left;
  border-right: 1px solid #fff;
  line-height: 1.6;
}
#custom-html-1z td.rsc {
  padding: 0px 5px;
  border-bottom: 1px solid #3d493b;
  vertical-align: middle;
}
#custom-html-1z tr.rsc.alt td.rsc {
  background: #78ac70;
}
#custom-html-1z tr.rsc.over td.rsc,
#custom-html-1z tr.rsc:hover td.rsc {
  background: #78ac70;
}
#custom-html-1z table.pages {
  border-collapse: collapse;
  width: 10%;
  height: 20px;
  margin: 4px 4px 4px 4px;
  font-family: "Verdana", sans-serif;
  font-weight: 400;
  font-size: 14.0px;
}
#custom-html-1z th.pages {
  background: #3d493b;
  color: #fff;
  font-weight: bold;
  padding: 0px 5px;
  text-align: left;
  border-right: 1px solid #fff;
  line-height: 1.6;
}
#custom-html-1z tr.pages.alt td.pages {
  background: #CBCBCB;
}
#custom-html-1z tr.pages.over td.pages,
#custom-html-1z tr.pages:hover td.pages {
  background: #CBCBCB;
}
#custom-html-1z .Artistic-Body-RSC {
  font-family: "Verdana", sans-serif;
  font-weight: 400;
  font-size: 16.0px;
  line-height: 1.19em;
  color: #d1dccf;
}
#custom-html-1z .Artistic-Body-RSC {
  font-family: "Verdana", sans-serif;
  font-weight: 400;
  font-size: 16.0px;
  line-height: 1.19em;
  color: #d1dccf;
}
#custom-html-1z a.hlink_1:link {
  color: #ffffff;
}
#custom-html-1z a.hlink_1:visited {
  color: #b8dfea;
}
#custom-html-1z a.hlink_1:hover {
  color: #ff0000;
}
#custom-html-1z a.hlink_1:active {
  color: #ff8000;
}
#custom-html-21 .mbr-section-subtitle {
  color: #767676;
}
.cid-tqsUIRzFhH {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #091a81;
}
.cid-tqsUIRzFhH .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tqsUIRzFhH .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tqsUIRzFhH .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tqsUIRzFhH .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tqsUIRzFhH div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tqsUIRzFhH .copyright {
  color: #ffffff;
}
.cid-tqsSDwfoMR {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tqsSDwfoMR nav.navbar {
  position: fixed;
}
.cid-tqsSDwfoMR .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-tqsSDwfoMR .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tqsSDwfoMR .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tqsSDwfoMR .dropdown-item:hover,
.cid-tqsSDwfoMR .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tqsSDwfoMR .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tqsSDwfoMR .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tqsSDwfoMR .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tqsSDwfoMR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tqsSDwfoMR .nav-link {
  position: relative;
}
.cid-tqsSDwfoMR .container {
  display: flex;
  margin: auto;
}
.cid-tqsSDwfoMR .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tqsSDwfoMR .dropdown-menu,
.cid-tqsSDwfoMR .navbar.opened {
  background: #091a81 !important;
}
.cid-tqsSDwfoMR .nav-item:focus,
.cid-tqsSDwfoMR .nav-link:focus {
  outline: none;
}
.cid-tqsSDwfoMR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tqsSDwfoMR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tqsSDwfoMR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tqsSDwfoMR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tqsSDwfoMR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tqsSDwfoMR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tqsSDwfoMR .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: #091a81;
}
.cid-tqsSDwfoMR .navbar.opened {
  transition: all 0.3s;
}
.cid-tqsSDwfoMR .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tqsSDwfoMR .navbar .navbar-logo img {
  width: auto;
}
.cid-tqsSDwfoMR .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tqsSDwfoMR .navbar.collapsed {
  justify-content: center;
}
.cid-tqsSDwfoMR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tqsSDwfoMR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tqsSDwfoMR .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-tqsSDwfoMR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tqsSDwfoMR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tqsSDwfoMR .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-tqsSDwfoMR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tqsSDwfoMR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tqsSDwfoMR .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tqsSDwfoMR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tqsSDwfoMR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tqsSDwfoMR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tqsSDwfoMR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tqsSDwfoMR .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-tqsSDwfoMR .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tqsSDwfoMR .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tqsSDwfoMR .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tqsSDwfoMR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tqsSDwfoMR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tqsSDwfoMR .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tqsSDwfoMR .navbar.navbar-short {
  min-height: 60px;
}
.cid-tqsSDwfoMR .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tqsSDwfoMR .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tqsSDwfoMR .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-tqsSDwfoMR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tqsSDwfoMR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tqsSDwfoMR .dropdown-item.active,
.cid-tqsSDwfoMR .dropdown-item:active {
  background-color: transparent;
}
.cid-tqsSDwfoMR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tqsSDwfoMR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tqsSDwfoMR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tqsSDwfoMR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #091a81;
}
.cid-tqsSDwfoMR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tqsSDwfoMR .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tqsSDwfoMR ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tqsSDwfoMR .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tqsSDwfoMR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tqsSDwfoMR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tqsSDwfoMR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tqsSDwfoMR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tqsSDwfoMR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tqsSDwfoMR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tqsSDwfoMR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqsSDwfoMR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tqsSDwfoMR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tqsSDwfoMR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqsSDwfoMR .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tqsSDwfoMR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tqsSDwfoMR .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-tqsSDwfoMR .navbar {
    height: 70px;
  }
  .cid-tqsSDwfoMR .navbar.opened {
    height: auto;
  }
  .cid-tqsSDwfoMR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tqxp1xJuM9 {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/mbr-1920x1152.jpg");
}
.cid-tqxp1xJuM9 .mbr-section-title {
  color: #091a81;
}
.cid-tqxp1xJuM9 .mbr-section-subtitle {
  color: #091a81;
}
#custom-html-2c div {
  height: 20px;
}
#custom-html-2d h2 {
  color: #091a81;
}
.cid-tqsUIRzFhH {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #091a81;
}
.cid-tqsUIRzFhH .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tqsUIRzFhH .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tqsUIRzFhH .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tqsUIRzFhH .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tqsUIRzFhH div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tqsUIRzFhH .copyright {
  color: #ffffff;
}
.cid-tqsSDwfoMR {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tqsSDwfoMR nav.navbar {
  position: fixed;
}
.cid-tqsSDwfoMR .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-tqsSDwfoMR .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tqsSDwfoMR .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tqsSDwfoMR .dropdown-item:hover,
.cid-tqsSDwfoMR .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tqsSDwfoMR .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tqsSDwfoMR .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tqsSDwfoMR .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tqsSDwfoMR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tqsSDwfoMR .nav-link {
  position: relative;
}
.cid-tqsSDwfoMR .container {
  display: flex;
  margin: auto;
}
.cid-tqsSDwfoMR .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tqsSDwfoMR .dropdown-menu,
.cid-tqsSDwfoMR .navbar.opened {
  background: #091a81 !important;
}
.cid-tqsSDwfoMR .nav-item:focus,
.cid-tqsSDwfoMR .nav-link:focus {
  outline: none;
}
.cid-tqsSDwfoMR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tqsSDwfoMR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tqsSDwfoMR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tqsSDwfoMR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tqsSDwfoMR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tqsSDwfoMR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tqsSDwfoMR .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: #091a81;
}
.cid-tqsSDwfoMR .navbar.opened {
  transition: all 0.3s;
}
.cid-tqsSDwfoMR .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tqsSDwfoMR .navbar .navbar-logo img {
  width: auto;
}
.cid-tqsSDwfoMR .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tqsSDwfoMR .navbar.collapsed {
  justify-content: center;
}
.cid-tqsSDwfoMR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tqsSDwfoMR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tqsSDwfoMR .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-tqsSDwfoMR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tqsSDwfoMR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tqsSDwfoMR .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-tqsSDwfoMR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tqsSDwfoMR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tqsSDwfoMR .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tqsSDwfoMR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tqsSDwfoMR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tqsSDwfoMR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tqsSDwfoMR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tqsSDwfoMR .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-tqsSDwfoMR .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tqsSDwfoMR .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tqsSDwfoMR .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tqsSDwfoMR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tqsSDwfoMR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tqsSDwfoMR .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tqsSDwfoMR .navbar.navbar-short {
  min-height: 60px;
}
.cid-tqsSDwfoMR .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tqsSDwfoMR .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tqsSDwfoMR .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-tqsSDwfoMR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tqsSDwfoMR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tqsSDwfoMR .dropdown-item.active,
.cid-tqsSDwfoMR .dropdown-item:active {
  background-color: transparent;
}
.cid-tqsSDwfoMR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tqsSDwfoMR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tqsSDwfoMR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tqsSDwfoMR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #091a81;
}
.cid-tqsSDwfoMR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tqsSDwfoMR .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tqsSDwfoMR ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tqsSDwfoMR .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tqsSDwfoMR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tqsSDwfoMR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tqsSDwfoMR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tqsSDwfoMR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tqsSDwfoMR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tqsSDwfoMR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tqsSDwfoMR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqsSDwfoMR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tqsSDwfoMR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tqsSDwfoMR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqsSDwfoMR .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tqsSDwfoMR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tqsSDwfoMR .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-tqsSDwfoMR .navbar {
    height: 70px;
  }
  .cid-tqsSDwfoMR .navbar.opened {
    height: auto;
  }
  .cid-tqsSDwfoMR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tqxrLGQns5 {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/mbr-34-1920x1280.jpg");
}
.cid-tqxrLGQns5 .mbr-section-title {
  color: #091a81;
}
.cid-tqxrLGQns5 .mbr-section-subtitle {
  color: #091a81;
}
#custom-html-2i div {
  height: 20px;
}
#custom-html-2j h4 {
  color: #091a81;
}
#custom-html-2k .mbr-section-subtitle {
  color: #767676;
}
.cid-tqsUIRzFhH {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #091a81;
}
.cid-tqsUIRzFhH .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tqsUIRzFhH .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tqsUIRzFhH .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tqsUIRzFhH .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tqsUIRzFhH div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tqsUIRzFhH .copyright {
  color: #ffffff;
}
.cid-tqsSDwfoMR {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tqsSDwfoMR nav.navbar {
  position: fixed;
}
.cid-tqsSDwfoMR .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-tqsSDwfoMR .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tqsSDwfoMR .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tqsSDwfoMR .dropdown-item:hover,
.cid-tqsSDwfoMR .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tqsSDwfoMR .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tqsSDwfoMR .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tqsSDwfoMR .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tqsSDwfoMR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tqsSDwfoMR .nav-link {
  position: relative;
}
.cid-tqsSDwfoMR .container {
  display: flex;
  margin: auto;
}
.cid-tqsSDwfoMR .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tqsSDwfoMR .dropdown-menu,
.cid-tqsSDwfoMR .navbar.opened {
  background: #091a81 !important;
}
.cid-tqsSDwfoMR .nav-item:focus,
.cid-tqsSDwfoMR .nav-link:focus {
  outline: none;
}
.cid-tqsSDwfoMR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tqsSDwfoMR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tqsSDwfoMR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tqsSDwfoMR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tqsSDwfoMR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tqsSDwfoMR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tqsSDwfoMR .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: #091a81;
}
.cid-tqsSDwfoMR .navbar.opened {
  transition: all 0.3s;
}
.cid-tqsSDwfoMR .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tqsSDwfoMR .navbar .navbar-logo img {
  width: auto;
}
.cid-tqsSDwfoMR .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tqsSDwfoMR .navbar.collapsed {
  justify-content: center;
}
.cid-tqsSDwfoMR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tqsSDwfoMR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tqsSDwfoMR .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-tqsSDwfoMR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tqsSDwfoMR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tqsSDwfoMR .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-tqsSDwfoMR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tqsSDwfoMR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tqsSDwfoMR .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tqsSDwfoMR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tqsSDwfoMR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tqsSDwfoMR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tqsSDwfoMR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tqsSDwfoMR .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-tqsSDwfoMR .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tqsSDwfoMR .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tqsSDwfoMR .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tqsSDwfoMR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tqsSDwfoMR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tqsSDwfoMR .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tqsSDwfoMR .navbar.navbar-short {
  min-height: 60px;
}
.cid-tqsSDwfoMR .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tqsSDwfoMR .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tqsSDwfoMR .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-tqsSDwfoMR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tqsSDwfoMR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tqsSDwfoMR .dropdown-item.active,
.cid-tqsSDwfoMR .dropdown-item:active {
  background-color: transparent;
}
.cid-tqsSDwfoMR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tqsSDwfoMR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tqsSDwfoMR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tqsSDwfoMR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #091a81;
}
.cid-tqsSDwfoMR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tqsSDwfoMR .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tqsSDwfoMR ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tqsSDwfoMR .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tqsSDwfoMR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tqsSDwfoMR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tqsSDwfoMR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tqsSDwfoMR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tqsSDwfoMR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tqsSDwfoMR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tqsSDwfoMR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqsSDwfoMR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tqsSDwfoMR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tqsSDwfoMR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqsSDwfoMR .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tqsSDwfoMR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tqsSDwfoMR .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-tqsSDwfoMR .navbar {
    height: 70px;
  }
  .cid-tqsSDwfoMR .navbar.opened {
    height: auto;
  }
  .cid-tqsSDwfoMR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tqxt1dPGeE {
  background-image: url("../../../assets/images/mbr-3-1920x1275.jpg");
}
#custom-html-2o .mbr-section-subtitle {
  color: #767676;
}
.cid-tqsUIRzFhH {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #091a81;
}
.cid-tqsUIRzFhH .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tqsUIRzFhH .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tqsUIRzFhH .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tqsUIRzFhH .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tqsUIRzFhH div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tqsUIRzFhH .copyright {
  color: #ffffff;
}
.cid-tqxI6mYrNC {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tqxI6mYrNC nav.navbar {
  position: fixed;
}
.cid-tqxI6mYrNC .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-tqxI6mYrNC .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tqxI6mYrNC .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tqxI6mYrNC .dropdown-item:hover,
.cid-tqxI6mYrNC .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tqxI6mYrNC .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tqxI6mYrNC .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tqxI6mYrNC .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tqxI6mYrNC .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tqxI6mYrNC .nav-link {
  position: relative;
}
.cid-tqxI6mYrNC .container {
  display: flex;
  margin: auto;
}
.cid-tqxI6mYrNC .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tqxI6mYrNC .dropdown-menu,
.cid-tqxI6mYrNC .navbar.opened {
  background: #091a81 !important;
}
.cid-tqxI6mYrNC .nav-item:focus,
.cid-tqxI6mYrNC .nav-link:focus {
  outline: none;
}
.cid-tqxI6mYrNC .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tqxI6mYrNC .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tqxI6mYrNC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tqxI6mYrNC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tqxI6mYrNC .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tqxI6mYrNC .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tqxI6mYrNC .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: #091a81;
}
.cid-tqxI6mYrNC .navbar.opened {
  transition: all 0.3s;
}
.cid-tqxI6mYrNC .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tqxI6mYrNC .navbar .navbar-logo img {
  width: auto;
}
.cid-tqxI6mYrNC .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tqxI6mYrNC .navbar.collapsed {
  justify-content: center;
}
.cid-tqxI6mYrNC .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tqxI6mYrNC .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tqxI6mYrNC .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-tqxI6mYrNC .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tqxI6mYrNC .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tqxI6mYrNC .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-tqxI6mYrNC .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tqxI6mYrNC .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tqxI6mYrNC .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tqxI6mYrNC .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tqxI6mYrNC .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tqxI6mYrNC .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tqxI6mYrNC .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tqxI6mYrNC .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-tqxI6mYrNC .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tqxI6mYrNC .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tqxI6mYrNC .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tqxI6mYrNC .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tqxI6mYrNC .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tqxI6mYrNC .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tqxI6mYrNC .navbar.navbar-short {
  min-height: 60px;
}
.cid-tqxI6mYrNC .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tqxI6mYrNC .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tqxI6mYrNC .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-tqxI6mYrNC .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tqxI6mYrNC .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tqxI6mYrNC .dropdown-item.active,
.cid-tqxI6mYrNC .dropdown-item:active {
  background-color: transparent;
}
.cid-tqxI6mYrNC .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tqxI6mYrNC .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tqxI6mYrNC .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tqxI6mYrNC .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #091a81;
}
.cid-tqxI6mYrNC .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tqxI6mYrNC .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tqxI6mYrNC ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tqxI6mYrNC .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tqxI6mYrNC button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tqxI6mYrNC button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tqxI6mYrNC button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tqxI6mYrNC button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tqxI6mYrNC button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tqxI6mYrNC button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tqxI6mYrNC nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqxI6mYrNC nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tqxI6mYrNC nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tqxI6mYrNC nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqxI6mYrNC .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tqxI6mYrNC a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tqxI6mYrNC .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-tqxI6mYrNC .navbar {
    height: 70px;
  }
  .cid-tqxI6mYrNC .navbar.opened {
    height: auto;
  }
  .cid-tqxI6mYrNC .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tqxI6nIevN {
  background-image: url("../../../assets/images/mbr-1-1920x1282.jpg");
}
#custom-html-2r .mbr-section-subtitle {
  color: #767676;
}
.cid-tqxI6oeRpe {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #091a81;
}
.cid-tqxI6oeRpe .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tqxI6oeRpe .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tqxI6oeRpe .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tqxI6oeRpe .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tqxI6oeRpe div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tqxI6oeRpe .copyright {
  color: #ffffff;
}
.cid-tqxIRDHt5A {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tqxIRDHt5A nav.navbar {
  position: fixed;
}
.cid-tqxIRDHt5A .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-tqxIRDHt5A .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tqxIRDHt5A .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tqxIRDHt5A .dropdown-item:hover,
.cid-tqxIRDHt5A .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tqxIRDHt5A .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tqxIRDHt5A .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tqxIRDHt5A .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tqxIRDHt5A .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tqxIRDHt5A .nav-link {
  position: relative;
}
.cid-tqxIRDHt5A .container {
  display: flex;
  margin: auto;
}
.cid-tqxIRDHt5A .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tqxIRDHt5A .dropdown-menu,
.cid-tqxIRDHt5A .navbar.opened {
  background: #091a81 !important;
}
.cid-tqxIRDHt5A .nav-item:focus,
.cid-tqxIRDHt5A .nav-link:focus {
  outline: none;
}
.cid-tqxIRDHt5A .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tqxIRDHt5A .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tqxIRDHt5A .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tqxIRDHt5A .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tqxIRDHt5A .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tqxIRDHt5A .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tqxIRDHt5A .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: #091a81;
}
.cid-tqxIRDHt5A .navbar.opened {
  transition: all 0.3s;
}
.cid-tqxIRDHt5A .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tqxIRDHt5A .navbar .navbar-logo img {
  width: auto;
}
.cid-tqxIRDHt5A .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tqxIRDHt5A .navbar.collapsed {
  justify-content: center;
}
.cid-tqxIRDHt5A .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tqxIRDHt5A .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tqxIRDHt5A .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-tqxIRDHt5A .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tqxIRDHt5A .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tqxIRDHt5A .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-tqxIRDHt5A .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tqxIRDHt5A .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tqxIRDHt5A .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tqxIRDHt5A .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tqxIRDHt5A .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tqxIRDHt5A .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tqxIRDHt5A .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tqxIRDHt5A .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-tqxIRDHt5A .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tqxIRDHt5A .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tqxIRDHt5A .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tqxIRDHt5A .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tqxIRDHt5A .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tqxIRDHt5A .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tqxIRDHt5A .navbar.navbar-short {
  min-height: 60px;
}
.cid-tqxIRDHt5A .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tqxIRDHt5A .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tqxIRDHt5A .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-tqxIRDHt5A .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tqxIRDHt5A .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tqxIRDHt5A .dropdown-item.active,
.cid-tqxIRDHt5A .dropdown-item:active {
  background-color: transparent;
}
.cid-tqxIRDHt5A .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tqxIRDHt5A .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tqxIRDHt5A .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tqxIRDHt5A .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #091a81;
}
.cid-tqxIRDHt5A .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tqxIRDHt5A .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tqxIRDHt5A ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tqxIRDHt5A .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tqxIRDHt5A button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tqxIRDHt5A button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tqxIRDHt5A button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tqxIRDHt5A button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tqxIRDHt5A button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tqxIRDHt5A button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tqxIRDHt5A nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqxIRDHt5A nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tqxIRDHt5A nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tqxIRDHt5A nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqxIRDHt5A .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tqxIRDHt5A a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tqxIRDHt5A .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-tqxIRDHt5A .navbar {
    height: 70px;
  }
  .cid-tqxIRDHt5A .navbar.opened {
    height: auto;
  }
  .cid-tqxIRDHt5A .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tqxIREfxOw {
  background-image: url("../../../assets/images/mbr-21-1920x1280.jpg");
}
#custom-html-2x .mbr-section-subtitle {
  color: #767676;
}
.cid-tqxIREPEp2 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #091a81;
}
.cid-tqxIREPEp2 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tqxIREPEp2 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tqxIREPEp2 .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tqxIREPEp2 .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tqxIREPEp2 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tqxIREPEp2 .copyright {
  color: #ffffff;
}
.cid-tqxIRDHt5A {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tqxIRDHt5A nav.navbar {
  position: fixed;
}
.cid-tqxIRDHt5A .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-tqxIRDHt5A .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tqxIRDHt5A .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tqxIRDHt5A .dropdown-item:hover,
.cid-tqxIRDHt5A .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tqxIRDHt5A .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tqxIRDHt5A .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tqxIRDHt5A .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tqxIRDHt5A .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tqxIRDHt5A .nav-link {
  position: relative;
}
.cid-tqxIRDHt5A .container {
  display: flex;
  margin: auto;
}
.cid-tqxIRDHt5A .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tqxIRDHt5A .dropdown-menu,
.cid-tqxIRDHt5A .navbar.opened {
  background: #091a81 !important;
}
.cid-tqxIRDHt5A .nav-item:focus,
.cid-tqxIRDHt5A .nav-link:focus {
  outline: none;
}
.cid-tqxIRDHt5A .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tqxIRDHt5A .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tqxIRDHt5A .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tqxIRDHt5A .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tqxIRDHt5A .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tqxIRDHt5A .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tqxIRDHt5A .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: #091a81;
}
.cid-tqxIRDHt5A .navbar.opened {
  transition: all 0.3s;
}
.cid-tqxIRDHt5A .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tqxIRDHt5A .navbar .navbar-logo img {
  width: auto;
}
.cid-tqxIRDHt5A .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tqxIRDHt5A .navbar.collapsed {
  justify-content: center;
}
.cid-tqxIRDHt5A .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tqxIRDHt5A .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tqxIRDHt5A .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-tqxIRDHt5A .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tqxIRDHt5A .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tqxIRDHt5A .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-tqxIRDHt5A .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tqxIRDHt5A .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tqxIRDHt5A .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tqxIRDHt5A .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tqxIRDHt5A .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tqxIRDHt5A .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tqxIRDHt5A .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tqxIRDHt5A .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-tqxIRDHt5A .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tqxIRDHt5A .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tqxIRDHt5A .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tqxIRDHt5A .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tqxIRDHt5A .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tqxIRDHt5A .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tqxIRDHt5A .navbar.navbar-short {
  min-height: 60px;
}
.cid-tqxIRDHt5A .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tqxIRDHt5A .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tqxIRDHt5A .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-tqxIRDHt5A .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tqxIRDHt5A .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tqxIRDHt5A .dropdown-item.active,
.cid-tqxIRDHt5A .dropdown-item:active {
  background-color: transparent;
}
.cid-tqxIRDHt5A .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tqxIRDHt5A .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tqxIRDHt5A .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tqxIRDHt5A .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #091a81;
}
.cid-tqxIRDHt5A .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tqxIRDHt5A .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tqxIRDHt5A ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tqxIRDHt5A .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tqxIRDHt5A button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tqxIRDHt5A button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tqxIRDHt5A button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tqxIRDHt5A button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tqxIRDHt5A button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tqxIRDHt5A button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tqxIRDHt5A nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqxIRDHt5A nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tqxIRDHt5A nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tqxIRDHt5A nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqxIRDHt5A .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tqxIRDHt5A a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tqxIRDHt5A .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-tqxIRDHt5A .navbar {
    height: 70px;
  }
  .cid-tqxIRDHt5A .navbar.opened {
    height: auto;
  }
  .cid-tqxIRDHt5A .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tqxJQr0FJ9 {
  background-image: url("../../../assets/images/mbr-1920x1269.jpg");
}
.cid-tqxIREPEp2 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #091a81;
}
.cid-tqxIREPEp2 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tqxIREPEp2 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tqxIREPEp2 .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tqxIREPEp2 .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tqxIREPEp2 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tqxIREPEp2 .copyright {
  color: #ffffff;
}
.cid-tqxIRDHt5A {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tqxIRDHt5A nav.navbar {
  position: fixed;
}
.cid-tqxIRDHt5A .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-tqxIRDHt5A .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tqxIRDHt5A .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tqxIRDHt5A .dropdown-item:hover,
.cid-tqxIRDHt5A .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tqxIRDHt5A .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tqxIRDHt5A .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tqxIRDHt5A .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tqxIRDHt5A .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tqxIRDHt5A .nav-link {
  position: relative;
}
.cid-tqxIRDHt5A .container {
  display: flex;
  margin: auto;
}
.cid-tqxIRDHt5A .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tqxIRDHt5A .dropdown-menu,
.cid-tqxIRDHt5A .navbar.opened {
  background: #091a81 !important;
}
.cid-tqxIRDHt5A .nav-item:focus,
.cid-tqxIRDHt5A .nav-link:focus {
  outline: none;
}
.cid-tqxIRDHt5A .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tqxIRDHt5A .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tqxIRDHt5A .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tqxIRDHt5A .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tqxIRDHt5A .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tqxIRDHt5A .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tqxIRDHt5A .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: #091a81;
}
.cid-tqxIRDHt5A .navbar.opened {
  transition: all 0.3s;
}
.cid-tqxIRDHt5A .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tqxIRDHt5A .navbar .navbar-logo img {
  width: auto;
}
.cid-tqxIRDHt5A .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tqxIRDHt5A .navbar.collapsed {
  justify-content: center;
}
.cid-tqxIRDHt5A .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tqxIRDHt5A .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tqxIRDHt5A .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-tqxIRDHt5A .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tqxIRDHt5A .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tqxIRDHt5A .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-tqxIRDHt5A .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tqxIRDHt5A .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tqxIRDHt5A .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tqxIRDHt5A .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tqxIRDHt5A .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tqxIRDHt5A .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tqxIRDHt5A .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tqxIRDHt5A .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-tqxIRDHt5A .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tqxIRDHt5A .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tqxIRDHt5A .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tqxIRDHt5A .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tqxIRDHt5A .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tqxIRDHt5A .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tqxIRDHt5A .navbar.navbar-short {
  min-height: 60px;
}
.cid-tqxIRDHt5A .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tqxIRDHt5A .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tqxIRDHt5A .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-tqxIRDHt5A .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tqxIRDHt5A .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tqxIRDHt5A .dropdown-item.active,
.cid-tqxIRDHt5A .dropdown-item:active {
  background-color: transparent;
}
.cid-tqxIRDHt5A .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tqxIRDHt5A .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tqxIRDHt5A .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tqxIRDHt5A .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #091a81;
}
.cid-tqxIRDHt5A .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tqxIRDHt5A .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tqxIRDHt5A ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tqxIRDHt5A .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tqxIRDHt5A button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tqxIRDHt5A button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tqxIRDHt5A button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tqxIRDHt5A button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tqxIRDHt5A button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tqxIRDHt5A button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tqxIRDHt5A nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqxIRDHt5A nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tqxIRDHt5A nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tqxIRDHt5A nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqxIRDHt5A .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tqxIRDHt5A a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tqxIRDHt5A .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-tqxIRDHt5A .navbar {
    height: 70px;
  }
  .cid-tqxIRDHt5A .navbar.opened {
    height: auto;
  }
  .cid-tqxIRDHt5A .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tqxP1Zk05G {
  background-image: url("../../../assets/images/mbr-1920x1251.jpg");
}
.cid-tqxIREPEp2 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #091a81;
}
.cid-tqxIREPEp2 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tqxIREPEp2 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tqxIREPEp2 .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tqxIREPEp2 .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tqxIREPEp2 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tqxIREPEp2 .copyright {
  color: #ffffff;
}
.cid-tqxIRDHt5A {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tqxIRDHt5A nav.navbar {
  position: fixed;
}
.cid-tqxIRDHt5A .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-tqxIRDHt5A .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tqxIRDHt5A .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tqxIRDHt5A .dropdown-item:hover,
.cid-tqxIRDHt5A .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tqxIRDHt5A .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tqxIRDHt5A .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tqxIRDHt5A .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tqxIRDHt5A .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tqxIRDHt5A .nav-link {
  position: relative;
}
.cid-tqxIRDHt5A .container {
  display: flex;
  margin: auto;
}
.cid-tqxIRDHt5A .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tqxIRDHt5A .dropdown-menu,
.cid-tqxIRDHt5A .navbar.opened {
  background: #091a81 !important;
}
.cid-tqxIRDHt5A .nav-item:focus,
.cid-tqxIRDHt5A .nav-link:focus {
  outline: none;
}
.cid-tqxIRDHt5A .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tqxIRDHt5A .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tqxIRDHt5A .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tqxIRDHt5A .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tqxIRDHt5A .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tqxIRDHt5A .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tqxIRDHt5A .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: #091a81;
}
.cid-tqxIRDHt5A .navbar.opened {
  transition: all 0.3s;
}
.cid-tqxIRDHt5A .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tqxIRDHt5A .navbar .navbar-logo img {
  width: auto;
}
.cid-tqxIRDHt5A .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tqxIRDHt5A .navbar.collapsed {
  justify-content: center;
}
.cid-tqxIRDHt5A .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tqxIRDHt5A .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tqxIRDHt5A .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-tqxIRDHt5A .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tqxIRDHt5A .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tqxIRDHt5A .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-tqxIRDHt5A .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tqxIRDHt5A .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tqxIRDHt5A .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tqxIRDHt5A .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tqxIRDHt5A .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tqxIRDHt5A .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tqxIRDHt5A .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tqxIRDHt5A .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-tqxIRDHt5A .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tqxIRDHt5A .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tqxIRDHt5A .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tqxIRDHt5A .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tqxIRDHt5A .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tqxIRDHt5A .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tqxIRDHt5A .navbar.navbar-short {
  min-height: 60px;
}
.cid-tqxIRDHt5A .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tqxIRDHt5A .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tqxIRDHt5A .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-tqxIRDHt5A .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tqxIRDHt5A .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tqxIRDHt5A .dropdown-item.active,
.cid-tqxIRDHt5A .dropdown-item:active {
  background-color: transparent;
}
.cid-tqxIRDHt5A .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tqxIRDHt5A .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tqxIRDHt5A .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tqxIRDHt5A .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #091a81;
}
.cid-tqxIRDHt5A .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tqxIRDHt5A .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tqxIRDHt5A ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tqxIRDHt5A .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tqxIRDHt5A button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tqxIRDHt5A button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tqxIRDHt5A button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tqxIRDHt5A button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tqxIRDHt5A button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tqxIRDHt5A button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tqxIRDHt5A nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqxIRDHt5A nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tqxIRDHt5A nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tqxIRDHt5A nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqxIRDHt5A .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tqxIRDHt5A a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tqxIRDHt5A .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-tqxIRDHt5A .navbar {
    height: 70px;
  }
  .cid-tqxIRDHt5A .navbar.opened {
    height: auto;
  }
  .cid-tqxIRDHt5A .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
#custom-html-39 .ajax-file-upload-preview {
  width: 32px !important;
}
#custom-html-39 .ajax-file-upload-filename {
  font-family: Verdana, sans-serif !important;
  font-size: 8px !important;
}
#custom-html-39 .ajax-file-upload-error {
  color: #ff0000;
}
#custom-html-39 input {
  text-align: center;
}
#custom-html-39 label {
  color: #ffffff;
}
#custom-html-39 .form-control-label {
  color: #ffffff;
}
#custom-html-39 SMALL {
  color: #000000;
  font-family: 'Raleway', sans-serif;
}
#custom-html-39 .rs-form-control {
  background-color: #f5f5f5;
  border-radius: 3px;
  box-shadow: none;
  color: #565656;
  font-size: 1.3rem;
  line-height: 1.53;
  min-height: 3.5em;
  padding: 0.5em 1.07em 0.5em;
}
#custom-html-39 .rs-form-control,
#custom-html-39 .rs-form-control:focus {
  border: 1px solid #e8e8e8;
}
#custom-html-39 .rs-form-active .rs-form-control:invalid {
  border-color: #f28281;
}
#custom-html-39 .rs-form-control-label {
  cursor: pointer;
  font-size: 0.875rem;
  margin-bottom: 0.357em;
  padding: 0;
}
#custom-html-39 .rs-form-control,
#custom-html-39 .rs-form-control-file,
#custom-html-39 .rs-form-control-range {
  display: block;
}
#custom-html-39 .rs-form-control {
  width: 100%;
  background-image: none;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
#custom-html-39 .regular-checkbox {
  display: none;
}
#custom-html-39 .regular-checkbox + label {
  width: 100%;
  background-color: #fafafa;
  border: 1px solid #cacece;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 9px;
  border-radius: 3px;
  display: inline-block;
  position: relative;
}
#custom-html-39 .regular-checkbox + label:active,
#custom-html-39 .regular-checkbox:checked + label:active {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px 1px 3px rgba(0, 0, 0, 0.1);
}
#custom-html-39 .regular-checkbox:checked + label {
  background-color: #e9ecee;
  border: 1px solid #adb8c0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05), inset 15px 10px -12px rgba(255, 255, 255, 0.1);
  color: #000000;
}
#custom-html-39 .regular-checkbox:checked + label:after {
  content: '\2714';
  font-size: 17px;
  position: absolute;
  top: 0px;
  left: 3px;
  color: #000000;
}
#custom-html-39 .big-checkbox + label {
  font-size: 1.3rem;
  font-family: 'Raleway', sans-serif;
  padding: 18px;
  color: #000000;
}
#custom-html-39 .big-checkbox:checked + label:after {
  font-size: 1.3rem;
  font-family: 'Raleway', sans-serif;
  left: 6px;
  color: #000000;
}
#custom-html-39 .adj-top {
  padding-top: 20px !important;
}
#custom-html-39 #notes {
  background-color: #cdcdcd;
  color: #000000;
  padding: 5px;
}
#custom-html-39 .boldit {
  font-weight: 700;
}
#custom-html-39 .RSform-title {
  color: #ffffff;
  font-size: 24px;
}
.cid-tqxIREPEp2 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #091a81;
}
.cid-tqxIREPEp2 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tqxIREPEp2 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tqxIREPEp2 .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tqxIREPEp2 .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tqxIREPEp2 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tqxIREPEp2 .copyright {
  color: #ffffff;
}
.cid-tqxIRDHt5A {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tqxIRDHt5A nav.navbar {
  position: fixed;
}
.cid-tqxIRDHt5A .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-tqxIRDHt5A .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tqxIRDHt5A .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tqxIRDHt5A .dropdown-item:hover,
.cid-tqxIRDHt5A .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tqxIRDHt5A .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tqxIRDHt5A .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tqxIRDHt5A .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tqxIRDHt5A .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tqxIRDHt5A .nav-link {
  position: relative;
}
.cid-tqxIRDHt5A .container {
  display: flex;
  margin: auto;
}
.cid-tqxIRDHt5A .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tqxIRDHt5A .dropdown-menu,
.cid-tqxIRDHt5A .navbar.opened {
  background: #091a81 !important;
}
.cid-tqxIRDHt5A .nav-item:focus,
.cid-tqxIRDHt5A .nav-link:focus {
  outline: none;
}
.cid-tqxIRDHt5A .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tqxIRDHt5A .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tqxIRDHt5A .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tqxIRDHt5A .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tqxIRDHt5A .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tqxIRDHt5A .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tqxIRDHt5A .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: #091a81;
}
.cid-tqxIRDHt5A .navbar.opened {
  transition: all 0.3s;
}
.cid-tqxIRDHt5A .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tqxIRDHt5A .navbar .navbar-logo img {
  width: auto;
}
.cid-tqxIRDHt5A .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tqxIRDHt5A .navbar.collapsed {
  justify-content: center;
}
.cid-tqxIRDHt5A .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tqxIRDHt5A .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tqxIRDHt5A .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-tqxIRDHt5A .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tqxIRDHt5A .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tqxIRDHt5A .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-tqxIRDHt5A .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tqxIRDHt5A .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tqxIRDHt5A .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tqxIRDHt5A .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tqxIRDHt5A .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tqxIRDHt5A .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tqxIRDHt5A .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tqxIRDHt5A .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-tqxIRDHt5A .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tqxIRDHt5A .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tqxIRDHt5A .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tqxIRDHt5A .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tqxIRDHt5A .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tqxIRDHt5A .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tqxIRDHt5A .navbar.navbar-short {
  min-height: 60px;
}
.cid-tqxIRDHt5A .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tqxIRDHt5A .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tqxIRDHt5A .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-tqxIRDHt5A .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tqxIRDHt5A .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tqxIRDHt5A .dropdown-item.active,
.cid-tqxIRDHt5A .dropdown-item:active {
  background-color: transparent;
}
.cid-tqxIRDHt5A .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tqxIRDHt5A .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tqxIRDHt5A .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tqxIRDHt5A .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #091a81;
}
.cid-tqxIRDHt5A .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tqxIRDHt5A .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tqxIRDHt5A ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tqxIRDHt5A .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tqxIRDHt5A button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tqxIRDHt5A button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tqxIRDHt5A button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tqxIRDHt5A button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tqxIRDHt5A button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tqxIRDHt5A button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tqxIRDHt5A nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqxIRDHt5A nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tqxIRDHt5A nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tqxIRDHt5A nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqxIRDHt5A .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tqxIRDHt5A a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tqxIRDHt5A .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-tqxIRDHt5A .navbar {
    height: 70px;
  }
  .cid-tqxIRDHt5A .navbar.opened {
    height: auto;
  }
  .cid-tqxIRDHt5A .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tqxRXUS6e0 {
  background-image: url("../../../assets/images/mbr-2-1920x1272.jpg");
}
.cid-tqxRXUS6e0 .mbr-section-subtitle {
  text-align: left;
}
#custom-html-3d div {
  height: 20px;
}
.cid-tqxSA0oMLN {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/mbr-1-1920x1276.jpg");
}
.cid-tqxSA0oMLN .mbr-section-title {
  color: #091a81;
}
.cid-tqxSA0oMLN .mbr-section-subtitle {
  color: #091a81;
  text-align: left;
}
#custom-html-3f div {
  height: 20px;
}
.cid-uF7CEf65AB {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/mbr-30-1920x1280.jpg");
}
.cid-uF7CEf65AB iframe,
.cid-uF7CEf65AB img,
.cid-uF7CEf65AB video {
  width: 100%;
}
.cid-uF7CEf65AB .mbr-media {
  position: relative;
}
.cid-uF7CEf65AB .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-uF7CEf65AB .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-uF7CEf65AB .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-uF7CEf65AB .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  height: 100%;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-uF7CEf65AB .modalWindow {
    width: 100vw;
    height: 100vh;
  }
}
.cid-uF7CEf65AB .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-uF7CEf65AB .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-uF7CEf65AB .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uF7CEf65AB .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tqxSUYsbLQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffb18a;
}
.cid-tqxSUYsbLQ .line {
  background-color: #091a81;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tqxSUYsbLQ .mbr-text {
  text-align: left;
}
#custom-html-3i div {
  height: 20px;
}
#custom-html-3k .mbr-section-subtitle {
  color: #767676;
}
.cid-tqxIREPEp2 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #091a81;
}
.cid-tqxIREPEp2 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tqxIREPEp2 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tqxIREPEp2 .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tqxIREPEp2 .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tqxIREPEp2 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tqxIREPEp2 .copyright {
  color: #ffffff;
}
.cid-tqxIRDHt5A {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tqxIRDHt5A nav.navbar {
  position: fixed;
}
.cid-tqxIRDHt5A .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-tqxIRDHt5A .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tqxIRDHt5A .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tqxIRDHt5A .dropdown-item:hover,
.cid-tqxIRDHt5A .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tqxIRDHt5A .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tqxIRDHt5A .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tqxIRDHt5A .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tqxIRDHt5A .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tqxIRDHt5A .nav-link {
  position: relative;
}
.cid-tqxIRDHt5A .container {
  display: flex;
  margin: auto;
}
.cid-tqxIRDHt5A .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tqxIRDHt5A .dropdown-menu,
.cid-tqxIRDHt5A .navbar.opened {
  background: #091a81 !important;
}
.cid-tqxIRDHt5A .nav-item:focus,
.cid-tqxIRDHt5A .nav-link:focus {
  outline: none;
}
.cid-tqxIRDHt5A .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tqxIRDHt5A .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tqxIRDHt5A .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tqxIRDHt5A .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tqxIRDHt5A .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tqxIRDHt5A .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tqxIRDHt5A .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: #091a81;
}
.cid-tqxIRDHt5A .navbar.opened {
  transition: all 0.3s;
}
.cid-tqxIRDHt5A .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tqxIRDHt5A .navbar .navbar-logo img {
  width: auto;
}
.cid-tqxIRDHt5A .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tqxIRDHt5A .navbar.collapsed {
  justify-content: center;
}
.cid-tqxIRDHt5A .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tqxIRDHt5A .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tqxIRDHt5A .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-tqxIRDHt5A .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tqxIRDHt5A .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tqxIRDHt5A .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-tqxIRDHt5A .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tqxIRDHt5A .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tqxIRDHt5A .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tqxIRDHt5A .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tqxIRDHt5A .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tqxIRDHt5A .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tqxIRDHt5A .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tqxIRDHt5A .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-tqxIRDHt5A .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tqxIRDHt5A .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tqxIRDHt5A .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tqxIRDHt5A .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tqxIRDHt5A .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tqxIRDHt5A .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tqxIRDHt5A .navbar.navbar-short {
  min-height: 60px;
}
.cid-tqxIRDHt5A .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tqxIRDHt5A .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tqxIRDHt5A .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-tqxIRDHt5A .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tqxIRDHt5A .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tqxIRDHt5A .dropdown-item.active,
.cid-tqxIRDHt5A .dropdown-item:active {
  background-color: transparent;
}
.cid-tqxIRDHt5A .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tqxIRDHt5A .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tqxIRDHt5A .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tqxIRDHt5A .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #091a81;
}
.cid-tqxIRDHt5A .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tqxIRDHt5A .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tqxIRDHt5A ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tqxIRDHt5A .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tqxIRDHt5A button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tqxIRDHt5A button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tqxIRDHt5A button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tqxIRDHt5A button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tqxIRDHt5A button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tqxIRDHt5A button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tqxIRDHt5A nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqxIRDHt5A nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tqxIRDHt5A nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tqxIRDHt5A nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqxIRDHt5A .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tqxIRDHt5A a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tqxIRDHt5A .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-tqxIRDHt5A .navbar {
    height: 70px;
  }
  .cid-tqxIRDHt5A .navbar.opened {
    height: auto;
  }
  .cid-tqxIRDHt5A .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tqxXj351fr {
  padding-top: 9rem;
  padding-bottom: 3rem;
  background-image: url("https://www.foodplatform.net/assets/images/mbr-2-1920x1080.jpg");
}
#custom-html-3q div {
  height: 20px;
}
#custom-html-3n {
  /*td.rsc * {
	padding: 0px 5px;
}*/
}
#custom-html-3n .row {
  margin-right: 0px !important;
  margin-left: 0px !important;
}
#custom-html-3n input {
  text-align: center;
}
#custom-html-3n label {
  color: #000000;
}
#custom-html-3n .form-control-label {
  color: #000000;
}
#custom-html-3n SMALL {
  color: #000000;
  font-family: 'Poppins', 'Raleway', sans-serif;
}
#custom-html-3n .rs-form-control {
  background-color: #f5f5f5;
  border-radius: 3px;
  box-shadow: none;
  color: #565656;
  font-size: 1.3rem;
  line-height: 1.53;
  min-height: 2.6em;
  padding: 0.5em 1.07em 0.5em;
}
#custom-html-3n .rs-form-control,
#custom-html-3n .rs-form-control:focus {
  border: 1px solid #e8e8e8;
}
#custom-html-3n .rs-form-active .rs-form-control:invalid {
  border-color: #f28281;
}
#custom-html-3n .rs-form-control-label {
  cursor: pointer;
  font-size: 0.875rem;
  margin-bottom: 0.357em;
  padding: 0;
}
#custom-html-3n .rs-form-control,
#custom-html-3n .rs-form-control-file,
#custom-html-3n .rs-form-control-range {
  display: block;
}
#custom-html-3n .rs-form-control {
  width: 100%;
  background-image: none;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
#custom-html-3n .regular-checkbox {
  display: none;
}
#custom-html-3n .regular-checkbox + label {
  width: 100%;
  background-color: #fafafa;
  border: 1px solid #cacece;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 9px;
  border-radius: 3px;
  display: inline-block;
  position: relative;
}
#custom-html-3n .regular-checkbox + label:active,
#custom-html-3n .regular-checkbox:checked + label:active {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px 1px 3px rgba(0, 0, 0, 0.1);
}
#custom-html-3n .regular-checkbox:checked + label {
  background-color: #e9ecee;
  border: 1px solid #adb8c0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05), inset 15px 10px -12px rgba(255, 255, 255, 0.1);
  color: #000000;
}
#custom-html-3n .regular-checkbox:checked + label:after {
  content: '\2714';
  font-size: 17px;
  position: absolute;
  top: 0px;
  left: 3px;
  color: #000000;
}
#custom-html-3n .big-checkbox + label {
  font-size: 1.3rem;
  font-family: 'Poppins', 'Raleway', sans-serif;
  padding: 18px;
  color: #000000;
}
#custom-html-3n .big-checkbox:checked + label:after {
  font-size: 1.3rem;
  font-family: 'Poppins', 'Raleway', sans-serif;
  left: 6px;
  color: #000000;
}
#custom-html-3n .adj-top {
  padding-top: 20px !important;
}
#custom-html-3n #notes {
  background-color: #cdcdcd;
  color: #000000;
  padding: 5px;
}
#custom-html-3n .boldit {
  font-weight: 700;
}
#custom-html-3n .RSform-title {
  color: #ffffff;
  font-size: 24px;
}
#custom-html-3n table.rsc {
  border-collapse: collapse;
  width: 98%;
  margin: 4px;
  font-size: 1.1em;
  font-family: 'Poppins', 'Verdana', sans-serif;
  font-weight: 400;
  font-size: 10.0px;
}
#custom-html-3n th.rsc {
  background: #3d493b;
  color: #fff;
  font-weight: bold;
  padding: 0px 5px;
  text-align: left;
  border-right: 1px solid #fff;
  line-height: 1.2;
}
#custom-html-3n td.rsc {
  padding: 0px 5px;
  border-bottom: 1px solid #3d493b;
  vertical-align: middle;
}
#custom-html-3n tr.rsc.alt td.rsc {
  background: #78ac70;
}
#custom-html-3n tr.rsc.over td.rsc,
#custom-html-3n tr.rsc:hover td.rsc {
  background: #78ac70;
}
#custom-html-3n table.pages {
  border-collapse: collapse;
  width: 10%;
  height: 30px;
  margin: 4px 4px 4px 4px;
  font-size: 1.3em;
  font-family: 'Poppins', 'Arial', sans-serif;
  font-weight: 400;
  font-size: 10.0px;
}
#custom-html-3n th.pages {
  font-family: 'Poppins', 'Arial', sans-serif;
  font-size: 1.3em;
  background: #3d493b;
  color: #fff;
  font-weight: bold;
  padding: 0px 5px;
  text-align: left;
  border-right: 1px solid #fff;
  line-height: 1.4;
  border-radius: 10px;
  min-width: 32px;
  text-align: center;
}
#custom-html-3n tr.pages.alt td.pages {
  background: #CBCBCB;
}
#custom-html-3n tr.pages.over td.pages,
#custom-html-3n tr.pages:hover td.pages {
  background: #CBCBCB;
}
#custom-html-3n .Artistic-Body-RSC {
  font-family: 'Poppins', 'Verdana', sans-serif;
  font-weight: 400;
  font-size: 16.0px;
  line-height: 1.19em;
  color: #d1dccf;
}
#custom-html-3n .Artistic-Body-RSC {
  font-family: 'Poppins', 'Verdana', sans-serif;
  font-weight: 400;
  font-size: 16.0px;
  line-height: 1.19em;
  color: #d1dccf;
}
#custom-html-3n a.hlink_1:link {
  color: #ffffff;
}
#custom-html-3n a.hlink_1:visited {
  color: #b8dfea;
}
#custom-html-3n a.hlink_1:hover {
  color: #ff0000;
}
#custom-html-3n a.hlink_1:active {
  color: #ff8000;
}
#custom-html-3n body {
  background: #fff;
  color: #000;
  margin: 0;
  font-family: 'Poppins', 'Verdana', sans-serif !important;
}
#custom-html-3n .tiles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#custom-html-3n .tile {
  position: relative;
  float: left;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
#custom-html-3n .photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.5s ease-out;
}
#custom-html-3n .txt {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 10%;
  left: 0;
  font-family: 'Poppins', 'Verdana', sans-serif;
  font-size: 9px;
  line-height: 12px;
  text-align: center;
  cursor: default;
}
#custom-html-3n .x {
  font-size: 32px;
  line-height: 32px;
}
#custom-html-3r div {
  height: 20px;
}
.cid-tqxY7CFnXn {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tqxY7CFnXn .line {
  background-color: #091a81;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tqxIREPEp2 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #091a81;
}
.cid-tqxIREPEp2 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tqxIREPEp2 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tqxIREPEp2 .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tqxIREPEp2 .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tqxIREPEp2 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tqxIREPEp2 .copyright {
  color: #ffffff;
}
.cid-tqCTN7phgn {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tqCTN7phgn nav.navbar {
  position: fixed;
}
.cid-tqCTN7phgn .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-tqCTN7phgn .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tqCTN7phgn .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tqCTN7phgn .dropdown-item:hover,
.cid-tqCTN7phgn .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tqCTN7phgn .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tqCTN7phgn .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tqCTN7phgn .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tqCTN7phgn .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tqCTN7phgn .nav-link {
  position: relative;
}
.cid-tqCTN7phgn .container {
  display: flex;
  margin: auto;
}
.cid-tqCTN7phgn .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tqCTN7phgn .dropdown-menu,
.cid-tqCTN7phgn .navbar.opened {
  background: #091a81 !important;
}
.cid-tqCTN7phgn .nav-item:focus,
.cid-tqCTN7phgn .nav-link:focus {
  outline: none;
}
.cid-tqCTN7phgn .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tqCTN7phgn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tqCTN7phgn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tqCTN7phgn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tqCTN7phgn .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tqCTN7phgn .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tqCTN7phgn .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: #091a81;
}
.cid-tqCTN7phgn .navbar.opened {
  transition: all 0.3s;
}
.cid-tqCTN7phgn .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tqCTN7phgn .navbar .navbar-logo img {
  width: auto;
}
.cid-tqCTN7phgn .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tqCTN7phgn .navbar.collapsed {
  justify-content: center;
}
.cid-tqCTN7phgn .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tqCTN7phgn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tqCTN7phgn .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.9rem);
  }
}
.cid-tqCTN7phgn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tqCTN7phgn .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tqCTN7phgn .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-tqCTN7phgn .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tqCTN7phgn .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tqCTN7phgn .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tqCTN7phgn .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tqCTN7phgn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tqCTN7phgn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tqCTN7phgn .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tqCTN7phgn .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-tqCTN7phgn .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tqCTN7phgn .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tqCTN7phgn .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tqCTN7phgn .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tqCTN7phgn .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tqCTN7phgn .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tqCTN7phgn .navbar.navbar-short {
  min-height: 60px;
}
.cid-tqCTN7phgn .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tqCTN7phgn .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tqCTN7phgn .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-tqCTN7phgn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tqCTN7phgn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tqCTN7phgn .dropdown-item.active,
.cid-tqCTN7phgn .dropdown-item:active {
  background-color: transparent;
}
.cid-tqCTN7phgn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tqCTN7phgn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tqCTN7phgn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tqCTN7phgn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #091a81;
}
.cid-tqCTN7phgn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tqCTN7phgn .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tqCTN7phgn ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tqCTN7phgn .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tqCTN7phgn button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tqCTN7phgn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tqCTN7phgn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tqCTN7phgn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tqCTN7phgn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tqCTN7phgn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tqCTN7phgn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqCTN7phgn nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tqCTN7phgn nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tqCTN7phgn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqCTN7phgn .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tqCTN7phgn a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tqCTN7phgn .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-tqCTN7phgn .navbar {
    height: 70px;
  }
  .cid-tqCTN7phgn .navbar.opened {
    height: auto;
  }
  .cid-tqCTN7phgn .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
#custom-html-3v .rs-rounded {
  border-radius: 30px;
}
#custom-html-3v H3 {
  font-size: 24px;
  color: #b8312f;
}
#custom-html-3v h2 {
  font-size: 22px;
  color: #000000;
}
.cid-tqyCmzNn9W {
  background-image: url("../../../assets/images/mbr-1920x1282.jpg");
}
#custom-html-3x div {
  height: 20px;
}
#custom-html-3y input {
  text-align: center;
}
#custom-html-3y label {
  color: #ffffff;
}
#custom-html-3y .form-control-label {
  color: #ffffff;
}
#custom-html-3y SMALL {
  color: #000000;
  font-family: 'Roboto', sans-serif;
}
#custom-html-3y .rs-form-control {
  background-color: #f5f5f5;
  border-radius: 3px;
  box-shadow: none;
  color: #565656;
  font-size: 1.3rem;
  line-height: 1.53;
  min-height: 3.5em;
  padding: 0.5em 1.07em 0.5em;
}
#custom-html-3y .rs-form-control,
#custom-html-3y .rs-form-control:focus {
  border: 1px solid #e8e8e8;
}
#custom-html-3y .rs-form-active .rs-form-control:invalid {
  border-color: #f28281;
}
#custom-html-3y .rs-form-control-label {
  cursor: pointer;
  font-size: 0.875rem;
  margin-bottom: 0.357em;
  padding: 0;
}
#custom-html-3y .rs-form-control,
#custom-html-3y .rs-form-control-file,
#custom-html-3y .rs-form-control-range {
  display: block;
}
#custom-html-3y .rs-form-control {
  width: 100%;
  background-image: none;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
#custom-html-3y .regular-checkbox {
  display: none;
}
#custom-html-3y .regular-checkbox + label {
  width: 100%;
  background-color: #fafafa;
  border: 1px solid #cacece;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 9px;
  border-radius: 3px;
  display: inline-block;
  position: relative;
}
#custom-html-3y .regular-checkbox + label:active,
#custom-html-3y .regular-checkbox:checked + label:active {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px 1px 3px rgba(0, 0, 0, 0.1);
}
#custom-html-3y .regular-checkbox:checked + label {
  background-color: #e9ecee;
  border: 1px solid #adb8c0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05), inset 15px 10px -12px rgba(255, 255, 255, 0.1);
  color: #000000;
}
#custom-html-3y .regular-checkbox:checked + label:after {
  content: '\2714';
  font-size: 17px;
  position: absolute;
  top: 0px;
  left: 3px;
  color: #000000;
}
#custom-html-3y .big-checkbox + label {
  font-size: 1.3rem;
  font-family: 'Roboto', sans-serif;
  padding: 18px;
  color: #000000;
}
#custom-html-3y .big-checkbox:checked + label:after {
  font-size: 1.3rem;
  font-family: 'Roboto', sans-serif;
  left: 6px;
  color: #000000;
}
#custom-html-3y .adj-top {
  padding-top: 20px !important;
}
#custom-html-3y #notes {
  background-color: #cdcdcd;
  color: #000000;
  padding: 5px;
}
#custom-html-3y .boldit {
  font-weight: 700;
}
#custom-html-3y .RSform-title {
  color: #ffffff;
  font-size: 24px;
}
#custom-html-3z {
  /*td.rsc * {
	padding: 0px 5px;
}*/
}
#custom-html-3z input {
  text-align: center;
}
#custom-html-3z table.rsc {
  border-collapse: collapse;
  width: 98%;
  margin: 4px;
  font-family: "Verdana", sans-serif;
  font-weight: 400;
  font-size: 14.0px;
}
#custom-html-3z th.rsc {
  background: #3d493b;
  color: #fff;
  font-weight: bold;
  padding: 0px 5px;
  text-align: left;
  border-right: 1px solid #fff;
  line-height: 1.6;
}
#custom-html-3z td.rsc {
  padding: 0px 5px;
  border-bottom: 1px solid #3d493b;
  vertical-align: middle;
}
#custom-html-3z tr.rsc.alt td.rsc {
  background: #78ac70;
}
#custom-html-3z tr.rsc.over td.rsc,
#custom-html-3z tr.rsc:hover td.rsc {
  background: #78ac70;
}
#custom-html-3z table.pages {
  border-collapse: collapse;
  width: 10%;
  height: 20px;
  margin: 4px 4px 4px 4px;
  font-family: "Verdana", sans-serif;
  font-weight: 400;
  font-size: 14.0px;
}
#custom-html-3z th.pages {
  background: #3d493b;
  color: #fff;
  font-weight: bold;
  padding: 0px 5px;
  text-align: left;
  border-right: 1px solid #fff;
  line-height: 1.6;
}
#custom-html-3z tr.pages.alt td.pages {
  background: #CBCBCB;
}
#custom-html-3z tr.pages.over td.pages,
#custom-html-3z tr.pages:hover td.pages {
  background: #CBCBCB;
}
#custom-html-3z .Artistic-Body-RSC {
  font-family: "Verdana", sans-serif;
  font-weight: 400;
  font-size: 16.0px;
  line-height: 1.19em;
  color: #d1dccf;
}
#custom-html-3z .Artistic-Body-RSC {
  font-family: "Verdana", sans-serif;
  font-weight: 400;
  font-size: 16.0px;
  line-height: 1.19em;
  color: #d1dccf;
}
#custom-html-3z a.hlink_1:link {
  color: #ffffff;
}
#custom-html-3z a.hlink_1:visited {
  color: #b8dfea;
}
#custom-html-3z a.hlink_1:hover {
  color: #ff0000;
}
#custom-html-3z a.hlink_1:active {
  color: #ff8000;
}
.cid-tqxIREPEp2 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #091a81;
}
.cid-tqxIREPEp2 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tqxIREPEp2 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tqxIREPEp2 .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tqxIREPEp2 .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tqxIREPEp2 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tqxIREPEp2 .copyright {
  color: #ffffff;
}
.cid-tqCTIT6St0 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tqCTIT6St0 nav.navbar {
  position: fixed;
}
.cid-tqCTIT6St0 .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-tqCTIT6St0 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tqCTIT6St0 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tqCTIT6St0 .dropdown-item:hover,
.cid-tqCTIT6St0 .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tqCTIT6St0 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tqCTIT6St0 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tqCTIT6St0 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tqCTIT6St0 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tqCTIT6St0 .nav-link {
  position: relative;
}
.cid-tqCTIT6St0 .container {
  display: flex;
  margin: auto;
}
.cid-tqCTIT6St0 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tqCTIT6St0 .dropdown-menu,
.cid-tqCTIT6St0 .navbar.opened {
  background: #091a81 !important;
}
.cid-tqCTIT6St0 .nav-item:focus,
.cid-tqCTIT6St0 .nav-link:focus {
  outline: none;
}
.cid-tqCTIT6St0 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tqCTIT6St0 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tqCTIT6St0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tqCTIT6St0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tqCTIT6St0 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tqCTIT6St0 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tqCTIT6St0 .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: #091a81;
}
.cid-tqCTIT6St0 .navbar.opened {
  transition: all 0.3s;
}
.cid-tqCTIT6St0 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tqCTIT6St0 .navbar .navbar-logo img {
  width: auto;
}
.cid-tqCTIT6St0 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tqCTIT6St0 .navbar.collapsed {
  justify-content: center;
}
.cid-tqCTIT6St0 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tqCTIT6St0 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tqCTIT6St0 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.9rem);
  }
}
.cid-tqCTIT6St0 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tqCTIT6St0 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tqCTIT6St0 .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-tqCTIT6St0 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tqCTIT6St0 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tqCTIT6St0 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tqCTIT6St0 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tqCTIT6St0 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tqCTIT6St0 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tqCTIT6St0 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tqCTIT6St0 .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-tqCTIT6St0 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tqCTIT6St0 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tqCTIT6St0 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tqCTIT6St0 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tqCTIT6St0 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tqCTIT6St0 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tqCTIT6St0 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tqCTIT6St0 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tqCTIT6St0 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tqCTIT6St0 .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-tqCTIT6St0 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tqCTIT6St0 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tqCTIT6St0 .dropdown-item.active,
.cid-tqCTIT6St0 .dropdown-item:active {
  background-color: transparent;
}
.cid-tqCTIT6St0 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tqCTIT6St0 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tqCTIT6St0 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tqCTIT6St0 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #091a81;
}
.cid-tqCTIT6St0 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tqCTIT6St0 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tqCTIT6St0 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tqCTIT6St0 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tqCTIT6St0 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tqCTIT6St0 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tqCTIT6St0 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tqCTIT6St0 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tqCTIT6St0 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tqCTIT6St0 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tqCTIT6St0 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqCTIT6St0 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tqCTIT6St0 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tqCTIT6St0 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqCTIT6St0 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tqCTIT6St0 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tqCTIT6St0 .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-tqCTIT6St0 .navbar {
    height: 70px;
  }
  .cid-tqCTIT6St0 .navbar.opened {
    height: auto;
  }
  .cid-tqCTIT6St0 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
#custom-html-43 .rs-rounded {
  border-radius: 30px;
}
#custom-html-43 H3 {
  font-size: 24px;
  color: #b8312f;
}
#custom-html-43 h2 {
  font-size: 22px;
  color: #000000;
}
.cid-tqyEpxhPFX {
  background-image: url("../../../assets/images/mbr-20-1920x1280.jpg");
}
#custom-html-45 div {
  height: 20px;
}
#custom-html-46 label {
  color: #ffffff;
}
#custom-html-46 .form-control-label {
  color: #ffffff;
}
#custom-html-46 SMALL {
  color: #000000;
  font-family: 'Roboto', sans-serif;
}
#custom-html-46 .rs-form-control {
  background-color: #f5f5f5;
  border-radius: 3px;
  box-shadow: none;
  color: #565656;
  font-size: 1.3rem;
  line-height: 1.53;
  min-height: 3.5em;
  padding: 0.5em 1.07em 0.5em;
}
#custom-html-46 .rs-form-control,
#custom-html-46 .rs-form-control:focus {
  border: 1px solid #e8e8e8;
}
#custom-html-46 .rs-form-active .rs-form-control:invalid {
  border-color: #f28281;
}
#custom-html-46 .rs-form-control-label {
  cursor: pointer;
  font-size: 0.875rem;
  margin-bottom: 0.357em;
  padding: 0;
}
#custom-html-46 .rs-form-control,
#custom-html-46 .rs-form-control-file,
#custom-html-46 .rs-form-control-range {
  display: block;
}
#custom-html-46 .rs-form-control {
  width: 100%;
  background-image: none;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
#custom-html-46 .regular-checkbox {
  display: none;
}
#custom-html-46 .regular-checkbox + label {
  width: 100%;
  background-color: #fafafa;
  border: 1px solid #cacece;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 9px;
  border-radius: 3px;
  display: inline-block;
  position: relative;
}
#custom-html-46 .regular-checkbox + label:active,
#custom-html-46 .regular-checkbox:checked + label:active {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px 1px 3px rgba(0, 0, 0, 0.1);
}
#custom-html-46 .regular-checkbox:checked + label {
  background-color: #e9ecee;
  border: 1px solid #adb8c0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05), inset 15px 10px -12px rgba(255, 255, 255, 0.1);
  color: #000000;
}
#custom-html-46 .regular-checkbox:checked + label:after {
  content: '\2714';
  font-size: 17px;
  position: absolute;
  top: 0px;
  left: 3px;
  color: #000000;
}
#custom-html-46 .big-checkbox + label {
  font-size: 1.3rem;
  font-family: 'Roboto', sans-serif;
  padding: 18px;
  color: #000000;
}
#custom-html-46 .big-checkbox:checked + label:after {
  font-size: 1.3rem;
  font-family: 'Roboto', sans-serif;
  left: 6px;
  color: #000000;
}
#custom-html-46 .adj-top {
  padding-top: 20px !important;
}
#custom-html-46 #notes {
  background-color: #cdcdcd;
  color: #000000;
  padding: 5px;
}
#custom-html-46 .boldit {
  font-weight: 700;
}
#custom-html-46 .RSform-title {
  color: #ffffff;
  font-size: 24px;
}
#custom-html-47 div {
  height: 20px;
}
.cid-tqxIREPEp2 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #091a81;
}
.cid-tqxIREPEp2 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tqxIREPEp2 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tqxIREPEp2 .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tqxIREPEp2 .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tqxIREPEp2 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tqxIREPEp2 .copyright {
  color: #ffffff;
}
.cid-tqCTEXQ7f1 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tqCTEXQ7f1 nav.navbar {
  position: fixed;
}
.cid-tqCTEXQ7f1 .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-tqCTEXQ7f1 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tqCTEXQ7f1 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tqCTEXQ7f1 .dropdown-item:hover,
.cid-tqCTEXQ7f1 .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tqCTEXQ7f1 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tqCTEXQ7f1 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tqCTEXQ7f1 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tqCTEXQ7f1 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tqCTEXQ7f1 .nav-link {
  position: relative;
}
.cid-tqCTEXQ7f1 .container {
  display: flex;
  margin: auto;
}
.cid-tqCTEXQ7f1 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tqCTEXQ7f1 .dropdown-menu,
.cid-tqCTEXQ7f1 .navbar.opened {
  background: #091a81 !important;
}
.cid-tqCTEXQ7f1 .nav-item:focus,
.cid-tqCTEXQ7f1 .nav-link:focus {
  outline: none;
}
.cid-tqCTEXQ7f1 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tqCTEXQ7f1 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tqCTEXQ7f1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tqCTEXQ7f1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tqCTEXQ7f1 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tqCTEXQ7f1 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tqCTEXQ7f1 .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: #091a81;
}
.cid-tqCTEXQ7f1 .navbar.opened {
  transition: all 0.3s;
}
.cid-tqCTEXQ7f1 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tqCTEXQ7f1 .navbar .navbar-logo img {
  width: auto;
}
.cid-tqCTEXQ7f1 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tqCTEXQ7f1 .navbar.collapsed {
  justify-content: center;
}
.cid-tqCTEXQ7f1 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tqCTEXQ7f1 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tqCTEXQ7f1 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.9rem);
  }
}
.cid-tqCTEXQ7f1 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tqCTEXQ7f1 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tqCTEXQ7f1 .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-tqCTEXQ7f1 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tqCTEXQ7f1 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tqCTEXQ7f1 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tqCTEXQ7f1 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tqCTEXQ7f1 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tqCTEXQ7f1 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tqCTEXQ7f1 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tqCTEXQ7f1 .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-tqCTEXQ7f1 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tqCTEXQ7f1 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tqCTEXQ7f1 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tqCTEXQ7f1 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tqCTEXQ7f1 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tqCTEXQ7f1 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tqCTEXQ7f1 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tqCTEXQ7f1 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tqCTEXQ7f1 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tqCTEXQ7f1 .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-tqCTEXQ7f1 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tqCTEXQ7f1 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tqCTEXQ7f1 .dropdown-item.active,
.cid-tqCTEXQ7f1 .dropdown-item:active {
  background-color: transparent;
}
.cid-tqCTEXQ7f1 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tqCTEXQ7f1 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tqCTEXQ7f1 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tqCTEXQ7f1 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #091a81;
}
.cid-tqCTEXQ7f1 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tqCTEXQ7f1 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tqCTEXQ7f1 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tqCTEXQ7f1 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tqCTEXQ7f1 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tqCTEXQ7f1 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tqCTEXQ7f1 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tqCTEXQ7f1 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tqCTEXQ7f1 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tqCTEXQ7f1 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tqCTEXQ7f1 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqCTEXQ7f1 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tqCTEXQ7f1 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tqCTEXQ7f1 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqCTEXQ7f1 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tqCTEXQ7f1 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tqCTEXQ7f1 .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-tqCTEXQ7f1 .navbar {
    height: 70px;
  }
  .cid-tqCTEXQ7f1 .navbar.opened {
    height: auto;
  }
  .cid-tqCTEXQ7f1 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
#custom-html-4c .rs-rounded {
  border-radius: 30px;
}
#custom-html-4c H3 {
  font-size: 24px;
  color: #b8312f;
}
#custom-html-4c h2 {
  font-size: 22px;
  color: #000000;
}
.cid-tqyR8KjXy8 {
  background-image: url("../../../assets/images/mbr-1920x1920.jpg");
}
#custom-html-4e div {
  height: 20px;
}
#custom-html-4f {
  /*td.rsc * {
	padding: 0px 5px;
}*/
}
#custom-html-4f input {
  text-align: center;
}
#custom-html-4f table.rsc {
  border-collapse: collapse;
  width: 98%;
  margin: 4px;
  font-family: "Verdana", sans-serif;
  font-weight: 400;
  font-size: 14.0px;
}
#custom-html-4f th.rsc {
  background: #3d493b;
  color: #fff;
  font-weight: bold;
  padding: 0px 5px;
  text-align: left;
  border-right: 1px solid #fff;
  line-height: 1.6;
}
#custom-html-4f td.rsc {
  padding: 0px 5px;
  border-bottom: 1px solid #3d493b;
  vertical-align: middle;
}
#custom-html-4f tr.rsc.alt td.rsc {
  background: #78ac70;
}
#custom-html-4f tr.rsc.over td.rsc,
#custom-html-4f tr.rsc:hover td.rsc {
  background: #78ac70;
}
#custom-html-4f table.pages {
  border-collapse: collapse;
  width: 10%;
  height: 20px;
  margin: 4px 4px 4px 4px;
  font-family: "Verdana", sans-serif;
  font-weight: 400;
  font-size: 14.0px;
}
#custom-html-4f th.pages {
  background: #3d493b;
  color: #fff;
  font-weight: bold;
  padding: 0px 5px;
  text-align: left;
  border-right: 1px solid #fff;
  line-height: 1.6;
}
#custom-html-4f tr.pages.alt td.pages {
  background: #CBCBCB;
}
#custom-html-4f tr.pages.over td.pages,
#custom-html-4f tr.pages:hover td.pages {
  background: #CBCBCB;
}
#custom-html-4f .Artistic-Body-RSC {
  font-family: "Verdana", sans-serif;
  font-weight: 400;
  font-size: 16.0px;
  line-height: 1.19em;
  color: #d1dccf;
}
#custom-html-4f .Artistic-Body-RSC {
  font-family: "Verdana", sans-serif;
  font-weight: 400;
  font-size: 16.0px;
  line-height: 1.19em;
  color: #d1dccf;
}
#custom-html-4f a.hlink_1:link {
  color: #ffffff;
}
#custom-html-4f a.hlink_1:visited {
  color: #b8dfea;
}
#custom-html-4f a.hlink_1:hover {
  color: #ff0000;
}
#custom-html-4f a.hlink_1:active {
  color: #ff8000;
}
.cid-tqxIREPEp2 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #091a81;
}
.cid-tqxIREPEp2 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tqxIREPEp2 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tqxIREPEp2 .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tqxIREPEp2 .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tqxIREPEp2 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tqxIREPEp2 .copyright {
  color: #ffffff;
}
.cid-tqCTAMX4Bz {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tqCTAMX4Bz nav.navbar {
  position: fixed;
}
.cid-tqCTAMX4Bz .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-tqCTAMX4Bz .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tqCTAMX4Bz .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tqCTAMX4Bz .dropdown-item:hover,
.cid-tqCTAMX4Bz .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tqCTAMX4Bz .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tqCTAMX4Bz .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tqCTAMX4Bz .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tqCTAMX4Bz .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tqCTAMX4Bz .nav-link {
  position: relative;
}
.cid-tqCTAMX4Bz .container {
  display: flex;
  margin: auto;
}
.cid-tqCTAMX4Bz .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tqCTAMX4Bz .dropdown-menu,
.cid-tqCTAMX4Bz .navbar.opened {
  background: #091a81 !important;
}
.cid-tqCTAMX4Bz .nav-item:focus,
.cid-tqCTAMX4Bz .nav-link:focus {
  outline: none;
}
.cid-tqCTAMX4Bz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tqCTAMX4Bz .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tqCTAMX4Bz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tqCTAMX4Bz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tqCTAMX4Bz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tqCTAMX4Bz .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tqCTAMX4Bz .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: #091a81;
}
.cid-tqCTAMX4Bz .navbar.opened {
  transition: all 0.3s;
}
.cid-tqCTAMX4Bz .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tqCTAMX4Bz .navbar .navbar-logo img {
  width: auto;
}
.cid-tqCTAMX4Bz .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tqCTAMX4Bz .navbar.collapsed {
  justify-content: center;
}
.cid-tqCTAMX4Bz .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tqCTAMX4Bz .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tqCTAMX4Bz .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.9rem);
  }
}
.cid-tqCTAMX4Bz .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tqCTAMX4Bz .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tqCTAMX4Bz .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-tqCTAMX4Bz .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tqCTAMX4Bz .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tqCTAMX4Bz .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tqCTAMX4Bz .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tqCTAMX4Bz .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tqCTAMX4Bz .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tqCTAMX4Bz .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tqCTAMX4Bz .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-tqCTAMX4Bz .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tqCTAMX4Bz .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tqCTAMX4Bz .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tqCTAMX4Bz .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tqCTAMX4Bz .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tqCTAMX4Bz .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tqCTAMX4Bz .navbar.navbar-short {
  min-height: 60px;
}
.cid-tqCTAMX4Bz .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tqCTAMX4Bz .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tqCTAMX4Bz .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-tqCTAMX4Bz .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tqCTAMX4Bz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tqCTAMX4Bz .dropdown-item.active,
.cid-tqCTAMX4Bz .dropdown-item:active {
  background-color: transparent;
}
.cid-tqCTAMX4Bz .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tqCTAMX4Bz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tqCTAMX4Bz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tqCTAMX4Bz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #091a81;
}
.cid-tqCTAMX4Bz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tqCTAMX4Bz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tqCTAMX4Bz ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tqCTAMX4Bz .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tqCTAMX4Bz button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tqCTAMX4Bz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tqCTAMX4Bz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tqCTAMX4Bz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tqCTAMX4Bz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tqCTAMX4Bz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tqCTAMX4Bz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqCTAMX4Bz nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tqCTAMX4Bz nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tqCTAMX4Bz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqCTAMX4Bz .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tqCTAMX4Bz a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tqCTAMX4Bz .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-tqCTAMX4Bz .navbar {
    height: 70px;
  }
  .cid-tqCTAMX4Bz .navbar.opened {
    height: auto;
  }
  .cid-tqCTAMX4Bz .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
#custom-html-4j .rs-rounded {
  border-radius: 30px;
}
#custom-html-4j H3 {
  font-size: 24px;
  color: #b8312f;
}
#custom-html-4j h2 {
  font-size: 22px;
  color: #000000;
}
.cid-tqySF9fMWe {
  background-image: url("../../../assets/images/mbr-19-1920x1280.jpg");
}
#custom-html-4l div {
  height: 20px;
}
#custom-html-4m input {
  text-align: center;
}
#custom-html-4m label {
  color: #ffffff;
}
#custom-html-4m .form-control-label {
  color: #ffffff;
}
#custom-html-4m SMALL {
  color: #000000;
  font-family: 'Roboto', sans-serif;
}
#custom-html-4m .rs-form-control {
  background-color: #f5f5f5;
  border-radius: 3px;
  box-shadow: none;
  color: #565656;
  font-size: 1.3rem;
  line-height: 1.53;
  min-height: 3.5em;
  padding: 0.5em 1.07em 0.5em;
}
#custom-html-4m .rs-form-control,
#custom-html-4m .rs-form-control:focus {
  border: 1px solid #e8e8e8;
}
#custom-html-4m .rs-form-active .rs-form-control:invalid {
  border-color: #f28281;
}
#custom-html-4m .rs-form-control-label {
  cursor: pointer;
  font-size: 0.875rem;
  margin-bottom: 0.357em;
  padding: 0;
}
#custom-html-4m .rs-form-control,
#custom-html-4m .rs-form-control-file,
#custom-html-4m .rs-form-control-range {
  display: block;
}
#custom-html-4m .rs-form-control {
  width: 100%;
  background-image: none;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
#custom-html-4m .regular-checkbox {
  display: none;
}
#custom-html-4m .regular-checkbox + label {
  width: 100%;
  background-color: #fafafa;
  border: 1px solid #cacece;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 9px;
  border-radius: 3px;
  display: inline-block;
  position: relative;
}
#custom-html-4m .regular-checkbox + label:active,
#custom-html-4m .regular-checkbox:checked + label:active {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px 1px 3px rgba(0, 0, 0, 0.1);
}
#custom-html-4m .regular-checkbox:checked + label {
  background-color: #e9ecee;
  border: 1px solid #adb8c0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05), inset 15px 10px -12px rgba(255, 255, 255, 0.1);
  color: #000000;
}
#custom-html-4m .regular-checkbox:checked + label:after {
  content: '\2714';
  font-size: 17px;
  position: absolute;
  top: 0px;
  left: 3px;
  color: #000000;
}
#custom-html-4m .big-checkbox + label {
  font-size: 1.3rem;
  font-family: 'Roboto', sans-serif;
  padding: 18px;
  color: #000000;
}
#custom-html-4m .big-checkbox:checked + label:after {
  font-size: 1.3rem;
  font-family: 'Roboto', sans-serif;
  left: 6px;
  color: #000000;
}
#custom-html-4m .adj-top {
  padding-top: 20px !important;
}
#custom-html-4m #notes {
  background-color: #cdcdcd;
  color: #000000;
  padding: 5px;
}
#custom-html-4m .boldit {
  font-weight: 700;
}
#custom-html-4m .RSform-title {
  color: #ffffff;
  font-size: 24px;
}
#custom-html-4n div {
  height: 20px;
}
#custom-html-4o {
  /*td.rsc * {
	padding: 0px 5px;
}*/
}
#custom-html-4o input {
  text-align: center;
}
#custom-html-4o table.rsc {
  border-collapse: collapse;
  width: 98%;
  margin: 4px;
  font-family: "Verdana", sans-serif;
  font-weight: 400;
  font-size: 14.0px;
}
#custom-html-4o th.rsc {
  background: #3d493b;
  color: #fff;
  font-weight: bold;
  padding: 0px 5px;
  text-align: left;
  border-right: 1px solid #fff;
  line-height: 1.6;
}
#custom-html-4o td.rsc {
  padding: 0px 5px;
  border-bottom: 1px solid #3d493b;
  vertical-align: middle;
}
#custom-html-4o tr.rsc.alt td.rsc {
  background: #78ac70;
}
#custom-html-4o tr.rsc.over td.rsc,
#custom-html-4o tr.rsc:hover td.rsc {
  background: #78ac70;
}
#custom-html-4o table.pages {
  border-collapse: collapse;
  width: 10%;
  height: 20px;
  margin: 4px 4px 4px 4px;
  font-family: "Verdana", sans-serif;
  font-weight: 400;
  font-size: 14.0px;
}
#custom-html-4o th.pages {
  background: #3d493b;
  color: #fff;
  font-weight: bold;
  padding: 0px 5px;
  text-align: left;
  border-right: 1px solid #fff;
  line-height: 1.6;
}
#custom-html-4o tr.pages.alt td.pages {
  background: #CBCBCB;
}
#custom-html-4o tr.pages.over td.pages,
#custom-html-4o tr.pages:hover td.pages {
  background: #CBCBCB;
}
#custom-html-4o .Artistic-Body-RSC {
  font-family: "Verdana", sans-serif;
  font-weight: 400;
  font-size: 16.0px;
  line-height: 1.19em;
  color: #d1dccf;
}
#custom-html-4o .Artistic-Body-RSC {
  font-family: "Verdana", sans-serif;
  font-weight: 400;
  font-size: 16.0px;
  line-height: 1.19em;
  color: #d1dccf;
}
#custom-html-4o a.hlink_1:link {
  color: #ffffff;
}
#custom-html-4o a.hlink_1:visited {
  color: #b8dfea;
}
#custom-html-4o a.hlink_1:hover {
  color: #ff0000;
}
#custom-html-4o a.hlink_1:active {
  color: #ff8000;
}
.cid-tqxIREPEp2 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #091a81;
}
.cid-tqxIREPEp2 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tqxIREPEp2 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tqxIREPEp2 .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tqxIREPEp2 .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tqxIREPEp2 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tqxIREPEp2 .copyright {
  color: #ffffff;
}
.cid-tqCTwFKOtD {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tqCTwFKOtD nav.navbar {
  position: fixed;
}
.cid-tqCTwFKOtD .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-tqCTwFKOtD .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tqCTwFKOtD .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tqCTwFKOtD .dropdown-item:hover,
.cid-tqCTwFKOtD .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tqCTwFKOtD .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tqCTwFKOtD .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tqCTwFKOtD .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tqCTwFKOtD .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tqCTwFKOtD .nav-link {
  position: relative;
}
.cid-tqCTwFKOtD .container {
  display: flex;
  margin: auto;
}
.cid-tqCTwFKOtD .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tqCTwFKOtD .dropdown-menu,
.cid-tqCTwFKOtD .navbar.opened {
  background: #091a81 !important;
}
.cid-tqCTwFKOtD .nav-item:focus,
.cid-tqCTwFKOtD .nav-link:focus {
  outline: none;
}
.cid-tqCTwFKOtD .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tqCTwFKOtD .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tqCTwFKOtD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tqCTwFKOtD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tqCTwFKOtD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tqCTwFKOtD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tqCTwFKOtD .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: #091a81;
}
.cid-tqCTwFKOtD .navbar.opened {
  transition: all 0.3s;
}
.cid-tqCTwFKOtD .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tqCTwFKOtD .navbar .navbar-logo img {
  width: auto;
}
.cid-tqCTwFKOtD .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tqCTwFKOtD .navbar.collapsed {
  justify-content: center;
}
.cid-tqCTwFKOtD .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tqCTwFKOtD .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tqCTwFKOtD .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.9rem);
  }
}
.cid-tqCTwFKOtD .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tqCTwFKOtD .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tqCTwFKOtD .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-tqCTwFKOtD .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tqCTwFKOtD .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tqCTwFKOtD .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tqCTwFKOtD .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tqCTwFKOtD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tqCTwFKOtD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tqCTwFKOtD .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tqCTwFKOtD .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-tqCTwFKOtD .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tqCTwFKOtD .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tqCTwFKOtD .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tqCTwFKOtD .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tqCTwFKOtD .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tqCTwFKOtD .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tqCTwFKOtD .navbar.navbar-short {
  min-height: 60px;
}
.cid-tqCTwFKOtD .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tqCTwFKOtD .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tqCTwFKOtD .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-tqCTwFKOtD .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tqCTwFKOtD .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tqCTwFKOtD .dropdown-item.active,
.cid-tqCTwFKOtD .dropdown-item:active {
  background-color: transparent;
}
.cid-tqCTwFKOtD .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tqCTwFKOtD .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tqCTwFKOtD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tqCTwFKOtD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #091a81;
}
.cid-tqCTwFKOtD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tqCTwFKOtD .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tqCTwFKOtD ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tqCTwFKOtD .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tqCTwFKOtD button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tqCTwFKOtD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tqCTwFKOtD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tqCTwFKOtD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tqCTwFKOtD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tqCTwFKOtD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tqCTwFKOtD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqCTwFKOtD nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tqCTwFKOtD nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tqCTwFKOtD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqCTwFKOtD .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tqCTwFKOtD a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tqCTwFKOtD .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-tqCTwFKOtD .navbar {
    height: 70px;
  }
  .cid-tqCTwFKOtD .navbar.opened {
    height: auto;
  }
  .cid-tqCTwFKOtD .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
#custom-html-4s .rs-rounded {
  border-radius: 30px;
}
#custom-html-4s H3 {
  font-size: 24px;
  color: #b8312f;
}
#custom-html-4s h2 {
  font-size: 22px;
  color: #000000;
}
.cid-tqyUy0a1Xq {
  background-image: url("../../../assets/images/mbr-18-1920x1280.jpg");
}
#custom-html-4u div {
  height: 20px;
}
#custom-html-4v input {
  text-align: center;
}
#custom-html-4v label {
  color: #ffffff;
}
#custom-html-4v .form-control-label {
  color: #ffffff;
}
#custom-html-4v SMALL {
  color: #000000;
  font-family: 'Roboto', sans-serif;
}
#custom-html-4v .rs-form-control {
  background-color: #f5f5f5;
  border-radius: 3px;
  box-shadow: none;
  color: #565656;
  font-size: 1.3rem;
  line-height: 1.53;
  min-height: 3.5em;
  padding: 0.5em 1.07em 0.5em;
}
#custom-html-4v .rs-form-control,
#custom-html-4v .rs-form-control:focus {
  border: 1px solid #e8e8e8;
}
#custom-html-4v .rs-form-active .rs-form-control:invalid {
  border-color: #f28281;
}
#custom-html-4v .rs-form-control-label {
  cursor: pointer;
  font-size: 0.875rem;
  margin-bottom: 0.357em;
  padding: 0;
}
#custom-html-4v .rs-form-control,
#custom-html-4v .rs-form-control-file,
#custom-html-4v .rs-form-control-range {
  display: block;
}
#custom-html-4v .rs-form-control {
  width: 100%;
  background-image: none;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
#custom-html-4v .regular-checkbox {
  display: none;
}
#custom-html-4v .regular-checkbox + label {
  width: 100%;
  background-color: #fafafa;
  border: 1px solid #cacece;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 9px;
  border-radius: 3px;
  display: inline-block;
  position: relative;
}
#custom-html-4v .regular-checkbox + label:active,
#custom-html-4v .regular-checkbox:checked + label:active {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px 1px 3px rgba(0, 0, 0, 0.1);
}
#custom-html-4v .regular-checkbox:checked + label {
  background-color: #e9ecee;
  border: 1px solid #adb8c0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05), inset 15px 10px -12px rgba(255, 255, 255, 0.1);
  color: #000000;
}
#custom-html-4v .regular-checkbox:checked + label:after {
  content: '\2714';
  font-size: 17px;
  position: absolute;
  top: 0px;
  left: 3px;
  color: #000000;
}
#custom-html-4v .big-checkbox + label {
  font-size: 1.3rem;
  font-family: 'Roboto', sans-serif;
  padding: 18px;
  color: #000000;
}
#custom-html-4v .big-checkbox:checked + label:after {
  font-size: 1.3rem;
  font-family: 'Roboto', sans-serif;
  left: 6px;
  color: #000000;
}
#custom-html-4v .adj-top {
  padding-top: 20px !important;
}
#custom-html-4v #notes {
  background-color: #cdcdcd;
  color: #000000;
  padding: 5px;
}
#custom-html-4v .boldit {
  font-weight: 700;
}
#custom-html-4v .RSform-title {
  color: #ffffff;
  font-size: 24px;
}
#custom-html-4w div {
  height: 20px;
}
#custom-html-4x {
  /*td.rsc * {
	padding: 0px 5px;
}*/
}
#custom-html-4x input {
  text-align: center;
}
#custom-html-4x table.rsc {
  border-collapse: collapse;
  width: 98%;
  margin: 4px;
  font-family: "Verdana", sans-serif;
  font-weight: 400;
  font-size: 14.0px;
}
#custom-html-4x th.rsc {
  background: #3d493b;
  color: #fff;
  font-weight: bold;
  padding: 0px 5px;
  text-align: left;
  border-right: 1px solid #fff;
  line-height: 1.6;
}
#custom-html-4x td.rsc {
  padding: 0px 5px;
  border-bottom: 1px solid #3d493b;
  vertical-align: middle;
}
#custom-html-4x tr.rsc.alt td.rsc {
  background: #78ac70;
}
#custom-html-4x tr.rsc.over td.rsc,
#custom-html-4x tr.rsc:hover td.rsc {
  background: #78ac70;
}
#custom-html-4x table.pages {
  border-collapse: collapse;
  width: 10%;
  height: 20px;
  margin: 4px 4px 4px 4px;
  font-family: "Verdana", sans-serif;
  font-weight: 400;
  font-size: 14.0px;
}
#custom-html-4x th.pages {
  background: #3d493b;
  color: #fff;
  font-weight: bold;
  padding: 0px 5px;
  text-align: left;
  border-right: 1px solid #fff;
  line-height: 1.6;
}
#custom-html-4x tr.pages.alt td.pages {
  background: #CBCBCB;
}
#custom-html-4x tr.pages.over td.pages,
#custom-html-4x tr.pages:hover td.pages {
  background: #CBCBCB;
}
#custom-html-4x .Artistic-Body-RSC {
  font-family: "Verdana", sans-serif;
  font-weight: 400;
  font-size: 16.0px;
  line-height: 1.19em;
  color: #d1dccf;
}
#custom-html-4x .Artistic-Body-RSC {
  font-family: "Verdana", sans-serif;
  font-weight: 400;
  font-size: 16.0px;
  line-height: 1.19em;
  color: #d1dccf;
}
#custom-html-4x a.hlink_1:link {
  color: #ffffff;
}
#custom-html-4x a.hlink_1:visited {
  color: #b8dfea;
}
#custom-html-4x a.hlink_1:hover {
  color: #ff0000;
}
#custom-html-4x a.hlink_1:active {
  color: #ff8000;
}
.cid-tqxIREPEp2 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #091a81;
}
.cid-tqxIREPEp2 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tqxIREPEp2 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tqxIREPEp2 .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tqxIREPEp2 .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tqxIREPEp2 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tqxIREPEp2 .copyright {
  color: #ffffff;
}
.cid-tqCTsNFKJ2 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tqCTsNFKJ2 nav.navbar {
  position: fixed;
}
.cid-tqCTsNFKJ2 .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-tqCTsNFKJ2 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tqCTsNFKJ2 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tqCTsNFKJ2 .dropdown-item:hover,
.cid-tqCTsNFKJ2 .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tqCTsNFKJ2 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tqCTsNFKJ2 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tqCTsNFKJ2 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tqCTsNFKJ2 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tqCTsNFKJ2 .nav-link {
  position: relative;
}
.cid-tqCTsNFKJ2 .container {
  display: flex;
  margin: auto;
}
.cid-tqCTsNFKJ2 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tqCTsNFKJ2 .dropdown-menu,
.cid-tqCTsNFKJ2 .navbar.opened {
  background: #091a81 !important;
}
.cid-tqCTsNFKJ2 .nav-item:focus,
.cid-tqCTsNFKJ2 .nav-link:focus {
  outline: none;
}
.cid-tqCTsNFKJ2 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tqCTsNFKJ2 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tqCTsNFKJ2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tqCTsNFKJ2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tqCTsNFKJ2 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tqCTsNFKJ2 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tqCTsNFKJ2 .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: #091a81;
}
.cid-tqCTsNFKJ2 .navbar.opened {
  transition: all 0.3s;
}
.cid-tqCTsNFKJ2 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tqCTsNFKJ2 .navbar .navbar-logo img {
  width: auto;
}
.cid-tqCTsNFKJ2 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tqCTsNFKJ2 .navbar.collapsed {
  justify-content: center;
}
.cid-tqCTsNFKJ2 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tqCTsNFKJ2 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tqCTsNFKJ2 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.9rem);
  }
}
.cid-tqCTsNFKJ2 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tqCTsNFKJ2 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tqCTsNFKJ2 .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-tqCTsNFKJ2 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tqCTsNFKJ2 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tqCTsNFKJ2 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tqCTsNFKJ2 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tqCTsNFKJ2 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tqCTsNFKJ2 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tqCTsNFKJ2 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tqCTsNFKJ2 .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-tqCTsNFKJ2 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tqCTsNFKJ2 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tqCTsNFKJ2 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tqCTsNFKJ2 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tqCTsNFKJ2 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tqCTsNFKJ2 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tqCTsNFKJ2 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tqCTsNFKJ2 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tqCTsNFKJ2 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tqCTsNFKJ2 .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-tqCTsNFKJ2 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tqCTsNFKJ2 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tqCTsNFKJ2 .dropdown-item.active,
.cid-tqCTsNFKJ2 .dropdown-item:active {
  background-color: transparent;
}
.cid-tqCTsNFKJ2 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tqCTsNFKJ2 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tqCTsNFKJ2 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tqCTsNFKJ2 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #091a81;
}
.cid-tqCTsNFKJ2 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tqCTsNFKJ2 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tqCTsNFKJ2 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tqCTsNFKJ2 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tqCTsNFKJ2 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tqCTsNFKJ2 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tqCTsNFKJ2 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tqCTsNFKJ2 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tqCTsNFKJ2 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tqCTsNFKJ2 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tqCTsNFKJ2 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqCTsNFKJ2 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tqCTsNFKJ2 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tqCTsNFKJ2 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqCTsNFKJ2 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tqCTsNFKJ2 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tqCTsNFKJ2 .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-tqCTsNFKJ2 .navbar {
    height: 70px;
  }
  .cid-tqCTsNFKJ2 .navbar.opened {
    height: auto;
  }
  .cid-tqCTsNFKJ2 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
#custom-html-51 .rs-rounded {
  border-radius: 30px;
}
#custom-html-51 H3 {
  font-size: 24px;
  color: #b8312f;
}
#custom-html-51 h2 {
  font-size: 22px;
  color: #000000;
}
.cid-tqyWiIGGVG {
  background-image: url("../../../assets/images/mbr-17-1920x1280.jpg");
}
#custom-html-53 div {
  height: 20px;
}
#custom-html-54 input {
  text-align: center;
}
#custom-html-54 label {
  color: #ffffff;
}
#custom-html-54 .form-control-label {
  color: #ffffff;
}
#custom-html-54 SMALL {
  color: #000000;
  font-family: 'Roboto', sans-serif;
}
#custom-html-54 .rs-form-control {
  background-color: #f5f5f5;
  border-radius: 3px;
  box-shadow: none;
  color: #565656;
  font-size: 1.3rem;
  line-height: 1.53;
  min-height: 3.5em;
  padding: 0.5em 1.07em 0.5em;
}
#custom-html-54 .rs-form-control,
#custom-html-54 .rs-form-control:focus {
  border: 1px solid #e8e8e8;
}
#custom-html-54 .rs-form-active .rs-form-control:invalid {
  border-color: #f28281;
}
#custom-html-54 .rs-form-control-label {
  cursor: pointer;
  font-size: 0.875rem;
  margin-bottom: 0.357em;
  padding: 0;
}
#custom-html-54 .rs-form-control,
#custom-html-54 .rs-form-control-file,
#custom-html-54 .rs-form-control-range {
  display: block;
}
#custom-html-54 .rs-form-control {
  width: 100%;
  background-image: none;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
#custom-html-54 .regular-checkbox {
  display: none;
}
#custom-html-54 .regular-checkbox + label {
  width: 100%;
  background-color: #fafafa;
  border: 1px solid #cacece;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 9px;
  border-radius: 3px;
  display: inline-block;
  position: relative;
}
#custom-html-54 .regular-checkbox + label:active,
#custom-html-54 .regular-checkbox:checked + label:active {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px 1px 3px rgba(0, 0, 0, 0.1);
}
#custom-html-54 .regular-checkbox:checked + label {
  background-color: #e9ecee;
  border: 1px solid #adb8c0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05), inset 15px 10px -12px rgba(255, 255, 255, 0.1);
  color: #000000;
}
#custom-html-54 .regular-checkbox:checked + label:after {
  content: '\2714';
  font-size: 17px;
  position: absolute;
  top: 0px;
  left: 3px;
  color: #000000;
}
#custom-html-54 .big-checkbox + label {
  font-size: 1.3rem;
  font-family: 'Roboto', sans-serif;
  padding: 18px;
  color: #000000;
}
#custom-html-54 .big-checkbox:checked + label:after {
  font-size: 1.3rem;
  font-family: 'Roboto', sans-serif;
  left: 6px;
  color: #000000;
}
#custom-html-54 .adj-top {
  padding-top: 20px !important;
}
#custom-html-54 #notes {
  background-color: #cdcdcd;
  color: #000000;
  padding: 5px;
}
#custom-html-54 .boldit {
  font-weight: 700;
}
#custom-html-54 .RSform-title {
  color: #ffffff;
  font-size: 24px;
}
#custom-html-55 div {
  height: 20px;
}
#custom-html-56 {
  /*td.rsc * {
	padding: 0px 5px;
}*/
}
#custom-html-56 input {
  text-align: center;
}
#custom-html-56 table.rsc {
  border-collapse: collapse;
  width: 98%;
  margin: 4px;
  font-family: "Verdana", sans-serif;
  font-weight: 400;
  font-size: 14.0px;
}
#custom-html-56 th.rsc {
  background: #3d493b;
  color: #fff;
  font-weight: bold;
  padding: 0px 5px;
  text-align: left;
  border-right: 1px solid #fff;
  line-height: 1.6;
}
#custom-html-56 td.rsc {
  padding: 0px 5px;
  border-bottom: 1px solid #3d493b;
  vertical-align: middle;
}
#custom-html-56 tr.rsc.alt td.rsc {
  background: #78ac70;
}
#custom-html-56 tr.rsc.over td.rsc,
#custom-html-56 tr.rsc:hover td.rsc {
  background: #78ac70;
}
#custom-html-56 table.pages {
  border-collapse: collapse;
  width: 10%;
  height: 20px;
  margin: 4px 4px 4px 4px;
  font-family: "Verdana", sans-serif;
  font-weight: 400;
  font-size: 14.0px;
}
#custom-html-56 th.pages {
  background: #3d493b;
  color: #fff;
  font-weight: bold;
  padding: 0px 5px;
  text-align: left;
  border-right: 1px solid #fff;
  line-height: 1.6;
}
#custom-html-56 tr.pages.alt td.pages {
  background: #CBCBCB;
}
#custom-html-56 tr.pages.over td.pages,
#custom-html-56 tr.pages:hover td.pages {
  background: #CBCBCB;
}
#custom-html-56 .Artistic-Body-RSC {
  font-family: "Verdana", sans-serif;
  font-weight: 400;
  font-size: 16.0px;
  line-height: 1.19em;
  color: #d1dccf;
}
#custom-html-56 .Artistic-Body-RSC {
  font-family: "Verdana", sans-serif;
  font-weight: 400;
  font-size: 16.0px;
  line-height: 1.19em;
  color: #d1dccf;
}
#custom-html-56 a.hlink_1:link {
  color: #ffffff;
}
#custom-html-56 a.hlink_1:visited {
  color: #b8dfea;
}
#custom-html-56 a.hlink_1:hover {
  color: #ff0000;
}
#custom-html-56 a.hlink_1:active {
  color: #ff8000;
}
.cid-tqxIREPEp2 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #091a81;
}
.cid-tqxIREPEp2 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tqxIREPEp2 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tqxIREPEp2 .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tqxIREPEp2 .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tqxIREPEp2 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tqxIREPEp2 .copyright {
  color: #ffffff;
}
.cid-tqCToiqpBu {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tqCToiqpBu nav.navbar {
  position: fixed;
}
.cid-tqCToiqpBu .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-tqCToiqpBu .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tqCToiqpBu .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tqCToiqpBu .dropdown-item:hover,
.cid-tqCToiqpBu .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tqCToiqpBu .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tqCToiqpBu .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tqCToiqpBu .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tqCToiqpBu .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tqCToiqpBu .nav-link {
  position: relative;
}
.cid-tqCToiqpBu .container {
  display: flex;
  margin: auto;
}
.cid-tqCToiqpBu .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tqCToiqpBu .dropdown-menu,
.cid-tqCToiqpBu .navbar.opened {
  background: #091a81 !important;
}
.cid-tqCToiqpBu .nav-item:focus,
.cid-tqCToiqpBu .nav-link:focus {
  outline: none;
}
.cid-tqCToiqpBu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tqCToiqpBu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tqCToiqpBu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tqCToiqpBu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tqCToiqpBu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tqCToiqpBu .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tqCToiqpBu .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: #091a81;
}
.cid-tqCToiqpBu .navbar.opened {
  transition: all 0.3s;
}
.cid-tqCToiqpBu .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tqCToiqpBu .navbar .navbar-logo img {
  width: auto;
}
.cid-tqCToiqpBu .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tqCToiqpBu .navbar.collapsed {
  justify-content: center;
}
.cid-tqCToiqpBu .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tqCToiqpBu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tqCToiqpBu .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.9rem);
  }
}
.cid-tqCToiqpBu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tqCToiqpBu .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tqCToiqpBu .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-tqCToiqpBu .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tqCToiqpBu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tqCToiqpBu .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tqCToiqpBu .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tqCToiqpBu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tqCToiqpBu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tqCToiqpBu .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tqCToiqpBu .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-tqCToiqpBu .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tqCToiqpBu .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tqCToiqpBu .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tqCToiqpBu .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tqCToiqpBu .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tqCToiqpBu .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tqCToiqpBu .navbar.navbar-short {
  min-height: 60px;
}
.cid-tqCToiqpBu .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tqCToiqpBu .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tqCToiqpBu .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-tqCToiqpBu .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tqCToiqpBu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tqCToiqpBu .dropdown-item.active,
.cid-tqCToiqpBu .dropdown-item:active {
  background-color: transparent;
}
.cid-tqCToiqpBu .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tqCToiqpBu .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tqCToiqpBu .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tqCToiqpBu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #091a81;
}
.cid-tqCToiqpBu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tqCToiqpBu .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tqCToiqpBu ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tqCToiqpBu .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tqCToiqpBu button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tqCToiqpBu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tqCToiqpBu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tqCToiqpBu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tqCToiqpBu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tqCToiqpBu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tqCToiqpBu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqCToiqpBu nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tqCToiqpBu nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tqCToiqpBu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqCToiqpBu .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tqCToiqpBu a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tqCToiqpBu .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-tqCToiqpBu .navbar {
    height: 70px;
  }
  .cid-tqCToiqpBu .navbar.opened {
    height: auto;
  }
  .cid-tqCToiqpBu .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tqyXX5k4Ln {
  background-image: url("../../../assets/images/mbr-1920x1251.jpg");
}
.cid-tqyXX5k4Ln .mbr-section-title {
  text-align: left;
}
.cid-tqyXX5k4Ln .mbr-text,
.cid-tqyXX5k4Ln .mbr-section-btn {
  text-align: left;
}
.cid-tqyXX5k4Ln .rs-rounded {
  border-radius: 30px;
}
.cid-tqyXX5k4Ln h1 {
  color: #ffffff;
}
.cid-tqyXX5k4Ln h3 {
  font-weight: 700;
}
.cid-tqyXX5k4Ln label {
  color: #ffffff;
}
.cid-tqyXX5k4Ln .form-control-label {
  color: #ffffff;
}
.cid-tqyXX5k4Ln SMALL {
  color: #000000;
  font-family: 'Raleway', sans-serif;
}
.cid-tqyXX5k4Ln .rs-form-control {
  background-color: #f5f5f5;
  border-radius: 3px;
  box-shadow: none;
  color: #565656;
  font-size: 1.3rem;
  line-height: 1.53;
  min-height: 3.5em;
  padding: 0.5em 1.07em 0.5em;
  width: 100%;
  background-image: none;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
.cid-tqyXX5k4Ln .rs-form-control,
.cid-tqyXX5k4Ln .rs-form-control:focus {
  border: 1px solid #e8e8e8;
}
.cid-tqyXX5k4Ln .rs-form-active .rs-form-control:invalid {
  border-color: #f28281;
}
.cid-tqyXX5k4Ln .rs-form-control-label {
  cursor: pointer;
  font-size: 0.875rem;
  margin-bottom: 0.357em;
  padding: 0;
}
.cid-tqyXX5k4Ln .rs-form-control,
.cid-tqyXX5k4Ln .rs-form-control-file,
.cid-tqyXX5k4Ln .rs-form-control-range {
  display: block;
}
.cid-tqyXX5k4Ln .regular-checkbox {
  display: none;
}
.cid-tqyXX5k4Ln .regular-checkbox + label {
  width: 100%;
  background-color: #fafafa;
  border: 1px solid #cacece;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 9px;
  border-radius: 3px;
  display: inline-block;
  position: relative;
}
.cid-tqyXX5k4Ln .regular-checkbox + label:active,
.cid-tqyXX5k4Ln .regular-checkbox:checked + label:active {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px 1px 3px rgba(0, 0, 0, 0.1);
}
.cid-tqyXX5k4Ln .regular-checkbox:checked + label {
  background-color: #e9ecee;
  border: 1px solid #adb8c0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05), inset 15px 10px -12px rgba(255, 255, 255, 0.1);
  color: #000000;
}
.cid-tqyXX5k4Ln .regular-checkbox:checked + label:after {
  content: '\2714';
  font-size: 17px;
  position: absolute;
  top: 0px;
  left: 3px;
  color: #000000;
}
.cid-tqyXX5k4Ln .big-checkbox + label {
  font-size: 1.3rem;
  font-family: 'Raleway', sans-serif;
  padding: 18px;
  color: #000000;
}
.cid-tqyXX5k4Ln .big-checkbox:checked + label:after {
  font-size: 1.3rem;
  font-family: 'Raleway', sans-serif;
  left: 6px;
  color: #000000;
}
.cid-tqyXX5k4Ln .adj-top {
  padding-top: 20px !important;
}
.cid-tqyXX5k4Ln #notes {
  background-color: #cdcdcd;
  color: #000000;
  padding: 5px;
}
.cid-tqyXX5k4Ln .boldit {
  font-weight: 700;
}
.cid-tqyXX5k4Ln H3 {
  color: #ffffff;
}
.cid-tqyXX5k4Ln P {
  color: #f7da64;
  text-align: left;
}
.cid-tqyXX5k4Ln SPAN {
  font-size: 19px;
}
.cid-tqxIREPEp2 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #091a81;
}
.cid-tqxIREPEp2 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tqxIREPEp2 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tqxIREPEp2 .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tqxIREPEp2 .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tqxIREPEp2 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tqxIREPEp2 .copyright {
  color: #ffffff;
}
.cid-tqCTeT7pFS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tqCTeT7pFS nav.navbar {
  position: fixed;
}
.cid-tqCTeT7pFS .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-tqCTeT7pFS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tqCTeT7pFS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tqCTeT7pFS .dropdown-item:hover,
.cid-tqCTeT7pFS .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tqCTeT7pFS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tqCTeT7pFS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tqCTeT7pFS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tqCTeT7pFS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tqCTeT7pFS .nav-link {
  position: relative;
}
.cid-tqCTeT7pFS .container {
  display: flex;
  margin: auto;
}
.cid-tqCTeT7pFS .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tqCTeT7pFS .dropdown-menu,
.cid-tqCTeT7pFS .navbar.opened {
  background: #091a81 !important;
}
.cid-tqCTeT7pFS .nav-item:focus,
.cid-tqCTeT7pFS .nav-link:focus {
  outline: none;
}
.cid-tqCTeT7pFS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tqCTeT7pFS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tqCTeT7pFS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tqCTeT7pFS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tqCTeT7pFS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tqCTeT7pFS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tqCTeT7pFS .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: #091a81;
}
.cid-tqCTeT7pFS .navbar.opened {
  transition: all 0.3s;
}
.cid-tqCTeT7pFS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tqCTeT7pFS .navbar .navbar-logo img {
  width: auto;
}
.cid-tqCTeT7pFS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tqCTeT7pFS .navbar.collapsed {
  justify-content: center;
}
.cid-tqCTeT7pFS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tqCTeT7pFS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tqCTeT7pFS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.9rem);
  }
}
.cid-tqCTeT7pFS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tqCTeT7pFS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tqCTeT7pFS .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-tqCTeT7pFS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tqCTeT7pFS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tqCTeT7pFS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tqCTeT7pFS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tqCTeT7pFS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tqCTeT7pFS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tqCTeT7pFS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tqCTeT7pFS .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-tqCTeT7pFS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tqCTeT7pFS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tqCTeT7pFS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tqCTeT7pFS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tqCTeT7pFS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tqCTeT7pFS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tqCTeT7pFS .navbar.navbar-short {
  min-height: 60px;
}
.cid-tqCTeT7pFS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tqCTeT7pFS .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tqCTeT7pFS .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-tqCTeT7pFS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tqCTeT7pFS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tqCTeT7pFS .dropdown-item.active,
.cid-tqCTeT7pFS .dropdown-item:active {
  background-color: transparent;
}
.cid-tqCTeT7pFS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tqCTeT7pFS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tqCTeT7pFS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tqCTeT7pFS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #091a81;
}
.cid-tqCTeT7pFS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tqCTeT7pFS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tqCTeT7pFS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tqCTeT7pFS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tqCTeT7pFS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tqCTeT7pFS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tqCTeT7pFS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tqCTeT7pFS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tqCTeT7pFS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tqCTeT7pFS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tqCTeT7pFS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqCTeT7pFS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tqCTeT7pFS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tqCTeT7pFS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqCTeT7pFS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tqCTeT7pFS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tqCTeT7pFS .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-tqCTeT7pFS .navbar {
    height: 70px;
  }
  .cid-tqCTeT7pFS .navbar.opened {
    height: auto;
  }
  .cid-tqCTeT7pFS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
#custom-html-5d h1 {
  color: #ffffff;
}
#custom-html-5d label {
  color: #ffffff;
}
#custom-html-5d .form-control-label {
  color: #ffffff;
}
#custom-html-5d SMALL {
  color: #000000;
  font-family: 'Roboto', sans-serif;
}
#custom-html-5d .rs-form-control {
  background-color: #f5f5f5;
  border-radius: 3px;
  box-shadow: none;
  color: #565656;
  font-size: 1.3rem;
  line-height: 1.53;
  min-height: 3.5em;
  padding: 0.5em 1.07em 0.5em;
}
#custom-html-5d .rs-form-control,
#custom-html-5d .rs-form-control:focus {
  border: 1px solid #e8e8e8;
}
#custom-html-5d .rs-form-active .rs-form-control:invalid {
  border-color: #f28281;
}
#custom-html-5d .rs-form-control-label {
  cursor: pointer;
  font-size: 0.875rem;
  margin-bottom: 0.357em;
  padding: 0;
}
#custom-html-5d .rs-form-control,
#custom-html-5d .rs-form-control-file,
#custom-html-5d .rs-form-control-range {
  display: block;
}
#custom-html-5d .rs-form-control {
  width: 100%;
  background-image: none;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
#custom-html-5d .regular-checkbox {
  display: none;
}
#custom-html-5d .regular-checkbox + label {
  width: 100%;
  background-color: #fafafa;
  border: 1px solid #cacece;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 9px;
  border-radius: 3px;
  display: inline-block;
  position: relative;
}
#custom-html-5d .regular-checkbox + label:active,
#custom-html-5d .regular-checkbox:checked + label:active {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px 1px 3px rgba(0, 0, 0, 0.1);
}
#custom-html-5d .regular-checkbox:checked + label {
  background-color: #e9ecee;
  border: 1px solid #adb8c0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05), inset 15px 10px -12px rgba(255, 255, 255, 0.1);
  color: #000000;
}
#custom-html-5d .regular-checkbox:checked + label:after {
  content: '\2714';
  font-size: 17px;
  position: absolute;
  top: 0px;
  left: 3px;
  color: #000000;
}
#custom-html-5d input {
  width: 250px !important;
}
#custom-html-5d .big-checkbox + label {
  font-size: 1.3rem;
  font-family: 'Roboto', sans-serif;
  padding: 18px;
  color: #000000;
}
#custom-html-5d .big-checkbox:checked + label:after {
  font-size: 1.3rem;
  font-family: 'Roboto', sans-serif;
  left: 6px;
  color: #000000;
}
#custom-html-5d .adj-top {
  padding-top: 20px !important;
}
#custom-html-5d #notes {
  background-color: #cdcdcd;
  color: #000000;
  padding: 5px;
}
#custom-html-5d .boldit {
  font-weight: 700;
}
#custom-html-5d H3 {
  color: #ffffff;
}
#custom-html-5d P {
  color: #f7da64;
  text-align: left;
}
#custom-html-5d SPAN {
  font-size: 19px;
}
.cid-tqxIREPEp2 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #091a81;
}
.cid-tqxIREPEp2 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tqxIREPEp2 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tqxIREPEp2 .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tqxIREPEp2 .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tqxIREPEp2 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tqxIREPEp2 .copyright {
  color: #ffffff;
}
.cid-tqCT6NBWIx {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tqCT6NBWIx nav.navbar {
  position: fixed;
}
.cid-tqCT6NBWIx .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-tqCT6NBWIx .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tqCT6NBWIx .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tqCT6NBWIx .dropdown-item:hover,
.cid-tqCT6NBWIx .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tqCT6NBWIx .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tqCT6NBWIx .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tqCT6NBWIx .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tqCT6NBWIx .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tqCT6NBWIx .nav-link {
  position: relative;
}
.cid-tqCT6NBWIx .container {
  display: flex;
  margin: auto;
}
.cid-tqCT6NBWIx .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tqCT6NBWIx .dropdown-menu,
.cid-tqCT6NBWIx .navbar.opened {
  background: #091a81 !important;
}
.cid-tqCT6NBWIx .nav-item:focus,
.cid-tqCT6NBWIx .nav-link:focus {
  outline: none;
}
.cid-tqCT6NBWIx .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tqCT6NBWIx .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tqCT6NBWIx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tqCT6NBWIx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tqCT6NBWIx .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tqCT6NBWIx .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tqCT6NBWIx .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: #091a81;
}
.cid-tqCT6NBWIx .navbar.opened {
  transition: all 0.3s;
}
.cid-tqCT6NBWIx .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tqCT6NBWIx .navbar .navbar-logo img {
  width: auto;
}
.cid-tqCT6NBWIx .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tqCT6NBWIx .navbar.collapsed {
  justify-content: center;
}
.cid-tqCT6NBWIx .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tqCT6NBWIx .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tqCT6NBWIx .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.9rem);
  }
}
.cid-tqCT6NBWIx .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tqCT6NBWIx .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tqCT6NBWIx .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-tqCT6NBWIx .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tqCT6NBWIx .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tqCT6NBWIx .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tqCT6NBWIx .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tqCT6NBWIx .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tqCT6NBWIx .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tqCT6NBWIx .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tqCT6NBWIx .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-tqCT6NBWIx .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tqCT6NBWIx .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tqCT6NBWIx .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tqCT6NBWIx .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tqCT6NBWIx .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tqCT6NBWIx .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tqCT6NBWIx .navbar.navbar-short {
  min-height: 60px;
}
.cid-tqCT6NBWIx .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tqCT6NBWIx .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tqCT6NBWIx .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-tqCT6NBWIx .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tqCT6NBWIx .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tqCT6NBWIx .dropdown-item.active,
.cid-tqCT6NBWIx .dropdown-item:active {
  background-color: transparent;
}
.cid-tqCT6NBWIx .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tqCT6NBWIx .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tqCT6NBWIx .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tqCT6NBWIx .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #091a81;
}
.cid-tqCT6NBWIx .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tqCT6NBWIx .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tqCT6NBWIx ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tqCT6NBWIx .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tqCT6NBWIx button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tqCT6NBWIx button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tqCT6NBWIx button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tqCT6NBWIx button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tqCT6NBWIx button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tqCT6NBWIx button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tqCT6NBWIx nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqCT6NBWIx nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tqCT6NBWIx nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tqCT6NBWIx nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqCT6NBWIx .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tqCT6NBWIx a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tqCT6NBWIx .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-tqCT6NBWIx .navbar {
    height: 70px;
  }
  .cid-tqCT6NBWIx .navbar.opened {
    height: auto;
  }
  .cid-tqCT6NBWIx .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
#custom-html-5g .rs-rounded {
  border-radius: 30px;
}
#custom-html-5g H3 {
  font-size: 24px;
  color: #b8312f;
}
#custom-html-5g h2 {
  font-size: 22px;
  color: #000000;
}
.cid-tqz5mfDzC4 {
  background-image: url("../../../assets/images/mbr-16-1920x1280.jpg");
}
#custom-html-5i div {
  height: 20px;
}
.cid-tqz6uTpF8Q {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (min-width: 1500px) {
  .cid-tqz6uTpF8Q .container {
    max-width: 1400px;
  }
}
.cid-tqz6uTpF8Q .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #091a81;
  margin-bottom: 2rem;
}
.cid-tqz6uTpF8Q .card-wrapper {
  margin-top: 3rem;
}
.cid-tqz6uTpF8Q .row {
  justify-content: center;
}
.cid-tqz6uTpF8Q .card-title,
.cid-tqz6uTpF8Q .iconfont-wrapper {
  color: #091a81;
}
.cid-tqz6uTpF8Q .card-text {
  color: #091a81;
}
.cid-tqz81yFYwZ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (min-width: 1500px) {
  .cid-tqz81yFYwZ .container {
    max-width: 1400px;
  }
}
.cid-tqz81yFYwZ .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #091a81;
  margin-bottom: 2rem;
}
.cid-tqz81yFYwZ .card-wrapper {
  margin-top: 3rem;
}
.cid-tqz81yFYwZ .row {
  justify-content: center;
}
.cid-tqz81yFYwZ .card-title,
.cid-tqz81yFYwZ .iconfont-wrapper {
  color: #091a81;
}
.cid-tqz81yFYwZ .card-text {
  color: #091a81;
}
#custom-html-5m div {
  height: 20px;
}
.cid-tqxIREPEp2 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #091a81;
}
.cid-tqxIREPEp2 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tqxIREPEp2 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tqxIREPEp2 .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tqxIREPEp2 .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tqxIREPEp2 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tqxIREPEp2 .copyright {
  color: #ffffff;
}
.cid-tqCT0IAZWT {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tqCT0IAZWT nav.navbar {
  position: fixed;
}
.cid-tqCT0IAZWT .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-tqCT0IAZWT .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tqCT0IAZWT .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tqCT0IAZWT .dropdown-item:hover,
.cid-tqCT0IAZWT .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tqCT0IAZWT .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tqCT0IAZWT .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tqCT0IAZWT .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tqCT0IAZWT .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tqCT0IAZWT .nav-link {
  position: relative;
}
.cid-tqCT0IAZWT .container {
  display: flex;
  margin: auto;
}
.cid-tqCT0IAZWT .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tqCT0IAZWT .dropdown-menu,
.cid-tqCT0IAZWT .navbar.opened {
  background: #091a81 !important;
}
.cid-tqCT0IAZWT .nav-item:focus,
.cid-tqCT0IAZWT .nav-link:focus {
  outline: none;
}
.cid-tqCT0IAZWT .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tqCT0IAZWT .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tqCT0IAZWT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tqCT0IAZWT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tqCT0IAZWT .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tqCT0IAZWT .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tqCT0IAZWT .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: #091a81;
}
.cid-tqCT0IAZWT .navbar.opened {
  transition: all 0.3s;
}
.cid-tqCT0IAZWT .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tqCT0IAZWT .navbar .navbar-logo img {
  width: auto;
}
.cid-tqCT0IAZWT .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tqCT0IAZWT .navbar.collapsed {
  justify-content: center;
}
.cid-tqCT0IAZWT .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tqCT0IAZWT .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tqCT0IAZWT .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.9rem);
  }
}
.cid-tqCT0IAZWT .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tqCT0IAZWT .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tqCT0IAZWT .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-tqCT0IAZWT .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tqCT0IAZWT .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tqCT0IAZWT .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tqCT0IAZWT .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tqCT0IAZWT .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tqCT0IAZWT .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tqCT0IAZWT .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tqCT0IAZWT .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-tqCT0IAZWT .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tqCT0IAZWT .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tqCT0IAZWT .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tqCT0IAZWT .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tqCT0IAZWT .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tqCT0IAZWT .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tqCT0IAZWT .navbar.navbar-short {
  min-height: 60px;
}
.cid-tqCT0IAZWT .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tqCT0IAZWT .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tqCT0IAZWT .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-tqCT0IAZWT .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tqCT0IAZWT .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tqCT0IAZWT .dropdown-item.active,
.cid-tqCT0IAZWT .dropdown-item:active {
  background-color: transparent;
}
.cid-tqCT0IAZWT .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tqCT0IAZWT .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tqCT0IAZWT .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tqCT0IAZWT .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #091a81;
}
.cid-tqCT0IAZWT .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tqCT0IAZWT .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tqCT0IAZWT ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tqCT0IAZWT .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tqCT0IAZWT button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tqCT0IAZWT button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tqCT0IAZWT button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tqCT0IAZWT button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tqCT0IAZWT button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tqCT0IAZWT button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tqCT0IAZWT nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqCT0IAZWT nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tqCT0IAZWT nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tqCT0IAZWT nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqCT0IAZWT .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tqCT0IAZWT a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tqCT0IAZWT .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-tqCT0IAZWT .navbar {
    height: 70px;
  }
  .cid-tqCT0IAZWT .navbar.opened {
    height: auto;
  }
  .cid-tqCT0IAZWT .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
#custom-html-5q .rs-rounded {
  border-radius: 30px;
}
#custom-html-5q H3 {
  font-size: 24px;
  color: #b8312f;
}
#custom-html-5q h2 {
  font-size: 22px;
  color: #000000;
}
.cid-tqz9BBKhtE {
  background-image: url("../../../assets/images/mbr-1920x1221.jpg");
}
#custom-html-5s div {
  height: 20px;
}
.cid-tqzad8WRPB {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tqzad8WRPB .mbr-section-title {
  color: #091a81;
}
.cid-tqzad8WRPB .mbr-section-subtitle {
  color: #091a81;
}
#custom-html-5v div {
  height: 20px;
}
.cid-tqxIREPEp2 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #091a81;
}
.cid-tqxIREPEp2 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tqxIREPEp2 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tqxIREPEp2 .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tqxIREPEp2 .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tqxIREPEp2 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tqxIREPEp2 .copyright {
  color: #ffffff;
}
.cid-tqCSW6xGVj {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tqCSW6xGVj nav.navbar {
  position: fixed;
}
.cid-tqCSW6xGVj .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-tqCSW6xGVj .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tqCSW6xGVj .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tqCSW6xGVj .dropdown-item:hover,
.cid-tqCSW6xGVj .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tqCSW6xGVj .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tqCSW6xGVj .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tqCSW6xGVj .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tqCSW6xGVj .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tqCSW6xGVj .nav-link {
  position: relative;
}
.cid-tqCSW6xGVj .container {
  display: flex;
  margin: auto;
}
.cid-tqCSW6xGVj .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tqCSW6xGVj .dropdown-menu,
.cid-tqCSW6xGVj .navbar.opened {
  background: #091a81 !important;
}
.cid-tqCSW6xGVj .nav-item:focus,
.cid-tqCSW6xGVj .nav-link:focus {
  outline: none;
}
.cid-tqCSW6xGVj .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tqCSW6xGVj .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tqCSW6xGVj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tqCSW6xGVj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tqCSW6xGVj .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tqCSW6xGVj .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tqCSW6xGVj .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: #091a81;
}
.cid-tqCSW6xGVj .navbar.opened {
  transition: all 0.3s;
}
.cid-tqCSW6xGVj .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tqCSW6xGVj .navbar .navbar-logo img {
  width: auto;
}
.cid-tqCSW6xGVj .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tqCSW6xGVj .navbar.collapsed {
  justify-content: center;
}
.cid-tqCSW6xGVj .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tqCSW6xGVj .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tqCSW6xGVj .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.9rem);
  }
}
.cid-tqCSW6xGVj .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tqCSW6xGVj .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tqCSW6xGVj .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-tqCSW6xGVj .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tqCSW6xGVj .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tqCSW6xGVj .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tqCSW6xGVj .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tqCSW6xGVj .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tqCSW6xGVj .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tqCSW6xGVj .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tqCSW6xGVj .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-tqCSW6xGVj .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tqCSW6xGVj .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tqCSW6xGVj .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tqCSW6xGVj .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tqCSW6xGVj .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tqCSW6xGVj .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tqCSW6xGVj .navbar.navbar-short {
  min-height: 60px;
}
.cid-tqCSW6xGVj .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tqCSW6xGVj .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tqCSW6xGVj .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-tqCSW6xGVj .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tqCSW6xGVj .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tqCSW6xGVj .dropdown-item.active,
.cid-tqCSW6xGVj .dropdown-item:active {
  background-color: transparent;
}
.cid-tqCSW6xGVj .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tqCSW6xGVj .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tqCSW6xGVj .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tqCSW6xGVj .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #091a81;
}
.cid-tqCSW6xGVj .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tqCSW6xGVj .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tqCSW6xGVj ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tqCSW6xGVj .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tqCSW6xGVj button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tqCSW6xGVj button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tqCSW6xGVj button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tqCSW6xGVj button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tqCSW6xGVj button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tqCSW6xGVj button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tqCSW6xGVj nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqCSW6xGVj nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tqCSW6xGVj nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tqCSW6xGVj nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqCSW6xGVj .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tqCSW6xGVj a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tqCSW6xGVj .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-tqCSW6xGVj .navbar {
    height: 70px;
  }
  .cid-tqCSW6xGVj .navbar.opened {
    height: auto;
  }
  .cid-tqCSW6xGVj .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tqzbbWRP9G {
  background-image: url("../../../assets/images/mbr-1920x1272.jpg");
}
.cid-tqxIREPEp2 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #091a81;
}
.cid-tqxIREPEp2 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tqxIREPEp2 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tqxIREPEp2 .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tqxIREPEp2 .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tqxIREPEp2 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tqxIREPEp2 .copyright {
  color: #ffffff;
}
.cid-tqCSQrmiYA {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tqCSQrmiYA nav.navbar {
  position: fixed;
}
.cid-tqCSQrmiYA .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-tqCSQrmiYA .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tqCSQrmiYA .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tqCSQrmiYA .dropdown-item:hover,
.cid-tqCSQrmiYA .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tqCSQrmiYA .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tqCSQrmiYA .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tqCSQrmiYA .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tqCSQrmiYA .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tqCSQrmiYA .nav-link {
  position: relative;
}
.cid-tqCSQrmiYA .container {
  display: flex;
  margin: auto;
}
.cid-tqCSQrmiYA .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tqCSQrmiYA .dropdown-menu,
.cid-tqCSQrmiYA .navbar.opened {
  background: #091a81 !important;
}
.cid-tqCSQrmiYA .nav-item:focus,
.cid-tqCSQrmiYA .nav-link:focus {
  outline: none;
}
.cid-tqCSQrmiYA .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tqCSQrmiYA .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tqCSQrmiYA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tqCSQrmiYA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tqCSQrmiYA .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tqCSQrmiYA .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tqCSQrmiYA .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: #091a81;
}
.cid-tqCSQrmiYA .navbar.opened {
  transition: all 0.3s;
}
.cid-tqCSQrmiYA .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tqCSQrmiYA .navbar .navbar-logo img {
  width: auto;
}
.cid-tqCSQrmiYA .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tqCSQrmiYA .navbar.collapsed {
  justify-content: center;
}
.cid-tqCSQrmiYA .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tqCSQrmiYA .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tqCSQrmiYA .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.9rem);
  }
}
.cid-tqCSQrmiYA .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tqCSQrmiYA .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tqCSQrmiYA .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-tqCSQrmiYA .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tqCSQrmiYA .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tqCSQrmiYA .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tqCSQrmiYA .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tqCSQrmiYA .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tqCSQrmiYA .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tqCSQrmiYA .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tqCSQrmiYA .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-tqCSQrmiYA .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tqCSQrmiYA .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tqCSQrmiYA .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tqCSQrmiYA .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tqCSQrmiYA .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tqCSQrmiYA .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tqCSQrmiYA .navbar.navbar-short {
  min-height: 60px;
}
.cid-tqCSQrmiYA .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tqCSQrmiYA .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tqCSQrmiYA .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-tqCSQrmiYA .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tqCSQrmiYA .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tqCSQrmiYA .dropdown-item.active,
.cid-tqCSQrmiYA .dropdown-item:active {
  background-color: transparent;
}
.cid-tqCSQrmiYA .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tqCSQrmiYA .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tqCSQrmiYA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tqCSQrmiYA .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #091a81;
}
.cid-tqCSQrmiYA .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tqCSQrmiYA .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tqCSQrmiYA ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tqCSQrmiYA .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tqCSQrmiYA button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tqCSQrmiYA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tqCSQrmiYA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tqCSQrmiYA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tqCSQrmiYA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tqCSQrmiYA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tqCSQrmiYA nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqCSQrmiYA nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tqCSQrmiYA nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tqCSQrmiYA nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqCSQrmiYA .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tqCSQrmiYA a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tqCSQrmiYA .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-tqCSQrmiYA .navbar {
    height: 70px;
  }
  .cid-tqCSQrmiYA .navbar.opened {
    height: auto;
  }
  .cid-tqCSQrmiYA .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
#custom-html-62 .rs-rounded {
  border-radius: 30px;
}
#custom-html-62 H3 {
  font-size: 24px;
  color: #b8312f;
}
#custom-html-62 h2 {
  font-size: 22px;
  color: #000000;
}
.cid-tqzcWyd384 {
  background-image: url("../../../assets/images/mbr-15-1920x1280.jpg");
}
.cid-tqzcWyd384 .mbr-section-title {
  text-align: right;
}
.cid-tqzcWyd384 .mbr-text,
.cid-tqzcWyd384 .mbr-section-btn {
  text-align: right;
}
#custom-html-64 div {
  height: 20px;
}
.cid-tqzdxxUUbs {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tqzdxxUUbs .mbr-section-title {
  color: #091a81;
}
.cid-tqzdxxUUbs .mbr-section-subtitle {
  color: #091a81;
}
#custom-html-66 div {
  height: 20px;
}
.cid-tqxIREPEp2 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #091a81;
}
.cid-tqxIREPEp2 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tqxIREPEp2 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tqxIREPEp2 .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tqxIREPEp2 .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tqxIREPEp2 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tqxIREPEp2 .copyright {
  color: #ffffff;
}
.cid-tqCNYYXt37 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tqCNYYXt37 nav.navbar {
  position: fixed;
}
.cid-tqCNYYXt37 .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-tqCNYYXt37 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tqCNYYXt37 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tqCNYYXt37 .dropdown-item:hover,
.cid-tqCNYYXt37 .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tqCNYYXt37 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tqCNYYXt37 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tqCNYYXt37 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tqCNYYXt37 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tqCNYYXt37 .nav-link {
  position: relative;
}
.cid-tqCNYYXt37 .container {
  display: flex;
  margin: auto;
}
.cid-tqCNYYXt37 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tqCNYYXt37 .dropdown-menu,
.cid-tqCNYYXt37 .navbar.opened {
  background: #091a81 !important;
}
.cid-tqCNYYXt37 .nav-item:focus,
.cid-tqCNYYXt37 .nav-link:focus {
  outline: none;
}
.cid-tqCNYYXt37 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tqCNYYXt37 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tqCNYYXt37 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tqCNYYXt37 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tqCNYYXt37 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tqCNYYXt37 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tqCNYYXt37 .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: #091a81;
}
.cid-tqCNYYXt37 .navbar.opened {
  transition: all 0.3s;
}
.cid-tqCNYYXt37 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tqCNYYXt37 .navbar .navbar-logo img {
  width: auto;
}
.cid-tqCNYYXt37 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tqCNYYXt37 .navbar.collapsed {
  justify-content: center;
}
.cid-tqCNYYXt37 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tqCNYYXt37 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tqCNYYXt37 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.9rem);
  }
}
.cid-tqCNYYXt37 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tqCNYYXt37 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tqCNYYXt37 .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-tqCNYYXt37 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tqCNYYXt37 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tqCNYYXt37 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tqCNYYXt37 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tqCNYYXt37 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tqCNYYXt37 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tqCNYYXt37 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tqCNYYXt37 .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-tqCNYYXt37 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tqCNYYXt37 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tqCNYYXt37 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tqCNYYXt37 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tqCNYYXt37 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tqCNYYXt37 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tqCNYYXt37 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tqCNYYXt37 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tqCNYYXt37 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tqCNYYXt37 .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-tqCNYYXt37 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tqCNYYXt37 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tqCNYYXt37 .dropdown-item.active,
.cid-tqCNYYXt37 .dropdown-item:active {
  background-color: transparent;
}
.cid-tqCNYYXt37 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tqCNYYXt37 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tqCNYYXt37 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tqCNYYXt37 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #091a81;
}
.cid-tqCNYYXt37 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tqCNYYXt37 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tqCNYYXt37 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tqCNYYXt37 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tqCNYYXt37 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tqCNYYXt37 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tqCNYYXt37 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tqCNYYXt37 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tqCNYYXt37 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tqCNYYXt37 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tqCNYYXt37 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqCNYYXt37 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tqCNYYXt37 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tqCNYYXt37 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqCNYYXt37 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tqCNYYXt37 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tqCNYYXt37 .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-tqCNYYXt37 .navbar {
    height: 70px;
  }
  .cid-tqCNYYXt37 .navbar.opened {
    height: auto;
  }
  .cid-tqCNYYXt37 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
#custom-html-6b .row {
  margin-right: 0px !important;
  margin-left: 0px !important;
}
#custom-html-6b .rs-rounded {
  border-radius: 30px;
}
#custom-html-6b H3 {
  font-size: 24px;
  color: #b8312f;
}
#custom-html-6b h2 {
  font-size: 22px;
  color: #000000;
}
.cid-tqzeTcKm2h {
  background-image: url("../../../assets/images/mbr-1920x1292.jpg");
}
#custom-html-6d div {
  height: 20px;
}
#custom-html-6e .row {
  margin-right: 0px !important;
  margin-left: 0px !important;
}
#custom-html-6e label {
  color: #ffffff;
}
#custom-html-6e .form-control-label {
  color: #ffffff;
}
#custom-html-6e SMALL {
  color: #000000;
  font-family: 'Roboto', sans-serif;
}
#custom-html-6e .rs-form-control {
  background-color: #f5f5f5;
  border-radius: 3px;
  box-shadow: none;
  color: #565656;
  font-size: 1.3rem;
  line-height: 1.53;
  min-height: 3.5em;
  padding: 0.5em 1.07em 0.5em;
}
#custom-html-6e .rs-form-control,
#custom-html-6e .rs-form-control:focus {
  border: 1px solid #e8e8e8;
}
#custom-html-6e .rs-form-active .rs-form-control:invalid {
  border-color: #f28281;
}
#custom-html-6e .rs-form-control-label {
  cursor: pointer;
  font-size: 0.875rem;
  margin-bottom: 0.357em;
  padding: 0;
}
#custom-html-6e .rs-form-control,
#custom-html-6e .rs-form-control-file,
#custom-html-6e .rs-form-control-range {
  display: block;
}
#custom-html-6e .rs-form-control {
  width: 100%;
  background-image: none;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
#custom-html-6e .regular-checkbox {
  display: none;
}
#custom-html-6e .regular-checkbox + label {
  width: 100%;
  background-color: #fafafa;
  border: 1px solid #cacece;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 9px;
  border-radius: 3px;
  display: inline-block;
  position: relative;
}
#custom-html-6e .regular-checkbox + label:active,
#custom-html-6e .regular-checkbox:checked + label:active {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px 1px 3px rgba(0, 0, 0, 0.1);
}
#custom-html-6e .regular-checkbox:checked + label {
  background-color: #e9ecee;
  border: 1px solid #adb8c0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05), inset 15px 10px -12px rgba(255, 255, 255, 0.1);
  color: #000000;
}
#custom-html-6e .regular-checkbox:checked + label:after {
  content: '\2714';
  font-size: 17px;
  position: absolute;
  top: 0px;
  left: 3px;
  color: #000000;
}
#custom-html-6e .big-checkbox + label {
  font-size: 1.3rem;
  font-family: 'Roboto', sans-serif;
  padding: 18px;
  color: #000000;
}
#custom-html-6e .big-checkbox:checked + label:after {
  font-size: 1.3rem;
  font-family: 'Roboto', sans-serif;
  left: 6px;
  color: #000000;
}
#custom-html-6e .adj-top {
  padding-top: 20px !important;
}
#custom-html-6e #notes {
  background-color: #cdcdcd;
  color: #000000;
  padding: 5px;
}
#custom-html-6e .boldit {
  font-weight: 700;
}
#custom-html-6e H3 {
  color: #ffffff;
}
#custom-html-6e P {
  color: #f7da64;
  text-align: left;
}
#custom-html-6e SPAN {
  font-size: 19px;
}
#custom-html-6e .mbr-section-title,
#custom-html-6e p {
  color: #fff;
}
#custom-html-6f div {
  height: 20px;
}
#custom-html-6g .row {
  margin-right: 0px !important;
  margin-left: 0px !important;
}
#custom-html-6g .fileupload {
  margin: .4rem .0rem !important;
}
#custom-html-6g label {
  color: #ffffff;
}
#custom-html-6g .form-control-label {
  color: #ffffff;
}
#custom-html-6g SMALL {
  color: #000000;
  font-family: 'Roboto', sans-serif;
}
#custom-html-6g .rs-form-control {
  background-color: #f5f5f5;
  border-radius: 3px;
  box-shadow: none;
  color: #565656;
  font-size: 1.3rem;
  line-height: 1.53;
  min-height: 3.5em;
  padding: 0.5em 1.07em 0.5em;
}
#custom-html-6g .rs-form-control,
#custom-html-6g .rs-form-control:focus {
  border: 1px solid #e8e8e8;
}
#custom-html-6g .rs-form-active .rs-form-control:invalid {
  border-color: #f28281;
}
#custom-html-6g .rs-form-control-label {
  cursor: pointer;
  font-size: 0.875rem;
  margin-bottom: 0.357em;
  padding: 0;
}
#custom-html-6g .rs-form-control,
#custom-html-6g .rs-form-control-file,
#custom-html-6g .rs-form-control-range {
  display: block;
}
#custom-html-6g .rs-form-control {
  width: 100%;
  background-image: none;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
#custom-html-6g .regular-checkbox {
  display: none;
}
#custom-html-6g .regular-checkbox + label {
  width: 100%;
  background-color: #fafafa;
  border: 1px solid #cacece;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 9px;
  border-radius: 3px;
  display: inline-block;
  position: relative;
}
#custom-html-6g .regular-checkbox + label:active,
#custom-html-6g .regular-checkbox:checked + label:active {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px 1px 3px rgba(0, 0, 0, 0.1);
}
#custom-html-6g .regular-checkbox:checked + label {
  background-color: #e9ecee;
  border: 1px solid #adb8c0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05), inset 15px 10px -12px rgba(255, 255, 255, 0.1);
  color: #000000;
}
#custom-html-6g .regular-checkbox:checked + label:after {
  content: '\2714';
  font-size: 17px;
  position: absolute;
  top: 0px;
  left: 3px;
  color: #000000;
}
#custom-html-6g .big-checkbox + label {
  font-size: 1.3rem;
  font-family: 'Roboto', sans-serif;
  padding: 18px;
  color: #000000;
}
#custom-html-6g .big-checkbox:checked + label:after {
  font-size: 1.3rem;
  Robotofont-family: 'Raleway', sans-serif;
  left: 6px;
  color: #000000;
}
#custom-html-6g .adj-top {
  padding-top: 20px !important;
}
#custom-html-6g #notes {
  background-color: #cdcdcd;
  color: #000000;
  padding: 5px;
}
#custom-html-6g .boldit {
  font-weight: 700;
}
#custom-html-6g .RSform-title {
  color: #ffffff;
  font-size: 24px;
}
.cid-tqxIREPEp2 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #091a81;
}
.cid-tqxIREPEp2 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tqxIREPEp2 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tqxIREPEp2 .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tqxIREPEp2 .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tqxIREPEp2 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tqxIREPEp2 .copyright {
  color: #ffffff;
}
.cid-tqCSL9GIA9 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tqCSL9GIA9 nav.navbar {
  position: fixed;
}
.cid-tqCSL9GIA9 .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-tqCSL9GIA9 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tqCSL9GIA9 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tqCSL9GIA9 .dropdown-item:hover,
.cid-tqCSL9GIA9 .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tqCSL9GIA9 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tqCSL9GIA9 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tqCSL9GIA9 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tqCSL9GIA9 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tqCSL9GIA9 .nav-link {
  position: relative;
}
.cid-tqCSL9GIA9 .container {
  display: flex;
  margin: auto;
}
.cid-tqCSL9GIA9 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tqCSL9GIA9 .dropdown-menu,
.cid-tqCSL9GIA9 .navbar.opened {
  background: #091a81 !important;
}
.cid-tqCSL9GIA9 .nav-item:focus,
.cid-tqCSL9GIA9 .nav-link:focus {
  outline: none;
}
.cid-tqCSL9GIA9 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tqCSL9GIA9 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tqCSL9GIA9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tqCSL9GIA9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tqCSL9GIA9 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tqCSL9GIA9 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tqCSL9GIA9 .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: #091a81;
}
.cid-tqCSL9GIA9 .navbar.opened {
  transition: all 0.3s;
}
.cid-tqCSL9GIA9 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tqCSL9GIA9 .navbar .navbar-logo img {
  width: auto;
}
.cid-tqCSL9GIA9 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tqCSL9GIA9 .navbar.collapsed {
  justify-content: center;
}
.cid-tqCSL9GIA9 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tqCSL9GIA9 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tqCSL9GIA9 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.9rem);
  }
}
.cid-tqCSL9GIA9 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tqCSL9GIA9 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tqCSL9GIA9 .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-tqCSL9GIA9 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tqCSL9GIA9 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tqCSL9GIA9 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tqCSL9GIA9 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tqCSL9GIA9 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tqCSL9GIA9 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tqCSL9GIA9 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tqCSL9GIA9 .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-tqCSL9GIA9 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tqCSL9GIA9 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tqCSL9GIA9 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tqCSL9GIA9 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tqCSL9GIA9 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tqCSL9GIA9 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tqCSL9GIA9 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tqCSL9GIA9 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tqCSL9GIA9 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tqCSL9GIA9 .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-tqCSL9GIA9 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tqCSL9GIA9 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tqCSL9GIA9 .dropdown-item.active,
.cid-tqCSL9GIA9 .dropdown-item:active {
  background-color: transparent;
}
.cid-tqCSL9GIA9 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tqCSL9GIA9 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tqCSL9GIA9 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tqCSL9GIA9 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #091a81;
}
.cid-tqCSL9GIA9 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tqCSL9GIA9 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tqCSL9GIA9 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tqCSL9GIA9 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tqCSL9GIA9 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tqCSL9GIA9 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tqCSL9GIA9 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tqCSL9GIA9 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tqCSL9GIA9 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tqCSL9GIA9 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tqCSL9GIA9 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqCSL9GIA9 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tqCSL9GIA9 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tqCSL9GIA9 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqCSL9GIA9 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tqCSL9GIA9 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tqCSL9GIA9 .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-tqCSL9GIA9 .navbar {
    height: 70px;
  }
  .cid-tqCSL9GIA9 .navbar.opened {
    height: auto;
  }
  .cid-tqCSL9GIA9 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
#custom-html-6k .row {
  margin-right: 0px !important;
  margin-left: 0px !important;
}
#custom-html-6k .rs-rounded {
  border-radius: 30px;
}
#custom-html-6k H3 {
  font-size: 24px;
  color: #b8312f;
}
#custom-html-6k h2 {
  font-size: 22px;
  color: #000000;
}
.cid-tqzi7SLshk {
  padding-top: 10rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/mbr-1920x1292.jpg");
}
#custom-html-6m div {
  height: 20px;
}
.cid-tqxIREPEp2 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #091a81;
}
.cid-tqxIREPEp2 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tqxIREPEp2 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tqxIREPEp2 .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tqxIREPEp2 .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tqxIREPEp2 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tqxIREPEp2 .copyright {
  color: #ffffff;
}
.cid-tqCSGRSOki {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tqCSGRSOki nav.navbar {
  position: fixed;
}
.cid-tqCSGRSOki .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-tqCSGRSOki .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tqCSGRSOki .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tqCSGRSOki .dropdown-item:hover,
.cid-tqCSGRSOki .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tqCSGRSOki .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tqCSGRSOki .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tqCSGRSOki .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tqCSGRSOki .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tqCSGRSOki .nav-link {
  position: relative;
}
.cid-tqCSGRSOki .container {
  display: flex;
  margin: auto;
}
.cid-tqCSGRSOki .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tqCSGRSOki .dropdown-menu,
.cid-tqCSGRSOki .navbar.opened {
  background: #091a81 !important;
}
.cid-tqCSGRSOki .nav-item:focus,
.cid-tqCSGRSOki .nav-link:focus {
  outline: none;
}
.cid-tqCSGRSOki .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tqCSGRSOki .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tqCSGRSOki .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tqCSGRSOki .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tqCSGRSOki .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tqCSGRSOki .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tqCSGRSOki .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: #091a81;
}
.cid-tqCSGRSOki .navbar.opened {
  transition: all 0.3s;
}
.cid-tqCSGRSOki .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tqCSGRSOki .navbar .navbar-logo img {
  width: auto;
}
.cid-tqCSGRSOki .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tqCSGRSOki .navbar.collapsed {
  justify-content: center;
}
.cid-tqCSGRSOki .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tqCSGRSOki .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tqCSGRSOki .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.9rem);
  }
}
.cid-tqCSGRSOki .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tqCSGRSOki .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tqCSGRSOki .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-tqCSGRSOki .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tqCSGRSOki .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tqCSGRSOki .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tqCSGRSOki .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tqCSGRSOki .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tqCSGRSOki .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tqCSGRSOki .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tqCSGRSOki .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-tqCSGRSOki .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tqCSGRSOki .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tqCSGRSOki .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tqCSGRSOki .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tqCSGRSOki .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tqCSGRSOki .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tqCSGRSOki .navbar.navbar-short {
  min-height: 60px;
}
.cid-tqCSGRSOki .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tqCSGRSOki .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tqCSGRSOki .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-tqCSGRSOki .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tqCSGRSOki .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tqCSGRSOki .dropdown-item.active,
.cid-tqCSGRSOki .dropdown-item:active {
  background-color: transparent;
}
.cid-tqCSGRSOki .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tqCSGRSOki .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tqCSGRSOki .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tqCSGRSOki .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #091a81;
}
.cid-tqCSGRSOki .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tqCSGRSOki .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tqCSGRSOki ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tqCSGRSOki .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tqCSGRSOki button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tqCSGRSOki button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tqCSGRSOki button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tqCSGRSOki button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tqCSGRSOki button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tqCSGRSOki button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tqCSGRSOki nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqCSGRSOki nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tqCSGRSOki nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tqCSGRSOki nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqCSGRSOki .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tqCSGRSOki a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tqCSGRSOki .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-tqCSGRSOki .navbar {
    height: 70px;
  }
  .cid-tqCSGRSOki .navbar.opened {
    height: auto;
  }
  .cid-tqCSGRSOki .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
#custom-html-6r .rs-rounded {
  border-radius: 30px;
}
#custom-html-6r H3 {
  font-size: 24px;
  color: #b8312f;
}
#custom-html-6r h2 {
  font-size: 22px;
  color: #000000;
}
.cid-tqzCvGapXx {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tqzCvGapXx .mbr-section-title {
  color: #091a81;
}
.cid-tqzCvGapXx .mbr-section-subtitle {
  color: #091a81;
}
#custom-html-6t div {
  height: 20px;
}
#custom-html-6u input {
  text-align: center;
}
#custom-html-6u label {
  color: #ffffff;
}
#custom-html-6u .form-control-label {
  color: #ffffff;
}
#custom-html-6u SMALL {
  color: #000000;
  font-family: 'Roboto', sans-serif;
}
#custom-html-6u .rs-form-control {
  background-color: #f5f5f5;
  border-radius: 3px;
  box-shadow: none;
  color: #565656;
  font-size: 1.3rem;
  line-height: 1.53;
  min-height: 3.5em;
  padding: 0.5em 1.07em 0.5em;
}
#custom-html-6u .rs-form-control,
#custom-html-6u .rs-form-control:focus {
  border: 1px solid #e8e8e8;
}
#custom-html-6u .rs-form-active .rs-form-control:invalid {
  border-color: #f28281;
}
#custom-html-6u .rs-form-control-label {
  cursor: pointer;
  font-size: 0.875rem;
  margin-bottom: 0.357em;
  padding: 0;
}
#custom-html-6u .rs-form-control,
#custom-html-6u .rs-form-control-file,
#custom-html-6u .rs-form-control-range {
  display: block;
}
#custom-html-6u .rs-form-control {
  width: 100%;
  background-image: none;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
#custom-html-6u .regular-checkbox {
  display: none;
}
#custom-html-6u .regular-checkbox + label {
  width: 100%;
  background-color: #fafafa;
  border: 1px solid #cacece;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 9px;
  border-radius: 3px;
  display: inline-block;
  position: relative;
}
#custom-html-6u .regular-checkbox + label:active,
#custom-html-6u .regular-checkbox:checked + label:active {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px 1px 3px rgba(0, 0, 0, 0.1);
}
#custom-html-6u .regular-checkbox:checked + label {
  background-color: #e9ecee;
  border: 1px solid #adb8c0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05), inset 15px 10px -12px rgba(255, 255, 255, 0.1);
  color: #000000;
}
#custom-html-6u .regular-checkbox:checked + label:after {
  content: '\2714';
  font-size: 17px;
  position: absolute;
  top: 0px;
  left: 3px;
  color: #000000;
}
#custom-html-6u .big-checkbox + label {
  font-size: 1.3rem;
  font-family: 'Roboto', sans-serif;
  padding: 18px;
  color: #000000;
}
#custom-html-6u .big-checkbox:checked + label:after {
  font-size: 1.3rem;
  font-family: 'Roboto', sans-serif;
  left: 6px;
  color: #000000;
}
#custom-html-6u .adj-top {
  padding-top: 20px !important;
}
#custom-html-6u #notes {
  background-color: #cdcdcd;
  color: #000000;
  padding: 5px;
}
#custom-html-6u .boldit {
  font-weight: 700;
}
#custom-html-6u .RSform-title {
  color: #ffffff;
  font-size: 24px;
}
#custom-html-6v div {
  height: 20px;
}
.cid-tqxIREPEp2 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #091a81;
}
.cid-tqxIREPEp2 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tqxIREPEp2 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tqxIREPEp2 .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tqxIREPEp2 .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tqxIREPEp2 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tqxIREPEp2 .copyright {
  color: #ffffff;
}
.cid-tqCSAosHKB {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tqCSAosHKB nav.navbar {
  position: fixed;
}
.cid-tqCSAosHKB .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-tqCSAosHKB .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tqCSAosHKB .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tqCSAosHKB .dropdown-item:hover,
.cid-tqCSAosHKB .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tqCSAosHKB .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tqCSAosHKB .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tqCSAosHKB .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tqCSAosHKB .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tqCSAosHKB .nav-link {
  position: relative;
}
.cid-tqCSAosHKB .container {
  display: flex;
  margin: auto;
}
.cid-tqCSAosHKB .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tqCSAosHKB .dropdown-menu,
.cid-tqCSAosHKB .navbar.opened {
  background: #091a81 !important;
}
.cid-tqCSAosHKB .nav-item:focus,
.cid-tqCSAosHKB .nav-link:focus {
  outline: none;
}
.cid-tqCSAosHKB .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tqCSAosHKB .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tqCSAosHKB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tqCSAosHKB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tqCSAosHKB .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tqCSAosHKB .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tqCSAosHKB .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: #091a81;
}
.cid-tqCSAosHKB .navbar.opened {
  transition: all 0.3s;
}
.cid-tqCSAosHKB .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tqCSAosHKB .navbar .navbar-logo img {
  width: auto;
}
.cid-tqCSAosHKB .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tqCSAosHKB .navbar.collapsed {
  justify-content: center;
}
.cid-tqCSAosHKB .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tqCSAosHKB .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tqCSAosHKB .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.9rem);
  }
}
.cid-tqCSAosHKB .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tqCSAosHKB .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tqCSAosHKB .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-tqCSAosHKB .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tqCSAosHKB .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tqCSAosHKB .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tqCSAosHKB .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tqCSAosHKB .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tqCSAosHKB .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tqCSAosHKB .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tqCSAosHKB .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-tqCSAosHKB .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tqCSAosHKB .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tqCSAosHKB .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tqCSAosHKB .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tqCSAosHKB .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tqCSAosHKB .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tqCSAosHKB .navbar.navbar-short {
  min-height: 60px;
}
.cid-tqCSAosHKB .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tqCSAosHKB .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tqCSAosHKB .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-tqCSAosHKB .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tqCSAosHKB .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tqCSAosHKB .dropdown-item.active,
.cid-tqCSAosHKB .dropdown-item:active {
  background-color: transparent;
}
.cid-tqCSAosHKB .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tqCSAosHKB .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tqCSAosHKB .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tqCSAosHKB .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #091a81;
}
.cid-tqCSAosHKB .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tqCSAosHKB .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tqCSAosHKB ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tqCSAosHKB .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tqCSAosHKB button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tqCSAosHKB button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tqCSAosHKB button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tqCSAosHKB button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tqCSAosHKB button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tqCSAosHKB button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tqCSAosHKB nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqCSAosHKB nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tqCSAosHKB nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tqCSAosHKB nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqCSAosHKB .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tqCSAosHKB a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tqCSAosHKB .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-tqCSAosHKB .navbar {
    height: 70px;
  }
  .cid-tqCSAosHKB .navbar.opened {
    height: auto;
  }
  .cid-tqCSAosHKB .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
#custom-html-70 .rs-rounded {
  border-radius: 30px;
}
#custom-html-70 H3 {
  font-size: 24px;
  color: #b8312f;
}
#custom-html-70 h2 {
  font-size: 22px;
  color: #000000;
}
.cid-tqzHhOpnHR {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tqzHhOpnHR .mbr-section-title {
  color: #091a81;
}
.cid-tqzHhOpnHR .mbr-section-subtitle {
  color: #091a81;
}
#custom-html-72 div {
  height: 20px;
}
#custom-html-73 input {
  text-align: center;
}
#custom-html-73 label {
  color: #ffffff;
}
#custom-html-73 .form-control-label {
  color: #ffffff;
}
#custom-html-73 SMALL {
  color: #000000;
  font-family: 'Roboto', sans-serif;
}
#custom-html-73 .rs-form-control {
  background-color: #f5f5f5;
  border-radius: 3px;
  box-shadow: none;
  color: #565656;
  font-size: 1.3rem;
  line-height: 1.53;
  min-height: 3.5em;
  padding: 0.5em 1.07em 0.5em;
}
#custom-html-73 .rs-form-control,
#custom-html-73 .rs-form-control:focus {
  border: 1px solid #e8e8e8;
}
#custom-html-73 .rs-form-active .rs-form-control:invalid {
  border-color: #f28281;
}
#custom-html-73 .rs-form-control-label {
  cursor: pointer;
  font-size: 0.875rem;
  margin-bottom: 0.357em;
  padding: 0;
}
#custom-html-73 .rs-form-control,
#custom-html-73 .rs-form-control-file,
#custom-html-73 .rs-form-control-range {
  display: block;
}
#custom-html-73 .rs-form-control {
  width: 100%;
  background-image: none;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
#custom-html-73 .regular-checkbox {
  display: none;
}
#custom-html-73 .regular-checkbox + label {
  width: 100%;
  background-color: #fafafa;
  border: 1px solid #cacece;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 9px;
  border-radius: 3px;
  display: inline-block;
  position: relative;
}
#custom-html-73 .regular-checkbox + label:active,
#custom-html-73 .regular-checkbox:checked + label:active {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px 1px 3px rgba(0, 0, 0, 0.1);
}
#custom-html-73 .regular-checkbox:checked + label {
  background-color: #e9ecee;
  border: 1px solid #adb8c0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05), inset 15px 10px -12px rgba(255, 255, 255, 0.1);
  color: #000000;
}
#custom-html-73 .regular-checkbox:checked + label:after {
  content: '\2714';
  font-size: 17px;
  position: absolute;
  top: 0px;
  left: 3px;
  color: #000000;
}
#custom-html-73 .big-checkbox + label {
  font-size: 1.3rem;
  font-family: 'Roboto', sans-serif;
  padding: 18px;
  color: #000000;
}
#custom-html-73 .big-checkbox:checked + label:after {
  font-size: 1.3rem;
  font-family: 'Roboto', sans-serif;
  left: 6px;
  color: #000000;
}
#custom-html-73 .adj-top {
  padding-top: 20px !important;
}
#custom-html-73 #notes {
  background-color: #cdcdcd;
  color: #000000;
  padding: 5px;
}
#custom-html-73 .boldit {
  font-weight: 700;
}
#custom-html-73 .RSform-title {
  color: #ffffff;
  font-size: 24px;
}
#custom-html-74 div {
  height: 20px;
}
.cid-tqxIREPEp2 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #091a81;
}
.cid-tqxIREPEp2 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tqxIREPEp2 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tqxIREPEp2 .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tqxIREPEp2 .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tqxIREPEp2 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tqxIREPEp2 .copyright {
  color: #ffffff;
}
.cid-tqCV5eu6vo {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tqCV5eu6vo nav.navbar {
  position: fixed;
}
.cid-tqCV5eu6vo .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-tqCV5eu6vo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tqCV5eu6vo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tqCV5eu6vo .dropdown-item:hover,
.cid-tqCV5eu6vo .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tqCV5eu6vo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tqCV5eu6vo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tqCV5eu6vo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tqCV5eu6vo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tqCV5eu6vo .nav-link {
  position: relative;
}
.cid-tqCV5eu6vo .container {
  display: flex;
  margin: auto;
}
.cid-tqCV5eu6vo .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tqCV5eu6vo .dropdown-menu,
.cid-tqCV5eu6vo .navbar.opened {
  background: #091a81 !important;
}
.cid-tqCV5eu6vo .nav-item:focus,
.cid-tqCV5eu6vo .nav-link:focus {
  outline: none;
}
.cid-tqCV5eu6vo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tqCV5eu6vo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tqCV5eu6vo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tqCV5eu6vo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tqCV5eu6vo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tqCV5eu6vo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tqCV5eu6vo .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: #091a81;
}
.cid-tqCV5eu6vo .navbar.opened {
  transition: all 0.3s;
}
.cid-tqCV5eu6vo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tqCV5eu6vo .navbar .navbar-logo img {
  width: auto;
}
.cid-tqCV5eu6vo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tqCV5eu6vo .navbar.collapsed {
  justify-content: center;
}
.cid-tqCV5eu6vo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tqCV5eu6vo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tqCV5eu6vo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-tqCV5eu6vo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tqCV5eu6vo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tqCV5eu6vo .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-tqCV5eu6vo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tqCV5eu6vo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tqCV5eu6vo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tqCV5eu6vo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tqCV5eu6vo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tqCV5eu6vo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tqCV5eu6vo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tqCV5eu6vo .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-tqCV5eu6vo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tqCV5eu6vo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tqCV5eu6vo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tqCV5eu6vo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tqCV5eu6vo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tqCV5eu6vo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tqCV5eu6vo .navbar.navbar-short {
  min-height: 60px;
}
.cid-tqCV5eu6vo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tqCV5eu6vo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tqCV5eu6vo .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-tqCV5eu6vo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tqCV5eu6vo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tqCV5eu6vo .dropdown-item.active,
.cid-tqCV5eu6vo .dropdown-item:active {
  background-color: transparent;
}
.cid-tqCV5eu6vo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tqCV5eu6vo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tqCV5eu6vo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tqCV5eu6vo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #091a81;
}
.cid-tqCV5eu6vo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tqCV5eu6vo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tqCV5eu6vo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tqCV5eu6vo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tqCV5eu6vo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tqCV5eu6vo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tqCV5eu6vo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tqCV5eu6vo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tqCV5eu6vo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tqCV5eu6vo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tqCV5eu6vo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqCV5eu6vo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tqCV5eu6vo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tqCV5eu6vo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqCV5eu6vo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tqCV5eu6vo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tqCV5eu6vo .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-tqCV5eu6vo .navbar {
    height: 70px;
  }
  .cid-tqCV5eu6vo .navbar.opened {
    height: auto;
  }
  .cid-tqCV5eu6vo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uI1MxYVYup {
  padding-top: 7rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-36-1920x1280.jpg");
}
.cid-uI1MxYVYup .mbr-section-title {
  color: #091a81;
}
.cid-uI1MxYVYup .mbr-section-subtitle {
  color: #091a81;
}
.cid-tqCV5fYrbF {
  padding-top: 1rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-tqCV5fYrbF .line {
  background-color: #091a81;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tqCV5fYrbF .mbr-text {
  text-align: left;
}
.cid-tqCV5glKga {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #091a81;
}
.cid-tqCV5glKga .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tqCV5glKga .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tqCV5glKga .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tqCV5glKga .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tqCV5glKga div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tqCV5glKga .copyright {
  color: #ffffff;
}
.cid-uDMOHBiKTG {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uDMOHBiKTG nav.navbar {
  position: fixed;
}
.cid-uDMOHBiKTG .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-uDMOHBiKTG .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uDMOHBiKTG .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uDMOHBiKTG .dropdown-item:hover,
.cid-uDMOHBiKTG .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-uDMOHBiKTG .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uDMOHBiKTG .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uDMOHBiKTG .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uDMOHBiKTG .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uDMOHBiKTG .nav-link {
  position: relative;
}
.cid-uDMOHBiKTG .container {
  display: flex;
  margin: auto;
}
.cid-uDMOHBiKTG .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uDMOHBiKTG .dropdown-menu,
.cid-uDMOHBiKTG .navbar.opened {
  background: #091a81 !important;
}
.cid-uDMOHBiKTG .nav-item:focus,
.cid-uDMOHBiKTG .nav-link:focus {
  outline: none;
}
.cid-uDMOHBiKTG .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uDMOHBiKTG .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uDMOHBiKTG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uDMOHBiKTG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uDMOHBiKTG .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uDMOHBiKTG .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uDMOHBiKTG .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: #091a81;
}
.cid-uDMOHBiKTG .navbar.opened {
  transition: all 0.3s;
}
.cid-uDMOHBiKTG .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uDMOHBiKTG .navbar .navbar-logo img {
  width: auto;
}
.cid-uDMOHBiKTG .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uDMOHBiKTG .navbar.collapsed {
  justify-content: center;
}
.cid-uDMOHBiKTG .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uDMOHBiKTG .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uDMOHBiKTG .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-uDMOHBiKTG .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uDMOHBiKTG .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uDMOHBiKTG .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-uDMOHBiKTG .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uDMOHBiKTG .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uDMOHBiKTG .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uDMOHBiKTG .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uDMOHBiKTG .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uDMOHBiKTG .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uDMOHBiKTG .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uDMOHBiKTG .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-uDMOHBiKTG .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uDMOHBiKTG .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uDMOHBiKTG .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uDMOHBiKTG .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uDMOHBiKTG .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uDMOHBiKTG .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uDMOHBiKTG .navbar.navbar-short {
  min-height: 60px;
}
.cid-uDMOHBiKTG .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uDMOHBiKTG .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uDMOHBiKTG .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-uDMOHBiKTG .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uDMOHBiKTG .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uDMOHBiKTG .dropdown-item.active,
.cid-uDMOHBiKTG .dropdown-item:active {
  background-color: transparent;
}
.cid-uDMOHBiKTG .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uDMOHBiKTG .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uDMOHBiKTG .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uDMOHBiKTG .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #091a81;
}
.cid-uDMOHBiKTG .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uDMOHBiKTG .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uDMOHBiKTG ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uDMOHBiKTG .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uDMOHBiKTG button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uDMOHBiKTG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uDMOHBiKTG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uDMOHBiKTG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uDMOHBiKTG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uDMOHBiKTG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uDMOHBiKTG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uDMOHBiKTG nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uDMOHBiKTG nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uDMOHBiKTG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uDMOHBiKTG .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uDMOHBiKTG a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uDMOHBiKTG .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-uDMOHBiKTG .navbar {
    height: 70px;
  }
  .cid-uDMOHBiKTG .navbar.opened {
    height: auto;
  }
  .cid-uDMOHBiKTG .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uDMOHC68Ux {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-31-1920x1280.jpg");
}
.cid-uDMOHC68Ux .icons-media-container {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-top: 4rem;
}
.cid-uDMOHC68Ux .icons-media-container .mbr-iconfont {
  font-size: 96px;
  color: #ffffff;
}
.cid-uDMOHC68Ux .icons-media-container .icon-block {
  padding-bottom: 1rem;
}
.cid-uDMOHC68Ux .mbr-text {
  color: #ffffff;
}
.cid-uDMOHC68Ux .card {
  padding-bottom: 1.5rem;
}
.cid-uDMOHC68Ux .card-wrapper {
  min-height: 220px;
  transition: all 0.3s;
  border-radius: 4px;
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uDMOHC68Ux .card-wrapper .mbr-iconfont {
  display: block;
  font-size: 4rem;
  color: #ffffff;
  margin-bottom: 2rem;
}
.cid-uDMOHC68Ux .card-wrapper .card-title {
  color: #ffffff;
}
.cid-uDMOHC68Ux H1 {
  text-align: left;
}
.cid-uDMOHC68Ux .mbr-text,
.cid-uDMOHC68Ux .mbr-section-btn {
  text-align: left;
  color: #e43f3f;
}
.cid-uDMOHC68Ux .card-wrapper .card-title,
.cid-uDMOHC68Ux .card-box {
  color: #ffb5b5;
  text-align: left;
}
#custom-html-8g div {
  height: 20px;
}
.cid-uDMOHDs8tE {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uDMOHDs8tE .mbr-section-title {
  color: #091a81;
}
.cid-uDMOHDs8tE .mbr-section-subtitle {
  color: #091a81;
}
.cid-uDMOHEgrpp {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uDMOHEgrpp img,
.cid-uDMOHEgrpp .item-img {
  width: 100%;
}
.cid-uDMOHEgrpp .item:focus,
.cid-uDMOHEgrpp span:focus {
  outline: none;
}
.cid-uDMOHEgrpp .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uDMOHEgrpp .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uDMOHEgrpp .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uDMOHEgrpp .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uDMOHEgrpp .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uDMOHEgrpp .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uDMOHEgrpp .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uDMOHEgrpp .mbr-section-title {
  color: #232323;
}
.cid-uDMOHEgrpp .mbr-text,
.cid-uDMOHEgrpp .mbr-section-btn {
  text-align: left;
}
.cid-uDMOHEgrpp .item-title {
  text-align: left;
  color: #091a81;
}
.cid-uDMOHEgrpp .item-subtitle {
  text-align: left;
}
#custom-html-8j div {
  height: 20px;
}
.cid-uDMOHFwz2M {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #091a81;
}
.cid-uDMOHFwz2M .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uDMOHFwz2M .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uDMOHFwz2M .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uDMOHFwz2M .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uDMOHFwz2M div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uDMOHFwz2M .copyright {
  color: #ffffff;
}
.cid-uGW9IPeiCh {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uGW9IPeiCh nav.navbar {
  position: fixed;
}
.cid-uGW9IPeiCh .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-uGW9IPeiCh .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uGW9IPeiCh .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uGW9IPeiCh .dropdown-item:hover,
.cid-uGW9IPeiCh .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-uGW9IPeiCh .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uGW9IPeiCh .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uGW9IPeiCh .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uGW9IPeiCh .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uGW9IPeiCh .nav-link {
  position: relative;
}
.cid-uGW9IPeiCh .container {
  display: flex;
  margin: auto;
}
.cid-uGW9IPeiCh .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uGW9IPeiCh .dropdown-menu,
.cid-uGW9IPeiCh .navbar.opened {
  background: #091a81 !important;
}
.cid-uGW9IPeiCh .nav-item:focus,
.cid-uGW9IPeiCh .nav-link:focus {
  outline: none;
}
.cid-uGW9IPeiCh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uGW9IPeiCh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uGW9IPeiCh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uGW9IPeiCh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uGW9IPeiCh .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uGW9IPeiCh .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uGW9IPeiCh .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: #091a81;
}
.cid-uGW9IPeiCh .navbar.opened {
  transition: all 0.3s;
}
.cid-uGW9IPeiCh .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uGW9IPeiCh .navbar .navbar-logo img {
  width: auto;
}
.cid-uGW9IPeiCh .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uGW9IPeiCh .navbar.collapsed {
  justify-content: center;
}
.cid-uGW9IPeiCh .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uGW9IPeiCh .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uGW9IPeiCh .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-uGW9IPeiCh .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uGW9IPeiCh .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uGW9IPeiCh .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-uGW9IPeiCh .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uGW9IPeiCh .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uGW9IPeiCh .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uGW9IPeiCh .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uGW9IPeiCh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uGW9IPeiCh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uGW9IPeiCh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uGW9IPeiCh .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-uGW9IPeiCh .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uGW9IPeiCh .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uGW9IPeiCh .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uGW9IPeiCh .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uGW9IPeiCh .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uGW9IPeiCh .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uGW9IPeiCh .navbar.navbar-short {
  min-height: 60px;
}
.cid-uGW9IPeiCh .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uGW9IPeiCh .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uGW9IPeiCh .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-uGW9IPeiCh .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uGW9IPeiCh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uGW9IPeiCh .dropdown-item.active,
.cid-uGW9IPeiCh .dropdown-item:active {
  background-color: transparent;
}
.cid-uGW9IPeiCh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uGW9IPeiCh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uGW9IPeiCh .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uGW9IPeiCh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #091a81;
}
.cid-uGW9IPeiCh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uGW9IPeiCh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uGW9IPeiCh ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uGW9IPeiCh .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uGW9IPeiCh button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uGW9IPeiCh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uGW9IPeiCh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uGW9IPeiCh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGW9IPeiCh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGW9IPeiCh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uGW9IPeiCh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGW9IPeiCh nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uGW9IPeiCh nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uGW9IPeiCh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGW9IPeiCh .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uGW9IPeiCh a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uGW9IPeiCh .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-uGW9IPeiCh .navbar {
    height: 70px;
  }
  .cid-uGW9IPeiCh .navbar.opened {
    height: auto;
  }
  .cid-uGW9IPeiCh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uGW9IPXlz9 {
  background-image: url("https://www.foodplatform.net/assets/images/mbr-22-1920x1280.jpg");
}
#custom-html-8w div {
  height: 20px;
}
.cid-uGW9IR1eoT {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/mbr-1920x1250.jpg");
}
.cid-uGW9IR1eoT .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
#custom-html-8z .mbr-section-subtitle {
  color: #767676;
}
.cid-uGW9ITl9q5 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #091a81;
}
.cid-uGW9ITl9q5 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uGW9ITl9q5 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uGW9ITl9q5 .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uGW9ITl9q5 .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uGW9ITl9q5 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uGW9ITl9q5 .copyright {
  color: #ffffff;
}
.cid-uGYR1aE8do {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uGYR1aE8do nav.navbar {
  position: fixed;
}
.cid-uGYR1aE8do .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-uGYR1aE8do .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uGYR1aE8do .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uGYR1aE8do .dropdown-item:hover,
.cid-uGYR1aE8do .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-uGYR1aE8do .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uGYR1aE8do .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uGYR1aE8do .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uGYR1aE8do .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uGYR1aE8do .nav-link {
  position: relative;
}
.cid-uGYR1aE8do .container {
  display: flex;
  margin: auto;
}
.cid-uGYR1aE8do .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uGYR1aE8do .dropdown-menu,
.cid-uGYR1aE8do .navbar.opened {
  background: #091a81 !important;
}
.cid-uGYR1aE8do .nav-item:focus,
.cid-uGYR1aE8do .nav-link:focus {
  outline: none;
}
.cid-uGYR1aE8do .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uGYR1aE8do .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uGYR1aE8do .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uGYR1aE8do .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uGYR1aE8do .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uGYR1aE8do .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uGYR1aE8do .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: #091a81;
}
.cid-uGYR1aE8do .navbar.opened {
  transition: all 0.3s;
}
.cid-uGYR1aE8do .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uGYR1aE8do .navbar .navbar-logo img {
  width: auto;
}
.cid-uGYR1aE8do .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uGYR1aE8do .navbar.collapsed {
  justify-content: center;
}
.cid-uGYR1aE8do .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uGYR1aE8do .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uGYR1aE8do .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-uGYR1aE8do .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uGYR1aE8do .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uGYR1aE8do .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-uGYR1aE8do .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uGYR1aE8do .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uGYR1aE8do .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uGYR1aE8do .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uGYR1aE8do .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uGYR1aE8do .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uGYR1aE8do .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uGYR1aE8do .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-uGYR1aE8do .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uGYR1aE8do .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uGYR1aE8do .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uGYR1aE8do .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uGYR1aE8do .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uGYR1aE8do .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uGYR1aE8do .navbar.navbar-short {
  min-height: 60px;
}
.cid-uGYR1aE8do .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uGYR1aE8do .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uGYR1aE8do .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-uGYR1aE8do .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uGYR1aE8do .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uGYR1aE8do .dropdown-item.active,
.cid-uGYR1aE8do .dropdown-item:active {
  background-color: transparent;
}
.cid-uGYR1aE8do .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uGYR1aE8do .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uGYR1aE8do .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uGYR1aE8do .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #091a81;
}
.cid-uGYR1aE8do .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uGYR1aE8do .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uGYR1aE8do ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uGYR1aE8do .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uGYR1aE8do button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uGYR1aE8do button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uGYR1aE8do button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uGYR1aE8do button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGYR1aE8do button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGYR1aE8do button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uGYR1aE8do nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGYR1aE8do nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uGYR1aE8do nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uGYR1aE8do nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGYR1aE8do .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uGYR1aE8do a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uGYR1aE8do .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-uGYR1aE8do .navbar {
    height: 70px;
  }
  .cid-uGYR1aE8do .navbar.opened {
    height: auto;
  }
  .cid-uGYR1aE8do .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uGYRnu2Xpc {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/mbr-32-1920x1280.jpg");
}
.cid-uGYRnu2Xpc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGYRnu2Xpc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGYRnu2Xpc .video-wrapper iframe {
  width: 100%;
}
.cid-uGYRnu2Xpc .mbr-section-title,
.cid-uGYRnu2Xpc .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uGYRnu2Xpc .text-wrapper {
    padding: 2rem;
  }
}
#custom-html-9c {
  
  
}
#custom-html-9c SPAN {
  font-size: 48px;
  font-family: 'Titillium Web', sans-serif;
}
#custom-html-9c .btn {
  font-size: 30px;
  font-family: 'Raleway', sans-serif;
}
#custom-html-9c H2 {
  color: #28324e;
}
#custom-html-9c .btn-primary {
  color: #fff;
  background-color: #8BBE3C;
  border-color: #008000;
}
#custom-html-9c .col-adj-20 {
  width: 20%;
}
#custom-html-9c .donate-modal .modal-content {
  border-radius: 0;
  background-clip: border-box;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: none;
  height: auto;
  padding: 40px 0;
  text-align: center;
}
#custom-html-9c .donate-modal .modal-content h2 {
  margin-bottom: 15px;
  font-size: 1em;
}
#custom-html-9c .donate-modal .modal-content p {
  margin-bottom: 30px;
}
#custom-html-9c .donate-modal .modal-content p.item-intro {
  margin: 20px 0 30px;
  font-family: "Droid Serif", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: italic;
  font-size: 16px;
}
#custom-html-9c .donate-modal .modal-content ul.list-inline {
  margin-bottom: 30px;
  margin-top: 0;
}
#custom-html-9c .donate-modal .modal-content img {
  margin-bottom: 30px;
}
#custom-html-9c .donate-modal .close-modal {
  position: absolute;
  width: 75px;
  height: 75px;
  background-color: transparent;
  top: 25px;
  right: 25px;
  cursor: pointer;
}
#custom-html-9c .donate-modal .close-modal:hover {
  opacity: 0.3;
}
#custom-html-9c .donate-modal .close-modal .lr {
  height: 75px;
  width: 1px;
  margin-left: 35px;
  background-color: #222222;
  transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  /* IE 9 */
  -webkit-transform: rotate(45deg);
  /* Safari and Chrome */
  z-index: 1051;
}
#custom-html-9c .donate-modal .close-modal .lr .rl {
  height: 75px;
  width: 1px;
  background-color: #222222;
  transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  /* IE 9 */
  -webkit-transform: rotate(90deg);
  /* Safari and Chrome */
  z-index: 1052;
}
#custom-html-9c .donate-modal .modal-backdrop {
  opacity: 0;
  display: none;
  width: 80%;
}
#custom-html-9c .popupwind {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
#custom-html-9c .popupcontainer {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}
#custom-html-9c .pplogo {
  width: 100%;
  text-align: center;
}
#custom-html-9c .pptext {
  max-width: 350px;
  margin-left: auto;
  margin-right: auto;
}
#custom-html-99 .mbr-section-subtitle {
  color: #767676;
}
.cid-uGYR1czWrS {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #091a81;
}
.cid-uGYR1czWrS .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uGYR1czWrS .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uGYR1czWrS .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uGYR1czWrS .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uGYR1czWrS div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uGYR1czWrS .copyright {
  color: #ffffff;
}
.cid-tqsSDwfoMR {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tqsSDwfoMR nav.navbar {
  position: fixed;
}
.cid-tqsSDwfoMR .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-tqsSDwfoMR .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tqsSDwfoMR .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tqsSDwfoMR .dropdown-item:hover,
.cid-tqsSDwfoMR .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tqsSDwfoMR .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tqsSDwfoMR .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tqsSDwfoMR .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tqsSDwfoMR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tqsSDwfoMR .nav-link {
  position: relative;
}
.cid-tqsSDwfoMR .container {
  display: flex;
  margin: auto;
}
.cid-tqsSDwfoMR .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tqsSDwfoMR .dropdown-menu,
.cid-tqsSDwfoMR .navbar.opened {
  background: #091a81 !important;
}
.cid-tqsSDwfoMR .nav-item:focus,
.cid-tqsSDwfoMR .nav-link:focus {
  outline: none;
}
.cid-tqsSDwfoMR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tqsSDwfoMR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tqsSDwfoMR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tqsSDwfoMR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tqsSDwfoMR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tqsSDwfoMR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tqsSDwfoMR .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: #091a81;
}
.cid-tqsSDwfoMR .navbar.opened {
  transition: all 0.3s;
}
.cid-tqsSDwfoMR .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tqsSDwfoMR .navbar .navbar-logo img {
  width: auto;
}
.cid-tqsSDwfoMR .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tqsSDwfoMR .navbar.collapsed {
  justify-content: center;
}
.cid-tqsSDwfoMR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tqsSDwfoMR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tqsSDwfoMR .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-tqsSDwfoMR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tqsSDwfoMR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tqsSDwfoMR .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-tqsSDwfoMR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tqsSDwfoMR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tqsSDwfoMR .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tqsSDwfoMR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tqsSDwfoMR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tqsSDwfoMR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tqsSDwfoMR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tqsSDwfoMR .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-tqsSDwfoMR .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tqsSDwfoMR .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tqsSDwfoMR .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tqsSDwfoMR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tqsSDwfoMR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tqsSDwfoMR .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tqsSDwfoMR .navbar.navbar-short {
  min-height: 60px;
}
.cid-tqsSDwfoMR .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tqsSDwfoMR .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tqsSDwfoMR .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-tqsSDwfoMR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tqsSDwfoMR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tqsSDwfoMR .dropdown-item.active,
.cid-tqsSDwfoMR .dropdown-item:active {
  background-color: transparent;
}
.cid-tqsSDwfoMR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tqsSDwfoMR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tqsSDwfoMR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tqsSDwfoMR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #091a81;
}
.cid-tqsSDwfoMR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tqsSDwfoMR .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tqsSDwfoMR ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tqsSDwfoMR .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tqsSDwfoMR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tqsSDwfoMR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tqsSDwfoMR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tqsSDwfoMR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tqsSDwfoMR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tqsSDwfoMR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tqsSDwfoMR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqsSDwfoMR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tqsSDwfoMR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tqsSDwfoMR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqsSDwfoMR .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tqsSDwfoMR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tqsSDwfoMR .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-tqsSDwfoMR .navbar {
    height: 70px;
  }
  .cid-tqsSDwfoMR .navbar.opened {
    height: auto;
  }
  .cid-tqsSDwfoMR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uI1NQ2tu18 {
  padding-top: 8rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/mbr-37-1920x1280.jpg");
}
.cid-uI1NQ2tu18 .mbr-section-title {
  color: #091a81;
}
.cid-uI1NQ2tu18 .mbr-section-subtitle {
  color: #091a81;
}
.cid-tqtDVVXgeo {
  padding-top: 1rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-tqtDVVXgeo .line {
  background-color: #091a81;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tqtDVVXgeo .mbr-text {
  text-align: left;
}
.cid-tqsUIRzFhH {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #091a81;
}
.cid-tqsUIRzFhH .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tqsUIRzFhH .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tqsUIRzFhH .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tqsUIRzFhH .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tqsUIRzFhH div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tqsUIRzFhH .copyright {
  color: #ffffff;
}
.cid-uI3tRzhMmn {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uI3tRzhMmn nav.navbar {
  position: fixed;
}
.cid-uI3tRzhMmn .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-uI3tRzhMmn .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uI3tRzhMmn .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uI3tRzhMmn .dropdown-item:hover,
.cid-uI3tRzhMmn .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-uI3tRzhMmn .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uI3tRzhMmn .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uI3tRzhMmn .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uI3tRzhMmn .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uI3tRzhMmn .nav-link {
  position: relative;
}
.cid-uI3tRzhMmn .container {
  display: flex;
  margin: auto;
}
.cid-uI3tRzhMmn .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uI3tRzhMmn .dropdown-menu,
.cid-uI3tRzhMmn .navbar.opened {
  background: #091a81 !important;
}
.cid-uI3tRzhMmn .nav-item:focus,
.cid-uI3tRzhMmn .nav-link:focus {
  outline: none;
}
.cid-uI3tRzhMmn .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uI3tRzhMmn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uI3tRzhMmn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uI3tRzhMmn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uI3tRzhMmn .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uI3tRzhMmn .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uI3tRzhMmn .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: #091a81;
}
.cid-uI3tRzhMmn .navbar.opened {
  transition: all 0.3s;
}
.cid-uI3tRzhMmn .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uI3tRzhMmn .navbar .navbar-logo img {
  width: auto;
}
.cid-uI3tRzhMmn .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uI3tRzhMmn .navbar.collapsed {
  justify-content: center;
}
.cid-uI3tRzhMmn .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uI3tRzhMmn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uI3tRzhMmn .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-uI3tRzhMmn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uI3tRzhMmn .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uI3tRzhMmn .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-uI3tRzhMmn .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uI3tRzhMmn .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uI3tRzhMmn .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uI3tRzhMmn .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uI3tRzhMmn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uI3tRzhMmn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uI3tRzhMmn .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uI3tRzhMmn .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-uI3tRzhMmn .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uI3tRzhMmn .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uI3tRzhMmn .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uI3tRzhMmn .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uI3tRzhMmn .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uI3tRzhMmn .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uI3tRzhMmn .navbar.navbar-short {
  min-height: 60px;
}
.cid-uI3tRzhMmn .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uI3tRzhMmn .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uI3tRzhMmn .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-uI3tRzhMmn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uI3tRzhMmn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uI3tRzhMmn .dropdown-item.active,
.cid-uI3tRzhMmn .dropdown-item:active {
  background-color: transparent;
}
.cid-uI3tRzhMmn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uI3tRzhMmn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uI3tRzhMmn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uI3tRzhMmn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #091a81;
}
.cid-uI3tRzhMmn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uI3tRzhMmn .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uI3tRzhMmn ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uI3tRzhMmn .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uI3tRzhMmn button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uI3tRzhMmn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uI3tRzhMmn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uI3tRzhMmn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uI3tRzhMmn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uI3tRzhMmn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uI3tRzhMmn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uI3tRzhMmn nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uI3tRzhMmn nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uI3tRzhMmn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uI3tRzhMmn .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uI3tRzhMmn a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uI3tRzhMmn .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-uI3tRzhMmn .navbar {
    height: 70px;
  }
  .cid-uI3tRzhMmn .navbar.opened {
    height: auto;
  }
  .cid-uI3tRzhMmn .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uI3tRAoHNw {
  padding-top: 8rem;
  padding-bottom: 1rem;
  background-color: #82786e;
}
.cid-uI3tRAoHNw .mbr-section-title {
  color: #091a81;
}
.cid-uI3tRAoHNw .mbr-section-subtitle {
  color: #091a81;
}
.cid-uI3vw0212I {
  background-image: url("../../../assets/images/joinus.png-1160x770.png");
}
.cid-uI3vw0212I .mbr-fallback-image.disabled {
  display: none;
}
.cid-uI3vw0212I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
#custom-html-ac div {
  height: 20px;
}
.cid-uI3tRBrlc6 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #091a81;
}
.cid-uI3tRBrlc6 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uI3tRBrlc6 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uI3tRBrlc6 .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uI3tRBrlc6 .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uI3tRBrlc6 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uI3tRBrlc6 .copyright {
  color: #ffffff;
}
.cid-uI2Opduwgb {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uI2Opduwgb nav.navbar {
  position: fixed;
}
.cid-uI2Opduwgb .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-uI2Opduwgb .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uI2Opduwgb .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uI2Opduwgb .dropdown-item:hover,
.cid-uI2Opduwgb .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-uI2Opduwgb .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uI2Opduwgb .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uI2Opduwgb .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uI2Opduwgb .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uI2Opduwgb .nav-link {
  position: relative;
}
.cid-uI2Opduwgb .container {
  display: flex;
  margin: auto;
}
.cid-uI2Opduwgb .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uI2Opduwgb .dropdown-menu,
.cid-uI2Opduwgb .navbar.opened {
  background: #091a81 !important;
}
.cid-uI2Opduwgb .nav-item:focus,
.cid-uI2Opduwgb .nav-link:focus {
  outline: none;
}
.cid-uI2Opduwgb .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uI2Opduwgb .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uI2Opduwgb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uI2Opduwgb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uI2Opduwgb .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uI2Opduwgb .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uI2Opduwgb .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: #091a81;
}
.cid-uI2Opduwgb .navbar.opened {
  transition: all 0.3s;
}
.cid-uI2Opduwgb .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uI2Opduwgb .navbar .navbar-logo img {
  width: auto;
}
.cid-uI2Opduwgb .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uI2Opduwgb .navbar.collapsed {
  justify-content: center;
}
.cid-uI2Opduwgb .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uI2Opduwgb .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uI2Opduwgb .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-uI2Opduwgb .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uI2Opduwgb .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uI2Opduwgb .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-uI2Opduwgb .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uI2Opduwgb .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uI2Opduwgb .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uI2Opduwgb .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uI2Opduwgb .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uI2Opduwgb .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uI2Opduwgb .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uI2Opduwgb .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-uI2Opduwgb .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uI2Opduwgb .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uI2Opduwgb .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uI2Opduwgb .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uI2Opduwgb .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uI2Opduwgb .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uI2Opduwgb .navbar.navbar-short {
  min-height: 60px;
}
.cid-uI2Opduwgb .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uI2Opduwgb .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uI2Opduwgb .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-uI2Opduwgb .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uI2Opduwgb .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uI2Opduwgb .dropdown-item.active,
.cid-uI2Opduwgb .dropdown-item:active {
  background-color: transparent;
}
.cid-uI2Opduwgb .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uI2Opduwgb .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uI2Opduwgb .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uI2Opduwgb .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #091a81;
}
.cid-uI2Opduwgb .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uI2Opduwgb .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uI2Opduwgb ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uI2Opduwgb .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uI2Opduwgb button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uI2Opduwgb button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uI2Opduwgb button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uI2Opduwgb button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uI2Opduwgb button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uI2Opduwgb button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uI2Opduwgb nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uI2Opduwgb nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uI2Opduwgb nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uI2Opduwgb nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uI2Opduwgb .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uI2Opduwgb a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uI2Opduwgb .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-uI2Opduwgb .navbar {
    height: 70px;
  }
  .cid-uI2Opduwgb .navbar.opened {
    height: auto;
  }
  .cid-uI2Opduwgb .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
#custom-html-a2 div {
  height: 20px;
}
.cid-uI2OpeI99f {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uI2OpeI99f .mbr-section-title {
  color: #091a81;
}
.cid-uI2OpeI99f .mbr-section-subtitle {
  color: #091a81;
}
.cid-uI2Opfb8qV {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uI2Opfb8qV img,
.cid-uI2Opfb8qV .item-img {
  width: 100%;
}
.cid-uI2Opfb8qV .item:focus,
.cid-uI2Opfb8qV span:focus {
  outline: none;
}
.cid-uI2Opfb8qV .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uI2Opfb8qV .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uI2Opfb8qV .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uI2Opfb8qV .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uI2Opfb8qV .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uI2Opfb8qV .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uI2Opfb8qV .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uI2Opfb8qV .mbr-section-title {
  color: #232323;
}
.cid-uI2Opfb8qV .mbr-text,
.cid-uI2Opfb8qV .mbr-section-btn {
  text-align: left;
}
.cid-uI2Opfb8qV .item-title {
  text-align: left;
  color: #091a81;
}
.cid-uI2Opfb8qV .item-subtitle {
  text-align: left;
}
#custom-html-a5 div {
  height: 20px;
}
.cid-uI2OpfN7r8 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #091a81;
}
.cid-uI2OpfN7r8 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uI2OpfN7r8 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uI2OpfN7r8 .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uI2OpfN7r8 .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uI2OpfN7r8 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uI2OpfN7r8 .copyright {
  color: #ffffff;
}
