.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-tWNwLXLqXh {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ff0000;
}
@media (max-width: 991px) {
  .cid-tWNwLXLqXh .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tWNwLXLqXh .row {
  flex-direction: row-reverse;
}
.cid-tWNwLXLqXh 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-ulhmr7H6aA {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ff0000;
}
.cid-ulhmr7H6aA img,
.cid-ulhmr7H6aA .item-img {
  width: 100%;
}
.cid-ulhmr7H6aA .item:focus,
.cid-ulhmr7H6aA span:focus {
  outline: none;
}
.cid-ulhmr7H6aA .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ulhmr7H6aA .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ulhmr7H6aA .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-ulhmr7H6aA .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ulhmr7H6aA .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-ulhmr7H6aA .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-ulhmr7H6aA .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ulhmr7H6aA .mbr-section-title {
  color: #232323;
}
.cid-ulhmr7H6aA .mbr-text,
.cid-ulhmr7H6aA .mbr-section-btn {
  text-align: left;
}
.cid-ulhmr7H6aA .item-title {
  text-align: center;
  color: #ff0000;
}
.cid-ulhmr7H6aA .item-subtitle {
  text-align: center;
}
.cid-ulhmsnrBGF {
  padding-top: 1rem;
  padding-bottom: 4rem;
  background-color: #ff0000;
}
.cid-ulhmsnrBGF img,
.cid-ulhmsnrBGF .item-img {
  width: 100%;
}
.cid-ulhmsnrBGF .item:focus,
.cid-ulhmsnrBGF span:focus {
  outline: none;
}
.cid-ulhmsnrBGF .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ulhmsnrBGF .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ulhmsnrBGF .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-ulhmsnrBGF .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ulhmsnrBGF .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-ulhmsnrBGF .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-ulhmsnrBGF .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ulhmsnrBGF .mbr-section-title {
  color: #232323;
}
.cid-ulhmsnrBGF .mbr-text,
.cid-ulhmsnrBGF .mbr-section-btn {
  text-align: left;
}
.cid-ulhmsnrBGF .item-title {
  text-align: center;
  color: #ff0000;
}
.cid-ulhmsnrBGF .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: left;
}
.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: left;
}
.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-tWKbM8hXv6 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWKbM8hXv6 .mbr-section-title {
  color: #bbbbbb;
  text-align: center;
}
.cid-tWKbM8hXv6 .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-tWKbM8hXv6 .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: 2rem;
  background-color: #ffffff;
}
.cid-tWCXBhtBSj .mbr-section-title {
  color: #ff0000;
  text-align: center;
}
.cid-tWCXBhtBSj .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-tWQxE2SZzM {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tWQxE2SZzM .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWQxE2SZzM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWQxE2SZzM .item {
  padding-bottom: 2rem;
}
.cid-tWQxE2SZzM .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tWQxE2SZzM .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tWQxE2SZzM .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-tWQxE2SZzM .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tWQxE2SZzM .carousel-control,
.cid-tWQxE2SZzM .close {
  background: #1b1b1b;
}
.cid-tWQxE2SZzM .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tWQxE2SZzM .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tWQxE2SZzM .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tWQxE2SZzM .carousel-control-next span {
  margin-left: 5px;
}
.cid-tWQxE2SZzM .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-tWQxE2SZzM .close::before {
  content: '\e91a';
}
.cid-tWQxE2SZzM .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tWQxE2SZzM .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-tWQxE2SZzM .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tWQxE2SZzM .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tWQxE2SZzM .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tWQxE2SZzM .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tWQxE2SZzM .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-tWQxE2SZzM .carousel-indicators li.active,
.cid-tWQxE2SZzM .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tWQxE2SZzM .carousel-indicators li::after,
.cid-tWQxE2SZzM .carousel-indicators li::before {
  content: none;
}
.cid-tWQxE2SZzM .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tWQxE2SZzM .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tWQxE2SZzM .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tWQxE2SZzM .carousel-indicators {
    display: none;
  }
}
.cid-tWQxE2SZzM .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tWQxE2SZzM .carousel-inner > .active {
  display: block;
}
.cid-tWQxE2SZzM .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tWQxE2SZzM .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tWQxE2SZzM .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tWQxE2SZzM .carousel-control,
  .cid-tWQxE2SZzM .carousel-indicators,
  .cid-tWQxE2SZzM .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tWQxE2SZzM .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tWQxE2SZzM .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tWQxE2SZzM .carousel-indicators .active,
