.btn {
  border-width: 2px;
}
body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 8rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 10rem;
}
.display-2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.6rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 4.5rem;
}
.display-4 {
  font-family: 'PT Sans Narrow', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'PT Sans Narrow', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'PT Sans Narrow', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 6.4rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 5.6rem;
    font-size: calc( 3.45rem + (8 - 3.45) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (3.45rem + (8 - 3.45) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.88rem;
    font-size: calc( 1.91rem + (3.6 - 1.91) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.91rem + (3.6 - 1.91) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #ff0000 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ff0000 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #ff0000 !important;
  border-color: #ff0000 !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: #a80000 !important;
  border-color: #a80000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #a80000 !important;
  border-color: #a80000 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #5cdb95 !important;
  border-color: #5cdb95 !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: #29b869 !important;
  border-color: #29b869 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #29b869 !important;
  border-color: #29b869 !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ff0000 !important;
  border-color: #ff0000 !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: #a80000 !important;
  border-color: #a80000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #a80000 !important;
  border-color: #a80000 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #ff0000;
  color: #ff0000;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #a80000 !important;
  background-color: transparent!important;
  border-color: #a80000 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff0000 !important;
  border-color: #ff0000 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #5cdb95;
  color: #5cdb95;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #29b869 !important;
  background-color: transparent!important;
  border-color: #29b869 !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #5cdb95 !important;
  border-color: #5cdb95 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #47b5ed;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: #148cca !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #40b0bf;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: #2a747e !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #ff0000;
  color: #ff0000;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #a80000 !important;
  background-color: transparent!important;
  border-color: #a80000 !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #ff0000 !important;
  border-color: #ff0000 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #ff9966;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: #ff5f0f !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: #cfcfcf !important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #ff0000 !important;
}
.text-secondary {
  color: #5cdb95 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ff0000 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #990000 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #26ab62 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #990000 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #ff0000;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ff0000;
}
.alert-danger {
  background-color: #ff9966;
}
.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: #ff0000;
  border-color: #ff0000;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #ff0000;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffcccc;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffcccc;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'PT Sans Narrow', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.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: #ff0000 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'PT Sans Narrow', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #ff0000;
}
/* 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: #ff0000;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #ff0000;
}
.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: #ff0000;
  border-bottom-color: #ff0000;
}
.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: #ff0000 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #5cdb95 !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='%23ff0000' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-sFAA5oUu2Y {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sFAA5oUu2Y nav.navbar {
  position: fixed;
}
.cid-sFAA5oUu2Y .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sFAA5oUu2Y .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sFAA5oUu2Y .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sFAA5oUu2Y .dropdown-item:hover,
.cid-sFAA5oUu2Y .dropdown-item:focus {
  background: #ff0000 !important;
  color: white !important;
}
.cid-sFAA5oUu2Y .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sFAA5oUu2Y .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sFAA5oUu2Y .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sFAA5oUu2Y .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sFAA5oUu2Y .nav-link {
  position: relative;
}
.cid-sFAA5oUu2Y .container {
  display: flex;
  margin: auto;
}
.cid-sFAA5oUu2Y .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sFAA5oUu2Y .dropdown-menu,
.cid-sFAA5oUu2Y .navbar.opened {
  background: #113371 !important;
}
.cid-sFAA5oUu2Y .nav-item:focus,
.cid-sFAA5oUu2Y .nav-link:focus {
  outline: none;
}
.cid-sFAA5oUu2Y .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sFAA5oUu2Y .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sFAA5oUu2Y .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sFAA5oUu2Y .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sFAA5oUu2Y .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sFAA5oUu2Y .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sFAA5oUu2Y .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #113371;
}
.cid-sFAA5oUu2Y .navbar.opened {
  transition: all 0.3s;
}
.cid-sFAA5oUu2Y .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sFAA5oUu2Y .navbar .navbar-logo img {
  width: auto;
}
.cid-sFAA5oUu2Y .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sFAA5oUu2Y .navbar.collapsed {
  justify-content: center;
}
.cid-sFAA5oUu2Y .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sFAA5oUu2Y .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sFAA5oUu2Y .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.4rem);
  }
}
.cid-sFAA5oUu2Y .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sFAA5oUu2Y .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sFAA5oUu2Y .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sFAA5oUu2Y .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sFAA5oUu2Y .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sFAA5oUu2Y .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sFAA5oUu2Y .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sFAA5oUu2Y .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sFAA5oUu2Y .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sFAA5oUu2Y .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sFAA5oUu2Y .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sFAA5oUu2Y .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sFAA5oUu2Y .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sFAA5oUu2Y .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sFAA5oUu2Y .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sFAA5oUu2Y .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sFAA5oUu2Y .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sFAA5oUu2Y .navbar.navbar-short {
  min-height: 60px;
}
.cid-sFAA5oUu2Y .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sFAA5oUu2Y .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sFAA5oUu2Y .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sFAA5oUu2Y .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sFAA5oUu2Y .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sFAA5oUu2Y .dropdown-item.active,
.cid-sFAA5oUu2Y .dropdown-item:active {
  background-color: transparent;
}
.cid-sFAA5oUu2Y .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sFAA5oUu2Y .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sFAA5oUu2Y .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sFAA5oUu2Y .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #113371;
}
.cid-sFAA5oUu2Y .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sFAA5oUu2Y .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sFAA5oUu2Y ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sFAA5oUu2Y .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sFAA5oUu2Y button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sFAA5oUu2Y button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sFAA5oUu2Y button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sFAA5oUu2Y button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFAA5oUu2Y button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFAA5oUu2Y button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sFAA5oUu2Y nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFAA5oUu2Y nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sFAA5oUu2Y nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sFAA5oUu2Y nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFAA5oUu2Y .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sFAA5oUu2Y a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sFAA5oUu2Y .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sFAA5oUu2Y .navbar {
    height: 70px;
  }
  .cid-sFAA5oUu2Y .navbar.opened {
    height: auto;
  }
  .cid-sFAA5oUu2Y .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tWDoduTPPT {
  padding-top: 135px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/img-5912-2000x1123.jpg");
}
.cid-tWDoduTPPT H1 {
  color: #ffffff;
}
.cid-tWDoduTPPT .mbr-text,
.cid-tWDoduTPPT .mbr-section-btn {
  color: #ffffff;
}
.cid-uS2CPVAthc {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ff0000;
}
@media (max-width: 991px) {
  .cid-uS2CPVAthc .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uS2CPVAthc .row {
  flex-direction: row-reverse;
}
.cid-uS2CPVAthc img {
  width: 100%;
}
.cid-tvLGXLGoC7 {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tvLGXLGoC7 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tvLGXLGoC7 .row {
  flex-direction: row-reverse;
}
.cid-tvLGXLGoC7 img {
  width: 100%;
}
.cid-uS2BY8JKO3 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ff0000;
}
.cid-uS2BY8JKO3 img,
.cid-uS2BY8JKO3 .item-img {
  width: 100%;
}
.cid-uS2BY8JKO3 .item:focus,
.cid-uS2BY8JKO3 span:focus {
  outline: none;
}
.cid-uS2BY8JKO3 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uS2BY8JKO3 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uS2BY8JKO3 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uS2BY8JKO3 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uS2BY8JKO3 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uS2BY8JKO3 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uS2BY8JKO3 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uS2BY8JKO3 .mbr-section-title {
  color: #232323;
}
.cid-uS2BY8JKO3 .mbr-text,
.cid-uS2BY8JKO3 .mbr-section-btn {
  text-align: left;
}
.cid-uS2BY8JKO3 .item-title {
  text-align: center;
  color: #ff0000;
}
.cid-uS2BY8JKO3 .item-subtitle {
  text-align: center;
}
.cid-u1ZbmI1uT9 {
  padding-top: 1rem;
  padding-bottom: 4rem;
  background-color: #ff0000;
}
.cid-u1ZbmI1uT9 img,
.cid-u1ZbmI1uT9 .item-img {
  width: 100%;
}
.cid-u1ZbmI1uT9 .item:focus,
.cid-u1ZbmI1uT9 span:focus {
  outline: none;
}
.cid-u1ZbmI1uT9 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u1ZbmI1uT9 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u1ZbmI1uT9 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-u1ZbmI1uT9 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u1ZbmI1uT9 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-u1ZbmI1uT9 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-u1ZbmI1uT9 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u1ZbmI1uT9 .mbr-section-title {
  color: #232323;
}
.cid-u1ZbmI1uT9 .mbr-text,
.cid-u1ZbmI1uT9 .mbr-section-btn {
  text-align: left;
}
.cid-u1ZbmI1uT9 .item-title {
  text-align: center;
  color: #ff0000;
}
.cid-u1ZbmI1uT9 .item-subtitle {
  text-align: center;
}
.cid-tWDlrmXjef {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/img-5912-2000x1123.jpg");
}
.cid-tWDlrmXjef .mbr-overlay {
  background: #ff0000;
  opacity: 0.8;
}
.cid-tWDlrmXjef .item:focus,
.cid-tWDlrmXjef span:focus {
  outline: none;
}
.cid-tWDlrmXjef .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tWDlrmXjef .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tWDlrmXjef .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tWDlrmXjef .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tWDlrmXjef .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tWDlrmXjef .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tWDlrmXjef .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tWDlrmXjef .mbr-section-title {
  color: #ffffff;
}
.cid-tWDlrmXjef .mbr-text,
.cid-tWDlrmXjef .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-tWDlrmXjef .item-title {
  text-align: center;
  color: #000000;
}
.cid-tWDlrmXjef .item-subtitle {
  text-align: left;
  color: #232323;
}
.cid-tWIFRDzUBO {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/ideja-800x511.jpg");
}
.cid-tWIFRDzUBO .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tWIFRDzUBO .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-tWIFRDzUBO .mbr-section-subtitle DIV {
  text-align: center;
}
.cid-tWIGC7A8kL {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/trunic-1-800x511.jpg");
}
.cid-tWIGC7A8kL .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tWIGC7A8kL .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-tWIGC7A8kL .mbr-section-subtitle DIV {
  text-align: center;
}
.cid-tWIHoyWKXb {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/tolerancija-1-800x511.jpg");
}
.cid-tWIHoyWKXb .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tWIHoyWKXb .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-tWIHoyWKXb .mbr-section-subtitle DIV {
  text-align: center;
}
.cid-tWIHEfkzMI {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/rik-mahorn-800x559.jpg");
}
.cid-tWIHEfkzMI .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tWIHEfkzMI .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-tWIHEfkzMI .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-tWE6vivGXl {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/hotel-1-2000x1124.jpg");
}
.cid-tWE6vivGXl .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWE6vivGXl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWE6vivGXl .google-map {
  height: 30rem;
  position: relative;
}
.cid-tWE6vivGXl .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tWE6vivGXl .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tWE6vivGXl .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tWE6vivGXl .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tWE6vivGXl .mbr-section-title {
  color: #ffffff;
}
.cid-tWEbJCR8LN {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ff0000;
}
.cid-tWEbJCR8LN .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWEbJCR8LN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWEbJCR8LN .card-box {
  z-index: 10;
  position: relative;
}
@media (min-width: 1500px) {
  .cid-tWEbJCR8LN .container {
    max-width: 1400px;
  }
}
.cid-tWEbJCR8LN .card {
  margin: auto;
}
.cid-tWEbJCR8LN .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #ffffff;
  margin-bottom: 2rem;
}
.cid-tWEbJCR8LN .card-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tWEbJCR8LN .row {
  justify-content: center;
}
.cid-tWEbJCR8LN .card-title,
.cid-tWEbJCR8LN .card-box {
  color: #ffffff;
}
.cid-tWEbJCR8LN H3 {
  color: #ffffff;
}
.cid-tWBS1XyA1R {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWBS1XyA1R .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tWBS1XyA1R .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-tWBS1XyA1R .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-tWzNKDk5WQ {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tWzNKDk5WQ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tWzNKDk5WQ .row {
  flex-direction: row-reverse;
}
.cid-tWzNKDk5WQ img {
  width: 100%;
}
.cid-sFAOjz8nX7 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #113371;
}
.cid-sFAOjz8nX7 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sFAOjz8nX7 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sFAOjz8nX7 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sFAOjz8nX7 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sFAOjz8nX7 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sFAOjz8nX7 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sFAOjz8nX7 .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sFAOjz8nX7 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sFAOjz8nX7 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sFAOjz8nX7 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sFAOjz8nX7 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sFAOjz8nX7 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sFAOjz8nX7 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sFAOjz8nX7 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tvLW2kTb4A {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tvLW2kTb4A nav.navbar {
  position: fixed;
}
.cid-tvLW2kTb4A .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-tvLW2kTb4A .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tvLW2kTb4A .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tvLW2kTb4A .dropdown-item:hover,
.cid-tvLW2kTb4A .dropdown-item:focus {
  background: #ff0000 !important;
  color: white !important;
}
.cid-tvLW2kTb4A .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tvLW2kTb4A .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tvLW2kTb4A .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tvLW2kTb4A .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tvLW2kTb4A .nav-link {
  position: relative;
}
.cid-tvLW2kTb4A .container {
  display: flex;
  margin: auto;
}
.cid-tvLW2kTb4A .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tvLW2kTb4A .dropdown-menu,
.cid-tvLW2kTb4A .navbar.opened {
  background: #113371 !important;
}
.cid-tvLW2kTb4A .nav-item:focus,
.cid-tvLW2kTb4A .nav-link:focus {
  outline: none;
}
.cid-tvLW2kTb4A .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tvLW2kTb4A .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tvLW2kTb4A .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tvLW2kTb4A .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tvLW2kTb4A .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tvLW2kTb4A .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tvLW2kTb4A .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: #113371;
}
.cid-tvLW2kTb4A .navbar.opened {
  transition: all 0.3s;
}
.cid-tvLW2kTb4A .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tvLW2kTb4A .navbar .navbar-logo img {
  width: auto;
}
.cid-tvLW2kTb4A .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tvLW2kTb4A .navbar.collapsed {
  justify-content: center;
}
.cid-tvLW2kTb4A .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tvLW2kTb4A .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tvLW2kTb4A .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.4rem);
  }
}
.cid-tvLW2kTb4A .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tvLW2kTb4A .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tvLW2kTb4A .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-tvLW2kTb4A .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tvLW2kTb4A .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tvLW2kTb4A .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tvLW2kTb4A .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tvLW2kTb4A .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tvLW2kTb4A .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tvLW2kTb4A .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tvLW2kTb4A .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-tvLW2kTb4A .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tvLW2kTb4A .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tvLW2kTb4A .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tvLW2kTb4A .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tvLW2kTb4A .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tvLW2kTb4A .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tvLW2kTb4A .navbar.navbar-short {
  min-height: 60px;
}
.cid-tvLW2kTb4A .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tvLW2kTb4A .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tvLW2kTb4A .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-tvLW2kTb4A .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tvLW2kTb4A .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tvLW2kTb4A .dropdown-item.active,
.cid-tvLW2kTb4A .dropdown-item:active {
  background-color: transparent;
}
.cid-tvLW2kTb4A .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tvLW2kTb4A .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tvLW2kTb4A .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tvLW2kTb4A .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #113371;
}
.cid-tvLW2kTb4A .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tvLW2kTb4A .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tvLW2kTb4A ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tvLW2kTb4A .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tvLW2kTb4A button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tvLW2kTb4A button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tvLW2kTb4A button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tvLW2kTb4A button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvLW2kTb4A button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvLW2kTb4A button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tvLW2kTb4A nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvLW2kTb4A nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tvLW2kTb4A nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tvLW2kTb4A nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvLW2kTb4A .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tvLW2kTb4A a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tvLW2kTb4A .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-tvLW2kTb4A .navbar {
    height: 70px;
  }
  .cid-tvLW2kTb4A .navbar.opened {
    height: auto;
  }
  .cid-tvLW2kTb4A .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tWz5fdX8Io {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tWz5fdX8Io .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tWz5fdX8Io .row {
  flex-direction: row-reverse;
}
.cid-tWz5fdX8Io img {
  width: 100%;
}
.cid-tWzcEQdm4e {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #fafafa;
}
.cid-tWzcEQdm4e .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWzcEQdm4e .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWzcEQdm4e .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-tWzcEQdm4e .team-card:hover {
  transform: translateY(-10px);
}
.cid-tWzcEQdm4e .card-wrap {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-tWzcEQdm4e .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-tWzcEQdm4e .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-tWzcEQdm4e .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tWzcEQdm4e .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-tWzcEQdm4e .social-row {
  text-align: center;
}
.cid-tWzcEQdm4e .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-tWzcEQdm4e .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-tWzcEQdm4e .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-tWzcEQdm4e .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-tvLW2nt68w {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tvLW2nt68w .mbr-section-title {
  color: #05386b;
}
.cid-tvLW2nt68w .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-tvLW2nt68w .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-tWz7nlhAs8 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWz7nlhAs8 .mbr-section-title {
  color: #e43f3f;
  text-align: left;
}
.cid-tWz7nlhAs8 .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-tWz7nlhAs8 .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-tWzaInHp97 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWzaInHp97 .mbr-section-title {
  color: #e43f3f;
  text-align: left;
}
.cid-tWzaInHp97 .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-tWzaInHp97 .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-tWzawi9yiV {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tWzawi9yiV .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-tWzawi9yiV .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-tWzawi9yiV .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #e43f3f;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-tWzbxNw7tY {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWzbxNw7tY .mbr-section-title {
  color: #e43f3f;
  text-align: left;
}
.cid-tWzbxNw7tY .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-tWzbxNw7tY .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-tWzbsWEgU2 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tWzbsWEgU2 .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-tWzbsWEgU2 .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-tWzbsWEgU2 .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #e43f3f;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-tWzc9fAcP3 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWzc9fAcP3 .mbr-section-title {
  color: #e43f3f;
  text-align: left;
}
.cid-tWzc9fAcP3 .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-tWzc9fAcP3 .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-tWzcaMUF8m {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tWzcaMUF8m .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-tWzcaMUF8m .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-tWzcaMUF8m .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #e43f3f;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-tWzdujiso7 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWzdujiso7 .mbr-section-title {
  color: #e43f3f;
  text-align: left;
}
.cid-tWzdujiso7 .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-tWzdujiso7 .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-tWzduSkZpW {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tWzduSkZpW .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-tWzduSkZpW .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-tWzduSkZpW .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #e43f3f;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-tvLW2q5A4l {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #113371;
}
.cid-tvLW2q5A4l .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tvLW2q5A4l .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tvLW2q5A4l .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tvLW2q5A4l .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tvLW2q5A4l .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tvLW2q5A4l .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tvLW2q5A4l .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tvLW2q5A4l .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tvLW2q5A4l .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tvLW2q5A4l .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tvLW2q5A4l .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tvLW2q5A4l .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tvLW2q5A4l .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tvLW2q5A4l .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tWCXB5zPmf {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tWCXB5zPmf nav.navbar {
  position: fixed;
}
.cid-tWCXB5zPmf .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-tWCXB5zPmf .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tWCXB5zPmf .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tWCXB5zPmf .dropdown-item:hover,
.cid-tWCXB5zPmf .dropdown-item:focus {
  background: #ff0000 !important;
  color: white !important;
}
.cid-tWCXB5zPmf .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tWCXB5zPmf .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tWCXB5zPmf .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tWCXB5zPmf .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tWCXB5zPmf .nav-link {
  position: relative;
}
.cid-tWCXB5zPmf .container {
  display: flex;
  margin: auto;
}
.cid-tWCXB5zPmf .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tWCXB5zPmf .dropdown-menu,
.cid-tWCXB5zPmf .navbar.opened {
  background: #113371 !important;
}
.cid-tWCXB5zPmf .nav-item:focus,
.cid-tWCXB5zPmf .nav-link:focus {
  outline: none;
}
.cid-tWCXB5zPmf .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tWCXB5zPmf .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tWCXB5zPmf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tWCXB5zPmf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tWCXB5zPmf .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tWCXB5zPmf .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tWCXB5zPmf .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: #113371;
}
.cid-tWCXB5zPmf .navbar.opened {
  transition: all 0.3s;
}
.cid-tWCXB5zPmf .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tWCXB5zPmf .navbar .navbar-logo img {
  width: auto;
}
.cid-tWCXB5zPmf .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tWCXB5zPmf .navbar.collapsed {
  justify-content: center;
}
.cid-tWCXB5zPmf .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tWCXB5zPmf .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tWCXB5zPmf .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.4rem);
  }
}
.cid-tWCXB5zPmf .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tWCXB5zPmf .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tWCXB5zPmf .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-tWCXB5zPmf .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tWCXB5zPmf .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tWCXB5zPmf .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tWCXB5zPmf .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tWCXB5zPmf .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tWCXB5zPmf .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tWCXB5zPmf .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tWCXB5zPmf .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-tWCXB5zPmf .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tWCXB5zPmf .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tWCXB5zPmf .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tWCXB5zPmf .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tWCXB5zPmf .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tWCXB5zPmf .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tWCXB5zPmf .navbar.navbar-short {
  min-height: 60px;
}
.cid-tWCXB5zPmf .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tWCXB5zPmf .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tWCXB5zPmf .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-tWCXB5zPmf .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tWCXB5zPmf .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tWCXB5zPmf .dropdown-item.active,
.cid-tWCXB5zPmf .dropdown-item:active {
  background-color: transparent;
}
.cid-tWCXB5zPmf .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tWCXB5zPmf .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tWCXB5zPmf .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tWCXB5zPmf .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #113371;
}
.cid-tWCXB5zPmf .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tWCXB5zPmf .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tWCXB5zPmf ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tWCXB5zPmf .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tWCXB5zPmf button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tWCXB5zPmf button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tWCXB5zPmf button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tWCXB5zPmf button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWCXB5zPmf button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWCXB5zPmf button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tWCXB5zPmf nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWCXB5zPmf nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tWCXB5zPmf nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tWCXB5zPmf nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWCXB5zPmf .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tWCXB5zPmf a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tWCXB5zPmf .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-tWCXB5zPmf .navbar {
    height: 70px;
  }
  .cid-tWCXB5zPmf .navbar.opened {
    height: auto;
  }
  .cid-tWCXB5zPmf .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tWCXB8xm8B {
  padding-top: 7rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tWCXB8xm8B .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tWCXB8xm8B .row {
  flex-direction: row-reverse;
}
.cid-tWCXB8xm8B img {
  width: 100%;
}
.cid-tWK7kpAmoG {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWK7kpAmoG .mbr-section-title {
  color: #bbbbbb;
  text-align: center;
}
.cid-tWK7kpAmoG .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-tWK7kpAmoG .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-tWCXBesi9q {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tWCXBesi9q .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tWCXBesi9q .row {
  flex-direction: row-reverse;
}
.cid-tWCXBesi9q img {
  width: 100%;
}
.cid-tWCXBhtBSj {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tWCXBhtBSj .mbr-section-title {
  color: #ff0000;
  text-align: center;
}
.cid-tWCXBhtBSj .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-tWQALOZ0QA {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tWQALOZ0QA .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWQALOZ0QA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWQALOZ0QA .item {
  padding-bottom: 2rem;
}
.cid-tWQALOZ0QA .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tWQALOZ0QA .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tWQALOZ0QA .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tWQALOZ0QA .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tWQALOZ0QA .carousel-control,
.cid-tWQALOZ0QA .close {
  background: #1b1b1b;
}
.cid-tWQALOZ0QA .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tWQALOZ0QA .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tWQALOZ0QA .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tWQALOZ0QA .carousel-control-next span {
  margin-left: 5px;
}
.cid-tWQALOZ0QA .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tWQALOZ0QA .close::before {
  content: '\e91a';
}
.cid-tWQALOZ0QA .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tWQALOZ0QA .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tWQALOZ0QA .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tWQALOZ0QA .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tWQALOZ0QA .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tWQALOZ0QA .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tWQALOZ0QA .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tWQALOZ0QA .carousel-indicators li.active,
.cid-tWQALOZ0QA .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tWQALOZ0QA .carousel-indicators li::after,
.cid-tWQALOZ0QA .carousel-indicators li::before {
  content: none;
}
.cid-tWQALOZ0QA .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tWQALOZ0QA .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tWQALOZ0QA .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tWQALOZ0QA .carousel-indicators {
    display: none;
  }
}
.cid-tWQALOZ0QA .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tWQALOZ0QA .carousel-inner > .active {
  display: block;
}
.cid-tWQALOZ0QA .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tWQALOZ0QA .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tWQALOZ0QA .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tWQALOZ0QA .carousel-control,
  .cid-tWQALOZ0QA .carousel-indicators,
  .cid-tWQALOZ0QA .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tWQALOZ0QA .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tWQALOZ0QA .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tWQALOZ0QA .carousel-indicators .active,
.cid-tWQALOZ0QA .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tWQALOZ0QA .carousel-indicators .active {
  background: #fff;
}
.cid-tWQALOZ0QA .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tWQALOZ0QA .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tWQALOZ0QA .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tWQALOZ0QA .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tWQALOZ0QA .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tWQALOZ0QA .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tWQALOZ0QA .carousel {
  width: 100%;
}
.cid-tWQALOZ0QA .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tWQALOZ0QA .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tWQALOZ0QA .modal.fade .modal-dialog,
.cid-tWQALOZ0QA .modal.in .modal-dialog {
  transform: none;
}
.cid-tWQALOZ0QA .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tWQALOZ0QA H6 {
  text-align: center;
}
.cid-tWCXBwvUey {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #113371;
}
.cid-tWCXBwvUey .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tWCXBwvUey .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tWCXBwvUey .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tWCXBwvUey .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tWCXBwvUey .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tWCXBwvUey .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tWCXBwvUey .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tWCXBwvUey .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tWCXBwvUey .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tWCXBwvUey .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tWCXBwvUey .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tWCXBwvUey .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tWCXBwvUey .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tWCXBwvUey .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tWE87YcDMc {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tWE87YcDMc nav.navbar {
  position: fixed;
}
.cid-tWE87YcDMc .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-tWE87YcDMc .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tWE87YcDMc .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tWE87YcDMc .dropdown-item:hover,
.cid-tWE87YcDMc .dropdown-item:focus {
  background: #ff0000 !important;
  color: white !important;
}
.cid-tWE87YcDMc .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tWE87YcDMc .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tWE87YcDMc .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tWE87YcDMc .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tWE87YcDMc .nav-link {
  position: relative;
}
.cid-tWE87YcDMc .container {
  display: flex;
  margin: auto;
}
.cid-tWE87YcDMc .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tWE87YcDMc .dropdown-menu,
.cid-tWE87YcDMc .navbar.opened {
  background: #113371 !important;
}
.cid-tWE87YcDMc .nav-item:focus,
.cid-tWE87YcDMc .nav-link:focus {
  outline: none;
}
.cid-tWE87YcDMc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tWE87YcDMc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tWE87YcDMc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tWE87YcDMc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tWE87YcDMc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tWE87YcDMc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tWE87YcDMc .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: #113371;
}
.cid-tWE87YcDMc .navbar.opened {
  transition: all 0.3s;
}
.cid-tWE87YcDMc .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tWE87YcDMc .navbar .navbar-logo img {
  width: auto;
}
.cid-tWE87YcDMc .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tWE87YcDMc .navbar.collapsed {
  justify-content: center;
}
.cid-tWE87YcDMc .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tWE87YcDMc .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tWE87YcDMc .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.4rem);
  }
}
.cid-tWE87YcDMc .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tWE87YcDMc .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tWE87YcDMc .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-tWE87YcDMc .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tWE87YcDMc .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tWE87YcDMc .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tWE87YcDMc .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tWE87YcDMc .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tWE87YcDMc .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tWE87YcDMc .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tWE87YcDMc .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-tWE87YcDMc .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tWE87YcDMc .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tWE87YcDMc .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tWE87YcDMc .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tWE87YcDMc .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tWE87YcDMc .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tWE87YcDMc .navbar.navbar-short {
  min-height: 60px;
}
.cid-tWE87YcDMc .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tWE87YcDMc .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tWE87YcDMc .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-tWE87YcDMc .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tWE87YcDMc .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tWE87YcDMc .dropdown-item.active,
.cid-tWE87YcDMc .dropdown-item:active {
  background-color: transparent;
}
.cid-tWE87YcDMc .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tWE87YcDMc .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tWE87YcDMc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tWE87YcDMc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #113371;
}
.cid-tWE87YcDMc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tWE87YcDMc .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tWE87YcDMc ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tWE87YcDMc .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tWE87YcDMc button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tWE87YcDMc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tWE87YcDMc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tWE87YcDMc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWE87YcDMc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWE87YcDMc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tWE87YcDMc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWE87YcDMc nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tWE87YcDMc nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tWE87YcDMc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWE87YcDMc .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tWE87YcDMc a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tWE87YcDMc .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-tWE87YcDMc .navbar {
    height: 70px;
  }
  .cid-tWE87YcDMc .navbar.opened {
    height: auto;
  }
  .cid-tWE87YcDMc .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tWE87Zs8Be {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tWE87Zs8Be .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tWE87Zs8Be .row {
  flex-direction: row-reverse;
}
.cid-tWE87Zs8Be img {
  width: 100%;
}
.cid-tWE880Uw0I {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWE880Uw0I .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tWE880Uw0I .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-tWE880Uw0I .mbr-section-subtitle DIV {
  text-align: center;
}
.cid-tWE883gKOj {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tWE883gKOj .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWE883gKOj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWE883gKOj .video-wrapper iframe {
  width: 100%;
}
.cid-tWE883gKOj .mbr-section-title,
.cid-tWE883gKOj .mbr-section-subtitle,
.cid-tWE883gKOj .mbr-text {
  text-align: center;
}
.cid-tWE887Zsbo {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tWE887Zsbo .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWE887Zsbo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWE887Zsbo .video-wrapper iframe {
  width: 100%;
}
.cid-tWE887Zsbo .mbr-section-title,
.cid-tWE887Zsbo .mbr-section-subtitle,
.cid-tWE887Zsbo .mbr-text {
  text-align: center;
}
.cid-tWE988U3Tn {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tWE988U3Tn .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWE988U3Tn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWE988U3Tn .video-wrapper iframe {
  width: 100%;
}
.cid-tWE988U3Tn .mbr-section-title,
.cid-tWE988U3Tn .mbr-section-subtitle,
.cid-tWE988U3Tn .mbr-text {
  text-align: center;
}
.cid-tWE9j3k6sS {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tWE9j3k6sS .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWE9j3k6sS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWE9j3k6sS .video-wrapper iframe {
  width: 100%;
}
.cid-tWE9j3k6sS .mbr-section-title,
.cid-tWE9j3k6sS .mbr-section-subtitle,
.cid-tWE9j3k6sS .mbr-text {
  text-align: center;
}
.cid-tWE9ssWd2d {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tWE9ssWd2d .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWE9ssWd2d .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWE9ssWd2d .video-wrapper iframe {
  width: 100%;
}
.cid-tWE9ssWd2d .mbr-section-title,
.cid-tWE9ssWd2d .mbr-section-subtitle,
.cid-tWE9ssWd2d .mbr-text {
  text-align: center;
}
.cid-tWEab6D2FR {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tWEab6D2FR .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWEab6D2FR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWEab6D2FR .video-wrapper iframe {
  width: 100%;
}
.cid-tWEab6D2FR .mbr-section-title,
.cid-tWEab6D2FR .mbr-section-subtitle,
.cid-tWEab6D2FR .mbr-text {
  text-align: center;
}
.cid-tWE88eX54m {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #113371;
}
.cid-tWE88eX54m .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tWE88eX54m .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tWE88eX54m .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tWE88eX54m .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tWE88eX54m .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tWE88eX54m .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tWE88eX54m .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tWE88eX54m .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tWE88eX54m .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tWE88eX54m .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tWE88eX54m .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tWE88eX54m .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tWE88eX54m .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tWE88eX54m .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tWznxRMRg3 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tWznxRMRg3 nav.navbar {
  position: fixed;
}
.cid-tWznxRMRg3 .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-tWznxRMRg3 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tWznxRMRg3 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tWznxRMRg3 .dropdown-item:hover,
.cid-tWznxRMRg3 .dropdown-item:focus {
  background: #ff0000 !important;
  color: white !important;
}
.cid-tWznxRMRg3 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tWznxRMRg3 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tWznxRMRg3 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tWznxRMRg3 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tWznxRMRg3 .nav-link {
  position: relative;
}
.cid-tWznxRMRg3 .container {
  display: flex;
  margin: auto;
}
.cid-tWznxRMRg3 .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tWznxRMRg3 .dropdown-menu,
.cid-tWznxRMRg3 .navbar.opened {
  background: #113371 !important;
}
.cid-tWznxRMRg3 .nav-item:focus,
.cid-tWznxRMRg3 .nav-link:focus {
  outline: none;
}
.cid-tWznxRMRg3 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tWznxRMRg3 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tWznxRMRg3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tWznxRMRg3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tWznxRMRg3 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tWznxRMRg3 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tWznxRMRg3 .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: #113371;
}
.cid-tWznxRMRg3 .navbar.opened {
  transition: all 0.3s;
}
.cid-tWznxRMRg3 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tWznxRMRg3 .navbar .navbar-logo img {
  width: auto;
}
.cid-tWznxRMRg3 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tWznxRMRg3 .navbar.collapsed {
  justify-content: center;
}
.cid-tWznxRMRg3 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tWznxRMRg3 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tWznxRMRg3 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.4rem);
  }
}
.cid-tWznxRMRg3 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tWznxRMRg3 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tWznxRMRg3 .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-tWznxRMRg3 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tWznxRMRg3 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tWznxRMRg3 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tWznxRMRg3 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tWznxRMRg3 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tWznxRMRg3 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tWznxRMRg3 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tWznxRMRg3 .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-tWznxRMRg3 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tWznxRMRg3 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tWznxRMRg3 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tWznxRMRg3 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tWznxRMRg3 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tWznxRMRg3 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tWznxRMRg3 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tWznxRMRg3 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tWznxRMRg3 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tWznxRMRg3 .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-tWznxRMRg3 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tWznxRMRg3 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tWznxRMRg3 .dropdown-item.active,
.cid-tWznxRMRg3 .dropdown-item:active {
  background-color: transparent;
}
.cid-tWznxRMRg3 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tWznxRMRg3 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tWznxRMRg3 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tWznxRMRg3 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #113371;
}
.cid-tWznxRMRg3 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tWznxRMRg3 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tWznxRMRg3 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tWznxRMRg3 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tWznxRMRg3 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tWznxRMRg3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tWznxRMRg3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tWznxRMRg3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWznxRMRg3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWznxRMRg3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tWznxRMRg3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWznxRMRg3 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tWznxRMRg3 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tWznxRMRg3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWznxRMRg3 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tWznxRMRg3 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tWznxRMRg3 .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-tWznxRMRg3 .navbar {
    height: 70px;
  }
  .cid-tWznxRMRg3 .navbar.opened {
    height: auto;
  }
  .cid-tWznxRMRg3 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tWznxULqu0 {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tWznxULqu0 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tWznxULqu0 .row {
  flex-direction: row-reverse;
}
.cid-tWznxULqu0 img {
  width: 100%;
}
.cid-tWzoz6b12k {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWzoz6b12k .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tWzoz6b12k .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-tWzoz6b12k .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-tWzny1Txud {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWzny1Txud .mbr-section-title {
  color: #e43f3f;
  text-align: center;
}
.cid-tWzny1Txud .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-tWzny1Txud .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-tWzny6ANmd {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tWzny6ANmd .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-tWzny6ANmd .counter-container ul li {
  margin-bottom: 1rem;
  position: relative;
}
.cid-tWzny6ANmd .counter-container ul li:before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #e43f3f;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
  line-height: 1.2;
}
.cid-tWzp1bqun8 {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tWzp1bqun8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWzp1bqun8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWzp1bqun8 .item {
  padding-bottom: 2rem;
}
.cid-tWzp1bqun8 .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tWzp1bqun8 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tWzp1bqun8 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tWzp1bqun8 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tWzp1bqun8 .carousel-control,
.cid-tWzp1bqun8 .close {
  background: #1b1b1b;
}
.cid-tWzp1bqun8 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tWzp1bqun8 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tWzp1bqun8 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tWzp1bqun8 .carousel-control-next span {
  margin-left: 5px;
}
.cid-tWzp1bqun8 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tWzp1bqun8 .close::before {
  content: '\e91a';
}
.cid-tWzp1bqun8 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tWzp1bqun8 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tWzp1bqun8 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tWzp1bqun8 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tWzp1bqun8 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tWzp1bqun8 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tWzp1bqun8 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tWzp1bqun8 .carousel-indicators li.active,
.cid-tWzp1bqun8 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tWzp1bqun8 .carousel-indicators li::after,
.cid-tWzp1bqun8 .carousel-indicators li::before {
  content: none;
}
.cid-tWzp1bqun8 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tWzp1bqun8 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tWzp1bqun8 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tWzp1bqun8 .carousel-indicators {
    display: none;
  }
}
.cid-tWzp1bqun8 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tWzp1bqun8 .carousel-inner > .active {
  display: block;
}
.cid-tWzp1bqun8 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tWzp1bqun8 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tWzp1bqun8 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tWzp1bqun8 .carousel-control,
  .cid-tWzp1bqun8 .carousel-indicators,
  .cid-tWzp1bqun8 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tWzp1bqun8 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tWzp1bqun8 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tWzp1bqun8 .carousel-indicators .active,
.cid-tWzp1bqun8 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tWzp1bqun8 .carousel-indicators .active {
  background: #fff;
}
.cid-tWzp1bqun8 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tWzp1bqun8 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tWzp1bqun8 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tWzp1bqun8 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tWzp1bqun8 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tWzp1bqun8 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tWzp1bqun8 .carousel {
  width: 100%;
}
.cid-tWzp1bqun8 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tWzp1bqun8 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tWzp1bqun8 .modal.fade .modal-dialog,
.cid-tWzp1bqun8 .modal.in .modal-dialog {
  transform: none;
}
.cid-tWzp1bqun8 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tWzp1bqun8 H6 {
  text-align: center;
}
.cid-tWznymKH7P {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #113371;
}
.cid-tWznymKH7P .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tWznymKH7P .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tWznymKH7P .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tWznymKH7P .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tWznymKH7P .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tWznymKH7P .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tWznymKH7P .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tWznymKH7P .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tWznymKH7P .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tWznymKH7P .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tWznymKH7P .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tWznymKH7P .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tWznymKH7P .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tWznymKH7P .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tWzroO19ws {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tWzroO19ws nav.navbar {
  position: fixed;
}
.cid-tWzroO19ws .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-tWzroO19ws .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tWzroO19ws .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tWzroO19ws .dropdown-item:hover,
.cid-tWzroO19ws .dropdown-item:focus {
  background: #ff0000 !important;
  color: white !important;
}
.cid-tWzroO19ws .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tWzroO19ws .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tWzroO19ws .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tWzroO19ws .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tWzroO19ws .nav-link {
  position: relative;
}
.cid-tWzroO19ws .container {
  display: flex;
  margin: auto;
}
.cid-tWzroO19ws .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tWzroO19ws .dropdown-menu,
.cid-tWzroO19ws .navbar.opened {
  background: #113371 !important;
}
.cid-tWzroO19ws .nav-item:focus,
.cid-tWzroO19ws .nav-link:focus {
  outline: none;
}
.cid-tWzroO19ws .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tWzroO19ws .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tWzroO19ws .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tWzroO19ws .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tWzroO19ws .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tWzroO19ws .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tWzroO19ws .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: #113371;
}
.cid-tWzroO19ws .navbar.opened {
  transition: all 0.3s;
}
.cid-tWzroO19ws .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tWzroO19ws .navbar .navbar-logo img {
  width: auto;
}
.cid-tWzroO19ws .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tWzroO19ws .navbar.collapsed {
  justify-content: center;
}
.cid-tWzroO19ws .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tWzroO19ws .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tWzroO19ws .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.4rem);
  }
}
.cid-tWzroO19ws .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tWzroO19ws .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tWzroO19ws .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-tWzroO19ws .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tWzroO19ws .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tWzroO19ws .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tWzroO19ws .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tWzroO19ws .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tWzroO19ws .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tWzroO19ws .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tWzroO19ws .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-tWzroO19ws .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tWzroO19ws .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tWzroO19ws .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tWzroO19ws .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tWzroO19ws .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tWzroO19ws .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tWzroO19ws .navbar.navbar-short {
  min-height: 60px;
}
.cid-tWzroO19ws .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tWzroO19ws .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tWzroO19ws .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-tWzroO19ws .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tWzroO19ws .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tWzroO19ws .dropdown-item.active,
.cid-tWzroO19ws .dropdown-item:active {
  background-color: transparent;
}
.cid-tWzroO19ws .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tWzroO19ws .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tWzroO19ws .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tWzroO19ws .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #113371;
}
.cid-tWzroO19ws .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tWzroO19ws .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tWzroO19ws ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tWzroO19ws .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tWzroO19ws button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tWzroO19ws button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tWzroO19ws button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tWzroO19ws button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWzroO19ws button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWzroO19ws button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tWzroO19ws nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWzroO19ws nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tWzroO19ws nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tWzroO19ws nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWzroO19ws .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tWzroO19ws a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tWzroO19ws .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-tWzroO19ws .navbar {
    height: 70px;
  }
  .cid-tWzroO19ws .navbar.opened {
    height: auto;
  }
  .cid-tWzroO19ws .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tWzroR9vTa {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tWzroR9vTa .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tWzroR9vTa .row {
  flex-direction: row-reverse;
}
.cid-tWzroR9vTa img {
  width: 100%;
}
.cid-tWzroTtitM {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWzroTtitM .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tWzroTtitM .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-tWzroTtitM .mbr-section-subtitle DIV {
  text-align: center;
}
.cid-tWzsluLR5N {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWzsluLR5N .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWzsluLR5N .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tWzsluLR5N .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tWzsluLR5N img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tWzsluLR5N .text-wrapper {
    padding: 2rem;
  }
}
.cid-tWzsLqPrlr {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWzsLqPrlr .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWzsLqPrlr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tWzsLqPrlr .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tWzsLqPrlr .row {
  flex-direction: row-reverse;
}
.cid-tWzsLqPrlr img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tWzsLqPrlr .text-wrapper {
    padding: 2rem;
  }
}
.cid-tWzuaHwdjy {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWzuaHwdjy .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWzuaHwdjy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tWzuaHwdjy .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tWzuaHwdjy img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tWzuaHwdjy .text-wrapper {
    padding: 2rem;
  }
}
.cid-tWzuRqf0N2 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWzuRqf0N2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWzuRqf0N2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tWzuRqf0N2 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tWzuRqf0N2 .row {
  flex-direction: row-reverse;
}
.cid-tWzuRqf0N2 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tWzuRqf0N2 .text-wrapper {
    padding: 2rem;
  }
}
.cid-tWzvq6Vjhh {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWzvq6Vjhh .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWzvq6Vjhh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tWzvq6Vjhh .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tWzvq6Vjhh img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tWzvq6Vjhh .text-wrapper {
    padding: 2rem;
  }
}
.cid-tWzvNYWaS0 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWzvNYWaS0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWzvNYWaS0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tWzvNYWaS0 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tWzvNYWaS0 .row {
  flex-direction: row-reverse;
}
.cid-tWzvNYWaS0 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tWzvNYWaS0 .text-wrapper {
    padding: 2rem;
  }
}
.cid-tWzvN4gztf {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWzvN4gztf .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWzvN4gztf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tWzvN4gztf .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tWzvN4gztf img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tWzvN4gztf .text-wrapper {
    padding: 2rem;
  }
}
.cid-tWzzp0UGbN {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-tWzzp0UGbN .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWzzp0UGbN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tWzzp0UGbN .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tWzzp0UGbN .row {
  flex-direction: row-reverse;
}
.cid-tWzzp0UGbN img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tWzzp0UGbN .text-wrapper {
    padding: 2rem;
  }
}
.cid-tWzrp402m9 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #113371;
}
.cid-tWzrp402m9 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tWzrp402m9 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tWzrp402m9 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tWzrp402m9 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tWzrp402m9 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tWzrp402m9 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tWzrp402m9 .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tWzrp402m9 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tWzrp402m9 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tWzrp402m9 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tWzrp402m9 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tWzrp402m9 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tWzrp402m9 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tWzrp402m9 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tWzEwGaXFq {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tWzEwGaXFq nav.navbar {
  position: fixed;
}
.cid-tWzEwGaXFq .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-tWzEwGaXFq .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tWzEwGaXFq .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tWzEwGaXFq .dropdown-item:hover,
.cid-tWzEwGaXFq .dropdown-item:focus {
  background: #ff0000 !important;
  color: white !important;
}
.cid-tWzEwGaXFq .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tWzEwGaXFq .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tWzEwGaXFq .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tWzEwGaXFq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tWzEwGaXFq .nav-link {
  position: relative;
}
.cid-tWzEwGaXFq .container {
  display: flex;
  margin: auto;
}
.cid-tWzEwGaXFq .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tWzEwGaXFq .dropdown-menu,
.cid-tWzEwGaXFq .navbar.opened {
  background: #113371 !important;
}
.cid-tWzEwGaXFq .nav-item:focus,
.cid-tWzEwGaXFq .nav-link:focus {
  outline: none;
}
.cid-tWzEwGaXFq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tWzEwGaXFq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tWzEwGaXFq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tWzEwGaXFq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tWzEwGaXFq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tWzEwGaXFq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tWzEwGaXFq .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: #113371;
}
.cid-tWzEwGaXFq .navbar.opened {
  transition: all 0.3s;
}
.cid-tWzEwGaXFq .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tWzEwGaXFq .navbar .navbar-logo img {
  width: auto;
}
.cid-tWzEwGaXFq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tWzEwGaXFq .navbar.collapsed {
  justify-content: center;
}
.cid-tWzEwGaXFq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tWzEwGaXFq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tWzEwGaXFq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.4rem);
  }
}
.cid-tWzEwGaXFq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tWzEwGaXFq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tWzEwGaXFq .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-tWzEwGaXFq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tWzEwGaXFq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tWzEwGaXFq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tWzEwGaXFq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tWzEwGaXFq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tWzEwGaXFq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tWzEwGaXFq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tWzEwGaXFq .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-tWzEwGaXFq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tWzEwGaXFq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tWzEwGaXFq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tWzEwGaXFq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tWzEwGaXFq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tWzEwGaXFq .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tWzEwGaXFq .navbar.navbar-short {
  min-height: 60px;
}
.cid-tWzEwGaXFq .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tWzEwGaXFq .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tWzEwGaXFq .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-tWzEwGaXFq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tWzEwGaXFq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tWzEwGaXFq .dropdown-item.active,
.cid-tWzEwGaXFq .dropdown-item:active {
  background-color: transparent;
}
.cid-tWzEwGaXFq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tWzEwGaXFq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tWzEwGaXFq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tWzEwGaXFq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #113371;
}
.cid-tWzEwGaXFq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tWzEwGaXFq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tWzEwGaXFq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tWzEwGaXFq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tWzEwGaXFq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tWzEwGaXFq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tWzEwGaXFq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tWzEwGaXFq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWzEwGaXFq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWzEwGaXFq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tWzEwGaXFq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWzEwGaXFq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tWzEwGaXFq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tWzEwGaXFq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWzEwGaXFq .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tWzEwGaXFq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tWzEwGaXFq .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-tWzEwGaXFq .navbar {
    height: 70px;
  }
  .cid-tWzEwGaXFq .navbar.opened {
    height: auto;
  }
  .cid-tWzEwGaXFq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tWzEwHPk3v {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tWzEwHPk3v .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tWzEwHPk3v .row {
  flex-direction: row-reverse;
}
.cid-tWzEwHPk3v img {
  width: 100%;
}
.cid-tWzEwJtvtZ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWzEwJtvtZ .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tWzEwJtvtZ .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-tWzEwJtvtZ .mbr-section-subtitle DIV {
  text-align: center;
}
.cid-tWzF8iouzI {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tWzF8iouzI .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWzF8iouzI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWzF8iouzI .video-wrapper iframe {
  width: 100%;
}
.cid-tWzF8iouzI .mbr-section-title,
.cid-tWzF8iouzI .mbr-section-subtitle,
.cid-tWzF8iouzI .mbr-text {
  text-align: center;
}
.cid-tWzGIFUOca {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tWzGIFUOca .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWzGIFUOca .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tWzGIFUOca .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tWzGIFUOca .row {
  flex-direction: row-reverse;
}
.cid-tWzGIFUOca img {
  width: 100%;
}
.cid-tWzFHotP9o {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tWzFHotP9o .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWzFHotP9o .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWzFHotP9o .video-wrapper iframe {
  width: 100%;
}
.cid-tWzFHotP9o .mbr-section-title,
.cid-tWzFHotP9o .mbr-section-subtitle,
.cid-tWzFHotP9o .mbr-text {
  text-align: center;
}
.cid-tWzHoFnrTr {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tWzHoFnrTr .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWzHoFnrTr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tWzHoFnrTr .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tWzHoFnrTr .row {
  flex-direction: row-reverse;
}
.cid-tWzHoFnrTr img {
  width: 100%;
}
.cid-tWzHKtj0Vo {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tWzHKtj0Vo .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWzHKtj0Vo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tWzHKtj0Vo .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tWzHKtj0Vo .row {
  flex-direction: row-reverse;
}
.cid-tWzHKtj0Vo img {
  width: 100%;
}
.cid-tWzEx4S2Qc {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #113371;
}
.cid-tWzEx4S2Qc .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tWzEx4S2Qc .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tWzEx4S2Qc .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tWzEx4S2Qc .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tWzEx4S2Qc .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tWzEx4S2Qc .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tWzEx4S2Qc .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tWzEx4S2Qc .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tWzEx4S2Qc .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tWzEx4S2Qc .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tWzEx4S2Qc .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tWzEx4S2Qc .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tWzEx4S2Qc .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tWzEx4S2Qc .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tWEhhBjm1o {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tWEhhBjm1o nav.navbar {
  position: fixed;
}
.cid-tWEhhBjm1o .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-tWEhhBjm1o .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tWEhhBjm1o .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tWEhhBjm1o .dropdown-item:hover,
.cid-tWEhhBjm1o .dropdown-item:focus {
  background: #ff0000 !important;
  color: white !important;
}
.cid-tWEhhBjm1o .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tWEhhBjm1o .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tWEhhBjm1o .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tWEhhBjm1o .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tWEhhBjm1o .nav-link {
  position: relative;
}
.cid-tWEhhBjm1o .container {
  display: flex;
  margin: auto;
}
.cid-tWEhhBjm1o .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tWEhhBjm1o .dropdown-menu,
.cid-tWEhhBjm1o .navbar.opened {
  background: #113371 !important;
}
.cid-tWEhhBjm1o .nav-item:focus,
.cid-tWEhhBjm1o .nav-link:focus {
  outline: none;
}
.cid-tWEhhBjm1o .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tWEhhBjm1o .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tWEhhBjm1o .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tWEhhBjm1o .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tWEhhBjm1o .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tWEhhBjm1o .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tWEhhBjm1o .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: #113371;
}
.cid-tWEhhBjm1o .navbar.opened {
  transition: all 0.3s;
}
.cid-tWEhhBjm1o .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tWEhhBjm1o .navbar .navbar-logo img {
  width: auto;
}
.cid-tWEhhBjm1o .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tWEhhBjm1o .navbar.collapsed {
  justify-content: center;
}
.cid-tWEhhBjm1o .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tWEhhBjm1o .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tWEhhBjm1o .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.4rem);
  }
}
.cid-tWEhhBjm1o .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tWEhhBjm1o .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tWEhhBjm1o .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-tWEhhBjm1o .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tWEhhBjm1o .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tWEhhBjm1o .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tWEhhBjm1o .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tWEhhBjm1o .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tWEhhBjm1o .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tWEhhBjm1o .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tWEhhBjm1o .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-tWEhhBjm1o .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tWEhhBjm1o .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tWEhhBjm1o .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tWEhhBjm1o .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tWEhhBjm1o .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tWEhhBjm1o .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tWEhhBjm1o .navbar.navbar-short {
  min-height: 60px;
}
.cid-tWEhhBjm1o .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tWEhhBjm1o .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tWEhhBjm1o .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-tWEhhBjm1o .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tWEhhBjm1o .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tWEhhBjm1o .dropdown-item.active,
.cid-tWEhhBjm1o .dropdown-item:active {
  background-color: transparent;
}
.cid-tWEhhBjm1o .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tWEhhBjm1o .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tWEhhBjm1o .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tWEhhBjm1o .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #113371;
}
.cid-tWEhhBjm1o .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tWEhhBjm1o .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tWEhhBjm1o ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tWEhhBjm1o .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tWEhhBjm1o button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tWEhhBjm1o button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tWEhhBjm1o button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tWEhhBjm1o button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWEhhBjm1o button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWEhhBjm1o button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tWEhhBjm1o nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWEhhBjm1o nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tWEhhBjm1o nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tWEhhBjm1o nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWEhhBjm1o .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tWEhhBjm1o a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tWEhhBjm1o .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-tWEhhBjm1o .navbar {
    height: 70px;
  }
  .cid-tWEhhBjm1o .navbar.opened {
    height: auto;
  }
  .cid-tWEhhBjm1o .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tWEhhCtIRt {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tWEhhCtIRt .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tWEhhCtIRt .row {
  flex-direction: row-reverse;
}
.cid-tWEhhCtIRt img {
  width: 100%;
}
.cid-tWEhhDXEpj {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWEhhDXEpj .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tWEhhDXEpj .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-tWEhhDXEpj .mbr-section-subtitle DIV {
  text-align: center;
}
.cid-tWEhhGxeNY {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tWEhhGxeNY .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWEhhGxeNY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWEhhGxeNY .video-wrapper iframe {
  width: 100%;
}
.cid-tWEhhGxeNY .mbr-section-title,
.cid-tWEhhGxeNY .mbr-section-subtitle,
.cid-tWEhhGxeNY .mbr-text {
  text-align: center;
}
.cid-tWEhhIoWXU {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tWEhhIoWXU .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWEhhIoWXU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWEhhIoWXU .video-wrapper iframe {
  width: 100%;
}
.cid-tWEhhIoWXU .mbr-section-title,
.cid-tWEhhIoWXU .mbr-section-subtitle,
.cid-tWEhhIoWXU .mbr-text {
  text-align: center;
}
.cid-tWEhhLwP1a {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tWEhhLwP1a .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWEhhLwP1a .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWEhhLwP1a .video-wrapper iframe {
  width: 100%;
}
.cid-tWEhhLwP1a .mbr-section-title,
.cid-tWEhhLwP1a .mbr-section-subtitle,
.cid-tWEhhLwP1a .mbr-text {
  text-align: center;
}
.cid-tWEhhNQ6sB {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tWEhhNQ6sB .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWEhhNQ6sB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWEhhNQ6sB .video-wrapper iframe {
  width: 100%;
}
.cid-tWEhhNQ6sB .mbr-section-title,
.cid-tWEhhNQ6sB .mbr-section-subtitle,
.cid-tWEhhNQ6sB .mbr-text {
  text-align: center;
}
.cid-tWEhhQcPx8 {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tWEhhQcPx8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWEhhQcPx8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWEhhQcPx8 .video-wrapper iframe {
  width: 100%;
}
.cid-tWEhhQcPx8 .mbr-section-title,
.cid-tWEhhQcPx8 .mbr-section-subtitle,
.cid-tWEhhQcPx8 .mbr-text {
  text-align: center;
}
.cid-tWEhhSuwp0 {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tWEhhSuwp0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWEhhSuwp0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWEhhSuwp0 .video-wrapper iframe {
  width: 100%;
}
.cid-tWEhhSuwp0 .mbr-section-title,
.cid-tWEhhSuwp0 .mbr-section-subtitle,
.cid-tWEhhSuwp0 .mbr-text {
  text-align: center;
}
.cid-tWEhhUNgos {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #113371;
}
.cid-tWEhhUNgos .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tWEhhUNgos .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tWEhhUNgos .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tWEhhUNgos .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tWEhhUNgos .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tWEhhUNgos .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tWEhhUNgos .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tWEhhUNgos .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tWEhhUNgos .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tWEhhUNgos .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tWEhhUNgos .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tWEhhUNgos .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tWEhhUNgos .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tWEhhUNgos .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tvMgrA7yCf {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tvMgrA7yCf nav.navbar {
  position: fixed;
}
.cid-tvMgrA7yCf .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-tvMgrA7yCf .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tvMgrA7yCf .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tvMgrA7yCf .dropdown-item:hover,
.cid-tvMgrA7yCf .dropdown-item:focus {
  background: #ff0000 !important;
  color: white !important;
}
.cid-tvMgrA7yCf .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tvMgrA7yCf .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tvMgrA7yCf .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tvMgrA7yCf .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tvMgrA7yCf .nav-link {
  position: relative;
}
.cid-tvMgrA7yCf .container {
  display: flex;
  margin: auto;
}
.cid-tvMgrA7yCf .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tvMgrA7yCf .dropdown-menu,
.cid-tvMgrA7yCf .navbar.opened {
  background: #113371 !important;
}
.cid-tvMgrA7yCf .nav-item:focus,
.cid-tvMgrA7yCf .nav-link:focus {
  outline: none;
}
.cid-tvMgrA7yCf .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tvMgrA7yCf .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tvMgrA7yCf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tvMgrA7yCf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tvMgrA7yCf .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tvMgrA7yCf .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tvMgrA7yCf .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: #113371;
}
.cid-tvMgrA7yCf .navbar.opened {
  transition: all 0.3s;
}
.cid-tvMgrA7yCf .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tvMgrA7yCf .navbar .navbar-logo img {
  width: auto;
}
.cid-tvMgrA7yCf .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tvMgrA7yCf .navbar.collapsed {
  justify-content: center;
}
.cid-tvMgrA7yCf .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tvMgrA7yCf .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tvMgrA7yCf .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.4rem);
  }
}
.cid-tvMgrA7yCf .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tvMgrA7yCf .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tvMgrA7yCf .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-tvMgrA7yCf .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tvMgrA7yCf .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tvMgrA7yCf .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tvMgrA7yCf .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tvMgrA7yCf .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tvMgrA7yCf .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tvMgrA7yCf .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tvMgrA7yCf .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-tvMgrA7yCf .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tvMgrA7yCf .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tvMgrA7yCf .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tvMgrA7yCf .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tvMgrA7yCf .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tvMgrA7yCf .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tvMgrA7yCf .navbar.navbar-short {
  min-height: 60px;
}
.cid-tvMgrA7yCf .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tvMgrA7yCf .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tvMgrA7yCf .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-tvMgrA7yCf .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tvMgrA7yCf .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tvMgrA7yCf .dropdown-item.active,
.cid-tvMgrA7yCf .dropdown-item:active {
  background-color: transparent;
}
.cid-tvMgrA7yCf .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tvMgrA7yCf .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tvMgrA7yCf .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tvMgrA7yCf .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #113371;
}
.cid-tvMgrA7yCf .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tvMgrA7yCf .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tvMgrA7yCf ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tvMgrA7yCf .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tvMgrA7yCf button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tvMgrA7yCf button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tvMgrA7yCf button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tvMgrA7yCf button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvMgrA7yCf button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvMgrA7yCf button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tvMgrA7yCf nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvMgrA7yCf nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tvMgrA7yCf nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tvMgrA7yCf nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvMgrA7yCf .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tvMgrA7yCf a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tvMgrA7yCf .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-tvMgrA7yCf .navbar {
    height: 70px;
  }
  .cid-tvMgrA7yCf .navbar.opened {
    height: auto;
  }
  .cid-tvMgrA7yCf .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tvMgrBGBYl {
  padding-top: 7rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tvMgrBGBYl .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tvMgrBGBYl .row {
  flex-direction: row-reverse;
}
.cid-tvMgrBGBYl img {
  width: 100%;
}
.cid-tWEkNRyHWX {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tWEkNRyHWX .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWEkNRyHWX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWEkNRyHWX .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-tWEkNRyHWX .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-tWEkNRyHWX .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tWEkNRyHWX .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-tWEkNRyHWX .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #ff0000;
}
.cid-tvMgrDLPDQ {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background: #ffffff;
}
.cid-tvMgrDLPDQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tvMgrDLPDQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tvMgrDLPDQ .google-map {
  height: 30rem;
  position: relative;
}
.cid-tvMgrDLPDQ .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tvMgrDLPDQ .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tvMgrDLPDQ .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tvMgrDLPDQ .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tvMgrEqkiz {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #113371;
}
.cid-tvMgrEqkiz .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tvMgrEqkiz .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tvMgrEqkiz .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tvMgrEqkiz .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tvMgrEqkiz .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tvMgrEqkiz .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tvMgrEqkiz .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tvMgrEqkiz .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tvMgrEqkiz .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tvMgrEqkiz .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tvMgrEqkiz .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tvMgrEqkiz .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tvMgrEqkiz .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tvMgrEqkiz .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tWK4MOcOgT {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tWK4MOcOgT nav.navbar {
  position: fixed;
}
.cid-tWK4MOcOgT .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-tWK4MOcOgT .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tWK4MOcOgT .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tWK4MOcOgT .dropdown-item:hover,
.cid-tWK4MOcOgT .dropdown-item:focus {
  background: #ff0000 !important;
  color: white !important;
}
.cid-tWK4MOcOgT .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tWK4MOcOgT .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tWK4MOcOgT .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tWK4MOcOgT .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tWK4MOcOgT .nav-link {
  position: relative;
}
.cid-tWK4MOcOgT .container {
  display: flex;
  margin: auto;
}
.cid-tWK4MOcOgT .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tWK4MOcOgT .dropdown-menu,
.cid-tWK4MOcOgT .navbar.opened {
  background: #113371 !important;
}
.cid-tWK4MOcOgT .nav-item:focus,
.cid-tWK4MOcOgT .nav-link:focus {
  outline: none;
}
.cid-tWK4MOcOgT .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tWK4MOcOgT .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tWK4MOcOgT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tWK4MOcOgT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tWK4MOcOgT .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tWK4MOcOgT .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tWK4MOcOgT .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: #113371;
}
.cid-tWK4MOcOgT .navbar.opened {
  transition: all 0.3s;
}
.cid-tWK4MOcOgT .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tWK4MOcOgT .navbar .navbar-logo img {
  width: auto;
}
.cid-tWK4MOcOgT .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tWK4MOcOgT .navbar.collapsed {
  justify-content: center;
}
.cid-tWK4MOcOgT .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tWK4MOcOgT .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tWK4MOcOgT .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.4rem);
  }
}
.cid-tWK4MOcOgT .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tWK4MOcOgT .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tWK4MOcOgT .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-tWK4MOcOgT .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tWK4MOcOgT .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tWK4MOcOgT .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tWK4MOcOgT .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tWK4MOcOgT .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tWK4MOcOgT .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tWK4MOcOgT .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tWK4MOcOgT .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-tWK4MOcOgT .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tWK4MOcOgT .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tWK4MOcOgT .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tWK4MOcOgT .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tWK4MOcOgT .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tWK4MOcOgT .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tWK4MOcOgT .navbar.navbar-short {
  min-height: 60px;
}
.cid-tWK4MOcOgT .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tWK4MOcOgT .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tWK4MOcOgT .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-tWK4MOcOgT .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tWK4MOcOgT .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tWK4MOcOgT .dropdown-item.active,
.cid-tWK4MOcOgT .dropdown-item:active {
  background-color: transparent;
}
.cid-tWK4MOcOgT .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tWK4MOcOgT .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tWK4MOcOgT .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tWK4MOcOgT .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #113371;
}
.cid-tWK4MOcOgT .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tWK4MOcOgT .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tWK4MOcOgT ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tWK4MOcOgT .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tWK4MOcOgT button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tWK4MOcOgT button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tWK4MOcOgT button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tWK4MOcOgT button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWK4MOcOgT button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWK4MOcOgT button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tWK4MOcOgT nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWK4MOcOgT nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tWK4MOcOgT nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tWK4MOcOgT nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWK4MOcOgT .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tWK4MOcOgT a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tWK4MOcOgT .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-tWK4MOcOgT .navbar {
    height: 70px;
  }
  .cid-tWK4MOcOgT .navbar.opened {
    height: auto;
  }
  .cid-tWK4MOcOgT .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tWK4MQT8PM {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tWK4MQT8PM .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tWK4MQT8PM .row {
  flex-direction: row-reverse;
}
.cid-tWK4MQT8PM img {
  width: 100%;
}
.cid-tWK4MUEQfr {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWK4MUEQfr .mbr-section-title {
  color: #bbbbbb;
  text-align: center;
}
.cid-tWK4MUEQfr .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-tWK4MUEQfr .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-tWK4N6aX7l {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tWK4N6aX7l .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWK4N6aX7l .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWK4N6aX7l .item {
  padding-bottom: 2rem;
}
.cid-tWK4N6aX7l .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tWK4N6aX7l .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tWK4N6aX7l .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tWK4N6aX7l .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tWK4N6aX7l .carousel-control,
.cid-tWK4N6aX7l .close {
  background: #1b1b1b;
}
.cid-tWK4N6aX7l .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tWK4N6aX7l .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tWK4N6aX7l .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tWK4N6aX7l .carousel-control-next span {
  margin-left: 5px;
}
.cid-tWK4N6aX7l .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tWK4N6aX7l .close::before {
  content: '\e91a';
}
.cid-tWK4N6aX7l .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tWK4N6aX7l .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tWK4N6aX7l .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tWK4N6aX7l .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tWK4N6aX7l .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tWK4N6aX7l .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tWK4N6aX7l .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tWK4N6aX7l .carousel-indicators li.active,
.cid-tWK4N6aX7l .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tWK4N6aX7l .carousel-indicators li::after,
.cid-tWK4N6aX7l .carousel-indicators li::before {
  content: none;
}
.cid-tWK4N6aX7l .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tWK4N6aX7l .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tWK4N6aX7l .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tWK4N6aX7l .carousel-indicators {
    display: none;
  }
}
.cid-tWK4N6aX7l .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tWK4N6aX7l .carousel-inner > .active {
  display: block;
}
.cid-tWK4N6aX7l .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tWK4N6aX7l .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tWK4N6aX7l .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tWK4N6aX7l .carousel-control,
  .cid-tWK4N6aX7l .carousel-indicators,
  .cid-tWK4N6aX7l .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tWK4N6aX7l .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tWK4N6aX7l .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tWK4N6aX7l .carousel-indicators .active,
.cid-tWK4N6aX7l .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tWK4N6aX7l .carousel-indicators .active {
  background: #fff;
}
.cid-tWK4N6aX7l .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tWK4N6aX7l .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tWK4N6aX7l .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tWK4N6aX7l .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tWK4N6aX7l .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tWK4N6aX7l .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tWK4N6aX7l .carousel {
  width: 100%;
}
.cid-tWK4N6aX7l .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tWK4N6aX7l .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tWK4N6aX7l .modal.fade .modal-dialog,
.cid-tWK4N6aX7l .modal.in .modal-dialog {
  transform: none;
}
.cid-tWK4N6aX7l .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tWK4N6aX7l H6 {
  text-align: center;
}
.cid-tWK4NaV5aK {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #113371;
}
.cid-tWK4NaV5aK .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tWK4NaV5aK .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tWK4NaV5aK .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tWK4NaV5aK .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tWK4NaV5aK .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tWK4NaV5aK .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tWK4NaV5aK .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tWK4NaV5aK .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tWK4NaV5aK .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tWK4NaV5aK .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tWK4NaV5aK .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tWK4NaV5aK .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tWK4NaV5aK .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tWK4NaV5aK .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tWK72HPZxL {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tWK72HPZxL nav.navbar {
  position: fixed;
}
.cid-tWK72HPZxL .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-tWK72HPZxL .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tWK72HPZxL .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tWK72HPZxL .dropdown-item:hover,
.cid-tWK72HPZxL .dropdown-item:focus {
  background: #ff0000 !important;
  color: white !important;
}
.cid-tWK72HPZxL .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tWK72HPZxL .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tWK72HPZxL .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tWK72HPZxL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tWK72HPZxL .nav-link {
  position: relative;
}
.cid-tWK72HPZxL .container {
  display: flex;
  margin: auto;
}
.cid-tWK72HPZxL .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tWK72HPZxL .dropdown-menu,
.cid-tWK72HPZxL .navbar.opened {
  background: #113371 !important;
}
.cid-tWK72HPZxL .nav-item:focus,
.cid-tWK72HPZxL .nav-link:focus {
  outline: none;
}
.cid-tWK72HPZxL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tWK72HPZxL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tWK72HPZxL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tWK72HPZxL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tWK72HPZxL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tWK72HPZxL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tWK72HPZxL .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: #113371;
}
.cid-tWK72HPZxL .navbar.opened {
  transition: all 0.3s;
}
.cid-tWK72HPZxL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tWK72HPZxL .navbar .navbar-logo img {
  width: auto;
}
.cid-tWK72HPZxL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tWK72HPZxL .navbar.collapsed {
  justify-content: center;
}
.cid-tWK72HPZxL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tWK72HPZxL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tWK72HPZxL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.4rem);
  }
}
.cid-tWK72HPZxL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tWK72HPZxL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tWK72HPZxL .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-tWK72HPZxL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tWK72HPZxL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tWK72HPZxL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tWK72HPZxL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tWK72HPZxL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tWK72HPZxL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tWK72HPZxL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tWK72HPZxL .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-tWK72HPZxL .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tWK72HPZxL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tWK72HPZxL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tWK72HPZxL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tWK72HPZxL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tWK72HPZxL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tWK72HPZxL .navbar.navbar-short {
  min-height: 60px;
}
.cid-tWK72HPZxL .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tWK72HPZxL .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tWK72HPZxL .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-tWK72HPZxL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tWK72HPZxL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tWK72HPZxL .dropdown-item.active,
.cid-tWK72HPZxL .dropdown-item:active {
  background-color: transparent;
}
.cid-tWK72HPZxL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tWK72HPZxL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tWK72HPZxL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tWK72HPZxL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #113371;
}
.cid-tWK72HPZxL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tWK72HPZxL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tWK72HPZxL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tWK72HPZxL .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tWK72HPZxL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tWK72HPZxL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tWK72HPZxL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tWK72HPZxL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWK72HPZxL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWK72HPZxL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tWK72HPZxL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWK72HPZxL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tWK72HPZxL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tWK72HPZxL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWK72HPZxL .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tWK72HPZxL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tWK72HPZxL .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-tWK72HPZxL .navbar {
    height: 70px;
  }
  .cid-tWK72HPZxL .navbar.opened {
    height: auto;
  }
  .cid-tWK72HPZxL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tWK72KssOm {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tWK72KssOm .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tWK72KssOm .row {
  flex-direction: row-reverse;
}
.cid-tWK72KssOm img {
  width: 100%;
}
.cid-tWK72Olqri {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWK72Olqri .mbr-section-title {
  color: #bbbbbb;
  text-align: center;
}
.cid-tWK72Olqri .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-tWK72Olqri .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-tWOLohIgWS {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWOLohIgWS .mbr-section-title {
  color: #ff0000;
  text-align: center;
}
.cid-tWOLohIgWS .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-tWK72SkCb3 {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tWK72SkCb3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWK72SkCb3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWK72SkCb3 .item {
  padding-bottom: 2rem;
}
.cid-tWK72SkCb3 .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tWK72SkCb3 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tWK72SkCb3 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tWK72SkCb3 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tWK72SkCb3 .carousel-control,
.cid-tWK72SkCb3 .close {
  background: #1b1b1b;
}
.cid-tWK72SkCb3 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tWK72SkCb3 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tWK72SkCb3 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tWK72SkCb3 .carousel-control-next span {
  margin-left: 5px;
}
.cid-tWK72SkCb3 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tWK72SkCb3 .close::before {
  content: '\e91a';
}
.cid-tWK72SkCb3 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tWK72SkCb3 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tWK72SkCb3 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tWK72SkCb3 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tWK72SkCb3 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tWK72SkCb3 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tWK72SkCb3 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tWK72SkCb3 .carousel-indicators li.active,
.cid-tWK72SkCb3 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tWK72SkCb3 .carousel-indicators li::after,
.cid-tWK72SkCb3 .carousel-indicators li::before {
  content: none;
}
.cid-tWK72SkCb3 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tWK72SkCb3 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tWK72SkCb3 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tWK72SkCb3 .carousel-indicators {
    display: none;
  }
}
.cid-tWK72SkCb3 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tWK72SkCb3 .carousel-inner > .active {
  display: block;
}
.cid-tWK72SkCb3 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tWK72SkCb3 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tWK72SkCb3 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tWK72SkCb3 .carousel-control,
  .cid-tWK72SkCb3 .carousel-indicators,
  .cid-tWK72SkCb3 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tWK72SkCb3 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tWK72SkCb3 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tWK72SkCb3 .carousel-indicators .active,
.cid-tWK72SkCb3 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tWK72SkCb3 .carousel-indicators .active {
  background: #fff;
}
.cid-tWK72SkCb3 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tWK72SkCb3 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tWK72SkCb3 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tWK72SkCb3 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tWK72SkCb3 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tWK72SkCb3 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tWK72SkCb3 .carousel {
  width: 100%;
}
.cid-tWK72SkCb3 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tWK72SkCb3 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tWK72SkCb3 .modal.fade .modal-dialog,
.cid-tWK72SkCb3 .modal.in .modal-dialog {
  transform: none;
}
.cid-tWK72SkCb3 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tWK72SkCb3 H6 {
  text-align: center;
}
.cid-tWK72Y2hW4 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #113371;
}
.cid-tWK72Y2hW4 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tWK72Y2hW4 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tWK72Y2hW4 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tWK72Y2hW4 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tWK72Y2hW4 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tWK72Y2hW4 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tWK72Y2hW4 .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tWK72Y2hW4 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tWK72Y2hW4 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tWK72Y2hW4 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tWK72Y2hW4 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tWK72Y2hW4 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tWK72Y2hW4 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tWK72Y2hW4 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tWNmUew5mr {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tWNmUew5mr nav.navbar {
  position: fixed;
}
.cid-tWNmUew5mr .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-tWNmUew5mr .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tWNmUew5mr .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tWNmUew5mr .dropdown-item:hover,
.cid-tWNmUew5mr .dropdown-item:focus {
  background: #ff0000 !important;
  color: white !important;
}
.cid-tWNmUew5mr .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tWNmUew5mr .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tWNmUew5mr .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tWNmUew5mr .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tWNmUew5mr .nav-link {
  position: relative;
}
.cid-tWNmUew5mr .container {
  display: flex;
  margin: auto;
}
.cid-tWNmUew5mr .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tWNmUew5mr .dropdown-menu,
.cid-tWNmUew5mr .navbar.opened {
  background: #113371 !important;
}
.cid-tWNmUew5mr .nav-item:focus,
.cid-tWNmUew5mr .nav-link:focus {
  outline: none;
}
.cid-tWNmUew5mr .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tWNmUew5mr .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tWNmUew5mr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tWNmUew5mr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tWNmUew5mr .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tWNmUew5mr .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tWNmUew5mr .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: #113371;
}
.cid-tWNmUew5mr .navbar.opened {
  transition: all 0.3s;
}
.cid-tWNmUew5mr .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tWNmUew5mr .navbar .navbar-logo img {
  width: auto;
}
.cid-tWNmUew5mr .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tWNmUew5mr .navbar.collapsed {
  justify-content: center;
}
.cid-tWNmUew5mr .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tWNmUew5mr .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tWNmUew5mr .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.4rem);
  }
}
.cid-tWNmUew5mr .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tWNmUew5mr .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tWNmUew5mr .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-tWNmUew5mr .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tWNmUew5mr .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tWNmUew5mr .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tWNmUew5mr .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tWNmUew5mr .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tWNmUew5mr .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tWNmUew5mr .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tWNmUew5mr .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-tWNmUew5mr .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tWNmUew5mr .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tWNmUew5mr .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tWNmUew5mr .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tWNmUew5mr .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tWNmUew5mr .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tWNmUew5mr .navbar.navbar-short {
  min-height: 60px;
}
.cid-tWNmUew5mr .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tWNmUew5mr .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tWNmUew5mr .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-tWNmUew5mr .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tWNmUew5mr .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tWNmUew5mr .dropdown-item.active,
.cid-tWNmUew5mr .dropdown-item:active {
  background-color: transparent;
}
.cid-tWNmUew5mr .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tWNmUew5mr .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tWNmUew5mr .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tWNmUew5mr .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #113371;
}
.cid-tWNmUew5mr .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tWNmUew5mr .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tWNmUew5mr ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tWNmUew5mr .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tWNmUew5mr button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tWNmUew5mr button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tWNmUew5mr button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tWNmUew5mr button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWNmUew5mr button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWNmUew5mr button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tWNmUew5mr nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWNmUew5mr nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tWNmUew5mr nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tWNmUew5mr nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWNmUew5mr .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tWNmUew5mr a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tWNmUew5mr .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-tWNmUew5mr .navbar {
    height: 70px;
  }
  .cid-tWNmUew5mr .navbar.opened {
    height: auto;
  }
  .cid-tWNmUew5mr .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tWNmUh5WRe {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tWNmUh5WRe .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tWNmUh5WRe .row {
  flex-direction: row-reverse;
}
.cid-tWNmUh5WRe img {
  width: 100%;
}
.cid-tWNmUkZok8 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWNmUkZok8 .mbr-section-title {
  color: #bbbbbb;
  text-align: center;
}
.cid-tWNmUkZok8 .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-tWNmUkZok8 .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-tWNngiYPAl {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWNngiYPAl .mbr-section-title {
  color: #ff0000;
  text-align: center;
}
.cid-tWNngiYPAl .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-tWNn7U00ZU {
  padding-top: 2rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tWNn7U00ZU .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWNn7U00ZU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWNn7U00ZU .video-wrapper iframe {
  width: 100%;
}
.cid-tWNn7U00ZU .mbr-section-title,
.cid-tWNn7U00ZU .mbr-section-subtitle,
.cid-tWNn7U00ZU .mbr-text {
  text-align: center;
}
.cid-tWNmUwFKn7 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #113371;
}
.cid-tWNmUwFKn7 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tWNmUwFKn7 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tWNmUwFKn7 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tWNmUwFKn7 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tWNmUwFKn7 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tWNmUwFKn7 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tWNmUwFKn7 .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tWNmUwFKn7 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tWNmUwFKn7 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tWNmUwFKn7 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tWNmUwFKn7 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tWNmUwFKn7 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tWNmUwFKn7 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tWNmUwFKn7 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tWNnzoxiQS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tWNnzoxiQS nav.navbar {
  position: fixed;
}
.cid-tWNnzoxiQS .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-tWNnzoxiQS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tWNnzoxiQS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tWNnzoxiQS .dropdown-item:hover,
.cid-tWNnzoxiQS .dropdown-item:focus {
  background: #ff0000 !important;
  color: white !important;
}
.cid-tWNnzoxiQS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tWNnzoxiQS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tWNnzoxiQS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tWNnzoxiQS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tWNnzoxiQS .nav-link {
  position: relative;
}
.cid-tWNnzoxiQS .container {
  display: flex;
  margin: auto;
}
.cid-tWNnzoxiQS .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tWNnzoxiQS .dropdown-menu,
.cid-tWNnzoxiQS .navbar.opened {
  background: #113371 !important;
}
.cid-tWNnzoxiQS .nav-item:focus,
.cid-tWNnzoxiQS .nav-link:focus {
  outline: none;
}
.cid-tWNnzoxiQS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tWNnzoxiQS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tWNnzoxiQS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tWNnzoxiQS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tWNnzoxiQS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tWNnzoxiQS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tWNnzoxiQS .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: #113371;
}
.cid-tWNnzoxiQS .navbar.opened {
  transition: all 0.3s;
}
.cid-tWNnzoxiQS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tWNnzoxiQS .navbar .navbar-logo img {
  width: auto;
}
.cid-tWNnzoxiQS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tWNnzoxiQS .navbar.collapsed {
  justify-content: center;
}
.cid-tWNnzoxiQS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tWNnzoxiQS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tWNnzoxiQS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.4rem);
  }
}
.cid-tWNnzoxiQS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tWNnzoxiQS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tWNnzoxiQS .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-tWNnzoxiQS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tWNnzoxiQS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tWNnzoxiQS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tWNnzoxiQS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tWNnzoxiQS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tWNnzoxiQS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tWNnzoxiQS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tWNnzoxiQS .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-tWNnzoxiQS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tWNnzoxiQS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tWNnzoxiQS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tWNnzoxiQS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tWNnzoxiQS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tWNnzoxiQS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tWNnzoxiQS .navbar.navbar-short {
  min-height: 60px;
}
.cid-tWNnzoxiQS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tWNnzoxiQS .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tWNnzoxiQS .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-tWNnzoxiQS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tWNnzoxiQS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tWNnzoxiQS .dropdown-item.active,
.cid-tWNnzoxiQS .dropdown-item:active {
  background-color: transparent;
}
.cid-tWNnzoxiQS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tWNnzoxiQS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tWNnzoxiQS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tWNnzoxiQS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #113371;
}
.cid-tWNnzoxiQS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tWNnzoxiQS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tWNnzoxiQS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tWNnzoxiQS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tWNnzoxiQS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tWNnzoxiQS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tWNnzoxiQS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tWNnzoxiQS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWNnzoxiQS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWNnzoxiQS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tWNnzoxiQS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWNnzoxiQS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tWNnzoxiQS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tWNnzoxiQS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWNnzoxiQS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tWNnzoxiQS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tWNnzoxiQS .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-tWNnzoxiQS .navbar {
    height: 70px;
  }
  .cid-tWNnzoxiQS .navbar.opened {
    height: auto;
  }
  .cid-tWNnzoxiQS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tWNnzr6uAf {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tWNnzr6uAf .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tWNnzr6uAf .row {
  flex-direction: row-reverse;
}
.cid-tWNnzr6uAf img {
  width: 100%;
}
.cid-tWNnzv8oFP {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWNnzv8oFP .mbr-section-title {
  color: #bbbbbb;
  text-align: center;
}
.cid-tWNnzv8oFP .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-tWNnzv8oFP .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-tWNnzzeedB {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWNnzzeedB .mbr-section-title {
  color: #ff0000;
  text-align: center;
}
.cid-tWNnzzeedB .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-tWNnzCWaSJ {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWNnzCWaSJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWNnzCWaSJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWNnzCWaSJ .video-wrapper iframe {
  width: 100%;
}
.cid-tWNnzCWaSJ .mbr-section-title,
.cid-tWNnzCWaSJ .mbr-section-subtitle,
.cid-tWNnzCWaSJ .mbr-text {
  text-align: center;
}
.cid-tWNo0uDqpV {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWNo0uDqpV .mbr-section-title {
  color: #ff0000;
  text-align: center;
}
.cid-tWNo0uDqpV .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-tWNod8d66j {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWNod8d66j .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWNod8d66j .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWNod8d66j .video-wrapper iframe {
  width: 100%;
}
.cid-tWNod8d66j .mbr-section-title,
.cid-tWNod8d66j .mbr-section-subtitle,
.cid-tWNod8d66j .mbr-text {
  text-align: center;
}
.cid-tWNoleDlsX {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-tWNoleDlsX .mbr-section-title {
  color: #ff0000;
  text-align: center;
}
.cid-tWNoleDlsX .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-tWNnzGEV3p {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #113371;
}
.cid-tWNnzGEV3p .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tWNnzGEV3p .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tWNnzGEV3p .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tWNnzGEV3p .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tWNnzGEV3p .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tWNnzGEV3p .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tWNnzGEV3p .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tWNnzGEV3p .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tWNnzGEV3p .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tWNnzGEV3p .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tWNnzGEV3p .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tWNnzGEV3p .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tWNnzGEV3p .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tWNnzGEV3p .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tWOoslXBJZ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tWOoslXBJZ nav.navbar {
  position: fixed;
}
.cid-tWOoslXBJZ .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-tWOoslXBJZ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tWOoslXBJZ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tWOoslXBJZ .dropdown-item:hover,
.cid-tWOoslXBJZ .dropdown-item:focus {
  background: #ff0000 !important;
  color: white !important;
}
.cid-tWOoslXBJZ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tWOoslXBJZ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tWOoslXBJZ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tWOoslXBJZ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tWOoslXBJZ .nav-link {
  position: relative;
}
.cid-tWOoslXBJZ .container {
  display: flex;
  margin: auto;
}
.cid-tWOoslXBJZ .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tWOoslXBJZ .dropdown-menu,
.cid-tWOoslXBJZ .navbar.opened {
  background: #113371 !important;
}
.cid-tWOoslXBJZ .nav-item:focus,
.cid-tWOoslXBJZ .nav-link:focus {
  outline: none;
}
.cid-tWOoslXBJZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tWOoslXBJZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tWOoslXBJZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tWOoslXBJZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tWOoslXBJZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tWOoslXBJZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tWOoslXBJZ .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: #113371;
}
.cid-tWOoslXBJZ .navbar.opened {
  transition: all 0.3s;
}
.cid-tWOoslXBJZ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tWOoslXBJZ .navbar .navbar-logo img {
  width: auto;
}
.cid-tWOoslXBJZ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tWOoslXBJZ .navbar.collapsed {
  justify-content: center;
}
.cid-tWOoslXBJZ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tWOoslXBJZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tWOoslXBJZ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.4rem);
  }
}
.cid-tWOoslXBJZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tWOoslXBJZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tWOoslXBJZ .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-tWOoslXBJZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tWOoslXBJZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tWOoslXBJZ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tWOoslXBJZ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tWOoslXBJZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tWOoslXBJZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tWOoslXBJZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tWOoslXBJZ .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-tWOoslXBJZ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tWOoslXBJZ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tWOoslXBJZ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tWOoslXBJZ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tWOoslXBJZ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tWOoslXBJZ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tWOoslXBJZ .navbar.navbar-short {
  min-height: 60px;
}
.cid-tWOoslXBJZ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tWOoslXBJZ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tWOoslXBJZ .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-tWOoslXBJZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tWOoslXBJZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tWOoslXBJZ .dropdown-item.active,
.cid-tWOoslXBJZ .dropdown-item:active {
  background-color: transparent;
}
.cid-tWOoslXBJZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tWOoslXBJZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tWOoslXBJZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tWOoslXBJZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #113371;
}
.cid-tWOoslXBJZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tWOoslXBJZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tWOoslXBJZ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tWOoslXBJZ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tWOoslXBJZ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tWOoslXBJZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tWOoslXBJZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tWOoslXBJZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWOoslXBJZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWOoslXBJZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tWOoslXBJZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWOoslXBJZ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tWOoslXBJZ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tWOoslXBJZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWOoslXBJZ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tWOoslXBJZ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tWOoslXBJZ .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-tWOoslXBJZ .navbar {
    height: 70px;
  }
  .cid-tWOoslXBJZ .navbar.opened {
    height: auto;
  }
  .cid-tWOoslXBJZ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tWOoso97lo {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tWOoso97lo .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tWOoso97lo .row {
  flex-direction: row-reverse;
}
.cid-tWOoso97lo img {
  width: 100%;
}
.cid-tWOosrE2Ff {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWOosrE2Ff .mbr-section-title {
  color: #bbbbbb;
  text-align: center;
}
.cid-tWOosrE2Ff .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-tWOosrE2Ff .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-tWOosv5zfD {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWOosv5zfD .mbr-section-title {
  color: #ff0000;
  text-align: center;
}
.cid-tWOosv5zfD .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-tWOosyvRcq {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tWOosyvRcq .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWOosyvRcq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWOosyvRcq .video-wrapper iframe {
  width: 100%;
}
.cid-tWOosyvRcq .mbr-section-title,
.cid-tWOosyvRcq .mbr-section-subtitle,
.cid-tWOosyvRcq .mbr-text {
  text-align: center;
}
.cid-tWOoGluyBO {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tWOoGluyBO .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWOoGluyBO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWOoGluyBO .item {
  padding-bottom: 2rem;
}
.cid-tWOoGluyBO .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tWOoGluyBO .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tWOoGluyBO .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tWOoGluyBO .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tWOoGluyBO .carousel-control,
.cid-tWOoGluyBO .close {
  background: #1b1b1b;
}
.cid-tWOoGluyBO .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tWOoGluyBO .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tWOoGluyBO .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tWOoGluyBO .carousel-control-next span {
  margin-left: 5px;
}
.cid-tWOoGluyBO .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tWOoGluyBO .close::before {
  content: '\e91a';
}
.cid-tWOoGluyBO .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tWOoGluyBO .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tWOoGluyBO .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tWOoGluyBO .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tWOoGluyBO .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tWOoGluyBO .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tWOoGluyBO .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tWOoGluyBO .carousel-indicators li.active,
.cid-tWOoGluyBO .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tWOoGluyBO .carousel-indicators li::after,
.cid-tWOoGluyBO .carousel-indicators li::before {
  content: none;
}
.cid-tWOoGluyBO .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tWOoGluyBO .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tWOoGluyBO .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tWOoGluyBO .carousel-indicators {
    display: none;
  }
}
.cid-tWOoGluyBO .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tWOoGluyBO .carousel-inner > .active {
  display: block;
}
.cid-tWOoGluyBO .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tWOoGluyBO .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tWOoGluyBO .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tWOoGluyBO .carousel-control,
  .cid-tWOoGluyBO .carousel-indicators,
  .cid-tWOoGluyBO .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tWOoGluyBO .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tWOoGluyBO .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tWOoGluyBO .carousel-indicators .active,
.cid-tWOoGluyBO .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tWOoGluyBO .carousel-indicators .active {
  background: #fff;
}
.cid-tWOoGluyBO .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tWOoGluyBO .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tWOoGluyBO .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tWOoGluyBO .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tWOoGluyBO .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tWOoGluyBO .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tWOoGluyBO .carousel {
  width: 100%;
}
.cid-tWOoGluyBO .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tWOoGluyBO .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tWOoGluyBO .modal.fade .modal-dialog,
.cid-tWOoGluyBO .modal.in .modal-dialog {
  transform: none;
}
.cid-tWOoGluyBO .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tWOoGluyBO H6 {
  text-align: center;
}
.cid-tWOosBVMUe {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #113371;
}
.cid-tWOosBVMUe .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tWOosBVMUe .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tWOosBVMUe .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tWOosBVMUe .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tWOosBVMUe .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tWOosBVMUe .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tWOosBVMUe .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tWOosBVMUe .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tWOosBVMUe .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tWOosBVMUe .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tWOosBVMUe .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tWOosBVMUe .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tWOosBVMUe .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tWOosBVMUe .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tWOrH38Mkz {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tWOrH38Mkz nav.navbar {
  position: fixed;
}
.cid-tWOrH38Mkz .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-tWOrH38Mkz .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tWOrH38Mkz .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tWOrH38Mkz .dropdown-item:hover,
.cid-tWOrH38Mkz .dropdown-item:focus {
  background: #ff0000 !important;
  color: white !important;
}
.cid-tWOrH38Mkz .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tWOrH38Mkz .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tWOrH38Mkz .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tWOrH38Mkz .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tWOrH38Mkz .nav-link {
  position: relative;
}
.cid-tWOrH38Mkz .container {
  display: flex;
  margin: auto;
}
.cid-tWOrH38Mkz .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tWOrH38Mkz .dropdown-menu,
.cid-tWOrH38Mkz .navbar.opened {
  background: #113371 !important;
}
.cid-tWOrH38Mkz .nav-item:focus,
.cid-tWOrH38Mkz .nav-link:focus {
  outline: none;
}
.cid-tWOrH38Mkz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tWOrH38Mkz .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tWOrH38Mkz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tWOrH38Mkz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tWOrH38Mkz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tWOrH38Mkz .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tWOrH38Mkz .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: #113371;
}
.cid-tWOrH38Mkz .navbar.opened {
  transition: all 0.3s;
}
.cid-tWOrH38Mkz .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tWOrH38Mkz .navbar .navbar-logo img {
  width: auto;
}
.cid-tWOrH38Mkz .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tWOrH38Mkz .navbar.collapsed {
  justify-content: center;
}
.cid-tWOrH38Mkz .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tWOrH38Mkz .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tWOrH38Mkz .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.4rem);
  }
}
.cid-tWOrH38Mkz .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tWOrH38Mkz .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tWOrH38Mkz .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-tWOrH38Mkz .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tWOrH38Mkz .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tWOrH38Mkz .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tWOrH38Mkz .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tWOrH38Mkz .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tWOrH38Mkz .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tWOrH38Mkz .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tWOrH38Mkz .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-tWOrH38Mkz .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tWOrH38Mkz .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tWOrH38Mkz .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tWOrH38Mkz .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tWOrH38Mkz .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tWOrH38Mkz .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tWOrH38Mkz .navbar.navbar-short {
  min-height: 60px;
}
.cid-tWOrH38Mkz .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tWOrH38Mkz .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tWOrH38Mkz .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-tWOrH38Mkz .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tWOrH38Mkz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tWOrH38Mkz .dropdown-item.active,
.cid-tWOrH38Mkz .dropdown-item:active {
  background-color: transparent;
}
.cid-tWOrH38Mkz .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tWOrH38Mkz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tWOrH38Mkz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tWOrH38Mkz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #113371;
}
.cid-tWOrH38Mkz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tWOrH38Mkz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tWOrH38Mkz ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tWOrH38Mkz .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tWOrH38Mkz button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tWOrH38Mkz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tWOrH38Mkz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tWOrH38Mkz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWOrH38Mkz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWOrH38Mkz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tWOrH38Mkz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWOrH38Mkz nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tWOrH38Mkz nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tWOrH38Mkz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWOrH38Mkz .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tWOrH38Mkz a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tWOrH38Mkz .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-tWOrH38Mkz .navbar {
    height: 70px;
  }
  .cid-tWOrH38Mkz .navbar.opened {
    height: auto;
  }
  .cid-tWOrH38Mkz .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tWOrH5xHCv {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tWOrH5xHCv .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tWOrH5xHCv .row {
  flex-direction: row-reverse;
}
.cid-tWOrH5xHCv img {
  width: 100%;
}
.cid-tWOrH96NUT {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWOrH96NUT .mbr-section-title {
  color: #bbbbbb;
  text-align: center;
}
.cid-tWOrH96NUT .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-tWOrH96NUT .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-tWOLTW9zEk {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWOLTW9zEk .mbr-section-title {
  color: #ff0000;
  text-align: center;
}
.cid-tWOLTW9zEk .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-tWOrHgpMmh {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tWOrHgpMmh .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWOrHgpMmh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWOrHgpMmh .video-wrapper iframe {
  width: 100%;
}
.cid-tWOrHgpMmh .mbr-section-title,
.cid-tWOrHgpMmh .mbr-section-subtitle,
.cid-tWOrHgpMmh .mbr-text {
  text-align: center;
}
.cid-tWOrHjYQAD {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tWOrHjYQAD .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWOrHjYQAD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWOrHjYQAD .item {
  padding-bottom: 2rem;
}
.cid-tWOrHjYQAD .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tWOrHjYQAD .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tWOrHjYQAD .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tWOrHjYQAD .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tWOrHjYQAD .carousel-control,
.cid-tWOrHjYQAD .close {
  background: #1b1b1b;
}
.cid-tWOrHjYQAD .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tWOrHjYQAD .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tWOrHjYQAD .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tWOrHjYQAD .carousel-control-next span {
  margin-left: 5px;
}
.cid-tWOrHjYQAD .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tWOrHjYQAD .close::before {
  content: '\e91a';
}
.cid-tWOrHjYQAD .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tWOrHjYQAD .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tWOrHjYQAD .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tWOrHjYQAD .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tWOrHjYQAD .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tWOrHjYQAD .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tWOrHjYQAD .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tWOrHjYQAD .carousel-indicators li.active,
.cid-tWOrHjYQAD .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tWOrHjYQAD .carousel-indicators li::after,
.cid-tWOrHjYQAD .carousel-indicators li::before {
  content: none;
}
.cid-tWOrHjYQAD .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tWOrHjYQAD .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tWOrHjYQAD .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tWOrHjYQAD .carousel-indicators {
    display: none;
  }
}
.cid-tWOrHjYQAD .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tWOrHjYQAD .carousel-inner > .active {
  display: block;
}
.cid-tWOrHjYQAD .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tWOrHjYQAD .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tWOrHjYQAD .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tWOrHjYQAD .carousel-control,
  .cid-tWOrHjYQAD .carousel-indicators,
  .cid-tWOrHjYQAD .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tWOrHjYQAD .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tWOrHjYQAD .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tWOrHjYQAD .carousel-indicators .active,
.cid-tWOrHjYQAD .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tWOrHjYQAD .carousel-indicators .active {
  background: #fff;
}
.cid-tWOrHjYQAD .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tWOrHjYQAD .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tWOrHjYQAD .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tWOrHjYQAD .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tWOrHjYQAD .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tWOrHjYQAD .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tWOrHjYQAD .carousel {
  width: 100%;
}
.cid-tWOrHjYQAD .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tWOrHjYQAD .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tWOrHjYQAD .modal.fade .modal-dialog,
.cid-tWOrHjYQAD .modal.in .modal-dialog {
  transform: none;
}
.cid-tWOrHjYQAD .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tWOrHjYQAD H6 {
  text-align: center;
}
.cid-tWOrHqC5MJ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #113371;
}
.cid-tWOrHqC5MJ .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tWOrHqC5MJ .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tWOrHqC5MJ .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tWOrHqC5MJ .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tWOrHqC5MJ .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tWOrHqC5MJ .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tWOrHqC5MJ .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tWOrHqC5MJ .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tWOrHqC5MJ .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tWOrHqC5MJ .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tWOrHqC5MJ .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tWOrHqC5MJ .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tWOrHqC5MJ .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tWOrHqC5MJ .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tWOMqARMGf {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tWOMqARMGf nav.navbar {
  position: fixed;
}
.cid-tWOMqARMGf .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-tWOMqARMGf .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tWOMqARMGf .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tWOMqARMGf .dropdown-item:hover,
.cid-tWOMqARMGf .dropdown-item:focus {
  background: #ff0000 !important;
  color: white !important;
}
.cid-tWOMqARMGf .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tWOMqARMGf .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tWOMqARMGf .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tWOMqARMGf .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tWOMqARMGf .nav-link {
  position: relative;
}
.cid-tWOMqARMGf .container {
  display: flex;
  margin: auto;
}
.cid-tWOMqARMGf .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tWOMqARMGf .dropdown-menu,
.cid-tWOMqARMGf .navbar.opened {
  background: #113371 !important;
}
.cid-tWOMqARMGf .nav-item:focus,
.cid-tWOMqARMGf .nav-link:focus {
  outline: none;
}
.cid-tWOMqARMGf .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tWOMqARMGf .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tWOMqARMGf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tWOMqARMGf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tWOMqARMGf .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tWOMqARMGf .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tWOMqARMGf .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: #113371;
}
.cid-tWOMqARMGf .navbar.opened {
  transition: all 0.3s;
}
.cid-tWOMqARMGf .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tWOMqARMGf .navbar .navbar-logo img {
  width: auto;
}
.cid-tWOMqARMGf .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tWOMqARMGf .navbar.collapsed {
  justify-content: center;
}
.cid-tWOMqARMGf .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tWOMqARMGf .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tWOMqARMGf .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.4rem);
  }
}
.cid-tWOMqARMGf .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tWOMqARMGf .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tWOMqARMGf .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-tWOMqARMGf .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tWOMqARMGf .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tWOMqARMGf .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tWOMqARMGf .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tWOMqARMGf .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tWOMqARMGf .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tWOMqARMGf .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tWOMqARMGf .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-tWOMqARMGf .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tWOMqARMGf .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tWOMqARMGf .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tWOMqARMGf .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tWOMqARMGf .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tWOMqARMGf .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tWOMqARMGf .navbar.navbar-short {
  min-height: 60px;
}
.cid-tWOMqARMGf .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tWOMqARMGf .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tWOMqARMGf .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-tWOMqARMGf .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tWOMqARMGf .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tWOMqARMGf .dropdown-item.active,
.cid-tWOMqARMGf .dropdown-item:active {
  background-color: transparent;
}
.cid-tWOMqARMGf .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tWOMqARMGf .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tWOMqARMGf .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tWOMqARMGf .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #113371;
}
.cid-tWOMqARMGf .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tWOMqARMGf .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tWOMqARMGf ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tWOMqARMGf .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tWOMqARMGf button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tWOMqARMGf button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tWOMqARMGf button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tWOMqARMGf button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWOMqARMGf button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWOMqARMGf button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tWOMqARMGf nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWOMqARMGf nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tWOMqARMGf nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tWOMqARMGf nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWOMqARMGf .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tWOMqARMGf a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tWOMqARMGf .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-tWOMqARMGf .navbar {
    height: 70px;
  }
  .cid-tWOMqARMGf .navbar.opened {
    height: auto;
  }
  .cid-tWOMqARMGf .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tWOMqDMRRI {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tWOMqDMRRI .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tWOMqDMRRI .row {
  flex-direction: row-reverse;
}
.cid-tWOMqDMRRI img {
  width: 100%;
}
.cid-tWOMqIDP6Y {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWOMqIDP6Y .mbr-section-title {
  color: #bbbbbb;
  text-align: center;
}
.cid-tWOMqIDP6Y .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-tWOMqIDP6Y .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-tWOMqMZfDD {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWOMqMZfDD .mbr-section-title {
  color: #ff0000;
  text-align: center;
}
.cid-tWOMqMZfDD .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-tWP8FF8yNS {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWP8FF8yNS .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWP8FF8yNS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tWP8FF8yNS .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tWP8FF8yNS img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tWP8FF8yNS .text-wrapper {
    padding: 2rem;
  }
}
.cid-tWP8GkOt8U {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWP8GkOt8U .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWP8GkOt8U .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tWP8GkOt8U .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tWP8GkOt8U .row {
  flex-direction: row-reverse;
}
.cid-tWP8GkOt8U img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tWP8GkOt8U .text-wrapper {
    padding: 2rem;
  }
}
.cid-tWPbbdxlw8 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWPbbdxlw8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWPbbdxlw8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tWPbbdxlw8 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tWPbbdxlw8 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tWPbbdxlw8 .text-wrapper {
    padding: 2rem;
  }
}
.cid-tWPbbTnIEK {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWPbbTnIEK .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWPbbTnIEK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tWPbbTnIEK .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tWPbbTnIEK .row {
  flex-direction: row-reverse;
}
.cid-tWPbbTnIEK img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tWPbbTnIEK .text-wrapper {
    padding: 2rem;
  }
}
.cid-tWPcN2iWu5 {
  padding-top: 2rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tWPcN2iWu5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWPcN2iWu5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWPcN2iWu5 .item {
  padding-bottom: 2rem;
}
.cid-tWPcN2iWu5 .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tWPcN2iWu5 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tWPcN2iWu5 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tWPcN2iWu5 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tWPcN2iWu5 .carousel-control,
.cid-tWPcN2iWu5 .close {
  background: #1b1b1b;
}
.cid-tWPcN2iWu5 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tWPcN2iWu5 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tWPcN2iWu5 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tWPcN2iWu5 .carousel-control-next span {
  margin-left: 5px;
}
.cid-tWPcN2iWu5 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tWPcN2iWu5 .close::before {
  content: '\e91a';
}
.cid-tWPcN2iWu5 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tWPcN2iWu5 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tWPcN2iWu5 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tWPcN2iWu5 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tWPcN2iWu5 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tWPcN2iWu5 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tWPcN2iWu5 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tWPcN2iWu5 .carousel-indicators li.active,
.cid-tWPcN2iWu5 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tWPcN2iWu5 .carousel-indicators li::after,
.cid-tWPcN2iWu5 .carousel-indicators li::before {
  content: none;
}
.cid-tWPcN2iWu5 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tWPcN2iWu5 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tWPcN2iWu5 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tWPcN2iWu5 .carousel-indicators {
    display: none;
  }
}
.cid-tWPcN2iWu5 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tWPcN2iWu5 .carousel-inner > .active {
  display: block;
}
.cid-tWPcN2iWu5 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tWPcN2iWu5 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tWPcN2iWu5 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tWPcN2iWu5 .carousel-control,
  .cid-tWPcN2iWu5 .carousel-indicators,
  .cid-tWPcN2iWu5 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tWPcN2iWu5 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tWPcN2iWu5 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tWPcN2iWu5 .carousel-indicators .active,
.cid-tWPcN2iWu5 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tWPcN2iWu5 .carousel-indicators .active {
  background: #fff;
}
.cid-tWPcN2iWu5 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tWPcN2iWu5 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tWPcN2iWu5 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tWPcN2iWu5 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tWPcN2iWu5 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tWPcN2iWu5 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tWPcN2iWu5 .carousel {
  width: 100%;
}
.cid-tWPcN2iWu5 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tWPcN2iWu5 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tWPcN2iWu5 .modal.fade .modal-dialog,
.cid-tWPcN2iWu5 .modal.in .modal-dialog {
  transform: none;
}
.cid-tWPcN2iWu5 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tWPcN2iWu5 H6 {
  text-align: center;
}
.cid-tWOMr85U22 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #113371;
}
.cid-tWOMr85U22 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tWOMr85U22 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tWOMr85U22 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tWOMr85U22 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tWOMr85U22 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tWOMr85U22 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tWOMr85U22 .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tWOMr85U22 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tWOMr85U22 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tWOMr85U22 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tWOMr85U22 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tWOMr85U22 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tWOMr85U22 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tWOMr85U22 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tWONHtPIcR {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tWONHtPIcR nav.navbar {
  position: fixed;
}
.cid-tWONHtPIcR .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-tWONHtPIcR .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tWONHtPIcR .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tWONHtPIcR .dropdown-item:hover,
.cid-tWONHtPIcR .dropdown-item:focus {
  background: #ff0000 !important;
  color: white !important;
}
.cid-tWONHtPIcR .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tWONHtPIcR .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tWONHtPIcR .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tWONHtPIcR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tWONHtPIcR .nav-link {
  position: relative;
}
.cid-tWONHtPIcR .container {
  display: flex;
  margin: auto;
}
.cid-tWONHtPIcR .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tWONHtPIcR .dropdown-menu,
.cid-tWONHtPIcR .navbar.opened {
  background: #113371 !important;
}
.cid-tWONHtPIcR .nav-item:focus,
.cid-tWONHtPIcR .nav-link:focus {
  outline: none;
}
.cid-tWONHtPIcR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tWONHtPIcR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tWONHtPIcR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tWONHtPIcR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tWONHtPIcR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tWONHtPIcR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tWONHtPIcR .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: #113371;
}
.cid-tWONHtPIcR .navbar.opened {
  transition: all 0.3s;
}
.cid-tWONHtPIcR .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tWONHtPIcR .navbar .navbar-logo img {
  width: auto;
}
.cid-tWONHtPIcR .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tWONHtPIcR .navbar.collapsed {
  justify-content: center;
}
.cid-tWONHtPIcR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tWONHtPIcR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tWONHtPIcR .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.4rem);
  }
}
.cid-tWONHtPIcR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tWONHtPIcR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tWONHtPIcR .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-tWONHtPIcR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tWONHtPIcR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tWONHtPIcR .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tWONHtPIcR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tWONHtPIcR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tWONHtPIcR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tWONHtPIcR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tWONHtPIcR .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-tWONHtPIcR .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tWONHtPIcR .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tWONHtPIcR .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tWONHtPIcR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tWONHtPIcR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tWONHtPIcR .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tWONHtPIcR .navbar.navbar-short {
  min-height: 60px;
}
.cid-tWONHtPIcR .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tWONHtPIcR .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tWONHtPIcR .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-tWONHtPIcR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tWONHtPIcR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tWONHtPIcR .dropdown-item.active,
.cid-tWONHtPIcR .dropdown-item:active {
  background-color: transparent;
}
.cid-tWONHtPIcR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tWONHtPIcR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tWONHtPIcR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tWONHtPIcR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #113371;
}
.cid-tWONHtPIcR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tWONHtPIcR .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tWONHtPIcR ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tWONHtPIcR .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tWONHtPIcR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tWONHtPIcR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tWONHtPIcR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tWONHtPIcR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWONHtPIcR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWONHtPIcR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tWONHtPIcR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWONHtPIcR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tWONHtPIcR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tWONHtPIcR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWONHtPIcR .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tWONHtPIcR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tWONHtPIcR .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-tWONHtPIcR .navbar {
    height: 70px;
  }
  .cid-tWONHtPIcR .navbar.opened {
    height: auto;
  }
  .cid-tWONHtPIcR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tWONHwTbgu {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tWONHwTbgu .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tWONHwTbgu .row {
  flex-direction: row-reverse;
}
.cid-tWONHwTbgu img {
  width: 100%;
}
.cid-tWONHBiXhR {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWONHBiXhR .mbr-section-title {
  color: #bbbbbb;
  text-align: center;
}
.cid-tWONHBiXhR .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-tWONHBiXhR .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-tWONHFA1gE {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWONHFA1gE .mbr-section-title {
  color: #ff0000;
  text-align: center;
}
.cid-tWONHFA1gE .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-tWONHOinbt {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tWONHOinbt .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWONHOinbt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWONHOinbt .item {
  padding-bottom: 2rem;
}
.cid-tWONHOinbt .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tWONHOinbt .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tWONHOinbt .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tWONHOinbt .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tWONHOinbt .carousel-control,
.cid-tWONHOinbt .close {
  background: #1b1b1b;
}
.cid-tWONHOinbt .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tWONHOinbt .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tWONHOinbt .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tWONHOinbt .carousel-control-next span {
  margin-left: 5px;
}
.cid-tWONHOinbt .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tWONHOinbt .close::before {
  content: '\e91a';
}
.cid-tWONHOinbt .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tWONHOinbt .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tWONHOinbt .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tWONHOinbt .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tWONHOinbt .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tWONHOinbt .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tWONHOinbt .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tWONHOinbt .carousel-indicators li.active,
.cid-tWONHOinbt .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tWONHOinbt .carousel-indicators li::after,
.cid-tWONHOinbt .carousel-indicators li::before {
  content: none;
}
.cid-tWONHOinbt .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tWONHOinbt .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tWONHOinbt .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tWONHOinbt .carousel-indicators {
    display: none;
  }
}
.cid-tWONHOinbt .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tWONHOinbt .carousel-inner > .active {
  display: block;
}
.cid-tWONHOinbt .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tWONHOinbt .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tWONHOinbt .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tWONHOinbt .carousel-control,
  .cid-tWONHOinbt .carousel-indicators,
  .cid-tWONHOinbt .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tWONHOinbt .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tWONHOinbt .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tWONHOinbt .carousel-indicators .active,
.cid-tWONHOinbt .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tWONHOinbt .carousel-indicators .active {
  background: #fff;
}
.cid-tWONHOinbt .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tWONHOinbt .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tWONHOinbt .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tWONHOinbt .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tWONHOinbt .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tWONHOinbt .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tWONHOinbt .carousel {
  width: 100%;
}
.cid-tWONHOinbt .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tWONHOinbt .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tWONHOinbt .modal.fade .modal-dialog,
.cid-tWONHOinbt .modal.in .modal-dialog {
  transform: none;
}
.cid-tWONHOinbt .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tWONHOinbt H6 {
  text-align: center;
}
.cid-tWONHZkI9d {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #113371;
}
.cid-tWONHZkI9d .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tWONHZkI9d .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tWONHZkI9d .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tWONHZkI9d .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tWONHZkI9d .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tWONHZkI9d .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tWONHZkI9d .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tWONHZkI9d .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tWONHZkI9d .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tWONHZkI9d .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tWONHZkI9d .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tWONHZkI9d .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tWONHZkI9d .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tWONHZkI9d .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tWOOVddFjQ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tWOOVddFjQ nav.navbar {
  position: fixed;
}
.cid-tWOOVddFjQ .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-tWOOVddFjQ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tWOOVddFjQ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tWOOVddFjQ .dropdown-item:hover,
.cid-tWOOVddFjQ .dropdown-item:focus {
  background: #ff0000 !important;
  color: white !important;
}
.cid-tWOOVddFjQ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tWOOVddFjQ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tWOOVddFjQ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tWOOVddFjQ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tWOOVddFjQ .nav-link {
  position: relative;
}
.cid-tWOOVddFjQ .container {
  display: flex;
  margin: auto;
}
.cid-tWOOVddFjQ .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tWOOVddFjQ .dropdown-menu,
.cid-tWOOVddFjQ .navbar.opened {
  background: #113371 !important;
}
.cid-tWOOVddFjQ .nav-item:focus,
.cid-tWOOVddFjQ .nav-link:focus {
  outline: none;
}
.cid-tWOOVddFjQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tWOOVddFjQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tWOOVddFjQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tWOOVddFjQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tWOOVddFjQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tWOOVddFjQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tWOOVddFjQ .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: #113371;
}
.cid-tWOOVddFjQ .navbar.opened {
  transition: all 0.3s;
}
.cid-tWOOVddFjQ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tWOOVddFjQ .navbar .navbar-logo img {
  width: auto;
}
.cid-tWOOVddFjQ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tWOOVddFjQ .navbar.collapsed {
  justify-content: center;
}
.cid-tWOOVddFjQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tWOOVddFjQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tWOOVddFjQ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.4rem);
  }
}
.cid-tWOOVddFjQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tWOOVddFjQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tWOOVddFjQ .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-tWOOVddFjQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tWOOVddFjQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tWOOVddFjQ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tWOOVddFjQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tWOOVddFjQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tWOOVddFjQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tWOOVddFjQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tWOOVddFjQ .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-tWOOVddFjQ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tWOOVddFjQ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tWOOVddFjQ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tWOOVddFjQ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tWOOVddFjQ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tWOOVddFjQ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tWOOVddFjQ .navbar.navbar-short {
  min-height: 60px;
}
.cid-tWOOVddFjQ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tWOOVddFjQ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tWOOVddFjQ .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-tWOOVddFjQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tWOOVddFjQ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tWOOVddFjQ .dropdown-item.active,
.cid-tWOOVddFjQ .dropdown-item:active {
  background-color: transparent;
}
.cid-tWOOVddFjQ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tWOOVddFjQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tWOOVddFjQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tWOOVddFjQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #113371;
}
.cid-tWOOVddFjQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tWOOVddFjQ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tWOOVddFjQ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tWOOVddFjQ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tWOOVddFjQ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tWOOVddFjQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tWOOVddFjQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tWOOVddFjQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWOOVddFjQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWOOVddFjQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tWOOVddFjQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWOOVddFjQ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tWOOVddFjQ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tWOOVddFjQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWOOVddFjQ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tWOOVddFjQ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tWOOVddFjQ .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-tWOOVddFjQ .navbar {
    height: 70px;
  }
  .cid-tWOOVddFjQ .navbar.opened {
    height: auto;
  }
  .cid-tWOOVddFjQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tWOOVg7R0v {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tWOOVg7R0v .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tWOOVg7R0v .row {
  flex-direction: row-reverse;
}
.cid-tWOOVg7R0v img {
  width: 100%;
}
.cid-tWOOVkanhs {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWOOVkanhs .mbr-section-title {
  color: #bbbbbb;
  text-align: center;
}
.cid-tWOOVkanhs .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-tWOOVkanhs .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-tWOOVokd2A {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWOOVokd2A .mbr-section-title {
  color: #ff0000;
  text-align: center;
}
.cid-tWOOVokd2A .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-tWOOVsvGKD {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tWOOVsvGKD .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWOOVsvGKD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWOOVsvGKD .item {
  padding-bottom: 2rem;
}
.cid-tWOOVsvGKD .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tWOOVsvGKD .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tWOOVsvGKD .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tWOOVsvGKD .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tWOOVsvGKD .carousel-control,
.cid-tWOOVsvGKD .close {
  background: #1b1b1b;
}
.cid-tWOOVsvGKD .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tWOOVsvGKD .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tWOOVsvGKD .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tWOOVsvGKD .carousel-control-next span {
  margin-left: 5px;
}
.cid-tWOOVsvGKD .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tWOOVsvGKD .close::before {
  content: '\e91a';
}
.cid-tWOOVsvGKD .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tWOOVsvGKD .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tWOOVsvGKD .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tWOOVsvGKD .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tWOOVsvGKD .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tWOOVsvGKD .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tWOOVsvGKD .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tWOOVsvGKD .carousel-indicators li.active,
.cid-tWOOVsvGKD .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tWOOVsvGKD .carousel-indicators li::after,
.cid-tWOOVsvGKD .carousel-indicators li::before {
  content: none;
}
.cid-tWOOVsvGKD .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tWOOVsvGKD .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tWOOVsvGKD .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tWOOVsvGKD .carousel-indicators {
    display: none;
  }
}
.cid-tWOOVsvGKD .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tWOOVsvGKD .carousel-inner > .active {
  display: block;
}
.cid-tWOOVsvGKD .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tWOOVsvGKD .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tWOOVsvGKD .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tWOOVsvGKD .carousel-control,
  .cid-tWOOVsvGKD .carousel-indicators,
  .cid-tWOOVsvGKD .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tWOOVsvGKD .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tWOOVsvGKD .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tWOOVsvGKD .carousel-indicators .active,
.cid-tWOOVsvGKD .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tWOOVsvGKD .carousel-indicators .active {
  background: #fff;
}
.cid-tWOOVsvGKD .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tWOOVsvGKD .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tWOOVsvGKD .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tWOOVsvGKD .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tWOOVsvGKD .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tWOOVsvGKD .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tWOOVsvGKD .carousel {
  width: 100%;
}
.cid-tWOOVsvGKD .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tWOOVsvGKD .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tWOOVsvGKD .modal.fade .modal-dialog,
.cid-tWOOVsvGKD .modal.in .modal-dialog {
  transform: none;
}
.cid-tWOOVsvGKD .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tWOOVsvGKD H6 {
  text-align: center;
}
.cid-tWOOVwv9wl {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #113371;
}
.cid-tWOOVwv9wl .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tWOOVwv9wl .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tWOOVwv9wl .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tWOOVwv9wl .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tWOOVwv9wl .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tWOOVwv9wl .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tWOOVwv9wl .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tWOOVwv9wl .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tWOOVwv9wl .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tWOOVwv9wl .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tWOOVwv9wl .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tWOOVwv9wl .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tWOOVwv9wl .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tWOOVwv9wl .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tWOSrnwK4t {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tWOSrnwK4t nav.navbar {
  position: fixed;
}
.cid-tWOSrnwK4t .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-tWOSrnwK4t .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tWOSrnwK4t .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tWOSrnwK4t .dropdown-item:hover,
.cid-tWOSrnwK4t .dropdown-item:focus {
  background: #ff0000 !important;
  color: white !important;
}
.cid-tWOSrnwK4t .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tWOSrnwK4t .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tWOSrnwK4t .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tWOSrnwK4t .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tWOSrnwK4t .nav-link {
  position: relative;
}
.cid-tWOSrnwK4t .container {
  display: flex;
  margin: auto;
}
.cid-tWOSrnwK4t .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tWOSrnwK4t .dropdown-menu,
.cid-tWOSrnwK4t .navbar.opened {
  background: #113371 !important;
}
.cid-tWOSrnwK4t .nav-item:focus,
.cid-tWOSrnwK4t .nav-link:focus {
  outline: none;
}
.cid-tWOSrnwK4t .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tWOSrnwK4t .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tWOSrnwK4t .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tWOSrnwK4t .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tWOSrnwK4t .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tWOSrnwK4t .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tWOSrnwK4t .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: #113371;
}
.cid-tWOSrnwK4t .navbar.opened {
  transition: all 0.3s;
}
.cid-tWOSrnwK4t .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tWOSrnwK4t .navbar .navbar-logo img {
  width: auto;
}
.cid-tWOSrnwK4t .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tWOSrnwK4t .navbar.collapsed {
  justify-content: center;
}
.cid-tWOSrnwK4t .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tWOSrnwK4t .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tWOSrnwK4t .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.4rem);
  }
}
.cid-tWOSrnwK4t .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tWOSrnwK4t .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tWOSrnwK4t .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-tWOSrnwK4t .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tWOSrnwK4t .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tWOSrnwK4t .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tWOSrnwK4t .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tWOSrnwK4t .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tWOSrnwK4t .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tWOSrnwK4t .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tWOSrnwK4t .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-tWOSrnwK4t .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tWOSrnwK4t .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tWOSrnwK4t .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tWOSrnwK4t .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tWOSrnwK4t .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tWOSrnwK4t .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tWOSrnwK4t .navbar.navbar-short {
  min-height: 60px;
}
.cid-tWOSrnwK4t .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tWOSrnwK4t .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tWOSrnwK4t .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-tWOSrnwK4t .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tWOSrnwK4t .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tWOSrnwK4t .dropdown-item.active,
.cid-tWOSrnwK4t .dropdown-item:active {
  background-color: transparent;
}
.cid-tWOSrnwK4t .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tWOSrnwK4t .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tWOSrnwK4t .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tWOSrnwK4t .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #113371;
}
.cid-tWOSrnwK4t .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tWOSrnwK4t .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tWOSrnwK4t ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tWOSrnwK4t .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tWOSrnwK4t button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tWOSrnwK4t button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tWOSrnwK4t button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tWOSrnwK4t button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWOSrnwK4t button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWOSrnwK4t button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tWOSrnwK4t nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWOSrnwK4t nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tWOSrnwK4t nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tWOSrnwK4t nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWOSrnwK4t .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tWOSrnwK4t a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tWOSrnwK4t .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-tWOSrnwK4t .navbar {
    height: 70px;
  }
  .cid-tWOSrnwK4t .navbar.opened {
    height: auto;
  }
  .cid-tWOSrnwK4t .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tWOSrq1M5E {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tWOSrq1M5E .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tWOSrq1M5E .row {
  flex-direction: row-reverse;
}
.cid-tWOSrq1M5E img {
  width: 100%;
}
.cid-tWOSrtD2ej {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWOSrtD2ej .mbr-section-title {
  color: #bbbbbb;
  text-align: center;
}
.cid-tWOSrtD2ej .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-tWOSrtD2ej .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-tWOSrx7ZXU {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWOSrx7ZXU .mbr-section-title {
  color: #ff0000;
  text-align: center;
}
.cid-tWOSrx7ZXU .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-tWOSrAKfSb {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tWOSrAKfSb .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWOSrAKfSb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWOSrAKfSb .item {
  padding-bottom: 2rem;
}
.cid-tWOSrAKfSb .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tWOSrAKfSb .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tWOSrAKfSb .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tWOSrAKfSb .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tWOSrAKfSb .carousel-control,
.cid-tWOSrAKfSb .close {
  background: #1b1b1b;
}
.cid-tWOSrAKfSb .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tWOSrAKfSb .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tWOSrAKfSb .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tWOSrAKfSb .carousel-control-next span {
  margin-left: 5px;
}
.cid-tWOSrAKfSb .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tWOSrAKfSb .close::before {
  content: '\e91a';
}
.cid-tWOSrAKfSb .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tWOSrAKfSb .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tWOSrAKfSb .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tWOSrAKfSb .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tWOSrAKfSb .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tWOSrAKfSb .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tWOSrAKfSb .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tWOSrAKfSb .carousel-indicators li.active,
.cid-tWOSrAKfSb .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tWOSrAKfSb .carousel-indicators li::after,
.cid-tWOSrAKfSb .carousel-indicators li::before {
  content: none;
}
.cid-tWOSrAKfSb .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tWOSrAKfSb .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tWOSrAKfSb .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tWOSrAKfSb .carousel-indicators {
    display: none;
  }
}
.cid-tWOSrAKfSb .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tWOSrAKfSb .carousel-inner > .active {
  display: block;
}
.cid-tWOSrAKfSb .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tWOSrAKfSb .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tWOSrAKfSb .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tWOSrAKfSb .carousel-control,
  .cid-tWOSrAKfSb .carousel-indicators,
  .cid-tWOSrAKfSb .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tWOSrAKfSb .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tWOSrAKfSb .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tWOSrAKfSb .carousel-indicators .active,
.cid-tWOSrAKfSb .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tWOSrAKfSb .carousel-indicators .active {
  background: #fff;
}
.cid-tWOSrAKfSb .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tWOSrAKfSb .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tWOSrAKfSb .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tWOSrAKfSb .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tWOSrAKfSb .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tWOSrAKfSb .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tWOSrAKfSb .carousel {
  width: 100%;
}
.cid-tWOSrAKfSb .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tWOSrAKfSb .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tWOSrAKfSb .modal.fade .modal-dialog,
.cid-tWOSrAKfSb .modal.in .modal-dialog {
  transform: none;
}
.cid-tWOSrAKfSb .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tWOSrAKfSb H6 {
  text-align: center;
}
.cid-tWOSrInZSC {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #113371;
}
.cid-tWOSrInZSC .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tWOSrInZSC .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tWOSrInZSC .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tWOSrInZSC .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tWOSrInZSC .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tWOSrInZSC .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tWOSrInZSC .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tWOSrInZSC .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tWOSrInZSC .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tWOSrInZSC .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tWOSrInZSC .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tWOSrInZSC .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tWOSrInZSC .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tWOSrInZSC .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-u1ZfVCkDTf {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u1ZfVCkDTf nav.navbar {
  position: fixed;
}
.cid-u1ZfVCkDTf .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-u1ZfVCkDTf .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u1ZfVCkDTf .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u1ZfVCkDTf .dropdown-item:hover,
.cid-u1ZfVCkDTf .dropdown-item:focus {
  background: #ff0000 !important;
  color: white !important;
}
.cid-u1ZfVCkDTf .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u1ZfVCkDTf .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u1ZfVCkDTf .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u1ZfVCkDTf .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u1ZfVCkDTf .nav-link {
  position: relative;
}
.cid-u1ZfVCkDTf .container {
  display: flex;
  margin: auto;
}
.cid-u1ZfVCkDTf .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u1ZfVCkDTf .dropdown-menu,
.cid-u1ZfVCkDTf .navbar.opened {
  background: #113371 !important;
}
.cid-u1ZfVCkDTf .nav-item:focus,
.cid-u1ZfVCkDTf .nav-link:focus {
  outline: none;
}
.cid-u1ZfVCkDTf .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u1ZfVCkDTf .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u1ZfVCkDTf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u1ZfVCkDTf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u1ZfVCkDTf .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u1ZfVCkDTf .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u1ZfVCkDTf .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: #113371;
}
.cid-u1ZfVCkDTf .navbar.opened {
  transition: all 0.3s;
}
.cid-u1ZfVCkDTf .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u1ZfVCkDTf .navbar .navbar-logo img {
  width: auto;
}
.cid-u1ZfVCkDTf .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u1ZfVCkDTf .navbar.collapsed {
  justify-content: center;
}
.cid-u1ZfVCkDTf .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u1ZfVCkDTf .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u1ZfVCkDTf .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.4rem);
  }
}
.cid-u1ZfVCkDTf .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u1ZfVCkDTf .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u1ZfVCkDTf .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-u1ZfVCkDTf .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u1ZfVCkDTf .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u1ZfVCkDTf .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u1ZfVCkDTf .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u1ZfVCkDTf .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u1ZfVCkDTf .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u1ZfVCkDTf .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u1ZfVCkDTf .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-u1ZfVCkDTf .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u1ZfVCkDTf .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u1ZfVCkDTf .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u1ZfVCkDTf .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u1ZfVCkDTf .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u1ZfVCkDTf .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u1ZfVCkDTf .navbar.navbar-short {
  min-height: 60px;
}
.cid-u1ZfVCkDTf .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u1ZfVCkDTf .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u1ZfVCkDTf .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-u1ZfVCkDTf .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u1ZfVCkDTf .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u1ZfVCkDTf .dropdown-item.active,
.cid-u1ZfVCkDTf .dropdown-item:active {
  background-color: transparent;
}
.cid-u1ZfVCkDTf .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u1ZfVCkDTf .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u1ZfVCkDTf .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u1ZfVCkDTf .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #113371;
}
.cid-u1ZfVCkDTf .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u1ZfVCkDTf .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u1ZfVCkDTf ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u1ZfVCkDTf .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u1ZfVCkDTf button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u1ZfVCkDTf button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-u1ZfVCkDTf button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u1ZfVCkDTf button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u1ZfVCkDTf button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u1ZfVCkDTf button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u1ZfVCkDTf nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u1ZfVCkDTf nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u1ZfVCkDTf nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u1ZfVCkDTf nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u1ZfVCkDTf .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u1ZfVCkDTf a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u1ZfVCkDTf .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-u1ZfVCkDTf .navbar {
    height: 70px;
  }
  .cid-u1ZfVCkDTf .navbar.opened {
    height: auto;
  }
  .cid-u1ZfVCkDTf .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u1ZfVD8Fpc {
  padding-top: 7rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u1ZfVD8Fpc .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u1ZfVD8Fpc .row {
  flex-direction: row-reverse;
}
.cid-u1ZfVD8Fpc img {
  width: 100%;
}
.cid-u1ZfVDNOcc {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u1ZfVDNOcc .mbr-section-title {
  color: #bbbbbb;
  text-align: center;
}
.cid-u1ZfVDNOcc .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-u1ZfVDNOcc .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-u1ZfVEws32 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u1ZfVEws32 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u1ZfVEws32 .row {
  flex-direction: row-reverse;
}
.cid-u1ZfVEws32 img {
  width: 100%;
}
.cid-u1Zs66RtCM {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u1Zs66RtCM .mbr-section-title {
  color: #ff0000;
  text-align: center;
}
.cid-u1Zs66RtCM .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-u1Zs0trehT {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ff0000;
}
.cid-u1Zs0trehT .mbr-fallback-image.disabled {
  display: none;
}
.cid-u1Zs0trehT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u1Zs0trehT .mbr-text {
  color: #767676;
}
.cid-u1Zs0trehT .mbr-section-subtitle {
  color: #767676;
}
.cid-u1Zs0trehT .title .num {
  width: 100%;
  display: block;
}
.cid-u1Zs0trehT .title .card-title {
  z-index: 1;
}
.cid-u1Zs0trehT .num {
  color: #ffffff;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-u1Zs0trehT * {
    text-align: center !important;
  }
  .cid-u1Zs0trehT .content-column {
    margin-bottom: 2rem;
  }
}
.cid-u1Zs0trehT .card-title,
.cid-u1Zs0trehT .card-img {
  text-align: center;
  color: #ffffff;
}
.cid-ulgXCkJDta {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ulgXCkJDta .mbr-section-title {
  color: #ff0000;
  text-align: center;
}
.cid-ulgXCkJDta .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-ulgXDwxIus {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-ulgXDwxIus .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ulgXDwxIus .row {
  flex-direction: row-reverse;
}
.cid-ulgXDwxIus img {
  width: 100%;
}
.cid-uhdwNKl4sh {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uhdwNKl4sh .mbr-section-title {
  color: #ff0000;
  text-align: center;
}
.cid-uhdwNKl4sh .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-ulh1KtmGzU {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ulh1KtmGzU .mbr-fallback-image.disabled {
  display: none;
}
.cid-ulh1KtmGzU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ulh1KtmGzU .item {
  padding-bottom: 2rem;
}
.cid-ulh1KtmGzU .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-ulh1KtmGzU .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-ulh1KtmGzU .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-ulh1KtmGzU .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-ulh1KtmGzU .carousel-control,
.cid-ulh1KtmGzU .close {
  background: #1b1b1b;
}
.cid-ulh1KtmGzU .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-ulh1KtmGzU .carousel-control-prev span {
  margin-right: 5px;
}
.cid-ulh1KtmGzU .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-ulh1KtmGzU .carousel-control-next span {
  margin-left: 5px;
}
.cid-ulh1KtmGzU .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-ulh1KtmGzU .close::before {
  content: '\e91a';
}
.cid-ulh1KtmGzU .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-ulh1KtmGzU .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-ulh1KtmGzU .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ulh1KtmGzU .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ulh1KtmGzU .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-ulh1KtmGzU .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-ulh1KtmGzU .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-ulh1KtmGzU .carousel-indicators li.active,
.cid-ulh1KtmGzU .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-ulh1KtmGzU .carousel-indicators li::after,
.cid-ulh1KtmGzU .carousel-indicators li::before {
  content: none;
}
.cid-ulh1KtmGzU .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-ulh1KtmGzU .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-ulh1KtmGzU .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-ulh1KtmGzU .carousel-indicators {
    display: none;
  }
}
.cid-ulh1KtmGzU .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-ulh1KtmGzU .carousel-inner > .active {
  display: block;
}
.cid-ulh1KtmGzU .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ulh1KtmGzU .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-ulh1KtmGzU .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-ulh1KtmGzU .carousel-control,
  .cid-ulh1KtmGzU .carousel-indicators,
  .cid-ulh1KtmGzU .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-ulh1KtmGzU .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-ulh1KtmGzU .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-ulh1KtmGzU .carousel-indicators .active,
.cid-ulh1KtmGzU .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-ulh1KtmGzU .carousel-indicators .active {
  background: #fff;
}
.cid-ulh1KtmGzU .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-ulh1KtmGzU .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-ulh1KtmGzU .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-ulh1KtmGzU .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-ulh1KtmGzU .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-ulh1KtmGzU .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-ulh1KtmGzU .carousel {
  width: 100%;
}
.cid-ulh1KtmGzU .modal-backdrop.in {
  opacity: 0.8;
}
.cid-ulh1KtmGzU .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-ulh1KtmGzU .modal.fade .modal-dialog,
.cid-ulh1KtmGzU .modal.in .modal-dialog {
  transform: none;
}
.cid-ulh1KtmGzU .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-ulh1KtmGzU H6 {
  text-align: center;
}
.cid-ulgVgtmeEu {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ulgVgtmeEu .mbr-section-title {
  color: #ff0000;
  text-align: center;
}
.cid-ulgVgtmeEu .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-ulgVjtcTWm {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-ulgVjtcTWm .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ulgVjtcTWm .row {
  flex-direction: row-reverse;
}
.cid-ulgVjtcTWm img {
  width: 100%;
}
.cid-ulgVP40RZ7 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ulgVP40RZ7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ulgVP40RZ7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ulgVP40RZ7 .item {
  padding-bottom: 2rem;
}
.cid-ulgVP40RZ7 .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-ulgVP40RZ7 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-ulgVP40RZ7 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-ulgVP40RZ7 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-ulgVP40RZ7 .carousel-control,
.cid-ulgVP40RZ7 .close {
  background: #1b1b1b;
}
.cid-ulgVP40RZ7 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-ulgVP40RZ7 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-ulgVP40RZ7 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-ulgVP40RZ7 .carousel-control-next span {
  margin-left: 5px;
}
.cid-ulgVP40RZ7 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-ulgVP40RZ7 .close::before {
  content: '\e91a';
}
.cid-ulgVP40RZ7 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-ulgVP40RZ7 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-ulgVP40RZ7 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ulgVP40RZ7 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ulgVP40RZ7 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-ulgVP40RZ7 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-ulgVP40RZ7 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-ulgVP40RZ7 .carousel-indicators li.active,
.cid-ulgVP40RZ7 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-ulgVP40RZ7 .carousel-indicators li::after,
.cid-ulgVP40RZ7 .carousel-indicators li::before {
  content: none;
}
.cid-ulgVP40RZ7 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-ulgVP40RZ7 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-ulgVP40RZ7 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-ulgVP40RZ7 .carousel-indicators {
    display: none;
  }
}
.cid-ulgVP40RZ7 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-ulgVP40RZ7 .carousel-inner > .active {
  display: block;
}
.cid-ulgVP40RZ7 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ulgVP40RZ7 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-ulgVP40RZ7 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-ulgVP40RZ7 .carousel-control,
  .cid-ulgVP40RZ7 .carousel-indicators,
  .cid-ulgVP40RZ7 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-ulgVP40RZ7 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-ulgVP40RZ7 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-ulgVP40RZ7 .carousel-indicators .active,
.cid-ulgVP40RZ7 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-ulgVP40RZ7 .carousel-indicators .active {
  background: #fff;
}
.cid-ulgVP40RZ7 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-ulgVP40RZ7 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-ulgVP40RZ7 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-ulgVP40RZ7 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-ulgVP40RZ7 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-ulgVP40RZ7 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-ulgVP40RZ7 .carousel {
  width: 100%;
}
.cid-ulgVP40RZ7 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-ulgVP40RZ7 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-ulgVP40RZ7 .modal.fade .modal-dialog,
.cid-ulgVP40RZ7 .modal.in .modal-dialog {
  transform: none;
}
.cid-ulgVP40RZ7 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-ulgVP40RZ7 H6 {
  text-align: center;
}
.cid-uhd4oEsfGR {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uhd4oEsfGR .mbr-section-title {
  color: #ff0000;
  text-align: center;
}
.cid-uhd4oEsfGR .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-uhdwOrrAD8 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uhdwOrrAD8 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uhdwOrrAD8 .row {
  flex-direction: row-reverse;
}
.cid-uhdwOrrAD8 img {
  width: 100%;
}
.cid-uhgkFoBQjr {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uhgkFoBQjr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhgkFoBQjr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhgkFoBQjr .item {
  padding-bottom: 2rem;
}
.cid-uhgkFoBQjr .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uhgkFoBQjr .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uhgkFoBQjr .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uhgkFoBQjr .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uhgkFoBQjr .carousel-control,
.cid-uhgkFoBQjr .close {
  background: #1b1b1b;
}
.cid-uhgkFoBQjr .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uhgkFoBQjr .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uhgkFoBQjr .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uhgkFoBQjr .carousel-control-next span {
  margin-left: 5px;
}
.cid-uhgkFoBQjr .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uhgkFoBQjr .close::before {
  content: '\e91a';
}
.cid-uhgkFoBQjr .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uhgkFoBQjr .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uhgkFoBQjr .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uhgkFoBQjr .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uhgkFoBQjr .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uhgkFoBQjr .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uhgkFoBQjr .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uhgkFoBQjr .carousel-indicators li.active,
.cid-uhgkFoBQjr .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uhgkFoBQjr .carousel-indicators li::after,
.cid-uhgkFoBQjr .carousel-indicators li::before {
  content: none;
}
.cid-uhgkFoBQjr .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uhgkFoBQjr .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uhgkFoBQjr .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uhgkFoBQjr .carousel-indicators {
    display: none;
  }
}
.cid-uhgkFoBQjr .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uhgkFoBQjr .carousel-inner > .active {
  display: block;
}
.cid-uhgkFoBQjr .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uhgkFoBQjr .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uhgkFoBQjr .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uhgkFoBQjr .carousel-control,
  .cid-uhgkFoBQjr .carousel-indicators,
  .cid-uhgkFoBQjr .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uhgkFoBQjr .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uhgkFoBQjr .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uhgkFoBQjr .carousel-indicators .active,
.cid-uhgkFoBQjr .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uhgkFoBQjr .carousel-indicators .active {
  background: #fff;
}
.cid-uhgkFoBQjr .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uhgkFoBQjr .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uhgkFoBQjr .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uhgkFoBQjr .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uhgkFoBQjr .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uhgkFoBQjr .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uhgkFoBQjr .carousel {
  width: 100%;
}
.cid-uhgkFoBQjr .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uhgkFoBQjr .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uhgkFoBQjr .modal.fade .modal-dialog,
.cid-uhgkFoBQjr .modal.in .modal-dialog {
  transform: none;
}
.cid-uhgkFoBQjr .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uhgkFoBQjr H6 {
  text-align: center;
}
.cid-u1ZfVF3ZvX {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-u1ZfVF3ZvX .mbr-section-title {
  color: #ff0000;
  text-align: center;
}
.cid-u1ZfVF3ZvX .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-u1ZfVPtHs9 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #113371;
}
.cid-u1ZfVPtHs9 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-u1ZfVPtHs9 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-u1ZfVPtHs9 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-u1ZfVPtHs9 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-u1ZfVPtHs9 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-u1ZfVPtHs9 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-u1ZfVPtHs9 .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-u1ZfVPtHs9 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-u1ZfVPtHs9 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u1ZfVPtHs9 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-u1ZfVPtHs9 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u1ZfVPtHs9 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u1ZfVPtHs9 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-u1ZfVPtHs9 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-u1ZoY322lu {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u1ZoY322lu nav.navbar {
  position: fixed;
}
.cid-u1ZoY322lu .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-u1ZoY322lu .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u1ZoY322lu .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u1ZoY322lu .dropdown-item:hover,
.cid-u1ZoY322lu .dropdown-item:focus {
  background: #ff0000 !important;
  color: white !important;
}
.cid-u1ZoY322lu .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u1ZoY322lu .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u1ZoY322lu .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u1ZoY322lu .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u1ZoY322lu .nav-link {
  position: relative;
}
.cid-u1ZoY322lu .container {
  display: flex;
  margin: auto;
}
.cid-u1ZoY322lu .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u1ZoY322lu .dropdown-menu,
.cid-u1ZoY322lu .navbar.opened {
  background: #113371 !important;
}
.cid-u1ZoY322lu .nav-item:focus,
.cid-u1ZoY322lu .nav-link:focus {
  outline: none;
}
.cid-u1ZoY322lu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u1ZoY322lu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u1ZoY322lu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u1ZoY322lu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u1ZoY322lu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u1ZoY322lu .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u1ZoY322lu .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: #113371;
}
.cid-u1ZoY322lu .navbar.opened {
  transition: all 0.3s;
}
.cid-u1ZoY322lu .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u1ZoY322lu .navbar .navbar-logo img {
  width: auto;
}
.cid-u1ZoY322lu .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u1ZoY322lu .navbar.collapsed {
  justify-content: center;
}
.cid-u1ZoY322lu .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u1ZoY322lu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u1ZoY322lu .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.4rem);
  }
}
.cid-u1ZoY322lu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u1ZoY322lu .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u1ZoY322lu .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-u1ZoY322lu .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u1ZoY322lu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u1ZoY322lu .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u1ZoY322lu .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u1ZoY322lu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u1ZoY322lu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u1ZoY322lu .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u1ZoY322lu .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-u1ZoY322lu .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u1ZoY322lu .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u1ZoY322lu .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u1ZoY322lu .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u1ZoY322lu .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u1ZoY322lu .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u1ZoY322lu .navbar.navbar-short {
  min-height: 60px;
}
.cid-u1ZoY322lu .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u1ZoY322lu .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u1ZoY322lu .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-u1ZoY322lu .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u1ZoY322lu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u1ZoY322lu .dropdown-item.active,
.cid-u1ZoY322lu .dropdown-item:active {
  background-color: transparent;
}
.cid-u1ZoY322lu .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u1ZoY322lu .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u1ZoY322lu .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u1ZoY322lu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #113371;
}
.cid-u1ZoY322lu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u1ZoY322lu .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u1ZoY322lu ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u1ZoY322lu .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u1ZoY322lu button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u1ZoY322lu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-u1ZoY322lu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u1ZoY322lu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u1ZoY322lu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u1ZoY322lu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u1ZoY322lu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u1ZoY322lu nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u1ZoY322lu nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u1ZoY322lu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u1ZoY322lu .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u1ZoY322lu a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u1ZoY322lu .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-u1ZoY322lu .navbar {
    height: 70px;
  }
  .cid-u1ZoY322lu .navbar.opened {
    height: auto;
  }
  .cid-u1ZoY322lu .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u1ZoY3Rmrz {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u1ZoY3Rmrz .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u1ZoY3Rmrz .row {
  flex-direction: row-reverse;
}
.cid-u1ZoY3Rmrz img {
  width: 100%;
}
.cid-u1Zu0fJL26 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u1Zu0fJL26 .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-u1Zu0fJL26 .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-u1Zu0fJL26 .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-u1Zuls3KVe {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-u1Zuls3KVe .mbr-fallback-image.disabled {
  display: none;
}
.cid-u1Zuls3KVe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u1Zuls3KVe .text-wrapper {
  padding: 1rem;
}
@media (max-width: 991px) {
  .cid-u1Zuls3KVe .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u1Zuls3KVe img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u1Zuls3KVe .text-wrapper {
    padding: 2rem;
  }
}
.cid-u1Zuls3KVe .mbr-section-title {
  color: #ff0000;
}
.cid-u1Zuls3KVe .mbr-text {
  color: #000000;
}
.cid-u1ZoYcSxBb {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #113371;
}
.cid-u1ZoYcSxBb .row-links {
  width: 100%;
  justify-content: center;
}
.cid-u1ZoYcSxBb .social-row {
  width: 100%;
  justify-content: center;
}
.cid-u1ZoYcSxBb .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-u1ZoYcSxBb .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-u1ZoYcSxBb .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-u1ZoYcSxBb .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-u1ZoYcSxBb .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-u1ZoYcSxBb .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-u1ZoYcSxBb .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u1ZoYcSxBb .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-u1ZoYcSxBb .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u1ZoYcSxBb .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u1ZoYcSxBb .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-u1ZoYcSxBb .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-u1ZvAtPsMh {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u1ZvAtPsMh nav.navbar {
  position: fixed;
}
.cid-u1ZvAtPsMh .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-u1ZvAtPsMh .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u1ZvAtPsMh .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u1ZvAtPsMh .dropdown-item:hover,
.cid-u1ZvAtPsMh .dropdown-item:focus {
  background: #ff0000 !important;
  color: white !important;
}
.cid-u1ZvAtPsMh .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u1ZvAtPsMh .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u1ZvAtPsMh .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u1ZvAtPsMh .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u1ZvAtPsMh .nav-link {
  position: relative;
}
.cid-u1ZvAtPsMh .container {
  display: flex;
  margin: auto;
}
.cid-u1ZvAtPsMh .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u1ZvAtPsMh .dropdown-menu,
.cid-u1ZvAtPsMh .navbar.opened {
  background: #113371 !important;
}
.cid-u1ZvAtPsMh .nav-item:focus,
.cid-u1ZvAtPsMh .nav-link:focus {
  outline: none;
}
.cid-u1ZvAtPsMh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u1ZvAtPsMh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u1ZvAtPsMh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u1ZvAtPsMh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u1ZvAtPsMh .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u1ZvAtPsMh .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u1ZvAtPsMh .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: #113371;
}
.cid-u1ZvAtPsMh .navbar.opened {
  transition: all 0.3s;
}
.cid-u1ZvAtPsMh .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u1ZvAtPsMh .navbar .navbar-logo img {
  width: auto;
}
.cid-u1ZvAtPsMh .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u1ZvAtPsMh .navbar.collapsed {
  justify-content: center;
}
.cid-u1ZvAtPsMh .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u1ZvAtPsMh .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u1ZvAtPsMh .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.4rem);
  }
}
.cid-u1ZvAtPsMh .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u1ZvAtPsMh .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u1ZvAtPsMh .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-u1ZvAtPsMh .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u1ZvAtPsMh .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u1ZvAtPsMh .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u1ZvAtPsMh .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u1ZvAtPsMh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u1ZvAtPsMh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u1ZvAtPsMh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u1ZvAtPsMh .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-u1ZvAtPsMh .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u1ZvAtPsMh .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u1ZvAtPsMh .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u1ZvAtPsMh .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u1ZvAtPsMh .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u1ZvAtPsMh .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u1ZvAtPsMh .navbar.navbar-short {
  min-height: 60px;
}
.cid-u1ZvAtPsMh .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u1ZvAtPsMh .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u1ZvAtPsMh .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-u1ZvAtPsMh .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u1ZvAtPsMh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u1ZvAtPsMh .dropdown-item.active,
.cid-u1ZvAtPsMh .dropdown-item:active {
  background-color: transparent;
}
.cid-u1ZvAtPsMh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u1ZvAtPsMh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u1ZvAtPsMh .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u1ZvAtPsMh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #113371;
}
.cid-u1ZvAtPsMh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u1ZvAtPsMh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u1ZvAtPsMh ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u1ZvAtPsMh .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u1ZvAtPsMh button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u1ZvAtPsMh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-u1ZvAtPsMh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u1ZvAtPsMh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u1ZvAtPsMh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u1ZvAtPsMh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u1ZvAtPsMh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u1ZvAtPsMh nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u1ZvAtPsMh nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u1ZvAtPsMh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u1ZvAtPsMh .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u1ZvAtPsMh a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u1ZvAtPsMh .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-u1ZvAtPsMh .navbar {
    height: 70px;
  }
  .cid-u1ZvAtPsMh .navbar.opened {
    height: auto;
  }
  .cid-u1ZvAtPsMh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u1ZvAuGqav {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u1ZvAuGqav .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u1ZvAuGqav .row {
  flex-direction: row-reverse;
}
.cid-u1ZvAuGqav img {
  width: 100%;
}
.cid-u1ZvAvkpE4 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u1ZvAvkpE4 .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-u1ZvAvkpE4 .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-u1ZvAvkpE4 .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-u1ZwkL5AUs {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u1ZwkL5AUs .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u1ZwkL5AUs .row {
  flex-direction: row-reverse;
}
.cid-u1ZwkL5AUs img {
  width: 100%;
}
.cid-u26uLgUUsS {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u26uLgUUsS .mbr-section-title {
  color: #ff0000;
  text-align: center;
}
.cid-u26uLgUUsS .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-u26v1YHNtA {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u26v1YHNtA .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u26v1YHNtA .row {
  flex-direction: row-reverse;
}
.cid-u26v1YHNtA img {
  width: 100%;
}
.cid-u26tKPByQv {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-u26tKPByQv .mbr-fallback-image.disabled {
  display: none;
}
.cid-u26tKPByQv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u26tKPByQv .item {
  padding-bottom: 2rem;
}
.cid-u26tKPByQv .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-u26tKPByQv .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-u26tKPByQv .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-u26tKPByQv .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-u26tKPByQv .carousel-control,
.cid-u26tKPByQv .close {
  background: #1b1b1b;
}
.cid-u26tKPByQv .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-u26tKPByQv .carousel-control-prev span {
  margin-right: 5px;
}
.cid-u26tKPByQv .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-u26tKPByQv .carousel-control-next span {
  margin-left: 5px;
}
.cid-u26tKPByQv .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-u26tKPByQv .close::before {
  content: '\e91a';
}
.cid-u26tKPByQv .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-u26tKPByQv .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-u26tKPByQv .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u26tKPByQv .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u26tKPByQv .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-u26tKPByQv .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-u26tKPByQv .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-u26tKPByQv .carousel-indicators li.active,
.cid-u26tKPByQv .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-u26tKPByQv .carousel-indicators li::after,
.cid-u26tKPByQv .carousel-indicators li::before {
  content: none;
}
.cid-u26tKPByQv .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-u26tKPByQv .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-u26tKPByQv .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-u26tKPByQv .carousel-indicators {
    display: none;
  }
}
.cid-u26tKPByQv .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-u26tKPByQv .carousel-inner > .active {
  display: block;
}
.cid-u26tKPByQv .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u26tKPByQv .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u26tKPByQv .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-u26tKPByQv .carousel-control,
  .cid-u26tKPByQv .carousel-indicators,
  .cid-u26tKPByQv .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-u26tKPByQv .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-u26tKPByQv .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-u26tKPByQv .carousel-indicators .active,
.cid-u26tKPByQv .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-u26tKPByQv .carousel-indicators .active {
  background: #fff;
}
.cid-u26tKPByQv .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-u26tKPByQv .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-u26tKPByQv .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-u26tKPByQv .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-u26tKPByQv .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-u26tKPByQv .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-u26tKPByQv .carousel {
  width: 100%;
}
.cid-u26tKPByQv .modal-backdrop.in {
  opacity: 0.8;
}
.cid-u26tKPByQv .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-u26tKPByQv .modal.fade .modal-dialog,
.cid-u26tKPByQv .modal.in .modal-dialog {
  transform: none;
}
.cid-u26tKPByQv .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-u26tKPByQv H6 {
  text-align: center;
}
.cid-u1ZvAwUoWz {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #113371;
}
.cid-u1ZvAwUoWz .row-links {
  width: 100%;
  justify-content: center;
}
.cid-u1ZvAwUoWz .social-row {
  width: 100%;
  justify-content: center;
}
.cid-u1ZvAwUoWz .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-u1ZvAwUoWz .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-u1ZvAwUoWz .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-u1ZvAwUoWz .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-u1ZvAwUoWz .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-u1ZvAwUoWz .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-u1ZvAwUoWz .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u1ZvAwUoWz .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-u1ZvAwUoWz .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u1ZvAwUoWz .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u1ZvAwUoWz .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-u1ZvAwUoWz .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uy4oJMbxHN {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uy4oJMbxHN nav.navbar {
  position: fixed;
}
.cid-uy4oJMbxHN .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-uy4oJMbxHN .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uy4oJMbxHN .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uy4oJMbxHN .dropdown-item:hover,
.cid-uy4oJMbxHN .dropdown-item:focus {
  background: #ff0000 !important;
  color: white !important;
}
.cid-uy4oJMbxHN .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uy4oJMbxHN .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uy4oJMbxHN .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uy4oJMbxHN .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uy4oJMbxHN .nav-link {
  position: relative;
}
.cid-uy4oJMbxHN .container {
  display: flex;
  margin: auto;
}
.cid-uy4oJMbxHN .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uy4oJMbxHN .dropdown-menu,
.cid-uy4oJMbxHN .navbar.opened {
  background: #113371 !important;
}
.cid-uy4oJMbxHN .nav-item:focus,
.cid-uy4oJMbxHN .nav-link:focus {
  outline: none;
}
.cid-uy4oJMbxHN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uy4oJMbxHN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uy4oJMbxHN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uy4oJMbxHN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uy4oJMbxHN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uy4oJMbxHN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uy4oJMbxHN .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: #113371;
}
.cid-uy4oJMbxHN .navbar.opened {
  transition: all 0.3s;
}
.cid-uy4oJMbxHN .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uy4oJMbxHN .navbar .navbar-logo img {
  width: auto;
}
.cid-uy4oJMbxHN .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uy4oJMbxHN .navbar.collapsed {
  justify-content: center;
}
.cid-uy4oJMbxHN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uy4oJMbxHN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uy4oJMbxHN .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.4rem);
  }
}
.cid-uy4oJMbxHN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uy4oJMbxHN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uy4oJMbxHN .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-uy4oJMbxHN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uy4oJMbxHN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uy4oJMbxHN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uy4oJMbxHN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uy4oJMbxHN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uy4oJMbxHN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uy4oJMbxHN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uy4oJMbxHN .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-uy4oJMbxHN .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uy4oJMbxHN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uy4oJMbxHN .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uy4oJMbxHN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uy4oJMbxHN .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uy4oJMbxHN .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uy4oJMbxHN .navbar.navbar-short {
  min-height: 60px;
}
.cid-uy4oJMbxHN .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uy4oJMbxHN .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uy4oJMbxHN .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-uy4oJMbxHN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uy4oJMbxHN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uy4oJMbxHN .dropdown-item.active,
.cid-uy4oJMbxHN .dropdown-item:active {
  background-color: transparent;
}
.cid-uy4oJMbxHN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uy4oJMbxHN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uy4oJMbxHN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uy4oJMbxHN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #113371;
}
.cid-uy4oJMbxHN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uy4oJMbxHN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uy4oJMbxHN ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uy4oJMbxHN .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uy4oJMbxHN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uy4oJMbxHN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uy4oJMbxHN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uy4oJMbxHN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uy4oJMbxHN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uy4oJMbxHN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uy4oJMbxHN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uy4oJMbxHN nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uy4oJMbxHN nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uy4oJMbxHN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uy4oJMbxHN .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uy4oJMbxHN a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uy4oJMbxHN .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-uy4oJMbxHN .navbar {
    height: 70px;
  }
  .cid-uy4oJMbxHN .navbar.opened {
    height: auto;
  }
  .cid-uy4oJMbxHN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uy4oJN0TE9 {
  padding-top: 7rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uy4oJN0TE9 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uy4oJN0TE9 .row {
  flex-direction: row-reverse;
}
.cid-uy4oJN0TE9 img {
  width: 100%;
}
.cid-uy4oJNDIdo {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uy4oJNDIdo .mbr-section-title {
  color: #bbbbbb;
  text-align: center;
}
.cid-uy4oJNDIdo .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-uy4oJNDIdo .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-uy4oJOgRYE {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uy4oJOgRYE .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uy4oJOgRYE .row {
  flex-direction: row-reverse;
}
.cid-uy4oJOgRYE img {
  width: 100%;
}
.cid-uy4oJOSIFV {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uy4oJOSIFV .mbr-section-title {
  color: #ff0000;
  text-align: center;
}
.cid-uy4oJOSIFV .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-uy4oJPyvts {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ff0000;
}
.cid-uy4oJPyvts .mbr-fallback-image.disabled {
  display: none;
}
.cid-uy4oJPyvts .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uy4oJPyvts .mbr-text {
  color: #767676;
}
.cid-uy4oJPyvts .mbr-section-subtitle {
  color: #767676;
}
.cid-uy4oJPyvts .title .num {
  width: 100%;
  display: block;
}
.cid-uy4oJPyvts .title .card-title {
  z-index: 1;
}
.cid-uy4oJPyvts .num {
  color: #ffffff;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-uy4oJPyvts * {
    text-align: center !important;
  }
  .cid-uy4oJPyvts .content-column {
    margin-bottom: 2rem;
  }
}
.cid-uy4oJPyvts .card-title,
.cid-uy4oJPyvts .card-img {
  text-align: center;
  color: #ffffff;
}
.cid-uRZfb8llbx {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uRZfb8llbx .mbr-section-title {
  color: #ff0000;
  text-align: center;
}
.cid-uRZfb8llbx .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-uRZfiFOi8e {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uRZfiFOi8e .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uRZfiFOi8e .row {
  flex-direction: row-reverse;
}
.cid-uRZfiFOi8e img {
  width: 100%;
}
.cid-uRZfbXo7pf {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uRZfbXo7pf .mbr-section-title {
  color: #ff0000;
  text-align: center;
}
.cid-uRZfbXo7pf .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-uS2G4yIbzj {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uS2G4yIbzj .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uS2G4yIbzj .row {
  flex-direction: row-reverse;
}
.cid-uS2G4yIbzj img {
  width: 100%;
}
.cid-uRZfgwqOmm {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uRZfgwqOmm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRZfgwqOmm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRZfgwqOmm .item {
  padding-bottom: 2rem;
}
.cid-uRZfgwqOmm .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uRZfgwqOmm .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uRZfgwqOmm .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uRZfgwqOmm .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uRZfgwqOmm .carousel-control,
.cid-uRZfgwqOmm .close {
  background: #1b1b1b;
}
.cid-uRZfgwqOmm .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uRZfgwqOmm .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uRZfgwqOmm .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uRZfgwqOmm .carousel-control-next span {
  margin-left: 5px;
}
.cid-uRZfgwqOmm .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uRZfgwqOmm .close::before {
  content: '\e91a';
}
.cid-uRZfgwqOmm .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uRZfgwqOmm .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uRZfgwqOmm .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uRZfgwqOmm .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uRZfgwqOmm .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uRZfgwqOmm .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uRZfgwqOmm .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uRZfgwqOmm .carousel-indicators li.active,
.cid-uRZfgwqOmm .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uRZfgwqOmm .carousel-indicators li::after,
.cid-uRZfgwqOmm .carousel-indicators li::before {
  content: none;
}
.cid-uRZfgwqOmm .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uRZfgwqOmm .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uRZfgwqOmm .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uRZfgwqOmm .carousel-indicators {
    display: none;
  }
}
.cid-uRZfgwqOmm .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uRZfgwqOmm .carousel-inner > .active {
  display: block;
}
.cid-uRZfgwqOmm .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uRZfgwqOmm .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uRZfgwqOmm .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uRZfgwqOmm .carousel-control,
  .cid-uRZfgwqOmm .carousel-indicators,
  .cid-uRZfgwqOmm .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uRZfgwqOmm .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uRZfgwqOmm .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uRZfgwqOmm .carousel-indicators .active,
.cid-uRZfgwqOmm .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uRZfgwqOmm .carousel-indicators .active {
  background: #fff;
}
.cid-uRZfgwqOmm .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uRZfgwqOmm .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uRZfgwqOmm .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uRZfgwqOmm .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uRZfgwqOmm .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uRZfgwqOmm .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uRZfgwqOmm .carousel {
  width: 100%;
}
.cid-uRZfgwqOmm .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uRZfgwqOmm .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uRZfgwqOmm .modal.fade .modal-dialog,
.cid-uRZfgwqOmm .modal.in .modal-dialog {
  transform: none;
}
.cid-uRZfgwqOmm .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uRZfgwqOmm H6 {
  text-align: center;
}
.cid-uy4oK7HFx7 {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uy4oK7HFx7 .mbr-section-title {
  color: #ff0000;
  text-align: center;
}
.cid-uy4oK7HFx7 .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-uy4oK8zeak {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #113371;
}
.cid-uy4oK8zeak .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uy4oK8zeak .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uy4oK8zeak .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uy4oK8zeak .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uy4oK8zeak .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uy4oK8zeak .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uy4oK8zeak .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uy4oK8zeak .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uy4oK8zeak .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uy4oK8zeak .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uy4oK8zeak .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uy4oK8zeak .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uy4oK8zeak .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uy4oK8zeak .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-v427bKstU7 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v427bKstU7 nav.navbar {
  position: fixed;
}
.cid-v427bKstU7 .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-v427bKstU7 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v427bKstU7 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v427bKstU7 .dropdown-item:hover,
.cid-v427bKstU7 .dropdown-item:focus {
  background: #ff0000 !important;
  color: white !important;
}
.cid-v427bKstU7 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v427bKstU7 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v427bKstU7 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v427bKstU7 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v427bKstU7 .nav-link {
  position: relative;
}
.cid-v427bKstU7 .container {
  display: flex;
  margin: auto;
}
.cid-v427bKstU7 .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v427bKstU7 .dropdown-menu,
.cid-v427bKstU7 .navbar.opened {
  background: #113371 !important;
}
.cid-v427bKstU7 .nav-item:focus,
.cid-v427bKstU7 .nav-link:focus {
  outline: none;
}
.cid-v427bKstU7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v427bKstU7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v427bKstU7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v427bKstU7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v427bKstU7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v427bKstU7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v427bKstU7 .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: #113371;
}
.cid-v427bKstU7 .navbar.opened {
  transition: all 0.3s;
}
.cid-v427bKstU7 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v427bKstU7 .navbar .navbar-logo img {
  width: auto;
}
.cid-v427bKstU7 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v427bKstU7 .navbar.collapsed {
  justify-content: center;
}
.cid-v427bKstU7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v427bKstU7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v427bKstU7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.4rem);
  }
}
.cid-v427bKstU7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v427bKstU7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v427bKstU7 .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-v427bKstU7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v427bKstU7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v427bKstU7 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v427bKstU7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v427bKstU7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v427bKstU7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v427bKstU7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v427bKstU7 .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-v427bKstU7 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v427bKstU7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v427bKstU7 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v427bKstU7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v427bKstU7 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v427bKstU7 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v427bKstU7 .navbar.navbar-short {
  min-height: 60px;
}
.cid-v427bKstU7 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v427bKstU7 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v427bKstU7 .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-v427bKstU7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v427bKstU7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v427bKstU7 .dropdown-item.active,
.cid-v427bKstU7 .dropdown-item:active {
  background-color: transparent;
}
.cid-v427bKstU7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v427bKstU7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v427bKstU7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v427bKstU7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #113371;
}
.cid-v427bKstU7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v427bKstU7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v427bKstU7 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v427bKstU7 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v427bKstU7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v427bKstU7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v427bKstU7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v427bKstU7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v427bKstU7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v427bKstU7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v427bKstU7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v427bKstU7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v427bKstU7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v427bKstU7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v427bKstU7 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v427bKstU7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v427bKstU7 .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-v427bKstU7 .navbar {
    height: 70px;
  }
  .cid-v427bKstU7 .navbar.opened {
    height: auto;
  }
  .cid-v427bKstU7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v427bL26vW {
  padding-top: 7rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-v427bL26vW .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v427bL26vW .row {
  flex-direction: row-reverse;
}
.cid-v427bL26vW img {
  width: 100%;
}
.cid-v427bLwktP {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v427bLwktP .mbr-section-title {
  color: #bbbbbb;
  text-align: center;
}
.cid-v427bLwktP .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-v427bLwktP .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-v427bLRkAD {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-v427bLRkAD .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v427bLRkAD .row {
  flex-direction: row-reverse;
}
.cid-v427bLRkAD img {
  width: 100%;
}
.cid-v427bM71RZ {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v427bM71RZ .mbr-section-title {
  color: #ff0000;
  text-align: center;
}
.cid-v427bM71RZ .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-v427bMpalz {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ff0000;
}
.cid-v427bMpalz .mbr-fallback-image.disabled {
  display: none;
}
.cid-v427bMpalz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v427bMpalz .mbr-text {
  color: #767676;
}
.cid-v427bMpalz .mbr-section-subtitle {
  color: #767676;
}
.cid-v427bMpalz .title .num {
  width: 100%;
  display: block;
}
.cid-v427bMpalz .title .card-title {
  z-index: 1;
}
.cid-v427bMpalz .num {
  color: #ffffff;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-v427bMpalz * {
    text-align: center !important;
  }
  .cid-v427bMpalz .content-column {
    margin-bottom: 2rem;
  }
}
.cid-v427bMpalz .card-title,
.cid-v427bMpalz .card-img {
  text-align: center;
  color: #ffffff;
}
.cid-v427bUkwzx {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v427bUkwzx .mbr-section-title {
  color: #ff0000;
  text-align: center;
}
.cid-v427bUkwzx .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-v42dQSEIyT {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-v42dQSEIyT .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v42dQSEIyT .row {
  flex-direction: row-reverse;
}
.cid-v42dQSEIyT img {
  width: 100%;
}
.cid-v54KIO9qO9 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v54KIO9qO9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v54KIO9qO9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v54KIO9qO9 .video-wrapper iframe {
  width: 100%;
}
.cid-v54KIO9qO9 .mbr-section-title,
.cid-v54KIO9qO9 .mbr-section-subtitle,
.cid-v54KIO9qO9 .mbr-text {
  text-align: center;
}
.cid-v42dTirJvz {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v42dTirJvz .mbr-section-title {
  color: #ff0000;
  text-align: center;
}
.cid-v42dTirJvz .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-v42bxQ8YSu {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ff0000;
}
.cid-v42bxQ8YSu .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-v42bxQ8YSu .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-v427bUK26W {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #113371;
}
.cid-v427bUK26W .row-links {
  width: 100%;
  justify-content: center;
}
.cid-v427bUK26W .social-row {
  width: 100%;
  justify-content: center;
}
.cid-v427bUK26W .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-v427bUK26W .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-v427bUK26W .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-v427bUK26W .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-v427bUK26W .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-v427bUK26W .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-v427bUK26W .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-v427bUK26W .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-v427bUK26W .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-v427bUK26W .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-v427bUK26W .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-v427bUK26W .media-container-row .row-copirayt p {
  width: 100%;
}