.cid-tWQxE2SZzM .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tWQxE2SZzM .carousel-indicators .active {
  background: #fff;
}
.cid-tWQxE2SZzM .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tWQxE2SZzM .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tWQxE2SZzM .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tWQxE2SZzM .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tWQxE2SZzM .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tWQxE2SZzM .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tWQxE2SZzM .carousel {
  width: 100%;
}
.cid-tWQxE2SZzM .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tWQxE2SZzM .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tWQxE2SZzM .modal.fade .modal-dialog,
.cid-tWQxE2SZzM .modal.in .modal-dialog {
  transform: none;
}
.cid-tWQxE2SZzM .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tWQxE2SZzM 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-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-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-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-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-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-tWKbT0U6rp {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tWKbT0U6rp nav.navbar {
  position: fixed;
}
.cid-tWKbT0U6rp .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-tWKbT0U6rp .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tWKbT0U6rp .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tWKbT0U6rp .dropdown-item:hover,
.cid-tWKbT0U6rp .dropdown-item:focus {
  background: #ff0000 !important;
  color: white !important;
}
.cid-tWKbT0U6rp .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tWKbT0U6rp .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tWKbT0U6rp .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tWKbT0U6rp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tWKbT0U6rp .nav-link {
  position: relative;
}
.cid-tWKbT0U6rp .container {
  display: flex;
  margin: auto;
}
.cid-tWKbT0U6rp .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tWKbT0U6rp .dropdown-menu,
.cid-tWKbT0U6rp .navbar.opened {
  background: #113371 !important;
}
.cid-tWKbT0U6rp .nav-item:focus,
.cid-tWKbT0U6rp .nav-link:focus {
  outline: none;
}
.cid-tWKbT0U6rp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tWKbT0U6rp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tWKbT0U6rp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tWKbT0U6rp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tWKbT0U6rp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tWKbT0U6rp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tWKbT0U6rp .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-tWKbT0U6rp .navbar.opened {
  transition: all 0.3s;
}
.cid-tWKbT0U6rp .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tWKbT0U6rp .navbar .navbar-logo img {
  width: auto;
}
.cid-tWKbT0U6rp .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tWKbT0U6rp .navbar.collapsed {
  justify-content: center;
}
.cid-tWKbT0U6rp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tWKbT0U6rp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tWKbT0U6rp .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.4rem);
  }
}
.cid-tWKbT0U6rp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tWKbT0U6rp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tWKbT0U6rp .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-tWKbT0U6rp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tWKbT0U6rp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tWKbT0U6rp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tWKbT0U6rp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tWKbT0U6rp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tWKbT0U6rp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tWKbT0U6rp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tWKbT0U6rp .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-tWKbT0U6rp .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tWKbT0U6rp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tWKbT0U6rp .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tWKbT0U6rp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tWKbT0U6rp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tWKbT0U6rp .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tWKbT0U6rp .navbar.navbar-short {
  min-height: 60px;
}
.cid-tWKbT0U6rp .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tWKbT0U6rp .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tWKbT0U6rp .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-tWKbT0U6rp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tWKbT0U6rp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tWKbT0U6rp .dropdown-item.active,
.cid-tWKbT0U6rp .dropdown-item:active {
  background-color: transparent;
}
.cid-tWKbT0U6rp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tWKbT0U6rp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tWKbT0U6rp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tWKbT0U6rp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #113371;
}
.cid-tWKbT0U6rp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tWKbT0U6rp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tWKbT0U6rp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tWKbT0U6rp .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tWKbT0U6rp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tWKbT0U6rp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tWKbT0U6rp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tWKbT0U6rp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWKbT0U6rp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWKbT0U6rp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tWKbT0U6rp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWKbT0U6rp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tWKbT0U6rp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tWKbT0U6rp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWKbT0U6rp .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tWKbT0U6rp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tWKbT0U6rp .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-tWKbT0U6rp .navbar {
    height: 70px;
  }
  .cid-tWKbT0U6rp .navbar.opened {
    height: auto;
  }
  .cid-tWKbT0U6rp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tWKbT3oE3j {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tWKbT3oE3j .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tWKbT3oE3j .row {
  flex-direction: row-reverse;
}
.cid-tWKbT3oE3j img {
  width: 100%;
}
.cid-tWKbT7ka0R {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWKbT7ka0R .mbr-section-title {
  color: #bbbbbb;
  text-align: center;
}
.cid-tWKbT7ka0R .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-tWKbT7ka0R .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-tWKcfaHqBp {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tWKcfaHqBp .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWKcfaHqBp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWKcfaHqBp .item {
  padding-bottom: 2rem;
}
.cid-tWKcfaHqBp .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tWKcfaHqBp .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tWKcfaHqBp .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-tWKcfaHqBp .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tWKcfaHqBp .carousel-control,
.cid-tWKcfaHqBp .close {
  background: #1b1b1b;
}
.cid-tWKcfaHqBp .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tWKcfaHqBp .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tWKcfaHqBp .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tWKcfaHqBp .carousel-control-next span {
  margin-left: 5px;
}
.cid-tWKcfaHqBp .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-tWKcfaHqBp .close::before {
  content: '\e91a';
}
.cid-tWKcfaHqBp .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tWKcfaHqBp .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-tWKcfaHqBp .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tWKcfaHqBp .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tWKcfaHqBp .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tWKcfaHqBp .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tWKcfaHqBp .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-tWKcfaHqBp .carousel-indicators li.active,
.cid-tWKcfaHqBp .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tWKcfaHqBp .carousel-indicators li::after,
.cid-tWKcfaHqBp .carousel-indicators li::before {
  content: none;
}
.cid-tWKcfaHqBp .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tWKcfaHqBp .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tWKcfaHqBp .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tWKcfaHqBp .carousel-indicators {
    display: none;
  }
}
.cid-tWKcfaHqBp .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tWKcfaHqBp .carousel-inner > .active {
  display: block;
}
.cid-tWKcfaHqBp .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tWKcfaHqBp .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tWKcfaHqBp .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tWKcfaHqBp .carousel-control,
  .cid-tWKcfaHqBp .carousel-indicators,
  .cid-tWKcfaHqBp .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tWKcfaHqBp .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tWKcfaHqBp .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tWKcfaHqBp .carousel-indicators .active,
.cid-tWKcfaHqBp .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tWKcfaHqBp .carousel-indicators .active {
  background: #fff;
}
.cid-tWKcfaHqBp .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tWKcfaHqBp .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tWKcfaHqBp .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tWKcfaHqBp .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tWKcfaHqBp .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tWKcfaHqBp .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tWKcfaHqBp .carousel {
  width: 100%;
}
.cid-tWKcfaHqBp .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tWKcfaHqBp .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tWKcfaHqBp .modal.fade .modal-dialog,
.cid-tWKcfaHqBp .modal.in .modal-dialog {
  transform: none;
}
.cid-tWKcfaHqBp .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tWKcfaHqBp H6 {
  text-align: center;
}
.cid-tWKbTnPLBv {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #113371;
}
.cid-tWKbTnPLBv .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tWKbTnPLBv .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tWKbTnPLBv .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tWKbTnPLBv .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tWKbTnPLBv .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tWKbTnPLBv .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tWKbTnPLBv .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-tWKbTnPLBv .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tWKbTnPLBv .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tWKbTnPLBv .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tWKbTnPLBv .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tWKbTnPLBv .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tWKbTnPLBv .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tWKbTnPLBv .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tWKcm8Y1JU {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tWKcm8Y1JU nav.navbar {
  position: fixed;
}
.cid-tWKcm8Y1JU .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-tWKcm8Y1JU .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tWKcm8Y1JU .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tWKcm8Y1JU .dropdown-item:hover,
.cid-tWKcm8Y1JU .dropdown-item:focus {
  background: #ff0000 !important;
  color: white !important;
}
.cid-tWKcm8Y1JU .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tWKcm8Y1JU .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tWKcm8Y1JU .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tWKcm8Y1JU .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tWKcm8Y1JU .nav-link {
  position: relative;
}
.cid-tWKcm8Y1JU .container {
  display: flex;
  margin: auto;
}
.cid-tWKcm8Y1JU .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tWKcm8Y1JU .dropdown-menu,
.cid-tWKcm8Y1JU .navbar.opened {
  background: #113371 !important;
}
.cid-tWKcm8Y1JU .nav-item:focus,
.cid-tWKcm8Y1JU .nav-link:focus {
  outline: none;
}
.cid-tWKcm8Y1JU .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tWKcm8Y1JU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tWKcm8Y1JU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tWKcm8Y1JU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tWKcm8Y1JU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tWKcm8Y1JU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tWKcm8Y1JU .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-tWKcm8Y1JU .navbar.opened {
  transition: all 0.3s;
}
.cid-tWKcm8Y1JU .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tWKcm8Y1JU .navbar .navbar-logo img {
  width: auto;
}
.cid-tWKcm8Y1JU .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tWKcm8Y1JU .navbar.collapsed {
  justify-content: center;
}
.cid-tWKcm8Y1JU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tWKcm8Y1JU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tWKcm8Y1JU .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.4rem);
  }
}
.cid-tWKcm8Y1JU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tWKcm8Y1JU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tWKcm8Y1JU .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-tWKcm8Y1JU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tWKcm8Y1JU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tWKcm8Y1JU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tWKcm8Y1JU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tWKcm8Y1JU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tWKcm8Y1JU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tWKcm8Y1JU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tWKcm8Y1JU .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-tWKcm8Y1JU .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tWKcm8Y1JU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tWKcm8Y1JU .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tWKcm8Y1JU .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tWKcm8Y1JU .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tWKcm8Y1JU .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tWKcm8Y1JU .navbar.navbar-short {
  min-height: 60px;
}
.cid-tWKcm8Y1JU .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tWKcm8Y1JU .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tWKcm8Y1JU .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-tWKcm8Y1JU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tWKcm8Y1JU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tWKcm8Y1JU .dropdown-item.active,
.cid-tWKcm8Y1JU .dropdown-item:active {
  background-color: transparent;
}
.cid-tWKcm8Y1JU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tWKcm8Y1JU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tWKcm8Y1JU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tWKcm8Y1JU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #113371;
}
.cid-tWKcm8Y1JU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tWKcm8Y1JU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tWKcm8Y1JU ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tWKcm8Y1JU .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tWKcm8Y1JU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tWKcm8Y1JU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tWKcm8Y1JU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tWKcm8Y1JU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWKcm8Y1JU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWKcm8Y1JU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tWKcm8Y1JU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWKcm8Y1JU nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tWKcm8Y1JU nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tWKcm8Y1JU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWKcm8Y1JU .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tWKcm8Y1JU a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tWKcm8Y1JU .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-tWKcm8Y1JU .navbar {
    height: 70px;
  }
  .cid-tWKcm8Y1JU .navbar.opened {
    height: auto;
  }
  .cid-tWKcm8Y1JU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tWKcmbu3Ng {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tWKcmbu3Ng .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tWKcmbu3Ng .row {
  flex-direction: row-reverse;
}
.cid-tWKcmbu3Ng img {
  width: 100%;
}
.cid-tWKcmfxyyq {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWKcmfxyyq .mbr-section-title {
  color: #bbbbbb;
  text-align: center;
}
.cid-tWKcmfxyyq .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-tWKcmfxyyq .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-tWKcmjoBZP {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tWKcmjoBZP .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWKcmjoBZP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWKcmjoBZP .item {
  padding-bottom: 2rem;
}
.cid-tWKcmjoBZP .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tWKcmjoBZP .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tWKcmjoBZP .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-tWKcmjoBZP .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tWKcmjoBZP .carousel-control,
.cid-tWKcmjoBZP .close {
  background: #1b1b1b;
}
.cid-tWKcmjoBZP .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tWKcmjoBZP .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tWKcmjoBZP .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tWKcmjoBZP .carousel-control-next span {
  margin-left: 5px;
}
.cid-tWKcmjoBZP .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-tWKcmjoBZP .close::before {
  content: '\e91a';
}
.cid-tWKcmjoBZP .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tWKcmjoBZP .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-tWKcmjoBZP .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tWKcmjoBZP .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tWKcmjoBZP .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tWKcmjoBZP .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tWKcmjoBZP .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-tWKcmjoBZP .carousel-indicators li.active,
.cid-tWKcmjoBZP .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tWKcmjoBZP .carousel-indicators li::after,
.cid-tWKcmjoBZP .carousel-indicators li::before {
  content: none;
}
.cid-tWKcmjoBZP .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tWKcmjoBZP .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tWKcmjoBZP .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tWKcmjoBZP .carousel-indicators {
    display: none;
  }
}
.cid-tWKcmjoBZP .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tWKcmjoBZP .carousel-inner > .active {
  display: block;
}
.cid-tWKcmjoBZP .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tWKcmjoBZP .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tWKcmjoBZP .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tWKcmjoBZP .carousel-control,
  .cid-tWKcmjoBZP .carousel-indicators,
  .cid-tWKcmjoBZP .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tWKcmjoBZP .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tWKcmjoBZP .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tWKcmjoBZP .carousel-indicators .active,
.cid-tWKcmjoBZP .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tWKcmjoBZP .carousel-indicators .active {
  background: #fff;
}
.cid-tWKcmjoBZP .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tWKcmjoBZP .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tWKcmjoBZP .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tWKcmjoBZP .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tWKcmjoBZP .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tWKcmjoBZP .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tWKcmjoBZP .carousel {
  width: 100%;
}
.cid-tWKcmjoBZP .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tWKcmjoBZP .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tWKcmjoBZP .modal.fade .modal-dialog,
.cid-tWKcmjoBZP .modal.in .modal-dialog {
  transform: none;
}
.cid-tWKcmjoBZP .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tWKcmjoBZP H6 {
  text-align: center;
}
.cid-tWKcmrWi01 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #113371;
}
.cid-tWKcmrWi01 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tWKcmrWi01 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tWKcmrWi01 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tWKcmrWi01 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tWKcmrWi01 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tWKcmrWi01 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tWKcmrWi01 .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-tWKcmrWi01 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tWKcmrWi01 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tWKcmrWi01 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tWKcmrWi01 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tWKcmrWi01 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tWKcmrWi01 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tWKcmrWi01 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tWNgufiP1T {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tWNgufiP1T nav.navbar {
  position: fixed;
}
.cid-tWNgufiP1T .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-tWNgufiP1T .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tWNgufiP1T .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tWNgufiP1T .dropdown-item:hover,
.cid-tWNgufiP1T .dropdown-item:focus {
  background: #ff0000 !important;
  color: white !important;
}
.cid-tWNgufiP1T .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tWNgufiP1T .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tWNgufiP1T .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tWNgufiP1T .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tWNgufiP1T .nav-link {
  position: relative;
}
.cid-tWNgufiP1T .container {
  display: flex;
  margin: auto;
}
.cid-tWNgufiP1T .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tWNgufiP1T .dropdown-menu,
.cid-tWNgufiP1T .navbar.opened {
  background: #113371 !important;
}
.cid-tWNgufiP1T .nav-item:focus,
.cid-tWNgufiP1T .nav-link:focus {
  outline: none;
}
.cid-tWNgufiP1T .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tWNgufiP1T .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tWNgufiP1T .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tWNgufiP1T .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tWNgufiP1T .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tWNgufiP1T .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tWNgufiP1T .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-tWNgufiP1T .navbar.opened {
  transition: all 0.3s;
}
.cid-tWNgufiP1T .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tWNgufiP1T .navbar .navbar-logo img {
  width: auto;
}
.cid-tWNgufiP1T .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tWNgufiP1T .navbar.collapsed {
  justify-content: center;
}
.cid-tWNgufiP1T .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tWNgufiP1T .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tWNgufiP1T .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.4rem);
  }
}
.cid-tWNgufiP1T .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tWNgufiP1T .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tWNgufiP1T .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-tWNgufiP1T .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tWNgufiP1T .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tWNgufiP1T .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tWNgufiP1T .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tWNgufiP1T .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tWNgufiP1T .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tWNgufiP1T .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tWNgufiP1T .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-tWNgufiP1T .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tWNgufiP1T .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tWNgufiP1T .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tWNgufiP1T .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tWNgufiP1T .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tWNgufiP1T .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tWNgufiP1T .navbar.navbar-short {
  min-height: 60px;
}
.cid-tWNgufiP1T .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tWNgufiP1T .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tWNgufiP1T .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-tWNgufiP1T .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tWNgufiP1T .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tWNgufiP1T .dropdown-item.active,
.cid-tWNgufiP1T .dropdown-item:active {
  background-color: transparent;
}
.cid-tWNgufiP1T .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tWNgufiP1T .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tWNgufiP1T .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tWNgufiP1T .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #113371;
}
.cid-tWNgufiP1T .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tWNgufiP1T .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tWNgufiP1T ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tWNgufiP1T .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tWNgufiP1T button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tWNgufiP1T button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tWNgufiP1T button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tWNgufiP1T button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWNgufiP1T button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWNgufiP1T button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tWNgufiP1T nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWNgufiP1T nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tWNgufiP1T nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tWNgufiP1T nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWNgufiP1T .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tWNgufiP1T a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tWNgufiP1T .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-tWNgufiP1T .navbar {
    height: 70px;
  }
  .cid-tWNgufiP1T .navbar.opened {
    height: auto;
  }
  .cid-tWNgufiP1T .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tWNguhGu4e {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tWNguhGu4e .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tWNguhGu4e .row {
  flex-direction: row-reverse;
}
.cid-tWNguhGu4e img {
  width: 100%;
}
.cid-tWNgulhWGe {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWNgulhWGe .mbr-section-title {
  color: #bbbbbb;
  text-align: center;
}
.cid-tWNgulhWGe .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-tWNgulhWGe .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-tWNgU1bb6F {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWNgU1bb6F .mbr-section-title {
  color: #ff0000;
  text-align: center;
}
.cid-tWNgU1bb6F .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-tWNgXGYNDA {
  padding-top: 2rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tWNgXGYNDA .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWNgXGYNDA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWNgXGYNDA .video-wrapper iframe {
  width: 100%;
}
.cid-tWNgXGYNDA .mbr-section-title,
.cid-tWNgXGYNDA .mbr-section-subtitle,
.cid-tWNgXGYNDA .mbr-text {
  text-align: center;
}
.cid-tWNguwxGMJ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #113371;
}
.cid-tWNguwxGMJ .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tWNguwxGMJ .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tWNguwxGMJ .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tWNguwxGMJ .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tWNguwxGMJ .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tWNguwxGMJ .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tWNguwxGMJ .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-tWNguwxGMJ .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tWNguwxGMJ .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tWNguwxGMJ .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tWNguwxGMJ .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tWNguwxGMJ .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tWNguwxGMJ .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tWNguwxGMJ .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tWNhCac0Cw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tWNhCac0Cw nav.navbar {
  position: fixed;
}
.cid-tWNhCac0Cw .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-tWNhCac0Cw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tWNhCac0Cw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tWNhCac0Cw .dropdown-item:hover,
.cid-tWNhCac0Cw .dropdown-item:focus {
  background: #ff0000 !important;
  color: white !important;
}
.cid-tWNhCac0Cw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tWNhCac0Cw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tWNhCac0Cw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tWNhCac0Cw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tWNhCac0Cw .nav-link {
  position: relative;
}
.cid-tWNhCac0Cw .container {
  display: flex;
  margin: auto;
}
.cid-tWNhCac0Cw .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tWNhCac0Cw .dropdown-menu,
.cid-tWNhCac0Cw .navbar.opened {
  background: #113371 !important;
}
.cid-tWNhCac0Cw .nav-item:focus,
.cid-tWNhCac0Cw .nav-link:focus {
  outline: none;
}
.cid-tWNhCac0Cw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tWNhCac0Cw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tWNhCac0Cw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tWNhCac0Cw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tWNhCac0Cw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tWNhCac0Cw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tWNhCac0Cw .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-tWNhCac0Cw .navbar.opened {
  transition: all 0.3s;
}
.cid-tWNhCac0Cw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tWNhCac0Cw .navbar .navbar-logo img {
  width: auto;
}
.cid-tWNhCac0Cw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tWNhCac0Cw .navbar.collapsed {
  justify-content: center;
}
.cid-tWNhCac0Cw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tWNhCac0Cw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tWNhCac0Cw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.4rem);
  }
}
.cid-tWNhCac0Cw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tWNhCac0Cw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tWNhCac0Cw .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-tWNhCac0Cw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tWNhCac0Cw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tWNhCac0Cw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tWNhCac0Cw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tWNhCac0Cw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tWNhCac0Cw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tWNhCac0Cw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tWNhCac0Cw .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-tWNhCac0Cw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tWNhCac0Cw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tWNhCac0Cw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tWNhCac0Cw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tWNhCac0Cw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tWNhCac0Cw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tWNhCac0Cw .navbar.navbar-short {
  min-height: 60px;
}
.cid-tWNhCac0Cw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tWNhCac0Cw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tWNhCac0Cw .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-tWNhCac0Cw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tWNhCac0Cw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tWNhCac0Cw .dropdown-item.active,
.cid-tWNhCac0Cw .dropdown-item:active {
  background-color: transparent;
}
.cid-tWNhCac0Cw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tWNhCac0Cw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tWNhCac0Cw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tWNhCac0Cw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #113371;
}
.cid-tWNhCac0Cw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tWNhCac0Cw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tWNhCac0Cw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tWNhCac0Cw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tWNhCac0Cw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tWNhCac0Cw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tWNhCac0Cw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tWNhCac0Cw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWNhCac0Cw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWNhCac0Cw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tWNhCac0Cw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWNhCac0Cw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tWNhCac0Cw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tWNhCac0Cw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWNhCac0Cw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tWNhCac0Cw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tWNhCac0Cw .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-tWNhCac0Cw .navbar {
    height: 70px;
  }
  .cid-tWNhCac0Cw .navbar.opened {
    height: auto;
  }
  .cid-tWNhCac0Cw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tWNhCcKl9r {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tWNhCcKl9r .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tWNhCcKl9r .row {
  flex-direction: row-reverse;
}
.cid-tWNhCcKl9r img {
  width: 100%;
}
.cid-tWNhCgspQO {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWNhCgspQO .mbr-section-title {
  color: #bbbbbb;
  text-align: center;
}
.cid-tWNhCgspQO .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-tWNhCgspQO .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-tWNhCkka2n {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWNhCkka2n .mbr-section-title {
  color: #ff0000;
  text-align: center;
}
.cid-tWNhCkka2n .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-tWNhCog9Y5 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWNhCog9Y5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWNhCog9Y5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWNhCog9Y5 .video-wrapper iframe {
  width: 100%;
}
.cid-tWNhCog9Y5 .mbr-section-title,
.cid-tWNhCog9Y5 .mbr-section-subtitle,
.cid-tWNhCog9Y5 .mbr-text {
  text-align: center;
}
.cid-tWNi7u0zfz {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWNi7u0zfz .mbr-section-title {
  color: #ff0000;
  text-align: center;
}
.cid-tWNi7u0zfz .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-tWNiE8HoDF {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tWNiE8HoDF .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWNiE8HoDF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWNiE8HoDF .video-wrapper iframe {
  width: 100%;
}
.cid-tWNiE8HoDF .mbr-section-title,
.cid-tWNiE8HoDF .mbr-section-subtitle,
.cid-tWNiE8HoDF .mbr-text {
  text-align: center;
}
.cid-tWNiMBxafk {
  padding-top: 1rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-tWNiMBxafk .mbr-section-title {
  color: #ff0000;
  text-align: center;
}
.cid-tWNiMBxafk .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-tWNhCs3pHM {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #113371;
}
.cid-tWNhCs3pHM .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tWNhCs3pHM .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tWNhCs3pHM .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tWNhCs3pHM .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tWNhCs3pHM .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tWNhCs3pHM .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tWNhCs3pHM .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-tWNhCs3pHM .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tWNhCs3pHM .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tWNhCs3pHM .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tWNhCs3pHM .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tWNhCs3pHM .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tWNhCs3pHM .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tWNhCs3pHM .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tWP5ru16zn {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tWP5ru16zn nav.navbar {
  position: fixed;
}
.cid-tWP5ru16zn .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-tWP5ru16zn .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tWP5ru16zn .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tWP5ru16zn .dropdown-item:hover,
.cid-tWP5ru16zn .dropdown-item:focus {
  background: #ff0000 !important;
  color: white !important;
}
.cid-tWP5ru16zn .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tWP5ru16zn .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tWP5ru16zn .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tWP5ru16zn .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tWP5ru16zn .nav-link {
  position: relative;
}
.cid-tWP5ru16zn .container {
  display: flex;
  margin: auto;
}
.cid-tWP5ru16zn .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tWP5ru16zn .dropdown-menu,
.cid-tWP5ru16zn .navbar.opened {
  background: #113371 !important;
}
.cid-tWP5ru16zn .nav-item:focus,
.cid-tWP5ru16zn .nav-link:focus {
  outline: none;
}
.cid-tWP5ru16zn .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tWP5ru16zn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tWP5ru16zn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tWP5ru16zn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tWP5ru16zn .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tWP5ru16zn .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tWP5ru16zn .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-tWP5ru16zn .navbar.opened {
  transition: all 0.3s;
}
.cid-tWP5ru16zn .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tWP5ru16zn .navbar .navbar-logo img {
  width: auto;
}
.cid-tWP5ru16zn .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tWP5ru16zn .navbar.collapsed {
  justify-content: center;
}
.cid-tWP5ru16zn .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tWP5ru16zn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tWP5ru16zn .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.4rem);
  }
}
.cid-tWP5ru16zn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tWP5ru16zn .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tWP5ru16zn .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-tWP5ru16zn .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tWP5ru16zn .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tWP5ru16zn .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tWP5ru16zn .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tWP5ru16zn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tWP5ru16zn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tWP5ru16zn .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tWP5ru16zn .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-tWP5ru16zn .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tWP5ru16zn .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tWP5ru16zn .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tWP5ru16zn .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tWP5ru16zn .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tWP5ru16zn .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tWP5ru16zn .navbar.navbar-short {
  min-height: 60px;
}
.cid-tWP5ru16zn .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tWP5ru16zn .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tWP5ru16zn .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-tWP5ru16zn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tWP5ru16zn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tWP5ru16zn .dropdown-item.active,
.cid-tWP5ru16zn .dropdown-item:active {
  background-color: transparent;
}
.cid-tWP5ru16zn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tWP5ru16zn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tWP5ru16zn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tWP5ru16zn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #113371;
}
.cid-tWP5ru16zn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tWP5ru16zn .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tWP5ru16zn ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tWP5ru16zn .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tWP5ru16zn button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tWP5ru16zn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tWP5ru16zn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tWP5ru16zn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWP5ru16zn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWP5ru16zn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tWP5ru16zn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWP5ru16zn nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tWP5ru16zn nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tWP5ru16zn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWP5ru16zn .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tWP5ru16zn a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tWP5ru16zn .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-tWP5ru16zn .navbar {
    height: 70px;
  }
  .cid-tWP5ru16zn .navbar.opened {
    height: auto;
  }
  .cid-tWP5ru16zn .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tWP5rwRkhC {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tWP5rwRkhC .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tWP5rwRkhC .row {
  flex-direction: row-reverse;
}
.cid-tWP5rwRkhC img {
  width: 100%;
}
.cid-tWP5rBcc2B {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWP5rBcc2B .mbr-section-title {
  color: #bbbbbb;
  text-align: center;
}
.cid-tWP5rBcc2B .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-tWP5rBcc2B .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-tWP5rFqRiy {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWP5rFqRiy .mbr-section-title {
  color: #ff0000;
  text-align: center;
}
.cid-tWP5rFqRiy .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-tWP5rJE1v3 {
  padding-top: 2rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tWP5rJE1v3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWP5rJE1v3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWP5rJE1v3 .video-wrapper iframe {
  width: 100%;
}
.cid-tWP5rJE1v3 .mbr-section-title,
.cid-tWP5rJE1v3 .mbr-section-subtitle,
.cid-tWP5rJE1v3 .mbr-text {
  text-align: center;
}
.cid-tWP5F9nh56 {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tWP5F9nh56 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWP5F9nh56 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWP5F9nh56 .item {
  padding-bottom: 2rem;
}
.cid-tWP5F9nh56 .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tWP5F9nh56 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tWP5F9nh56 .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-tWP5F9nh56 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tWP5F9nh56 .carousel-control,
.cid-tWP5F9nh56 .close {
  background: #1b1b1b;
}
.cid-tWP5F9nh56 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tWP5F9nh56 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tWP5F9nh56 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tWP5F9nh56 .carousel-control-next span {
  margin-left: 5px;
}
.cid-tWP5F9nh56 .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-tWP5F9nh56 .close::before {
  content: '\e91a';
}
.cid-tWP5F9nh56 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tWP5F9nh56 .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-tWP5F9nh56 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tWP5F9nh56 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tWP5F9nh56 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tWP5F9nh56 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tWP5F9nh56 .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-tWP5F9nh56 .carousel-indicators li.active,
.cid-tWP5F9nh56 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tWP5F9nh56 .carousel-indicators li::after,
.cid-tWP5F9nh56 .carousel-indicators li::before {
  content: none;
}
.cid-tWP5F9nh56 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tWP5F9nh56 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tWP5F9nh56 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tWP5F9nh56 .carousel-indicators {
    display: none;
  }
}
.cid-tWP5F9nh56 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tWP5F9nh56 .carousel-inner > .active {
  display: block;
}
.cid-tWP5F9nh56 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tWP5F9nh56 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tWP5F9nh56 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tWP5F9nh56 .carousel-control,
  .cid-tWP5F9nh56 .carousel-indicators,
  .cid-tWP5F9nh56 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tWP5F9nh56 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tWP5F9nh56 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tWP5F9nh56 .carousel-indicators .active,
.cid-tWP5F9nh56 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tWP5F9nh56 .carousel-indicators .active {
  background: #fff;
}
.cid-tWP5F9nh56 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tWP5F9nh56 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tWP5F9nh56 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tWP5F9nh56 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tWP5F9nh56 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tWP5F9nh56 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tWP5F9nh56 .carousel {
  width: 100%;
}
.cid-tWP5F9nh56 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tWP5F9nh56 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tWP5F9nh56 .modal.fade .modal-dialog,
.cid-tWP5F9nh56 .modal.in .modal-dialog {
  transform: none;
}
.cid-tWP5F9nh56 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tWP5F9nh56 H6 {
  text-align: center;
}
.cid-tWP5rNzjuR {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #113371;
}
.cid-tWP5rNzjuR .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tWP5rNzjuR .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tWP5rNzjuR .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tWP5rNzjuR .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tWP5rNzjuR .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tWP5rNzjuR .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tWP5rNzjuR .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-tWP5rNzjuR .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tWP5rNzjuR .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tWP5rNzjuR .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tWP5rNzjuR .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tWP5rNzjuR .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tWP5rNzjuR .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tWP5rNzjuR .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tWP62ocyaP {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tWP62ocyaP nav.navbar {
  position: fixed;
}
.cid-tWP62ocyaP .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-tWP62ocyaP .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tWP62ocyaP .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tWP62ocyaP .dropdown-item:hover,
.cid-tWP62ocyaP .dropdown-item:focus {
  background: #ff0000 !important;
  color: white !important;
}
.cid-tWP62ocyaP .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tWP62ocyaP .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tWP62ocyaP .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tWP62ocyaP .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tWP62ocyaP .nav-link {
  position: relative;
}
.cid-tWP62ocyaP .container {
  display: flex;
  margin: auto;
}
.cid-tWP62ocyaP .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tWP62ocyaP .dropdown-menu,
.cid-tWP62ocyaP .navbar.opened {
  background: #113371 !important;
}
.cid-tWP62ocyaP .nav-item:focus,
.cid-tWP62ocyaP .nav-link:focus {
  outline: none;
}
.cid-tWP62ocyaP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tWP62ocyaP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tWP62ocyaP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tWP62ocyaP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tWP62ocyaP .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tWP62ocyaP .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tWP62ocyaP .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-tWP62ocyaP .navbar.opened {
  transition: all 0.3s;
}
.cid-tWP62ocyaP .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tWP62ocyaP .navbar .navbar-logo img {
  width: auto;
}
.cid-tWP62ocyaP .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tWP62ocyaP .navbar.collapsed {
  justify-content: center;
}
.cid-tWP62ocyaP .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tWP62ocyaP .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tWP62ocyaP .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.4rem);
  }
}
.cid-tWP62ocyaP .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tWP62ocyaP .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tWP62ocyaP .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-tWP62ocyaP .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tWP62ocyaP .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tWP62ocyaP .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tWP62ocyaP .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tWP62ocyaP .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tWP62ocyaP .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tWP62ocyaP .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tWP62ocyaP .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-tWP62ocyaP .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tWP62ocyaP .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tWP62ocyaP .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tWP62ocyaP .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tWP62ocyaP .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tWP62ocyaP .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tWP62ocyaP .navbar.navbar-short {
  min-height: 60px;
}
.cid-tWP62ocyaP .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tWP62ocyaP .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tWP62ocyaP .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-tWP62ocyaP .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tWP62ocyaP .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tWP62ocyaP .dropdown-item.active,
.cid-tWP62ocyaP .dropdown-item:active {
  background-color: transparent;
}
.cid-tWP62ocyaP .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tWP62ocyaP .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tWP62ocyaP .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tWP62ocyaP .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #113371;
}
.cid-tWP62ocyaP .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tWP62ocyaP .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tWP62ocyaP ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tWP62ocyaP .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tWP62ocyaP button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tWP62ocyaP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tWP62ocyaP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tWP62ocyaP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWP62ocyaP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWP62ocyaP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tWP62ocyaP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWP62ocyaP nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tWP62ocyaP nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tWP62ocyaP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWP62ocyaP .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tWP62ocyaP a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tWP62ocyaP .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-tWP62ocyaP .navbar {
    height: 70px;
  }
  .cid-tWP62ocyaP .navbar.opened {
    height: auto;
  }
  .cid-tWP62ocyaP .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tWP62rnmG0 {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tWP62rnmG0 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tWP62rnmG0 .row {
  flex-direction: row-reverse;
}
.cid-tWP62rnmG0 img {
  width: 100%;
}
.cid-tWP62vRc9u {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWP62vRc9u .mbr-section-title {
  color: #bbbbbb;
  text-align: center;
}
.cid-tWP62vRc9u .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-tWP62vRc9u .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-tWP62zTNpx {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWP62zTNpx .mbr-section-title {
  color: #ff0000;
  text-align: center;
}
.cid-tWP62zTNpx .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-tWP62DZXgP {
  padding-top: 2rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tWP62DZXgP .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWP62DZXgP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWP62DZXgP .video-wrapper iframe {
  width: 100%;
}
.cid-tWP62DZXgP .mbr-section-title,
.cid-tWP62DZXgP .mbr-section-subtitle,
.cid-tWP62DZXgP .mbr-text {
  text-align: center;
}
.cid-tWP6H0olN3 {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tWP6H0olN3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWP6H0olN3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWP6H0olN3 .item {
  padding-bottom: 2rem;
}
.cid-tWP6H0olN3 .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tWP6H0olN3 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tWP6H0olN3 .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-tWP6H0olN3 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tWP6H0olN3 .carousel-control,
.cid-tWP6H0olN3 .close {
  background: #1b1b1b;
}
.cid-tWP6H0olN3 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tWP6H0olN3 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tWP6H0olN3 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tWP6H0olN3 .carousel-control-next span {
  margin-left: 5px;
}
.cid-tWP6H0olN3 .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-tWP6H0olN3 .close::before {
  content: '\e91a';
}
.cid-tWP6H0olN3 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tWP6H0olN3 .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-tWP6H0olN3 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tWP6H0olN3 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tWP6H0olN3 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tWP6H0olN3 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tWP6H0olN3 .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-tWP6H0olN3 .carousel-indicators li.active,
.cid-tWP6H0olN3 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tWP6H0olN3 .carousel-indicators li::after,
.cid-tWP6H0olN3 .carousel-indicators li::before {
  content: none;
}
.cid-tWP6H0olN3 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tWP6H0olN3 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tWP6H0olN3 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tWP6H0olN3 .carousel-indicators {
    display: none;
  }
}
.cid-tWP6H0olN3 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tWP6H0olN3 .carousel-inner > .active {
  display: block;
}
.cid-tWP6H0olN3 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tWP6H0olN3 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tWP6H0olN3 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tWP6H0olN3 .carousel-control,
  .cid-tWP6H0olN3 .carousel-indicators,
  .cid-tWP6H0olN3 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tWP6H0olN3 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tWP6H0olN3 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tWP6H0olN3 .carousel-indicators .active,
.cid-tWP6H0olN3 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tWP6H0olN3 .carousel-indicators .active {
  background: #fff;
}
.cid-tWP6H0olN3 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tWP6H0olN3 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tWP6H0olN3 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tWP6H0olN3 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tWP6H0olN3 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tWP6H0olN3 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tWP6H0olN3 .carousel {
  width: 100%;
}
.cid-tWP6H0olN3 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tWP6H0olN3 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tWP6H0olN3 .modal.fade .modal-dialog,
.cid-tWP6H0olN3 .modal.in .modal-dialog {
  transform: none;
}
.cid-tWP6H0olN3 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tWP6H0olN3 H6 {
  text-align: center;
}
.cid-tWP62Tnvm4 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #113371;
}
.cid-tWP62Tnvm4 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tWP62Tnvm4 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tWP62Tnvm4 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tWP62Tnvm4 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tWP62Tnvm4 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tWP62Tnvm4 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tWP62Tnvm4 .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-tWP62Tnvm4 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tWP62Tnvm4 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tWP62Tnvm4 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tWP62Tnvm4 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tWP62Tnvm4 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tWP62Tnvm4 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tWP62Tnvm4 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tWP6KFhPs3 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tWP6KFhPs3 nav.navbar {
  position: fixed;
}
.cid-tWP6KFhPs3 .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-tWP6KFhPs3 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tWP6KFhPs3 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tWP6KFhPs3 .dropdown-item:hover,
.cid-tWP6KFhPs3 .dropdown-item:focus {
  background: #ff0000 !important;
  color: white !important;
}
.cid-tWP6KFhPs3 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tWP6KFhPs3 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tWP6KFhPs3 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tWP6KFhPs3 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tWP6KFhPs3 .nav-link {
  position: relative;
}
.cid-tWP6KFhPs3 .container {
  display: flex;
  margin: auto;
}
.cid-tWP6KFhPs3 .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tWP6KFhPs3 .dropdown-menu,
.cid-tWP6KFhPs3 .navbar.opened {
  background: #113371 !important;
}
.cid-tWP6KFhPs3 .nav-item:focus,
.cid-tWP6KFhPs3 .nav-link:focus {
  outline: none;
}
.cid-tWP6KFhPs3 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tWP6KFhPs3 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tWP6KFhPs3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tWP6KFhPs3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tWP6KFhPs3 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tWP6KFhPs3 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tWP6KFhPs3 .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-tWP6KFhPs3 .navbar.opened {
  transition: all 0.3s;
}
.cid-tWP6KFhPs3 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tWP6KFhPs3 .navbar .navbar-logo img {
  width: auto;
}
.cid-tWP6KFhPs3 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tWP6KFhPs3 .navbar.collapsed {
  justify-content: center;
}
.cid-tWP6KFhPs3 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tWP6KFhPs3 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tWP6KFhPs3 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.4rem);
  }
}
.cid-tWP6KFhPs3 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tWP6KFhPs3 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tWP6KFhPs3 .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-tWP6KFhPs3 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tWP6KFhPs3 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tWP6KFhPs3 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tWP6KFhPs3 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tWP6KFhPs3 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tWP6KFhPs3 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tWP6KFhPs3 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tWP6KFhPs3 .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-tWP6KFhPs3 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tWP6KFhPs3 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tWP6KFhPs3 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tWP6KFhPs3 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tWP6KFhPs3 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tWP6KFhPs3 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tWP6KFhPs3 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tWP6KFhPs3 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tWP6KFhPs3 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tWP6KFhPs3 .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-tWP6KFhPs3 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tWP6KFhPs3 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tWP6KFhPs3 .dropdown-item.active,
.cid-tWP6KFhPs3 .dropdown-item:active {
  background-color: transparent;
}
.cid-tWP6KFhPs3 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tWP6KFhPs3 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tWP6KFhPs3 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tWP6KFhPs3 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #113371;
}
.cid-tWP6KFhPs3 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tWP6KFhPs3 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tWP6KFhPs3 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tWP6KFhPs3 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tWP6KFhPs3 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tWP6KFhPs3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tWP6KFhPs3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tWP6KFhPs3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWP6KFhPs3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWP6KFhPs3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tWP6KFhPs3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWP6KFhPs3 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tWP6KFhPs3 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tWP6KFhPs3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWP6KFhPs3 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tWP6KFhPs3 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tWP6KFhPs3 .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-tWP6KFhPs3 .navbar {
    height: 70px;
  }
  .cid-tWP6KFhPs3 .navbar.opened {
    height: auto;
  }
  .cid-tWP6KFhPs3 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tWP6KHXLrg {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tWP6KHXLrg .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tWP6KHXLrg .row {
  flex-direction: row-reverse;
}
.cid-tWP6KHXLrg img {
  width: 100%;
}
.cid-tWP6KM4Kjp {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWP6KM4Kjp .mbr-section-title {
  color: #bbbbbb;
  text-align: center;
}
.cid-tWP6KM4Kjp .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-tWP6KM4Kjp .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-tWP6KPTsyw {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWP6KPTsyw .mbr-section-title {
  color: #ff0000;
  text-align: center;
}
.cid-tWP6KPTsyw .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-tWPnIQtwaC {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWPnIQtwaC .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWPnIQtwaC .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-tWPnIQtwaC .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tWPnIQtwaC img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tWPnIQtwaC .text-wrapper {
    padding: 2rem;
  }
}
.cid-tWPnJYxtD7 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWPnJYxtD7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWPnJYxtD7 .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-tWPnJYxtD7 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tWPnJYxtD7 .row {
  flex-direction: row-reverse;
}
.cid-tWPnJYxtD7 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tWPnJYxtD7 .text-wrapper {
    padding: 2rem;
  }
}
.cid-tWPnKG0r1A {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWPnKG0r1A .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWPnKG0r1A .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-tWPnKG0r1A .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tWPnKG0r1A img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tWPnKG0r1A .text-wrapper {
    padding: 2rem;
  }
}
.cid-tWPnLim1pq {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWPnLim1pq .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWPnLim1pq .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-tWPnLim1pq .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tWPnLim1pq .row {
  flex-direction: row-reverse;
}
.cid-tWPnLim1pq img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tWPnLim1pq .text-wrapper {
    padding: 2rem;
  }
}
.cid-tWPo0aQEEc {
  padding-top: 2rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tWPo0aQEEc .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWPo0aQEEc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWPo0aQEEc .item {
  padding-bottom: 2rem;
}
.cid-tWPo0aQEEc .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tWPo0aQEEc .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tWPo0aQEEc .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-tWPo0aQEEc .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tWPo0aQEEc .carousel-control,
.cid-tWPo0aQEEc .close {
  background: #1b1b1b;
}
.cid-tWPo0aQEEc .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tWPo0aQEEc .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tWPo0aQEEc .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tWPo0aQEEc .carousel-control-next span {
  margin-left: 5px;
}
.cid-tWPo0aQEEc .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-tWPo0aQEEc .close::before {
  content: '\e91a';
}
.cid-tWPo0aQEEc .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tWPo0aQEEc .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-tWPo0aQEEc .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tWPo0aQEEc .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tWPo0aQEEc .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tWPo0aQEEc .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tWPo0aQEEc .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-tWPo0aQEEc .carousel-indicators li.active,
.cid-tWPo0aQEEc .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tWPo0aQEEc .carousel-indicators li::after,
.cid-tWPo0aQEEc .carousel-indicators li::before {
  content: none;
}
.cid-tWPo0aQEEc .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tWPo0aQEEc .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tWPo0aQEEc .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tWPo0aQEEc .carousel-indicators {
    display: none;
  }
}
.cid-tWPo0aQEEc .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tWPo0aQEEc .carousel-inner > .active {
  display: block;
}
.cid-tWPo0aQEEc .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tWPo0aQEEc .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tWPo0aQEEc .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tWPo0aQEEc .carousel-control,
  .cid-tWPo0aQEEc .carousel-indicators,
  .cid-tWPo0aQEEc .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tWPo0aQEEc .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tWPo0aQEEc .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tWPo0aQEEc .carousel-indicators .active,
.cid-tWPo0aQEEc .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tWPo0aQEEc .carousel-indicators .active {
  background: #fff;
}
.cid-tWPo0aQEEc .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tWPo0aQEEc .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tWPo0aQEEc .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tWPo0aQEEc .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tWPo0aQEEc .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tWPo0aQEEc .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tWPo0aQEEc .carousel {
  width: 100%;
}
.cid-tWPo0aQEEc .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tWPo0aQEEc .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tWPo0aQEEc .modal.fade .modal-dialog,
.cid-tWPo0aQEEc .modal.in .modal-dialog {
  transform: none;
}
.cid-tWPo0aQEEc .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tWPo0aQEEc H6 {
  text-align: center;
}
.cid-tWP6L8jCT8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #113371;
}
.cid-tWP6L8jCT8 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tWP6L8jCT8 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tWP6L8jCT8 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tWP6L8jCT8 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tWP6L8jCT8 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tWP6L8jCT8 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tWP6L8jCT8 .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-tWP6L8jCT8 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tWP6L8jCT8 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tWP6L8jCT8 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tWP6L8jCT8 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tWP6L8jCT8 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tWP6L8jCT8 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tWP6L8jCT8 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tWPp0qUNxk {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tWPp0qUNxk nav.navbar {
  position: fixed;
}
.cid-tWPp0qUNxk .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-tWPp0qUNxk .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tWPp0qUNxk .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tWPp0qUNxk .dropdown-item:hover,
.cid-tWPp0qUNxk .dropdown-item:focus {
  background: #ff0000 !important;
  color: white !important;
}
.cid-tWPp0qUNxk .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tWPp0qUNxk .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tWPp0qUNxk .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tWPp0qUNxk .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tWPp0qUNxk .nav-link {
  position: relative;
}
.cid-tWPp0qUNxk .container {
  display: flex;
  margin: auto;
}
.cid-tWPp0qUNxk .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tWPp0qUNxk .dropdown-menu,
.cid-tWPp0qUNxk .navbar.opened {
  background: #113371 !important;
}
.cid-tWPp0qUNxk .nav-item:focus,
.cid-tWPp0qUNxk .nav-link:focus {
  outline: none;
}
.cid-tWPp0qUNxk .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tWPp0qUNxk .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tWPp0qUNxk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tWPp0qUNxk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tWPp0qUNxk .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tWPp0qUNxk .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tWPp0qUNxk .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-tWPp0qUNxk .navbar.opened {
  transition: all 0.3s;
}
.cid-tWPp0qUNxk .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tWPp0qUNxk .navbar .navbar-logo img {
  width: auto;
}
.cid-tWPp0qUNxk .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tWPp0qUNxk .navbar.collapsed {
  justify-content: center;
}
.cid-tWPp0qUNxk .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tWPp0qUNxk .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tWPp0qUNxk .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.4rem);
  }
}
.cid-tWPp0qUNxk .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tWPp0qUNxk .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tWPp0qUNxk .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-tWPp0qUNxk .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tWPp0qUNxk .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tWPp0qUNxk .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tWPp0qUNxk .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tWPp0qUNxk .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tWPp0qUNxk .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tWPp0qUNxk .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tWPp0qUNxk .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-tWPp0qUNxk .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tWPp0qUNxk .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tWPp0qUNxk .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tWPp0qUNxk .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tWPp0qUNxk .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tWPp0qUNxk .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tWPp0qUNxk .navbar.navbar-short {
  min-height: 60px;
}
.cid-tWPp0qUNxk .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tWPp0qUNxk .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tWPp0qUNxk .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-tWPp0qUNxk .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tWPp0qUNxk .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tWPp0qUNxk .dropdown-item.active,
.cid-tWPp0qUNxk .dropdown-item:active {
  background-color: transparent;
}
.cid-tWPp0qUNxk .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tWPp0qUNxk .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tWPp0qUNxk .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tWPp0qUNxk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #113371;
}
.cid-tWPp0qUNxk .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tWPp0qUNxk .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tWPp0qUNxk ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tWPp0qUNxk .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tWPp0qUNxk button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tWPp0qUNxk button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tWPp0qUNxk button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tWPp0qUNxk button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWPp0qUNxk button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWPp0qUNxk button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tWPp0qUNxk nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWPp0qUNxk nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tWPp0qUNxk nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tWPp0qUNxk nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWPp0qUNxk .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tWPp0qUNxk a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tWPp0qUNxk .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-tWPp0qUNxk .navbar {
    height: 70px;
  }
  .cid-tWPp0qUNxk .navbar.opened {
    height: auto;
  }
  .cid-tWPp0qUNxk .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tWPp0u1Gya {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tWPp0u1Gya .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tWPp0u1Gya .row {
  flex-direction: row-reverse;
}
.cid-tWPp0u1Gya img {
  width: 100%;
}
.cid-tWPp0yfTh5 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWPp0yfTh5 .mbr-section-title {
  color: #bbbbbb;
  text-align: center;
}
.cid-tWPp0yfTh5 .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-tWPp0yfTh5 .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-tWPp0CqH16 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWPp0CqH16 .mbr-section-title {
  color: #ff0000;
  text-align: center;
}
.cid-tWPp0CqH16 .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-tWPpDb0NrJ {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tWPpDb0NrJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWPpDb0NrJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWPpDb0NrJ .item {
  padding-bottom: 2rem;
}
.cid-tWPpDb0NrJ .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tWPpDb0NrJ .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tWPpDb0NrJ .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-tWPpDb0NrJ .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tWPpDb0NrJ .carousel-control,
.cid-tWPpDb0NrJ .close {
  background: #1b1b1b;
}
.cid-tWPpDb0NrJ .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tWPpDb0NrJ .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tWPpDb0NrJ .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tWPpDb0NrJ .carousel-control-next span {
  margin-left: 5px;
}
.cid-tWPpDb0NrJ .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-tWPpDb0NrJ .close::before {
  content: '\e91a';
}
.cid-tWPpDb0NrJ .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tWPpDb0NrJ .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-tWPpDb0NrJ .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tWPpDb0NrJ .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tWPpDb0NrJ .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tWPpDb0NrJ .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tWPpDb0NrJ .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-tWPpDb0NrJ .carousel-indicators li.active,
.cid-tWPpDb0NrJ .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tWPpDb0NrJ .carousel-indicators li::after,
.cid-tWPpDb0NrJ .carousel-indicators li::before {
  content: none;
}
.cid-tWPpDb0NrJ .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tWPpDb0NrJ .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tWPpDb0NrJ .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tWPpDb0NrJ .carousel-indicators {
    display: none;
  }
}
.cid-tWPpDb0NrJ .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tWPpDb0NrJ .carousel-inner > .active {
  display: block;
}
.cid-tWPpDb0NrJ .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tWPpDb0NrJ .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tWPpDb0NrJ .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tWPpDb0NrJ .carousel-control,
  .cid-tWPpDb0NrJ .carousel-indicators,
  .cid-tWPpDb0NrJ .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tWPpDb0NrJ .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tWPpDb0NrJ .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tWPpDb0NrJ .carousel-indicators .active,
.cid-tWPpDb0NrJ .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tWPpDb0NrJ .carousel-indicators .active {
  background: #fff;
}
.cid-tWPpDb0NrJ .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tWPpDb0NrJ .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tWPpDb0NrJ .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tWPpDb0NrJ .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tWPpDb0NrJ .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tWPpDb0NrJ .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tWPpDb0NrJ .carousel {
  width: 100%;
}
.cid-tWPpDb0NrJ .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tWPpDb0NrJ .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tWPpDb0NrJ .modal.fade .modal-dialog,
.cid-tWPpDb0NrJ .modal.in .modal-dialog {
  transform: none;
}
.cid-tWPpDb0NrJ .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tWPpDb0NrJ H6 {
  text-align: center;
}
.cid-tWPp0Wl99y {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #113371;
}
.cid-tWPp0Wl99y .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tWPp0Wl99y .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tWPp0Wl99y .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tWPp0Wl99y .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tWPp0Wl99y .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tWPp0Wl99y .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tWPp0Wl99y .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-tWPp0Wl99y .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tWPp0Wl99y .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tWPp0Wl99y .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tWPp0Wl99y .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tWPp0Wl99y .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tWPp0Wl99y .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tWPp0Wl99y .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tWPqkNpcHm {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tWPqkNpcHm nav.navbar {
  position: fixed;
}
.cid-tWPqkNpcHm .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-tWPqkNpcHm .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tWPqkNpcHm .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tWPqkNpcHm .dropdown-item:hover,
.cid-tWPqkNpcHm .dropdown-item:focus {
  background: #ff0000 !important;
  color: white !important;
}
.cid-tWPqkNpcHm .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tWPqkNpcHm .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tWPqkNpcHm .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tWPqkNpcHm .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tWPqkNpcHm .nav-link {
  position: relative;
}
.cid-tWPqkNpcHm .container {
  display: flex;
  margin: auto;
}
.cid-tWPqkNpcHm .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tWPqkNpcHm .dropdown-menu,
.cid-tWPqkNpcHm .navbar.opened {
  background: #113371 !important;
}
.cid-tWPqkNpcHm .nav-item:focus,
.cid-tWPqkNpcHm .nav-link:focus {
  outline: none;
}
.cid-tWPqkNpcHm .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tWPqkNpcHm .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tWPqkNpcHm .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tWPqkNpcHm .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tWPqkNpcHm .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tWPqkNpcHm .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tWPqkNpcHm .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-tWPqkNpcHm .navbar.opened {
  transition: all 0.3s;
}
.cid-tWPqkNpcHm .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tWPqkNpcHm .navbar .navbar-logo img {
  width: auto;
}
.cid-tWPqkNpcHm .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tWPqkNpcHm .navbar.collapsed {
  justify-content: center;
}
.cid-tWPqkNpcHm .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tWPqkNpcHm .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tWPqkNpcHm .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.4rem);
  }
}
.cid-tWPqkNpcHm .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tWPqkNpcHm .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tWPqkNpcHm .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-tWPqkNpcHm .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tWPqkNpcHm .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tWPqkNpcHm .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tWPqkNpcHm .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tWPqkNpcHm .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tWPqkNpcHm .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tWPqkNpcHm .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tWPqkNpcHm .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-tWPqkNpcHm .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tWPqkNpcHm .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tWPqkNpcHm .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tWPqkNpcHm .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tWPqkNpcHm .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tWPqkNpcHm .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tWPqkNpcHm .navbar.navbar-short {
  min-height: 60px;
}
.cid-tWPqkNpcHm .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tWPqkNpcHm .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tWPqkNpcHm .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-tWPqkNpcHm .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tWPqkNpcHm .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tWPqkNpcHm .dropdown-item.active,
.cid-tWPqkNpcHm .dropdown-item:active {
  background-color: transparent;
}
.cid-tWPqkNpcHm .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tWPqkNpcHm .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tWPqkNpcHm .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tWPqkNpcHm .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #113371;
}
.cid-tWPqkNpcHm .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tWPqkNpcHm .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tWPqkNpcHm ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tWPqkNpcHm .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tWPqkNpcHm button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tWPqkNpcHm button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tWPqkNpcHm button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tWPqkNpcHm button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWPqkNpcHm button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWPqkNpcHm button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tWPqkNpcHm nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWPqkNpcHm nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tWPqkNpcHm nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tWPqkNpcHm nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWPqkNpcHm .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tWPqkNpcHm a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tWPqkNpcHm .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-tWPqkNpcHm .navbar {
    height: 70px;
  }
  .cid-tWPqkNpcHm .navbar.opened {
    height: auto;
  }
  .cid-tWPqkNpcHm .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tWPqkPYgE8 {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tWPqkPYgE8 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tWPqkPYgE8 .row {
  flex-direction: row-reverse;
}
.cid-tWPqkPYgE8 img {
  width: 100%;
}
.cid-tWPqkTUDPJ {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWPqkTUDPJ .mbr-section-title {
  color: #bbbbbb;
  text-align: center;
}
.cid-tWPqkTUDPJ .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-tWPqkTUDPJ .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-tWPqkXJFMA {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWPqkXJFMA .mbr-section-title {
  color: #ff0000;
  text-align: center;
}
.cid-tWPqkXJFMA .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-tWPqG0jzhX {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tWPqG0jzhX .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWPqG0jzhX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWPqG0jzhX .item {
  padding-bottom: 2rem;
}
.cid-tWPqG0jzhX .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tWPqG0jzhX .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tWPqG0jzhX .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-tWPqG0jzhX .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tWPqG0jzhX .carousel-control,
.cid-tWPqG0jzhX .close {
  background: #1b1b1b;
}
.cid-tWPqG0jzhX .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tWPqG0jzhX .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tWPqG0jzhX .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tWPqG0jzhX .carousel-control-next span {
  margin-left: 5px;
}
.cid-tWPqG0jzhX .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-tWPqG0jzhX .close::before {
  content: '\e91a';
}
.cid-tWPqG0jzhX .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tWPqG0jzhX .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-tWPqG0jzhX .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tWPqG0jzhX .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tWPqG0jzhX .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tWPqG0jzhX .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tWPqG0jzhX .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-tWPqG0jzhX .carousel-indicators li.active,
.cid-tWPqG0jzhX .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tWPqG0jzhX .carousel-indicators li::after,
.cid-tWPqG0jzhX .carousel-indicators li::before {
  content: none;
}
.cid-tWPqG0jzhX .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tWPqG0jzhX .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tWPqG0jzhX .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tWPqG0jzhX .carousel-indicators {
    display: none;
  }
}
.cid-tWPqG0jzhX .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tWPqG0jzhX .carousel-inner > .active {
  display: block;
}
.cid-tWPqG0jzhX .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tWPqG0jzhX .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tWPqG0jzhX .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tWPqG0jzhX .carousel-control,
  .cid-tWPqG0jzhX .carousel-indicators,
  .cid-tWPqG0jzhX .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tWPqG0jzhX .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tWPqG0jzhX .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tWPqG0jzhX .carousel-indicators .active,
.cid-tWPqG0jzhX .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tWPqG0jzhX .carousel-indicators .active {
  background: #fff;
}
.cid-tWPqG0jzhX .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tWPqG0jzhX .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tWPqG0jzhX .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tWPqG0jzhX .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tWPqG0jzhX .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tWPqG0jzhX .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tWPqG0jzhX .carousel {
  width: 100%;
}
.cid-tWPqG0jzhX .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tWPqG0jzhX .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tWPqG0jzhX .modal.fade .modal-dialog,
.cid-tWPqG0jzhX .modal.in .modal-dialog {
  transform: none;
}
.cid-tWPqG0jzhX .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tWPqG0jzhX H6 {
  text-align: center;
}
.cid-tWPqlikrEf {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #113371;
}
.cid-tWPqlikrEf .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tWPqlikrEf .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tWPqlikrEf .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tWPqlikrEf .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tWPqlikrEf .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tWPqlikrEf .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tWPqlikrEf .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-tWPqlikrEf .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tWPqlikrEf .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tWPqlikrEf .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tWPqlikrEf .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tWPqlikrEf .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tWPqlikrEf .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tWPqlikrEf .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tWPqRbY4J9 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tWPqRbY4J9 nav.navbar {
  position: fixed;
}
.cid-tWPqRbY4J9 .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-tWPqRbY4J9 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tWPqRbY4J9 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tWPqRbY4J9 .dropdown-item:hover,
.cid-tWPqRbY4J9 .dropdown-item:focus {
  background: #ff0000 !important;
  color: white !important;
}
.cid-tWPqRbY4J9 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tWPqRbY4J9 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tWPqRbY4J9 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tWPqRbY4J9 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tWPqRbY4J9 .nav-link {
  position: relative;
}
.cid-tWPqRbY4J9 .container {
  display: flex;
  margin: auto;
}
.cid-tWPqRbY4J9 .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tWPqRbY4J9 .dropdown-menu,
.cid-tWPqRbY4J9 .navbar.opened {
  background: #113371 !important;
}
.cid-tWPqRbY4J9 .nav-item:focus,
.cid-tWPqRbY4J9 .nav-link:focus {
  outline: none;
}
.cid-tWPqRbY4J9 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tWPqRbY4J9 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tWPqRbY4J9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tWPqRbY4J9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tWPqRbY4J9 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tWPqRbY4J9 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tWPqRbY4J9 .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-tWPqRbY4J9 .navbar.opened {
  transition: all 0.3s;
}
.cid-tWPqRbY4J9 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tWPqRbY4J9 .navbar .navbar-logo img {
  width: auto;
}
.cid-tWPqRbY4J9 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tWPqRbY4J9 .navbar.collapsed {
  justify-content: center;
}
.cid-tWPqRbY4J9 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tWPqRbY4J9 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tWPqRbY4J9 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.4rem);
  }
}
.cid-tWPqRbY4J9 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tWPqRbY4J9 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tWPqRbY4J9 .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-tWPqRbY4J9 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tWPqRbY4J9 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tWPqRbY4J9 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tWPqRbY4J9 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tWPqRbY4J9 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tWPqRbY4J9 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tWPqRbY4J9 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tWPqRbY4J9 .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-tWPqRbY4J9 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tWPqRbY4J9 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tWPqRbY4J9 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tWPqRbY4J9 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tWPqRbY4J9 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tWPqRbY4J9 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tWPqRbY4J9 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tWPqRbY4J9 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tWPqRbY4J9 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tWPqRbY4J9 .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-tWPqRbY4J9 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tWPqRbY4J9 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tWPqRbY4J9 .dropdown-item.active,
.cid-tWPqRbY4J9 .dropdown-item:active {
  background-color: transparent;
}
.cid-tWPqRbY4J9 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tWPqRbY4J9 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tWPqRbY4J9 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tWPqRbY4J9 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #113371;
}
.cid-tWPqRbY4J9 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tWPqRbY4J9 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tWPqRbY4J9 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tWPqRbY4J9 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tWPqRbY4J9 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tWPqRbY4J9 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tWPqRbY4J9 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tWPqRbY4J9 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWPqRbY4J9 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWPqRbY4J9 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tWPqRbY4J9 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWPqRbY4J9 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tWPqRbY4J9 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tWPqRbY4J9 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWPqRbY4J9 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tWPqRbY4J9 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tWPqRbY4J9 .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-tWPqRbY4J9 .navbar {
    height: 70px;
  }
  .cid-tWPqRbY4J9 .navbar.opened {
    height: auto;
  }
  .cid-tWPqRbY4J9 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tWPqRezqOM {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tWPqRezqOM .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tWPqRezqOM .row {
  flex-direction: row-reverse;
}
.cid-tWPqRezqOM img {
  width: 100%;
}
.cid-tWPqRiLk4g {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWPqRiLk4g .mbr-section-title {
  color: #bbbbbb;
  text-align: center;
}
.cid-tWPqRiLk4g .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-tWPqRiLk4g .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-tWPqRmKfU1 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWPqRmKfU1 .mbr-section-title {
  color: #ff0000;
  text-align: center;
}
.cid-tWPqRmKfU1 .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-tWPrtDwkvZ {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tWPrtDwkvZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWPrtDwkvZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWPrtDwkvZ .item {
  padding-bottom: 2rem;
}
.cid-tWPrtDwkvZ .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tWPrtDwkvZ .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tWPrtDwkvZ .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-tWPrtDwkvZ .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tWPrtDwkvZ .carousel-control,
.cid-tWPrtDwkvZ .close {
  background: #1b1b1b;
}
.cid-tWPrtDwkvZ .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tWPrtDwkvZ .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tWPrtDwkvZ .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tWPrtDwkvZ .carousel-control-next span {
  margin-left: 5px;
}
.cid-tWPrtDwkvZ .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-tWPrtDwkvZ .close::before {
  content: '\e91a';
}
.cid-tWPrtDwkvZ .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tWPrtDwkvZ .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-tWPrtDwkvZ .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tWPrtDwkvZ .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tWPrtDwkvZ .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tWPrtDwkvZ .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tWPrtDwkvZ .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-tWPrtDwkvZ .carousel-indicators li.active,
.cid-tWPrtDwkvZ .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tWPrtDwkvZ .carousel-indicators li::after,
.cid-tWPrtDwkvZ .carousel-indicators li::before {
  content: none;
}
.cid-tWPrtDwkvZ .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tWPrtDwkvZ .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tWPrtDwkvZ .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tWPrtDwkvZ .carousel-indicators {
    display: none;
  }
}
.cid-tWPrtDwkvZ .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tWPrtDwkvZ .carousel-inner > .active {
  display: block;
}
.cid-tWPrtDwkvZ .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tWPrtDwkvZ .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tWPrtDwkvZ .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tWPrtDwkvZ .carousel-control,
  .cid-tWPrtDwkvZ .carousel-indicators,
  .cid-tWPrtDwkvZ .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tWPrtDwkvZ .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tWPrtDwkvZ .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tWPrtDwkvZ .carousel-indicators .active,
.cid-tWPrtDwkvZ .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tWPrtDwkvZ .carousel-indicators .active {
  background: #fff;
}
.cid-tWPrtDwkvZ .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tWPrtDwkvZ .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tWPrtDwkvZ .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tWPrtDwkvZ .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tWPrtDwkvZ .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tWPrtDwkvZ .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tWPrtDwkvZ .carousel {
  width: 100%;
}
.cid-tWPrtDwkvZ .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tWPrtDwkvZ .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tWPrtDwkvZ .modal.fade .modal-dialog,
.cid-tWPrtDwkvZ .modal.in .modal-dialog {
  transform: none;
}
.cid-tWPrtDwkvZ .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tWPrtDwkvZ H6 {
  text-align: center;
}
.cid-tWPqRzr9Nw {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #113371;
}
.cid-tWPqRzr9Nw .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tWPqRzr9Nw .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tWPqRzr9Nw .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tWPqRzr9Nw .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tWPqRzr9Nw .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tWPqRzr9Nw .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tWPqRzr9Nw .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-tWPqRzr9Nw .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tWPqRzr9Nw .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tWPqRzr9Nw .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tWPqRzr9Nw .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tWPqRzr9Nw .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tWPqRzr9Nw .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tWPqRzr9Nw .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-u1ZC98Xoee {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u1ZC98Xoee nav.navbar {
  position: fixed;
}
.cid-u1ZC98Xoee .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-u1ZC98Xoee .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u1ZC98Xoee .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u1ZC98Xoee .dropdown-item:hover,
.cid-u1ZC98Xoee .dropdown-item:focus {
  background: #ff0000 !important;
  color: white !important;
}
.cid-u1ZC98Xoee .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u1ZC98Xoee .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u1ZC98Xoee .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u1ZC98Xoee .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u1ZC98Xoee .nav-link {
  position: relative;
}
.cid-u1ZC98Xoee .container {
  display: flex;
  margin: auto;
}
.cid-u1ZC98Xoee .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u1ZC98Xoee .dropdown-menu,
.cid-u1ZC98Xoee .navbar.opened {
  background: #113371 !important;
}
.cid-u1ZC98Xoee .nav-item:focus,
.cid-u1ZC98Xoee .nav-link:focus {
  outline: none;
}
.cid-u1ZC98Xoee .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u1ZC98Xoee .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u1ZC98Xoee .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u1ZC98Xoee .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u1ZC98Xoee .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u1ZC98Xoee .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u1ZC98Xoee .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-u1ZC98Xoee .navbar.opened {
  transition: all 0.3s;
}
.cid-u1ZC98Xoee .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u1ZC98Xoee .navbar .navbar-logo img {
  width: auto;
}
.cid-u1ZC98Xoee .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u1ZC98Xoee .navbar.collapsed {
  justify-content: center;
}
.cid-u1ZC98Xoee .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u1ZC98Xoee .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u1ZC98Xoee .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.4rem);
  }
}
.cid-u1ZC98Xoee .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u1ZC98Xoee .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u1ZC98Xoee .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-u1ZC98Xoee .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u1ZC98Xoee .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u1ZC98Xoee .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u1ZC98Xoee .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u1ZC98Xoee .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u1ZC98Xoee .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u1ZC98Xoee .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u1ZC98Xoee .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-u1ZC98Xoee .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u1ZC98Xoee .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u1ZC98Xoee .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u1ZC98Xoee .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u1ZC98Xoee .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u1ZC98Xoee .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u1ZC98Xoee .navbar.navbar-short {
  min-height: 60px;
}
.cid-u1ZC98Xoee .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u1ZC98Xoee .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u1ZC98Xoee .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-u1ZC98Xoee .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u1ZC98Xoee .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u1ZC98Xoee .dropdown-item.active,
.cid-u1ZC98Xoee .dropdown-item:active {
  background-color: transparent;
}
.cid-u1ZC98Xoee .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u1ZC98Xoee .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u1ZC98Xoee .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u1ZC98Xoee .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #113371;
}
.cid-u1ZC98Xoee .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u1ZC98Xoee .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u1ZC98Xoee ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u1ZC98Xoee .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u1ZC98Xoee button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u1ZC98Xoee button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-u1ZC98Xoee button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u1ZC98Xoee button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u1ZC98Xoee button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u1ZC98Xoee button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u1ZC98Xoee nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u1ZC98Xoee nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u1ZC98Xoee nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u1ZC98Xoee nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u1ZC98Xoee .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u1ZC98Xoee a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u1ZC98Xoee .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-u1ZC98Xoee .navbar {
    height: 70px;
  }
  .cid-u1ZC98Xoee .navbar.opened {
    height: auto;
  }
  .cid-u1ZC98Xoee .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u1ZC99M5AQ {
  padding-top: 7rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u1ZC99M5AQ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u1ZC99M5AQ .row {
  flex-direction: row-reverse;
}
.cid-u1ZC99M5AQ img {
  width: 100%;
}
.cid-u1ZC9aojS6 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u1ZC9aojS6 .mbr-section-title {
  color: #bbbbbb;
  text-align: center;
}
.cid-u1ZC9aojS6 .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-u1ZC9aojS6 .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-u1ZC9cAGqC {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u1ZC9cAGqC .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u1ZC9cAGqC .row {
  flex-direction: row-reverse;
}
.cid-u1ZC9cAGqC img {
  width: 100%;
}
.cid-u1ZDDmOR4J {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u1ZDDmOR4J .mbr-section-title {
  color: #ff0000;
  text-align: center;
}
.cid-u1ZDDmOR4J .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-u1ZEMNCgZo {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ff0000;
}
.cid-u1ZEMNCgZo .mbr-fallback-image.disabled {
  display: none;
}
.cid-u1ZEMNCgZo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u1ZEMNCgZo .mbr-text {
  color: #767676;
}
.cid-u1ZEMNCgZo .mbr-section-subtitle {
  color: #767676;
}
.cid-u1ZEMNCgZo .title .num {
  width: 100%;
  display: block;
}
.cid-u1ZEMNCgZo .title .card-title {
  z-index: 1;
}
.cid-u1ZEMNCgZo .num {
  color: #ffffff;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-u1ZEMNCgZo * {
    text-align: center !important;
  }
  .cid-u1ZEMNCgZo .content-column {
    margin-bottom: 2rem;
  }
}
.cid-u1ZEMNCgZo .card-title,
.cid-u1ZEMNCgZo .card-img {
  text-align: center;
  color: #ffffff;
}
.cid-ulhoiHADp6 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ulhoiHADp6 .mbr-section-title {
  color: #ff0000;
  text-align: center;
}
.cid-ulhoiHADp6 .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-ulhohlpQnZ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-ulhohlpQnZ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ulhohlpQnZ .row {
  flex-direction: row-reverse;
}
.cid-ulhohlpQnZ img {
  width: 100%;
}
.cid-ulhofpa6p9 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ulhofpa6p9 .mbr-section-title {
  color: #ff0000;
  text-align: center;
}
.cid-ulhofpa6p9 .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-ulhocZebIx {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ulhocZebIx .mbr-fallback-image.disabled {
  display: none;
}
.cid-ulhocZebIx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ulhocZebIx .item {
  padding-bottom: 2rem;
}
.cid-ulhocZebIx .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-ulhocZebIx .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-ulhocZebIx .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-ulhocZebIx .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-ulhocZebIx .carousel-control,
.cid-ulhocZebIx .close {
  background: #1b1b1b;
}
.cid-ulhocZebIx .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-ulhocZebIx .carousel-control-prev span {
  margin-right: 5px;
}
.cid-ulhocZebIx .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-ulhocZebIx .carousel-control-next span {
  margin-left: 5px;
}
.cid-ulhocZebIx .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-ulhocZebIx .close::before {
  content: '\e91a';
}
.cid-ulhocZebIx .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-ulhocZebIx .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-ulhocZebIx .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ulhocZebIx .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ulhocZebIx .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-ulhocZebIx .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-ulhocZebIx .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-ulhocZebIx .carousel-indicators li.active,
.cid-ulhocZebIx .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-ulhocZebIx .carousel-indicators li::after,
.cid-ulhocZebIx .carousel-indicators li::before {
  content: none;
}
.cid-ulhocZebIx .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-ulhocZebIx .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-ulhocZebIx .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-ulhocZebIx .carousel-indicators {
    display: none;
  }
}
.cid-ulhocZebIx .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-ulhocZebIx .carousel-inner > .active {
  display: block;
}
.cid-ulhocZebIx .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ulhocZebIx .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-ulhocZebIx .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-ulhocZebIx .carousel-control,
  .cid-ulhocZebIx .carousel-indicators,
  .cid-ulhocZebIx .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-ulhocZebIx .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-ulhocZebIx .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-ulhocZebIx .carousel-indicators .active,
.cid-ulhocZebIx .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-ulhocZebIx .carousel-indicators .active {
  background: #fff;
}
.cid-ulhocZebIx .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-ulhocZebIx .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-ulhocZebIx .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-ulhocZebIx .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-ulhocZebIx .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-ulhocZebIx .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-ulhocZebIx .carousel {
  width: 100%;
}
.cid-ulhocZebIx .modal-backdrop.in {
  opacity: 0.8;
}
.cid-ulhocZebIx .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-ulhocZebIx .modal.fade .modal-dialog,
.cid-ulhocZebIx .modal.in .modal-dialog {
  transform: none;
}
.cid-ulhocZebIx .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-ulhocZebIx H6 {
  text-align: center;
}
.cid-ulhnD3jJ5w {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ulhnD3jJ5w .mbr-section-title {
  color: #ff0000;
  text-align: center;
}
.cid-ulhnD3jJ5w .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-ulhnYqfExJ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-ulhnYqfExJ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ulhnYqfExJ .row {
  flex-direction: row-reverse;
}
.cid-ulhnYqfExJ img {
  width: 100%;
}
.cid-ulhnuWjXWP {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ulhnuWjXWP .mbr-fallback-image.disabled {
  display: none;
}
.cid-ulhnuWjXWP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ulhnuWjXWP .item {
  padding-bottom: 2rem;
}
.cid-ulhnuWjXWP .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-ulhnuWjXWP .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-ulhnuWjXWP .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-ulhnuWjXWP .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-ulhnuWjXWP .carousel-control,
.cid-ulhnuWjXWP .close {
  background: #1b1b1b;
}
.cid-ulhnuWjXWP .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-ulhnuWjXWP .carousel-control-prev span {
  margin-right: 5px;
}
.cid-ulhnuWjXWP .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-ulhnuWjXWP .carousel-control-next span {
  margin-left: 5px;
}
.cid-ulhnuWjXWP .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-ulhnuWjXWP .close::before {
  content: '\e91a';
}
.cid-ulhnuWjXWP .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-ulhnuWjXWP .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-ulhnuWjXWP .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ulhnuWjXWP .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ulhnuWjXWP .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-ulhnuWjXWP .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-ulhnuWjXWP .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-ulhnuWjXWP .carousel-indicators li.active,
.cid-ulhnuWjXWP .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-ulhnuWjXWP .carousel-indicators li::after,
.cid-ulhnuWjXWP .carousel-indicators li::before {
  content: none;
}
.cid-ulhnuWjXWP .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-ulhnuWjXWP .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-ulhnuWjXWP .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-ulhnuWjXWP .carousel-indicators {
    display: none;
  }
}
.cid-ulhnuWjXWP .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-ulhnuWjXWP .carousel-inner > .active {
  display: block;
}
.cid-ulhnuWjXWP .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ulhnuWjXWP .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-ulhnuWjXWP .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-ulhnuWjXWP .carousel-control,
  .cid-ulhnuWjXWP .carousel-indicators,
  .cid-ulhnuWjXWP .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-ulhnuWjXWP .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-ulhnuWjXWP .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-ulhnuWjXWP .carousel-indicators .active,
.cid-ulhnuWjXWP .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-ulhnuWjXWP .carousel-indicators .active {
  background: #fff;
}
.cid-ulhnuWjXWP .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-ulhnuWjXWP .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-ulhnuWjXWP .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-ulhnuWjXWP .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-ulhnuWjXWP .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-ulhnuWjXWP .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-ulhnuWjXWP .carousel {
  width: 100%;
}
.cid-ulhnuWjXWP .modal-backdrop.in {
  opacity: 0.8;
}
.cid-ulhnuWjXWP .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-ulhnuWjXWP .modal.fade .modal-dialog,
.cid-ulhnuWjXWP .modal.in .modal-dialog {
  transform: none;
}
.cid-ulhnuWjXWP .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-ulhnuWjXWP H6 {
  text-align: center;
}
.cid-uhd9B5ww3q {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uhd9B5ww3q .mbr-section-title {
  color: #ff0000;
  text-align: center;
}
.cid-uhd9B5ww3q .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-uhdvUskiig {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uhdvUskiig .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uhdvUskiig .row {
  flex-direction: row-reverse;
}
.cid-uhdvUskiig img {
  width: 100%;
}
.cid-uhgwchNbZ1 {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uhgwchNbZ1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhgwchNbZ1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhgwchNbZ1 .item {
  padding-bottom: 2rem;
}
.cid-uhgwchNbZ1 .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uhgwchNbZ1 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uhgwchNbZ1 .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-uhgwchNbZ1 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uhgwchNbZ1 .carousel-control,
.cid-uhgwchNbZ1 .close {
  background: #1b1b1b;
}
.cid-uhgwchNbZ1 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uhgwchNbZ1 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uhgwchNbZ1 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uhgwchNbZ1 .carousel-control-next span {
  margin-left: 5px;
}
.cid-uhgwchNbZ1 .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-uhgwchNbZ1 .close::before {
  content: '\e91a';
}
.cid-uhgwchNbZ1 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uhgwchNbZ1 .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-uhgwchNbZ1 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uhgwchNbZ1 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uhgwchNbZ1 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uhgwchNbZ1 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uhgwchNbZ1 .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-uhgwchNbZ1 .carousel-indicators li.active,
.cid-uhgwchNbZ1 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uhgwchNbZ1 .carousel-indicators li::after,
.cid-uhgwchNbZ1 .carousel-indicators li::before {
  content: none;
}
.cid-uhgwchNbZ1 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uhgwchNbZ1 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uhgwchNbZ1 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uhgwchNbZ1 .carousel-indicators {
    display: none;
  }
}
.cid-uhgwchNbZ1 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uhgwchNbZ1 .carousel-inner > .active {
  display: block;
}
.cid-uhgwchNbZ1 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uhgwchNbZ1 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uhgwchNbZ1 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uhgwchNbZ1 .carousel-control,
  .cid-uhgwchNbZ1 .carousel-indicators,
  .cid-uhgwchNbZ1 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uhgwchNbZ1 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uhgwchNbZ1 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uhgwchNbZ1 .carousel-indicators .active,
.cid-uhgwchNbZ1 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uhgwchNbZ1 .carousel-indicators .active {
  background: #fff;
}
.cid-uhgwchNbZ1 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uhgwchNbZ1 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uhgwchNbZ1 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uhgwchNbZ1 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uhgwchNbZ1 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uhgwchNbZ1 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uhgwchNbZ1 .carousel {
  width: 100%;
}
.cid-uhgwchNbZ1 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uhgwchNbZ1 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uhgwchNbZ1 .modal.fade .modal-dialog,
.cid-uhgwchNbZ1 .modal.in .modal-dialog {
  transform: none;
}
.cid-uhgwchNbZ1 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uhgwchNbZ1 H6 {
  text-align: center;
}
.cid-u1ZC9dpHGC {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-u1ZC9dpHGC .mbr-section-title {
  color: #ff0000;
  text-align: center;
}
.cid-u1ZC9dpHGC .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-u1ZC9oumtR {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #113371;
}
.cid-u1ZC9oumtR .row-links {
  width: 100%;
  justify-content: center;
}
.cid-u1ZC9oumtR .social-row {
  width: 100%;
  justify-content: center;
}
.cid-u1ZC9oumtR .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-u1ZC9oumtR .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-u1ZC9oumtR .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-u1ZC9oumtR .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-u1ZC9oumtR .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-u1ZC9oumtR .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-u1ZC9oumtR .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u1ZC9oumtR .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-u1ZC9oumtR .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u1ZC9oumtR .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u1ZC9oumtR .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-u1ZC9oumtR .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-u1ZFbtqdE1 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u1ZFbtqdE1 nav.navbar {
  position: fixed;
}
.cid-u1ZFbtqdE1 .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-u1ZFbtqdE1 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u1ZFbtqdE1 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u1ZFbtqdE1 .dropdown-item:hover,
.cid-u1ZFbtqdE1 .dropdown-item:focus {
  background: #ff0000 !important;
  color: white !important;
}
.cid-u1ZFbtqdE1 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u1ZFbtqdE1 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u1ZFbtqdE1 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u1ZFbtqdE1 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u1ZFbtqdE1 .nav-link {
  position: relative;
}
.cid-u1ZFbtqdE1 .container {
  display: flex;
  margin: auto;
}
.cid-u1ZFbtqdE1 .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u1ZFbtqdE1 .dropdown-menu,
.cid-u1ZFbtqdE1 .navbar.opened {
  background: #113371 !important;
}
.cid-u1ZFbtqdE1 .nav-item:focus,
.cid-u1ZFbtqdE1 .nav-link:focus {
  outline: none;
}
.cid-u1ZFbtqdE1 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u1ZFbtqdE1 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u1ZFbtqdE1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u1ZFbtqdE1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u1ZFbtqdE1 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u1ZFbtqdE1 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u1ZFbtqdE1 .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-u1ZFbtqdE1 .navbar.opened {
  transition: all 0.3s;
}
.cid-u1ZFbtqdE1 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u1ZFbtqdE1 .navbar .navbar-logo img {
  width: auto;
}
.cid-u1ZFbtqdE1 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u1ZFbtqdE1 .navbar.collapsed {
  justify-content: center;
}
.cid-u1ZFbtqdE1 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u1ZFbtqdE1 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u1ZFbtqdE1 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.4rem);
  }
}
.cid-u1ZFbtqdE1 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u1ZFbtqdE1 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u1ZFbtqdE1 .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-u1ZFbtqdE1 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u1ZFbtqdE1 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u1ZFbtqdE1 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u1ZFbtqdE1 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u1ZFbtqdE1 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u1ZFbtqdE1 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u1ZFbtqdE1 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u1ZFbtqdE1 .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-u1ZFbtqdE1 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u1ZFbtqdE1 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u1ZFbtqdE1 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u1ZFbtqdE1 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u1ZFbtqdE1 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u1ZFbtqdE1 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u1ZFbtqdE1 .navbar.navbar-short {
  min-height: 60px;
}
.cid-u1ZFbtqdE1 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u1ZFbtqdE1 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u1ZFbtqdE1 .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-u1ZFbtqdE1 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u1ZFbtqdE1 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u1ZFbtqdE1 .dropdown-item.active,
.cid-u1ZFbtqdE1 .dropdown-item:active {
  background-color: transparent;
}
.cid-u1ZFbtqdE1 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u1ZFbtqdE1 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u1ZFbtqdE1 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u1ZFbtqdE1 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #113371;
}
.cid-u1ZFbtqdE1 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u1ZFbtqdE1 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u1ZFbtqdE1 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u1ZFbtqdE1 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u1ZFbtqdE1 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u1ZFbtqdE1 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-u1ZFbtqdE1 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u1ZFbtqdE1 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u1ZFbtqdE1 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u1ZFbtqdE1 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u1ZFbtqdE1 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u1ZFbtqdE1 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u1ZFbtqdE1 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u1ZFbtqdE1 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u1ZFbtqdE1 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u1ZFbtqdE1 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u1ZFbtqdE1 .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-u1ZFbtqdE1 .navbar {
    height: 70px;
  }
  .cid-u1ZFbtqdE1 .navbar.opened {
    height: auto;
  }
  .cid-u1ZFbtqdE1 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u1ZFbudIqN {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u1ZFbudIqN .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u1ZFbudIqN .row {
  flex-direction: row-reverse;
}
.cid-u1ZFbudIqN img {
  width: 100%;
}
.cid-u1ZFsMHjTa {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u1ZFsMHjTa .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-u1ZFsMHjTa .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-u1ZFsMHjTa .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-u1ZFnBlZnQ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-u1ZFnBlZnQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-u1ZFnBlZnQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u1ZFnBlZnQ .text-wrapper {
  padding: 1rem;
}
@media (max-width: 991px) {
  .cid-u1ZFnBlZnQ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u1ZFnBlZnQ img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u1ZFnBlZnQ .text-wrapper {
    padding: 2rem;
  }
}
.cid-u1ZFnBlZnQ .mbr-section-title {
  color: #ff0000;
}
.cid-u1ZFnBlZnQ .mbr-text {
  color: #000000;
}
.cid-u1ZFbCVdBW {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #113371;
}
.cid-u1ZFbCVdBW .row-links {
  width: 100%;
  justify-content: center;
}
.cid-u1ZFbCVdBW .social-row {
  width: 100%;
  justify-content: center;
}
.cid-u1ZFbCVdBW .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-u1ZFbCVdBW .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-u1ZFbCVdBW .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-u1ZFbCVdBW .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-u1ZFbCVdBW .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-u1ZFbCVdBW .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-u1ZFbCVdBW .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u1ZFbCVdBW .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-u1ZFbCVdBW .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u1ZFbCVdBW .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u1ZFbCVdBW .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-u1ZFbCVdBW .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-u1ZGaJVJYH {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u1ZGaJVJYH nav.navbar {
  position: fixed;
}
.cid-u1ZGaJVJYH .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-u1ZGaJVJYH .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u1ZGaJVJYH .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u1ZGaJVJYH .dropdown-item:hover,
.cid-u1ZGaJVJYH .dropdown-item:focus {
  background: #ff0000 !important;
  color: white !important;
}
.cid-u1ZGaJVJYH .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u1ZGaJVJYH .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u1ZGaJVJYH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u1ZGaJVJYH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u1ZGaJVJYH .nav-link {
  position: relative;
}
.cid-u1ZGaJVJYH .container {
  display: flex;
  margin: auto;
}
.cid-u1ZGaJVJYH .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u1ZGaJVJYH .dropdown-menu,
.cid-u1ZGaJVJYH .navbar.opened {
  background: #113371 !important;
}
.cid-u1ZGaJVJYH .nav-item:focus,
.cid-u1ZGaJVJYH .nav-link:focus {
  outline: none;
}
.cid-u1ZGaJVJYH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u1ZGaJVJYH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u1ZGaJVJYH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u1ZGaJVJYH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u1ZGaJVJYH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u1ZGaJVJYH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u1ZGaJVJYH .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-u1ZGaJVJYH .navbar.opened {
  transition: all 0.3s;
}
.cid-u1ZGaJVJYH .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u1ZGaJVJYH .navbar .navbar-logo img {
  width: auto;
}
.cid-u1ZGaJVJYH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u1ZGaJVJYH .navbar.collapsed {
  justify-content: center;
}
.cid-u1ZGaJVJYH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u1ZGaJVJYH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u1ZGaJVJYH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.4rem);
  }
}
.cid-u1ZGaJVJYH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u1ZGaJVJYH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u1ZGaJVJYH .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-u1ZGaJVJYH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u1ZGaJVJYH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u1ZGaJVJYH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u1ZGaJVJYH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u1ZGaJVJYH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u1ZGaJVJYH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u1ZGaJVJYH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u1ZGaJVJYH .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-u1ZGaJVJYH .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u1ZGaJVJYH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u1ZGaJVJYH .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u1ZGaJVJYH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u1ZGaJVJYH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u1ZGaJVJYH .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u1ZGaJVJYH .navbar.navbar-short {
  min-height: 60px;
}
.cid-u1ZGaJVJYH .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u1ZGaJVJYH .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u1ZGaJVJYH .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-u1ZGaJVJYH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u1ZGaJVJYH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u1ZGaJVJYH .dropdown-item.active,
.cid-u1ZGaJVJYH .dropdown-item:active {
  background-color: transparent;
}
.cid-u1ZGaJVJYH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u1ZGaJVJYH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u1ZGaJVJYH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u1ZGaJVJYH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #113371;
}
.cid-u1ZGaJVJYH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u1ZGaJVJYH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u1ZGaJVJYH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u1ZGaJVJYH .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u1ZGaJVJYH button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u1ZGaJVJYH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-u1ZGaJVJYH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u1ZGaJVJYH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u1ZGaJVJYH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u1ZGaJVJYH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u1ZGaJVJYH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u1ZGaJVJYH nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u1ZGaJVJYH nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u1ZGaJVJYH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u1ZGaJVJYH .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u1ZGaJVJYH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u1ZGaJVJYH .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-u1ZGaJVJYH .navbar {
    height: 70px;
  }
  .cid-u1ZGaJVJYH .navbar.opened {
    height: auto;
  }
  .cid-u1ZGaJVJYH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u1ZGaKLsTb {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u1ZGaKLsTb .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u1ZGaKLsTb .row {
  flex-direction: row-reverse;
}
.cid-u1ZGaKLsTb img {
  width: 100%;
}
.cid-u1ZGaLDdaB {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u1ZGaLDdaB .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-u1ZGaLDdaB .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-u1ZGaLDdaB .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-u1ZGvs7uFd {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u1ZGvs7uFd .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u1ZGvs7uFd .row {
  flex-direction: row-reverse;
}
.cid-u1ZGvs7uFd img {
  width: 100%;
}
.cid-u1ZGwuu1Zu {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-u1ZGwuu1Zu .mbr-section-title {
  color: #ff0000;
  text-align: center;
}
.cid-u1ZGwuu1Zu .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-u26D0xN28G {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u26D0xN28G .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u26D0xN28G .row {
  flex-direction: row-reverse;
}
.cid-u26D0xN28G img {
  width: 100%;
}
.cid-u26DaVcaXP {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-u26DaVcaXP .mbr-fallback-image.disabled {
  display: none;
}
.cid-u26DaVcaXP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u26DaVcaXP .item {
  padding-bottom: 2rem;
}
.cid-u26DaVcaXP .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-u26DaVcaXP .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-u26DaVcaXP .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-u26DaVcaXP .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-u26DaVcaXP .carousel-control,
.cid-u26DaVcaXP .close {
  background: #1b1b1b;
}
.cid-u26DaVcaXP .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-u26DaVcaXP .carousel-control-prev span {
  margin-right: 5px;
}
.cid-u26DaVcaXP .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-u26DaVcaXP .carousel-control-next span {
  margin-left: 5px;
}
.cid-u26DaVcaXP .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-u26DaVcaXP .close::before {
  content: '\e91a';
}
.cid-u26DaVcaXP .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-u26DaVcaXP .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-u26DaVcaXP .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u26DaVcaXP .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u26DaVcaXP .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-u26DaVcaXP .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-u26DaVcaXP .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-u26DaVcaXP .carousel-indicators li.active,
.cid-u26DaVcaXP .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-u26DaVcaXP .carousel-indicators li::after,
.cid-u26DaVcaXP .carousel-indicators li::before {
  content: none;
}
.cid-u26DaVcaXP .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-u26DaVcaXP .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-u26DaVcaXP .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-u26DaVcaXP .carousel-indicators {
    display: none;
  }
}
.cid-u26DaVcaXP .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-u26DaVcaXP .carousel-inner > .active {
  display: block;
}
.cid-u26DaVcaXP .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u26DaVcaXP .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u26DaVcaXP .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-u26DaVcaXP .carousel-control,
  .cid-u26DaVcaXP .carousel-indicators,
  .cid-u26DaVcaXP .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-u26DaVcaXP .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-u26DaVcaXP .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-u26DaVcaXP .carousel-indicators .active,
.cid-u26DaVcaXP .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-u26DaVcaXP .carousel-indicators .active {
  background: #fff;
}
.cid-u26DaVcaXP .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-u26DaVcaXP .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-u26DaVcaXP .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-u26DaVcaXP .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-u26DaVcaXP .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-u26DaVcaXP .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-u26DaVcaXP .carousel {
  width: 100%;
}
.cid-u26DaVcaXP .modal-backdrop.in {
  opacity: 0.8;
}
.cid-u26DaVcaXP .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-u26DaVcaXP .modal.fade .modal-dialog,
.cid-u26DaVcaXP .modal.in .modal-dialog {
  transform: none;
}
.cid-u26DaVcaXP .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-u26DaVcaXP H6 {
  text-align: center;
}
.cid-u1ZGaNd9Xl {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #113371;
}
.cid-u1ZGaNd9Xl .row-links {
  width: 100%;
  justify-content: center;
}
.cid-u1ZGaNd9Xl .social-row {
  width: 100%;
  justify-content: center;
}
.cid-u1ZGaNd9Xl .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-u1ZGaNd9Xl .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-u1ZGaNd9Xl .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-u1ZGaNd9Xl .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-u1ZGaNd9Xl .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-u1ZGaNd9Xl .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-u1ZGaNd9Xl .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u1ZGaNd9Xl .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-u1ZGaNd9Xl .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u1ZGaNd9Xl .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u1ZGaNd9Xl .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-u1ZGaNd9Xl .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uy4yhdBRn3 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uy4yhdBRn3 nav.navbar {
  position: fixed;
}
.cid-uy4yhdBRn3 .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-uy4yhdBRn3 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uy4yhdBRn3 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uy4yhdBRn3 .dropdown-item:hover,
.cid-uy4yhdBRn3 .dropdown-item:focus {
  background: #ff0000 !important;
  color: white !important;
}
.cid-uy4yhdBRn3 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uy4yhdBRn3 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uy4yhdBRn3 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uy4yhdBRn3 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uy4yhdBRn3 .nav-link {
  position: relative;
}
.cid-uy4yhdBRn3 .container {
  display: flex;
  margin: auto;
}
.cid-uy4yhdBRn3 .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uy4yhdBRn3 .dropdown-menu,
.cid-uy4yhdBRn3 .navbar.opened {
  background: #113371 !important;
}
.cid-uy4yhdBRn3 .nav-item:focus,
.cid-uy4yhdBRn3 .nav-link:focus {
  outline: none;
}
.cid-uy4yhdBRn3 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uy4yhdBRn3 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uy4yhdBRn3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uy4yhdBRn3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uy4yhdBRn3 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uy4yhdBRn3 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uy4yhdBRn3 .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-uy4yhdBRn3 .navbar.opened {
  transition: all 0.3s;
}
.cid-uy4yhdBRn3 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uy4yhdBRn3 .navbar .navbar-logo img {
  width: auto;
}
.cid-uy4yhdBRn3 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uy4yhdBRn3 .navbar.collapsed {
  justify-content: center;
}
.cid-uy4yhdBRn3 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uy4yhdBRn3 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uy4yhdBRn3 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.4rem);
  }
}
.cid-uy4yhdBRn3 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uy4yhdBRn3 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uy4yhdBRn3 .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-uy4yhdBRn3 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uy4yhdBRn3 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uy4yhdBRn3 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uy4yhdBRn3 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uy4yhdBRn3 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uy4yhdBRn3 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uy4yhdBRn3 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uy4yhdBRn3 .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-uy4yhdBRn3 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uy4yhdBRn3 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uy4yhdBRn3 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uy4yhdBRn3 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uy4yhdBRn3 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uy4yhdBRn3 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uy4yhdBRn3 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uy4yhdBRn3 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uy4yhdBRn3 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uy4yhdBRn3 .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-uy4yhdBRn3 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uy4yhdBRn3 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uy4yhdBRn3 .dropdown-item.active,
.cid-uy4yhdBRn3 .dropdown-item:active {
  background-color: transparent;
}
.cid-uy4yhdBRn3 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uy4yhdBRn3 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uy4yhdBRn3 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uy4yhdBRn3 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #113371;
}
.cid-uy4yhdBRn3 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uy4yhdBRn3 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uy4yhdBRn3 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uy4yhdBRn3 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uy4yhdBRn3 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uy4yhdBRn3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uy4yhdBRn3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uy4yhdBRn3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uy4yhdBRn3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uy4yhdBRn3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uy4yhdBRn3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uy4yhdBRn3 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uy4yhdBRn3 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uy4yhdBRn3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uy4yhdBRn3 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uy4yhdBRn3 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uy4yhdBRn3 .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-uy4yhdBRn3 .navbar {
    height: 70px;
  }
  .cid-uy4yhdBRn3 .navbar.opened {
    height: auto;
  }
  .cid-uy4yhdBRn3 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uy4yheoQJu {
  padding-top: 7rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uy4yheoQJu .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uy4yheoQJu .row {
  flex-direction: row-reverse;
}
.cid-uy4yheoQJu img {
  width: 100%;
}
.cid-uy4yhf0RuP {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uy4yhf0RuP .mbr-section-title {
  color: #bbbbbb;
  text-align: center;
}
.cid-uy4yhf0RuP .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-uy4yhf0RuP .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-uy4yhfEToF {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uy4yhfEToF .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uy4yhfEToF .row {
  flex-direction: row-reverse;
}
.cid-uy4yhfEToF img {
  width: 100%;
}
.cid-uy4yhgjRtN {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uy4yhgjRtN .mbr-section-title {
  color: #ff0000;
  text-align: center;
}
.cid-uy4yhgjRtN .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-uy4yhgWrlV {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ff0000;
}
.cid-uy4yhgWrlV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uy4yhgWrlV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uy4yhgWrlV .mbr-text {
  color: #767676;
}
.cid-uy4yhgWrlV .mbr-section-subtitle {
  color: #767676;
}
.cid-uy4yhgWrlV .title .num {
  width: 100%;
  display: block;
}
.cid-uy4yhgWrlV .title .card-title {
  z-index: 1;
}
.cid-uy4yhgWrlV .num {
  color: #ffffff;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-uy4yhgWrlV * {
    text-align: center !important;
  }
  .cid-uy4yhgWrlV .content-column {
    margin-bottom: 2rem;
  }
}
.cid-uy4yhgWrlV .card-title,
.cid-uy4yhgWrlV .card-img {
  text-align: center;
  color: #ffffff;
}
.cid-uS2wTknXXt {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uS2wTknXXt .mbr-section-title {
  color: #ff0000;
  text-align: center;
}
.cid-uS2wTknXXt .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-uS2wV5qco0 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uS2wV5qco0 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uS2wV5qco0 .row {
  flex-direction: row-reverse;
}
.cid-uS2wV5qco0 img {
  width: 100%;
}
.cid-uS2wVZFYib {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uS2wVZFYib .mbr-section-title {
  color: #ff0000;
  text-align: center;
}
.cid-uS2wVZFYib .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-uS2wX0zq1A {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uS2wX0zq1A .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uS2wX0zq1A .row {
  flex-direction: row-reverse;
}
.cid-uS2wX0zq1A img {
  width: 100%;
}
.cid-uS2R98N5yF {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uS2R98N5yF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uS2R98N5yF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uS2R98N5yF .item {
  padding-bottom: 2rem;
}
.cid-uS2R98N5yF .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uS2R98N5yF .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uS2R98N5yF .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-uS2R98N5yF .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uS2R98N5yF .carousel-control,
.cid-uS2R98N5yF .close {
  background: #1b1b1b;
}
.cid-uS2R98N5yF .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uS2R98N5yF .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uS2R98N5yF .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uS2R98N5yF .carousel-control-next span {
  margin-left: 5px;
}
.cid-uS2R98N5yF .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-uS2R98N5yF .close::before {
  content: '\e91a';
}
.cid-uS2R98N5yF .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uS2R98N5yF .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-uS2R98N5yF .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uS2R98N5yF .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uS2R98N5yF .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uS2R98N5yF .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uS2R98N5yF .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-uS2R98N5yF .carousel-indicators li.active,
.cid-uS2R98N5yF .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uS2R98N5yF .carousel-indicators li::after,
.cid-uS2R98N5yF .carousel-indicators li::before {
  content: none;
}
.cid-uS2R98N5yF .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uS2R98N5yF .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uS2R98N5yF .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uS2R98N5yF .carousel-indicators {
    display: none;
  }
}
.cid-uS2R98N5yF .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uS2R98N5yF .carousel-inner > .active {
  display: block;
}
.cid-uS2R98N5yF .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uS2R98N5yF .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uS2R98N5yF .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uS2R98N5yF .carousel-control,
  .cid-uS2R98N5yF .carousel-indicators,
  .cid-uS2R98N5yF .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uS2R98N5yF .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uS2R98N5yF .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uS2R98N5yF .carousel-indicators .active,
.cid-uS2R98N5yF .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uS2R98N5yF .carousel-indicators .active {
  background: #fff;
}
.cid-uS2R98N5yF .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uS2R98N5yF .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uS2R98N5yF .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uS2R98N5yF .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uS2R98N5yF .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uS2R98N5yF .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uS2R98N5yF .carousel {
  width: 100%;
}
.cid-uS2R98N5yF .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uS2R98N5yF .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uS2R98N5yF .modal.fade .modal-dialog,
.cid-uS2R98N5yF .modal.in .modal-dialog {
  transform: none;
}
.cid-uS2R98N5yF .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uS2R98N5yF H6 {
  text-align: center;
}
.cid-uy4yhzf7UX {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uy4yhzf7UX .mbr-section-title {
  color: #ff0000;
  text-align: center;
}
.cid-uy4yhzf7UX .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-uy4yhA7YbU {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #113371;
}
.cid-uy4yhA7YbU .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uy4yhA7YbU .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uy4yhA7YbU .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uy4yhA7YbU .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uy4yhA7YbU .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uy4yhA7YbU .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uy4yhA7YbU .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-uy4yhA7YbU .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uy4yhA7YbU .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uy4yhA7YbU .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uy4yhA7YbU .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uy4yhA7YbU .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uy4yhA7YbU .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uy4yhA7YbU .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-v42nkQGJzZ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v42nkQGJzZ nav.navbar {
  position: fixed;
}
.cid-v42nkQGJzZ .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-v42nkQGJzZ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v42nkQGJzZ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v42nkQGJzZ .dropdown-item:hover,
.cid-v42nkQGJzZ .dropdown-item:focus {
  background: #ff0000 !important;
  color: white !important;
}
.cid-v42nkQGJzZ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v42nkQGJzZ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v42nkQGJzZ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v42nkQGJzZ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v42nkQGJzZ .nav-link {
  position: relative;
}
.cid-v42nkQGJzZ .container {
  display: flex;
  margin: auto;
}
.cid-v42nkQGJzZ .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v42nkQGJzZ .dropdown-menu,
.cid-v42nkQGJzZ .navbar.opened {
  background: #113371 !important;
}
.cid-v42nkQGJzZ .nav-item:focus,
.cid-v42nkQGJzZ .nav-link:focus {
  outline: none;
}
.cid-v42nkQGJzZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v42nkQGJzZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v42nkQGJzZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v42nkQGJzZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v42nkQGJzZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v42nkQGJzZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v42nkQGJzZ .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-v42nkQGJzZ .navbar.opened {
  transition: all 0.3s;
}
.cid-v42nkQGJzZ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v42nkQGJzZ .navbar .navbar-logo img {
  width: auto;
}
.cid-v42nkQGJzZ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v42nkQGJzZ .navbar.collapsed {
  justify-content: center;
}
.cid-v42nkQGJzZ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v42nkQGJzZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v42nkQGJzZ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.4rem);
  }
}
.cid-v42nkQGJzZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v42nkQGJzZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v42nkQGJzZ .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-v42nkQGJzZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v42nkQGJzZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v42nkQGJzZ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v42nkQGJzZ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v42nkQGJzZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v42nkQGJzZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v42nkQGJzZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v42nkQGJzZ .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-v42nkQGJzZ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v42nkQGJzZ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v42nkQGJzZ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v42nkQGJzZ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v42nkQGJzZ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v42nkQGJzZ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v42nkQGJzZ .navbar.navbar-short {
  min-height: 60px;
}
.cid-v42nkQGJzZ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v42nkQGJzZ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v42nkQGJzZ .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-v42nkQGJzZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v42nkQGJzZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v42nkQGJzZ .dropdown-item.active,
.cid-v42nkQGJzZ .dropdown-item:active {
  background-color: transparent;
}
.cid-v42nkQGJzZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v42nkQGJzZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v42nkQGJzZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v42nkQGJzZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #113371;
}
.cid-v42nkQGJzZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v42nkQGJzZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v42nkQGJzZ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v42nkQGJzZ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v42nkQGJzZ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v42nkQGJzZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v42nkQGJzZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v42nkQGJzZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v42nkQGJzZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v42nkQGJzZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v42nkQGJzZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v42nkQGJzZ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v42nkQGJzZ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v42nkQGJzZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v42nkQGJzZ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v42nkQGJzZ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v42nkQGJzZ .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-v42nkQGJzZ .navbar {
    height: 70px;
  }
  .cid-v42nkQGJzZ .navbar.opened {
    height: auto;
  }
  .cid-v42nkQGJzZ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v42nkR5uFn {
  padding-top: 7rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-v42nkR5uFn .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v42nkR5uFn .row {
  flex-direction: row-reverse;
}
.cid-v42nkR5uFn img {
  width: 100%;
}
.cid-v42nkRlY6B {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v42nkRlY6B .mbr-section-title {
  color: #bbbbbb;
  text-align: center;
}
.cid-v42nkRlY6B .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-v42nkRlY6B .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-v42nkRClAk {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-v42nkRClAk .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v42nkRClAk .row {
  flex-direction: row-reverse;
}
.cid-v42nkRClAk img {
  width: 100%;
}
.cid-v42nkRR41l {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v42nkRR41l .mbr-section-title {
  color: #ff0000;
  text-align: center;
}
.cid-v42nkRR41l .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-v42nFj0LCl {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ff0000;
}
.cid-v42nFj0LCl .mbr-fallback-image.disabled {
  display: none;
}
.cid-v42nFj0LCl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v42nFj0LCl .mbr-text {
  color: #767676;
}
.cid-v42nFj0LCl .mbr-section-subtitle {
  color: #767676;
}
.cid-v42nFj0LCl .title .num {
  width: 100%;
  display: block;
}
.cid-v42nFj0LCl .title .card-title {
  z-index: 1;
}
.cid-v42nFj0LCl .num {
  color: #ffffff;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-v42nFj0LCl * {
    text-align: center !important;
  }
  .cid-v42nFj0LCl .content-column {
    margin-bottom: 2rem;
  }
}
.cid-v42nFj0LCl .card-title,
.cid-v42nFj0LCl .card-img {
  text-align: center;
  color: #ffffff;
}
.cid-v42nSREI3i {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v42nSREI3i .mbr-section-title {
  color: #ff0000;
  text-align: center;
}
.cid-v42nSREI3i .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-v42nTBucDR {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-v42nTBucDR .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v42nTBucDR .row {
  flex-direction: row-reverse;
}
.cid-v42nTBucDR img {
  width: 100%;
}
.cid-v54NfSiToE {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v54NfSiToE .mbr-fallback-image.disabled {
  display: none;
}
.cid-v54NfSiToE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v54NfSiToE .video-wrapper iframe {
  width: 100%;
}
.cid-v54NfSiToE .mbr-section-title,
.cid-v54NfSiToE .mbr-section-subtitle,
.cid-v54NfSiToE .mbr-text {
  text-align: center;
}
.cid-v42nUcDLsg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v42nUcDLsg .mbr-section-title {
  color: #ff0000;
  text-align: center;
}
.cid-v42nUcDLsg .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-v42nUPRLtI {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ff0000;
}
.cid-v42nUPRLtI .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-v42nUPRLtI .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-v42nl09ElF {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #113371;
}
.cid-v42nl09ElF .row-links {
  width: 100%;
  justify-content: center;
}
.cid-v42nl09ElF .social-row {
  width: 100%;
  justify-content: center;
}
.cid-v42nl09ElF .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-v42nl09ElF .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-v42nl09ElF .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-v42nl09ElF .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-v42nl09ElF .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-v42nl09ElF .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-v42nl09ElF .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-v42nl09ElF .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-v42nl09ElF .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-v42nl09ElF .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-v42nl09ElF .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-v42nl09ElF .media-container-row .row-copirayt p {
  width: 100%;
}
