.btn {
  border-width: 2px;
}
body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Merriweather', serif;
  font-size: 2.5rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 3.125rem;
}
.display-2 {
  font-family: 'Lora', serif;
  font-size: 2rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-4 {
  font-family: 'Merriweather', serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Lora', serif;
  font-size: 1.5rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 1.875rem;
}
.display-7 {
  font-family: 'Lora', 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: 2rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 1.75rem;
    font-size: calc( 1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.35rem + (2 - 1.35) * ((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.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((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: #bbbbbb !important;
}
.bg-success {
  background-color: #232323 !important;
}
.bg-info {
  background-color: #5e5959 !important;
}
.bg-warning {
  background-color: #bbbbbb !important;
}
.bg-danger {
  background-color: #ffffff !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #bbbbbb !important;
  border-color: #bbbbbb !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: #909090 !important;
  border-color: #909090 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #909090 !important;
  border-color: #909090 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #000000 !important;
  border-color: #000000 !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: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-info,
.btn-info:active {
  background-color: #5e5959 !important;
  border-color: #5e5959 !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: #312f2f !important;
  border-color: #312f2f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #312f2f !important;
  border-color: #312f2f !important;
}
.btn-success,
.btn-success: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-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.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-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #bbbbbb !important;
  border-color: #bbbbbb !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: #909090 !important;
  border-color: #909090 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #909090 !important;
  border-color: #909090 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !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: #545454 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !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: #bbbbbb;
  color: #bbbbbb;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #909090 !important;
  background-color: transparent!important;
  border-color: #909090 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #bbbbbb !important;
  border-color: #bbbbbb !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #000000;
  color: #000000;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #5e5959;
  color: #5e5959;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #312f2f !important;
  background-color: transparent!important;
  border-color: #312f2f !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #5e5959 !important;
  border-color: #5e5959 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  color: #232323;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #bbbbbb;
  color: #bbbbbb;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #909090 !important;
  background-color: transparent!important;
  border-color: #909090 !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #bbbbbb !important;
  border-color: #bbbbbb !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent!important;
  border-color: #d4d4d4 !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !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: #bbbbbb !important;
}
.text-secondary {
  color: #000000 !important;
}
.text-success {
  color: #232323 !important;
}
.text-info {
  color: #5e5959 !important;
}
.text-warning {
  color: #bbbbbb !important;
}
.text-danger {
  color: #ffffff !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #888888 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #000000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #000000 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #2a2727 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #888888 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #cccccc !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: #bbbbbb;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #5e5959;
}
.alert-warning {
  background-color: #bbbbbb;
}
.alert-danger {
  background-color: #ffffff;
}
.mbr-gallery-filter li.active .btn {
  background-color: #bbbbbb;
  border-color: #bbbbbb;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #bbbbbb;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fbfbfb;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #d5d5d5;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #9e9999;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #fbfbfb;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.form-control {
  font-family: 'Merriweather', 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: #bbbbbb !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Merriweather', 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: #bbbbbb;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #bbbbbb;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #bbbbbb;
}
.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: #bbbbbb;
  border-bottom-color: #bbbbbb;
}
.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: #000000 !important;
  background-color: #bbbbbb !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #000000 !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='%23bbbbbb' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
*:focus-visible {
  outline: red solid 2px !important;
  outline-offset: 2px !important;
  transition: outline 0.2s ease-in-out;
}
.cid-uL4cG6elmz .navbar-dropdown {
  position: relative !important;
}
.cid-uL4cG6elmz .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-uL4cG6elmz .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uL4cG6elmz .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uL4cG6elmz .dropdown-item:hover,
.cid-uL4cG6elmz .dropdown-item:focus {
  background: #bbbbbb !important;
  color: white !important;
}
.cid-uL4cG6elmz .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uL4cG6elmz .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uL4cG6elmz .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uL4cG6elmz .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uL4cG6elmz .nav-link {
  position: relative;
}
.cid-uL4cG6elmz .container {
  display: flex;
  margin: auto;
}
.cid-uL4cG6elmz .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uL4cG6elmz .dropdown-menu,
.cid-uL4cG6elmz .navbar.opened {
  background: #ffffff !important;
}
.cid-uL4cG6elmz .nav-item:focus,
.cid-uL4cG6elmz .nav-link:focus {
  outline: none;
}
.cid-uL4cG6elmz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uL4cG6elmz .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uL4cG6elmz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uL4cG6elmz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uL4cG6elmz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uL4cG6elmz .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uL4cG6elmz .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: #ffffff;
}
.cid-uL4cG6elmz .navbar.opened {
  transition: all 0.3s;
}
.cid-uL4cG6elmz .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uL4cG6elmz .navbar .navbar-logo img {
  width: auto;
}
.cid-uL4cG6elmz .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uL4cG6elmz .navbar.collapsed {
  justify-content: center;
}
.cid-uL4cG6elmz .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uL4cG6elmz .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uL4cG6elmz .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uL4cG6elmz .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uL4cG6elmz .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uL4cG6elmz .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-uL4cG6elmz .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uL4cG6elmz .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uL4cG6elmz .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uL4cG6elmz .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uL4cG6elmz .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uL4cG6elmz .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uL4cG6elmz .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uL4cG6elmz .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-uL4cG6elmz .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uL4cG6elmz .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uL4cG6elmz .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uL4cG6elmz .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uL4cG6elmz .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uL4cG6elmz .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uL4cG6elmz .navbar.navbar-short {
  min-height: 60px;
}
.cid-uL4cG6elmz .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uL4cG6elmz .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uL4cG6elmz .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-uL4cG6elmz .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uL4cG6elmz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uL4cG6elmz .dropdown-item.active,
.cid-uL4cG6elmz .dropdown-item:active {
  background-color: transparent;
}
.cid-uL4cG6elmz .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uL4cG6elmz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uL4cG6elmz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uL4cG6elmz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uL4cG6elmz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uL4cG6elmz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uL4cG6elmz ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uL4cG6elmz .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uL4cG6elmz button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uL4cG6elmz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #05386b;
}
.cid-uL4cG6elmz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uL4cG6elmz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uL4cG6elmz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uL4cG6elmz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uL4cG6elmz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uL4cG6elmz nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uL4cG6elmz nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uL4cG6elmz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uL4cG6elmz .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uL4cG6elmz a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uL4cG6elmz .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-uL4cG6elmz .navbar {
    height: 70px;
  }
  .cid-uL4cG6elmz .navbar.opened {
    height: auto;
  }
  .cid-uL4cG6elmz .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uLxVI7MsOT {
  background-image: url("../../../assets/images/01c272ca202670e22140a774921bdcb003ee6380f2-2000x1333.jpg");
}
.cid-uLxVI7MsOT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLxVI7MsOT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uL3aCXkyjo {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background: #fafafa;
}
.cid-uL3aCXkyjo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uL3aCXkyjo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uL3aCXkyjo .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-uL3aCXkyjo .team-card:hover {
  transform: translateY(-10px);
}
.cid-uL3aCXkyjo .card-wrap {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-uL3aCXkyjo .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-uL3aCXkyjo .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-uL3aCXkyjo .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uL3aCXkyjo .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-uL3aCXkyjo .social-row {
  text-align: center;
}
.cid-uL3aCXkyjo .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-uL3aCXkyjo .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-uL3aCXkyjo .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uL3aCXkyjo .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3raQNj422 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v3raQNj422 img {
  width: 120px;
  margin: auto;
}
.cid-v3raQNj422 .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-v3raQNj422 .card {
    max-width: 12.5%;
  }
}
.cid-v3raQNj422 .mbr-section-subtitle {
  text-align: center;
}
.cid-uLyg1tn61Z {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uLyg1tn61Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLyg1tn61Z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLyg1tn61Z .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-uLyg1tn61Z .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-uLyg1tn61Z .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uLyg1tn61Z .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-uLyg1tn61Z .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #bbbbbb;
}
.cid-uLyKnUl8Iq {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #747070;
}
.cid-uLyKnUl8Iq .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uLyKnUl8Iq .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uLyKnUl8Iq .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uLyKnUl8Iq .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uLyKnUl8Iq .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uLyKnUl8Iq .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uLyKnUl8Iq .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-uLyKnUl8Iq .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uLyKnUl8Iq .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uLyKnUl8Iq .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uLyKnUl8Iq .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uLyKnUl8Iq .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uLyKnUl8Iq .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uLyKnUl8Iq .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uL4cG6elmz .navbar-dropdown {
  position: relative !important;
}
.cid-uL4cG6elmz .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-uL4cG6elmz .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uL4cG6elmz .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uL4cG6elmz .dropdown-item:hover,
.cid-uL4cG6elmz .dropdown-item:focus {
  background: #bbbbbb !important;
  color: white !important;
}
.cid-uL4cG6elmz .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uL4cG6elmz .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uL4cG6elmz .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uL4cG6elmz .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uL4cG6elmz .nav-link {
  position: relative;
}
.cid-uL4cG6elmz .container {
  display: flex;
  margin: auto;
}
.cid-uL4cG6elmz .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uL4cG6elmz .dropdown-menu,
.cid-uL4cG6elmz .navbar.opened {
  background: #ffffff !important;
}
.cid-uL4cG6elmz .nav-item:focus,
.cid-uL4cG6elmz .nav-link:focus {
  outline: none;
}
.cid-uL4cG6elmz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uL4cG6elmz .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uL4cG6elmz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uL4cG6elmz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uL4cG6elmz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uL4cG6elmz .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uL4cG6elmz .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: #ffffff;
}
.cid-uL4cG6elmz .navbar.opened {
  transition: all 0.3s;
}
.cid-uL4cG6elmz .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uL4cG6elmz .navbar .navbar-logo img {
  width: auto;
}
.cid-uL4cG6elmz .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uL4cG6elmz .navbar.collapsed {
  justify-content: center;
}
.cid-uL4cG6elmz .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uL4cG6elmz .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uL4cG6elmz .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uL4cG6elmz .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uL4cG6elmz .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uL4cG6elmz .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-uL4cG6elmz .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uL4cG6elmz .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uL4cG6elmz .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uL4cG6elmz .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uL4cG6elmz .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uL4cG6elmz .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uL4cG6elmz .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uL4cG6elmz .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-uL4cG6elmz .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uL4cG6elmz .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uL4cG6elmz .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uL4cG6elmz .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uL4cG6elmz .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uL4cG6elmz .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uL4cG6elmz .navbar.navbar-short {
  min-height: 60px;
}
.cid-uL4cG6elmz .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uL4cG6elmz .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uL4cG6elmz .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-uL4cG6elmz .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uL4cG6elmz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uL4cG6elmz .dropdown-item.active,
.cid-uL4cG6elmz .dropdown-item:active {
  background-color: transparent;
}
.cid-uL4cG6elmz .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uL4cG6elmz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uL4cG6elmz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uL4cG6elmz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uL4cG6elmz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uL4cG6elmz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uL4cG6elmz ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uL4cG6elmz .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uL4cG6elmz button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uL4cG6elmz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #05386b;
}
.cid-uL4cG6elmz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uL4cG6elmz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uL4cG6elmz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uL4cG6elmz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uL4cG6elmz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uL4cG6elmz nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uL4cG6elmz nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uL4cG6elmz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uL4cG6elmz .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uL4cG6elmz a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uL4cG6elmz .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-uL4cG6elmz .navbar {
    height: 70px;
  }
  .cid-uL4cG6elmz .navbar.opened {
    height: auto;
  }
  .cid-uL4cG6elmz .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uLyd4JcnqV {
  padding-top: 9rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/0157c2dc044c12bc4cb4411e6d728b37fa54ace4b5-2000x1333.jpg");
}
.cid-uLyd4JcnqV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLyd4JcnqV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLyd4JcnqV .mbr-text,
.cid-uLyd4JcnqV .mbr-section-btn {
  color: #232323;
}
.cid-uLyd4JcnqV .card-title,
.cid-uLyd4JcnqV .card-box {
  color: #ffffff;
}
.cid-uLyd4JcnqV .mbr-text,
.cid-uLyd4JcnqV .link-wrap {
  color: #ffffff;
}
.cid-uLysu9QL8e {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uLysu9QL8e .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLysu9QL8e .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-uLysu9QL8e .row {
    flex-direction: column-reverse;
  }
  .cid-uLysu9QL8e .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-uLysu9QL8e .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-uLysu9QL8e .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uLysu9QL8e .media-content,
.cid-uLysu9QL8e .mbr-figure {
  align-self: center;
}
.cid-uLysu9QL8e .mbr-figure iframe {
  width: 100%;
}
.cid-uLysu9QL8e .mbr-text,
.cid-uLysu9QL8e .mbr-section-btn {
  text-align: left;
}
.cid-uLyupxQbiM {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uLyupxQbiM img,
.cid-uLyupxQbiM .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uLyupxQbiM .item:focus,
.cid-uLyupxQbiM span:focus {
  outline: none;
}
.cid-uLyupxQbiM .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uLyupxQbiM .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uLyupxQbiM .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uLyupxQbiM .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uLyupxQbiM .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uLyupxQbiM .mbr-section-title {
  color: #232323;
}
.cid-uMo0XcHQJD {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uLyq5ylSPr {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uLyq5ylSPr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLyq5ylSPr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLyq5ylSPr .media-container-row {
  justify-content: space-between;
}
.cid-uLyq5ylSPr .text-content {
  max-width: 50%;
}
@media (max-width: 768px) {
  .cid-uLyq5ylSPr .text-content {
    max-width: none;
  }
}
.cid-uLyq5ylSPr .mbr-iconfont-social {
  margin: 0.5rem;
  font-size: 32px;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #6592e6;
  border: 2px solid #6592e6;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uLyq5ylSPr .mbr-iconfont-social:before {
  padding: 0.6rem;
}
.cid-uLyq5ylSPr .mbr-iconfont-social:hover {
  background-color: #6592e6;
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-uLyq5ylSPr .icons {
    justify-content: center !important;
  }
  .cid-uLyq5ylSPr .text-content * {
    text-align: center;
  }
}
.cid-uLyq5ylSPr P {
  text-align: left;
}
.cid-uLyq1I77ol {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background: #ffffff;
}
.cid-uLyq1I77ol .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLyq1I77ol .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLyq1I77ol .google-map {
  height: 30rem;
  position: relative;
}
.cid-uLyq1I77ol .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uLyq1I77ol .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-uLyq1I77ol .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uLyq1I77ol .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uLyKnUl8Iq {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #747070;
}
.cid-uLyKnUl8Iq .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uLyKnUl8Iq .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uLyKnUl8Iq .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uLyKnUl8Iq .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uLyKnUl8Iq .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uLyKnUl8Iq .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uLyKnUl8Iq .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-uLyKnUl8Iq .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uLyKnUl8Iq .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uLyKnUl8Iq .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uLyKnUl8Iq .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uLyKnUl8Iq .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uLyKnUl8Iq .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uLyKnUl8Iq .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uL4cG6elmz .navbar-dropdown {
  position: relative !important;
}
.cid-uL4cG6elmz .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-uL4cG6elmz .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uL4cG6elmz .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uL4cG6elmz .dropdown-item:hover,
.cid-uL4cG6elmz .dropdown-item:focus {
  background: #bbbbbb !important;
  color: white !important;
}
.cid-uL4cG6elmz .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uL4cG6elmz .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uL4cG6elmz .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uL4cG6elmz .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uL4cG6elmz .nav-link {
  position: relative;
}
.cid-uL4cG6elmz .container {
  display: flex;
  margin: auto;
}
.cid-uL4cG6elmz .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uL4cG6elmz .dropdown-menu,
.cid-uL4cG6elmz .navbar.opened {
  background: #ffffff !important;
}
.cid-uL4cG6elmz .nav-item:focus,
.cid-uL4cG6elmz .nav-link:focus {
  outline: none;
}
.cid-uL4cG6elmz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uL4cG6elmz .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uL4cG6elmz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uL4cG6elmz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uL4cG6elmz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uL4cG6elmz .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uL4cG6elmz .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: #ffffff;
}
.cid-uL4cG6elmz .navbar.opened {
  transition: all 0.3s;
}
.cid-uL4cG6elmz .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uL4cG6elmz .navbar .navbar-logo img {
  width: auto;
}
.cid-uL4cG6elmz .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uL4cG6elmz .navbar.collapsed {
  justify-content: center;
}
.cid-uL4cG6elmz .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uL4cG6elmz .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uL4cG6elmz .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uL4cG6elmz .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uL4cG6elmz .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uL4cG6elmz .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-uL4cG6elmz .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uL4cG6elmz .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uL4cG6elmz .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uL4cG6elmz .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uL4cG6elmz .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uL4cG6elmz .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uL4cG6elmz .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uL4cG6elmz .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-uL4cG6elmz .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uL4cG6elmz .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uL4cG6elmz .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uL4cG6elmz .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uL4cG6elmz .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uL4cG6elmz .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uL4cG6elmz .navbar.navbar-short {
  min-height: 60px;
}
.cid-uL4cG6elmz .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uL4cG6elmz .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uL4cG6elmz .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-uL4cG6elmz .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uL4cG6elmz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uL4cG6elmz .dropdown-item.active,
.cid-uL4cG6elmz .dropdown-item:active {
  background-color: transparent;
}
.cid-uL4cG6elmz .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uL4cG6elmz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uL4cG6elmz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uL4cG6elmz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uL4cG6elmz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uL4cG6elmz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uL4cG6elmz ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uL4cG6elmz .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uL4cG6elmz button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uL4cG6elmz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #05386b;
}
.cid-uL4cG6elmz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uL4cG6elmz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uL4cG6elmz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uL4cG6elmz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uL4cG6elmz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uL4cG6elmz nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uL4cG6elmz nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uL4cG6elmz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uL4cG6elmz .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uL4cG6elmz a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uL4cG6elmz .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-uL4cG6elmz .navbar {
    height: 70px;
  }
  .cid-uL4cG6elmz .navbar.opened {
    height: auto;
  }
  .cid-uL4cG6elmz .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uMc1V4An78 {
  display: flex;
  padding-top: 12rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/image-5.png");
}
.cid-uMc1V4An78 .mbr-overlay {
  background-color: #232323;
  opacity: 0.2;
}
@media (min-width: 768px) {
  .cid-uMc1V4An78 {
    align-items: flex-end;
  }
  .cid-uMc1V4An78 .row {
    justify-content: center;
  }
  .cid-uMc1V4An78 .content-wrap {
    padding: 1rem 3rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uMc1V4An78 .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uMc1V4An78 {
    -webkit-align-items: center;
    align-items: flex-end;
  }
  .cid-uMc1V4An78 .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uMc1V4An78 .content-wrap {
    width: 100%;
  }
}
.cid-uMc1V4An78 .mbr-section-title,
.cid-uMc1V4An78 .mbr-section-subtitle {
  text-align: center;
}
.cid-uMc1V4An78 .mbr-text,
.cid-uMc1V4An78 .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-uMc1V4An78 .mbr-section-title {
  color: #ffffff;
}
.cid-uM6LCNU77A {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uM6LCNU77A img,
.cid-uM6LCNU77A .item-img {
  width: 100%;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-uM6LCNU77A .item:focus,
.cid-uM6LCNU77A span:focus {
  outline: none;
}
.cid-uM6LCNU77A .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uM6LCNU77A .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uM6LCNU77A .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uM6LCNU77A .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uM6LCNU77A .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uM6LCNU77A .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uM6LCNU77A .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uM6LCNU77A .mbr-section-title {
  color: #000000;
}
.cid-uM6LCNU77A .mbr-text,
.cid-uM6LCNU77A .mbr-section-btn {
  text-align: center;
}
.cid-uM6LCNU77A .item-title {
  text-align: center;
}
.cid-uM6LCNU77A .item-subtitle {
  text-align: left;
}
.cid-uMc5icr0fd {
  display: flex;
  padding-top: 12rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/untitled.421.jpeg");
}
.cid-uMc5icr0fd .mbr-overlay {
  background-color: #232323;
  opacity: 0.2;
}
@media (min-width: 768px) {
  .cid-uMc5icr0fd {
    align-items: flex-end;
  }
  .cid-uMc5icr0fd .row {
    justify-content: center;
  }
  .cid-uMc5icr0fd .content-wrap {
    padding: 1rem 3rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uMc5icr0fd .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uMc5icr0fd {
    -webkit-align-items: center;
    align-items: flex-end;
  }
  .cid-uMc5icr0fd .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uMc5icr0fd .content-wrap {
    width: 100%;
  }
}
.cid-uMc5icr0fd .mbr-section-title,
.cid-uMc5icr0fd .mbr-section-subtitle {
  text-align: center;
}
.cid-uMc5icr0fd .mbr-text,
.cid-uMc5icr0fd .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-uMc5icr0fd .mbr-section-title {
  color: #ffffff;
}
.cid-uM6Rj6clGO {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uM6Rj6clGO img,
.cid-uM6Rj6clGO .item-img {
  width: 100%;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-uM6Rj6clGO .item:focus,
.cid-uM6Rj6clGO span:focus {
  outline: none;
}
.cid-uM6Rj6clGO .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uM6Rj6clGO .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uM6Rj6clGO .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uM6Rj6clGO .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uM6Rj6clGO .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uM6Rj6clGO .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uM6Rj6clGO .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uM6Rj6clGO .mbr-section-title {
  color: #000000;
}
.cid-uM6Rj6clGO .mbr-text,
.cid-uM6Rj6clGO .mbr-section-btn {
  text-align: center;
}
.cid-uM6Rj6clGO .item-title {
  text-align: center;
}
.cid-uM6Rj6clGO .item-subtitle {
  text-align: left;
}
.cid-uLyKnUl8Iq {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #747070;
}
.cid-uLyKnUl8Iq .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uLyKnUl8Iq .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uLyKnUl8Iq .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uLyKnUl8Iq .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uLyKnUl8Iq .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uLyKnUl8Iq .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uLyKnUl8Iq .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-uLyKnUl8Iq .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uLyKnUl8Iq .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uLyKnUl8Iq .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uLyKnUl8Iq .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uLyKnUl8Iq .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uLyKnUl8Iq .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uLyKnUl8Iq .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uLyGu8HXbB .navbar-dropdown {
  position: relative !important;
}
.cid-uLyGu8HXbB .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-uLyGu8HXbB .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uLyGu8HXbB .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uLyGu8HXbB .dropdown-item:hover,
.cid-uLyGu8HXbB .dropdown-item:focus {
  background: #bbbbbb !important;
  color: white !important;
}
.cid-uLyGu8HXbB .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uLyGu8HXbB .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uLyGu8HXbB .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uLyGu8HXbB .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uLyGu8HXbB .nav-link {
  position: relative;
}
.cid-uLyGu8HXbB .container {
  display: flex;
  margin: auto;
}
.cid-uLyGu8HXbB .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uLyGu8HXbB .dropdown-menu,
.cid-uLyGu8HXbB .navbar.opened {
  background: #ffffff !important;
}
.cid-uLyGu8HXbB .nav-item:focus,
.cid-uLyGu8HXbB .nav-link:focus {
  outline: none;
}
.cid-uLyGu8HXbB .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uLyGu8HXbB .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uLyGu8HXbB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uLyGu8HXbB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uLyGu8HXbB .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uLyGu8HXbB .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uLyGu8HXbB .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: #ffffff;
}
.cid-uLyGu8HXbB .navbar.opened {
  transition: all 0.3s;
}
.cid-uLyGu8HXbB .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uLyGu8HXbB .navbar .navbar-logo img {
  width: auto;
}
.cid-uLyGu8HXbB .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uLyGu8HXbB .navbar.collapsed {
  justify-content: center;
}
.cid-uLyGu8HXbB .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uLyGu8HXbB .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uLyGu8HXbB .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uLyGu8HXbB .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uLyGu8HXbB .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uLyGu8HXbB .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-uLyGu8HXbB .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uLyGu8HXbB .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uLyGu8HXbB .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uLyGu8HXbB .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uLyGu8HXbB .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uLyGu8HXbB .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uLyGu8HXbB .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uLyGu8HXbB .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-uLyGu8HXbB .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uLyGu8HXbB .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uLyGu8HXbB .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uLyGu8HXbB .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uLyGu8HXbB .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uLyGu8HXbB .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uLyGu8HXbB .navbar.navbar-short {
  min-height: 60px;
}
.cid-uLyGu8HXbB .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uLyGu8HXbB .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uLyGu8HXbB .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-uLyGu8HXbB .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uLyGu8HXbB .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uLyGu8HXbB .dropdown-item.active,
.cid-uLyGu8HXbB .dropdown-item:active {
  background-color: transparent;
}
.cid-uLyGu8HXbB .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uLyGu8HXbB .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uLyGu8HXbB .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uLyGu8HXbB .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uLyGu8HXbB .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uLyGu8HXbB .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uLyGu8HXbB ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uLyGu8HXbB .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uLyGu8HXbB button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uLyGu8HXbB button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #05386b;
}
.cid-uLyGu8HXbB button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uLyGu8HXbB button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uLyGu8HXbB button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uLyGu8HXbB button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uLyGu8HXbB nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uLyGu8HXbB nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uLyGu8HXbB nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uLyGu8HXbB nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uLyGu8HXbB .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uLyGu8HXbB a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uLyGu8HXbB .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-uLyGu8HXbB .navbar {
    height: 70px;
  }
  .cid-uLyGu8HXbB .navbar.opened {
    height: auto;
  }
  .cid-uLyGu8HXbB .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uLyGu9mBoE {
  padding-top: 9rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/image-5.png");
}
.cid-uLyGu9mBoE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLyGu9mBoE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLyGu9mBoE .mbr-text,
.cid-uLyGu9mBoE .mbr-section-btn {
  color: #232323;
}
.cid-uLyGu9mBoE .card-title,
.cid-uLyGu9mBoE .card-box {
  color: #ffffff;
}
.cid-uLyGu9mBoE .mbr-text,
.cid-uLyGu9mBoE .link-wrap {
  color: #ffffff;
}
.cid-uLyROMHsFv {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uLyROMHsFv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLyROMHsFv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLyROMHsFv .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
@media (min-width: 991px) {
  .cid-uLyROMHsFv .item {
    margin-bottom: 4rem;
  }
}
.cid-uLyROMHsFv .item:last-child .icon-box:before {
  display: none;
}
.cid-uLyROMHsFv .item.last .icon-box:before {
  display: none;
}
.cid-uLyROMHsFv .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (max-width: 768px) {
  .cid-uLyROMHsFv .icon-box {
    margin-right: 1rem;
  }
}
.cid-uLyROMHsFv .icon-box::before {
  content: "\e925";
  font-family: Moririse2 !important;
  position: absolute;
  font-size: 32px;
  left: 50%;
  top: 79%;
  top: 100%;
  color: #6592e6;
  transform: translate(-50%, 0);
}
.cid-uLyROMHsFv span {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uLyROMHsFv .card {
    margin-bottom: 2rem;
  }
  .cid-uLyROMHsFv .card-wrapper {
    margin-bottom: 2rem;
  }
  .cid-uLyROMHsFv .icon-box::before {
    top: 141%;
    top: 123%;
  }
}
@media (max-width: 768px) {
  .cid-uLyROMHsFv .icon-box::before {
    top: 114%;
  }
}
.cid-uLyROMHsFv .icon-title {
  color: #000000;
  text-align: left;
}
.cid-uLyROMHsFv .icon-text {
  text-align: left;
}
.cid-uLBOKafPC8 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uLBOKafPC8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLBOKafPC8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-uLBOKafPC8 .container {
    max-width: 1400px;
  }
}
.cid-uLBOKafPC8 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-uLBOKafPC8 .row {
  justify-content: center;
}
.cid-uLyKnUl8Iq {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #747070;
}
.cid-uLyKnUl8Iq .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uLyKnUl8Iq .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uLyKnUl8Iq .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uLyKnUl8Iq .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uLyKnUl8Iq .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uLyKnUl8Iq .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uLyKnUl8Iq .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-uLyKnUl8Iq .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uLyKnUl8Iq .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uLyKnUl8Iq .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uLyKnUl8Iq .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uLyKnUl8Iq .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uLyKnUl8Iq .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uLyKnUl8Iq .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uLyK6ff1uV .navbar-dropdown {
  position: relative !important;
}
.cid-uLyK6ff1uV .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-uLyK6ff1uV .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uLyK6ff1uV .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uLyK6ff1uV .dropdown-item:hover,
.cid-uLyK6ff1uV .dropdown-item:focus {
  background: #bbbbbb !important;
  color: white !important;
}
.cid-uLyK6ff1uV .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uLyK6ff1uV .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uLyK6ff1uV .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uLyK6ff1uV .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uLyK6ff1uV .nav-link {
  position: relative;
}
.cid-uLyK6ff1uV .container {
  display: flex;
  margin: auto;
}
.cid-uLyK6ff1uV .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uLyK6ff1uV .dropdown-menu,
.cid-uLyK6ff1uV .navbar.opened {
  background: #ffffff !important;
}
.cid-uLyK6ff1uV .nav-item:focus,
.cid-uLyK6ff1uV .nav-link:focus {
  outline: none;
}
.cid-uLyK6ff1uV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uLyK6ff1uV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uLyK6ff1uV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uLyK6ff1uV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uLyK6ff1uV .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uLyK6ff1uV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uLyK6ff1uV .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: #ffffff;
}
.cid-uLyK6ff1uV .navbar.opened {
  transition: all 0.3s;
}
.cid-uLyK6ff1uV .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uLyK6ff1uV .navbar .navbar-logo img {
  width: auto;
}
.cid-uLyK6ff1uV .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uLyK6ff1uV .navbar.collapsed {
  justify-content: center;
}
.cid-uLyK6ff1uV .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uLyK6ff1uV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uLyK6ff1uV .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uLyK6ff1uV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uLyK6ff1uV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uLyK6ff1uV .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-uLyK6ff1uV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uLyK6ff1uV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uLyK6ff1uV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uLyK6ff1uV .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uLyK6ff1uV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uLyK6ff1uV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uLyK6ff1uV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uLyK6ff1uV .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-uLyK6ff1uV .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uLyK6ff1uV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uLyK6ff1uV .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uLyK6ff1uV .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uLyK6ff1uV .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uLyK6ff1uV .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uLyK6ff1uV .navbar.navbar-short {
  min-height: 60px;
}
.cid-uLyK6ff1uV .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uLyK6ff1uV .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uLyK6ff1uV .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-uLyK6ff1uV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uLyK6ff1uV .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uLyK6ff1uV .dropdown-item.active,
.cid-uLyK6ff1uV .dropdown-item:active {
  background-color: transparent;
}
.cid-uLyK6ff1uV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uLyK6ff1uV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uLyK6ff1uV .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uLyK6ff1uV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uLyK6ff1uV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uLyK6ff1uV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uLyK6ff1uV ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uLyK6ff1uV .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uLyK6ff1uV button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uLyK6ff1uV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #05386b;
}
.cid-uLyK6ff1uV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uLyK6ff1uV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uLyK6ff1uV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uLyK6ff1uV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uLyK6ff1uV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uLyK6ff1uV nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uLyK6ff1uV nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uLyK6ff1uV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uLyK6ff1uV .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uLyK6ff1uV a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uLyK6ff1uV .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-uLyK6ff1uV .navbar {
    height: 70px;
  }
  .cid-uLyK6ff1uV .navbar.opened {
    height: auto;
  }
  .cid-uLyK6ff1uV .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uLyKC2d7wc {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uLyKC2d7wc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLyKC2d7wc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLyKC2d7wc .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uLyKC2d7wc .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uLyKC2d7wc .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #bbbbbb;
}
.cid-uLyKC2d7wc .panel-body,
.cid-uLyKC2d7wc .card-header {
  padding: 1rem 0;
}
.cid-uLyKC2d7wc .panel-title-edit {
  color: #000000;
}
.cid-uMcc5NBXLD {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uMcc5NBXLD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMcc5NBXLD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMcc5NBXLD .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uMcc5NBXLD .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uMcc5NBXLD .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #bbbbbb;
}
.cid-uMcc5NBXLD .panel-body,
.cid-uMcc5NBXLD .card-header {
  padding: 1rem 0;
}
.cid-uMcc5NBXLD .panel-title-edit {
  color: #000000;
}
.cid-uXBjBgIO9c {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uXBjBgIO9c .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uXBjBgIO9c form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uXBjBgIO9c form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uXBjBgIO9c form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uXBjBgIO9c .content-head {
  max-width: 800px;
}
.cid-uLyKnUl8Iq {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #747070;
}
.cid-uLyKnUl8Iq .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uLyKnUl8Iq .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uLyKnUl8Iq .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uLyKnUl8Iq .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uLyKnUl8Iq .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uLyKnUl8Iq .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uLyKnUl8Iq .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-uLyKnUl8Iq .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uLyKnUl8Iq .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uLyKnUl8Iq .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uLyKnUl8Iq .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uLyKnUl8Iq .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uLyKnUl8Iq .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uLyKnUl8Iq .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uL8DLaONTm .navbar-dropdown {
  position: relative !important;
}
.cid-uL8DLaONTm .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-uL8DLaONTm .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uL8DLaONTm .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uL8DLaONTm .dropdown-item:hover,
.cid-uL8DLaONTm .dropdown-item:focus {
  background: #bbbbbb !important;
  color: white !important;
}
.cid-uL8DLaONTm .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uL8DLaONTm .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uL8DLaONTm .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uL8DLaONTm .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uL8DLaONTm .nav-link {
  position: relative;
}
.cid-uL8DLaONTm .container {
  display: flex;
  margin: auto;
}
.cid-uL8DLaONTm .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uL8DLaONTm .dropdown-menu,
.cid-uL8DLaONTm .navbar.opened {
  background: #ffffff !important;
}
.cid-uL8DLaONTm .nav-item:focus,
.cid-uL8DLaONTm .nav-link:focus {
  outline: none;
}
.cid-uL8DLaONTm .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uL8DLaONTm .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uL8DLaONTm .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uL8DLaONTm .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uL8DLaONTm .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uL8DLaONTm .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uL8DLaONTm .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: #ffffff;
}
.cid-uL8DLaONTm .navbar.opened {
  transition: all 0.3s;
}
.cid-uL8DLaONTm .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uL8DLaONTm .navbar .navbar-logo img {
  width: auto;
}
.cid-uL8DLaONTm .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uL8DLaONTm .navbar.collapsed {
  justify-content: center;
}
.cid-uL8DLaONTm .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uL8DLaONTm .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uL8DLaONTm .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uL8DLaONTm .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uL8DLaONTm .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uL8DLaONTm .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-uL8DLaONTm .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uL8DLaONTm .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uL8DLaONTm .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uL8DLaONTm .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uL8DLaONTm .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uL8DLaONTm .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uL8DLaONTm .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uL8DLaONTm .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-uL8DLaONTm .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uL8DLaONTm .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uL8DLaONTm .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uL8DLaONTm .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uL8DLaONTm .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uL8DLaONTm .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uL8DLaONTm .navbar.navbar-short {
  min-height: 60px;
}
.cid-uL8DLaONTm .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uL8DLaONTm .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uL8DLaONTm .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-uL8DLaONTm .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uL8DLaONTm .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uL8DLaONTm .dropdown-item.active,
.cid-uL8DLaONTm .dropdown-item:active {
  background-color: transparent;
}
.cid-uL8DLaONTm .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uL8DLaONTm .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uL8DLaONTm .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uL8DLaONTm .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uL8DLaONTm .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uL8DLaONTm .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uL8DLaONTm ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uL8DLaONTm .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uL8DLaONTm button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uL8DLaONTm button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #05386b;
}
.cid-uL8DLaONTm button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uL8DLaONTm button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uL8DLaONTm button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uL8DLaONTm button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uL8DLaONTm nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uL8DLaONTm nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uL8DLaONTm nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uL8DLaONTm nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uL8DLaONTm .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uL8DLaONTm a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uL8DLaONTm .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-uL8DLaONTm .navbar {
    height: 70px;
  }
  .cid-uL8DLaONTm .navbar.opened {
    height: auto;
  }
  .cid-uL8DLaONTm .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uLHFQk2EyX {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uLHFQk2EyX .item-subtitle {
  line-height: 1.2;
  color: #232323;
  text-align: center;
}
.cid-uLHFQk2EyX img,
.cid-uLHFQk2EyX .item-img {
  width: 100%;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-uLHFQk2EyX .item:focus,
.cid-uLHFQk2EyX span:focus {
  outline: none;
}
.cid-uLHFQk2EyX .item {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uLHFQk2EyX .item {
    margin-bottom: 1rem;
  }
}
.cid-uLHFQk2EyX .item-wrapper {
  position: relative;
  border-radius: 4px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uLHFQk2EyX .mbr-section-title {
  color: #232323;
}
.cid-uLHFQk2EyX .mbr-text,
.cid-uLHFQk2EyX .mbr-section-btn {
  color: #232323;
  text-align: center;
}
.cid-uLHFQk2EyX .item-title {
  color: #232323;
  text-align: center;
}
.cid-uLHFQk2EyX .content-head {
  max-width: 800px;
}
.cid-uL8EtI1Uc5 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uL8EtI1Uc5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uL8EtI1Uc5 .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-uL8EtI1Uc5 .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uL8EtI1Uc5 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-uL8EtI1Uc5 .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-uL8EtI1Uc5 .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uM6D4aMucR {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uM6D4aMucR img,
.cid-uM6D4aMucR .item-img {
  width: 100%;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-uM6D4aMucR .item:focus,
.cid-uM6D4aMucR span:focus {
  outline: none;
}
.cid-uM6D4aMucR .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uM6D4aMucR .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uM6D4aMucR .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uM6D4aMucR .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uM6D4aMucR .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uM6D4aMucR .mbr-section-title {
  color: #232323;
}
.cid-uM6D4aMucR .mbr-text,
.cid-uM6D4aMucR .mbr-section-btn {
  text-align: left;
}
.cid-uM6D4aMucR .item-title {
  text-align: left;
}
.cid-uM6D4aMucR .item-subtitle {
  text-align: center;
}
.cid-uLHN5vFkkp {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uLHN5vFkkp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLHN5vFkkp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLHN5vFkkp .item {
  padding-bottom: 2rem;
}
.cid-uLHN5vFkkp .item-wrapper {
  height: 400px;
  position: relative;
}
.cid-uLHN5vFkkp .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uLHN5vFkkp .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-uLHN5vFkkp .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uLHN5vFkkp .carousel-control,
.cid-uLHN5vFkkp .close {
  background: #1b1b1b;
}
.cid-uLHN5vFkkp .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uLHN5vFkkp .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uLHN5vFkkp .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uLHN5vFkkp .carousel-control-next span {
  margin-left: 5px;
}
.cid-uLHN5vFkkp .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-uLHN5vFkkp .close::before {
  content: '\e91a';
}
.cid-uLHN5vFkkp .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uLHN5vFkkp .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-uLHN5vFkkp .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uLHN5vFkkp .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uLHN5vFkkp .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uLHN5vFkkp .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uLHN5vFkkp .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-uLHN5vFkkp .carousel-indicators li.active,
.cid-uLHN5vFkkp .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uLHN5vFkkp .carousel-indicators li::after,
.cid-uLHN5vFkkp .carousel-indicators li::before {
  content: none;
}
.cid-uLHN5vFkkp .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uLHN5vFkkp .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uLHN5vFkkp .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uLHN5vFkkp .carousel-indicators {
    display: none;
  }
}
.cid-uLHN5vFkkp .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uLHN5vFkkp .carousel-inner > .active {
  display: block;
}
.cid-uLHN5vFkkp .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uLHN5vFkkp .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uLHN5vFkkp .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uLHN5vFkkp .carousel-control,
  .cid-uLHN5vFkkp .carousel-indicators,
  .cid-uLHN5vFkkp .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uLHN5vFkkp .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uLHN5vFkkp .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uLHN5vFkkp .carousel-indicators .active,
.cid-uLHN5vFkkp .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uLHN5vFkkp .carousel-indicators .active {
  background: #fff;
}
.cid-uLHN5vFkkp .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uLHN5vFkkp .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uLHN5vFkkp .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uLHN5vFkkp .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uLHN5vFkkp .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uLHN5vFkkp .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uLHN5vFkkp .carousel {
  width: 100%;
}
.cid-uLHN5vFkkp .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uLHN5vFkkp .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uLHN5vFkkp .modal.fade .modal-dialog,
.cid-uLHN5vFkkp .modal.in .modal-dialog {
  transform: none;
}
.cid-uLHN5vFkkp .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uLHN5vFkkp H6 {
  text-align: center;
}
.cid-uLyKnUl8Iq {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #747070;
}
.cid-uLyKnUl8Iq .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uLyKnUl8Iq .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uLyKnUl8Iq .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uLyKnUl8Iq .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uLyKnUl8Iq .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uLyKnUl8Iq .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uLyKnUl8Iq .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-uLyKnUl8Iq .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uLyKnUl8Iq .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uLyKnUl8Iq .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uLyKnUl8Iq .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uLyKnUl8Iq .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uLyKnUl8Iq .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uLyKnUl8Iq .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uL9Au18PzK .navbar-dropdown {
  position: relative !important;
}
.cid-uL9Au18PzK .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-uL9Au18PzK .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uL9Au18PzK .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uL9Au18PzK .dropdown-item:hover,
.cid-uL9Au18PzK .dropdown-item:focus {
  background: #bbbbbb !important;
  color: white !important;
}
.cid-uL9Au18PzK .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uL9Au18PzK .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uL9Au18PzK .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uL9Au18PzK .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uL9Au18PzK .nav-link {
  position: relative;
}
.cid-uL9Au18PzK .container {
  display: flex;
  margin: auto;
}
.cid-uL9Au18PzK .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uL9Au18PzK .dropdown-menu,
.cid-uL9Au18PzK .navbar.opened {
  background: #ffffff !important;
}
.cid-uL9Au18PzK .nav-item:focus,
.cid-uL9Au18PzK .nav-link:focus {
  outline: none;
}
.cid-uL9Au18PzK .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uL9Au18PzK .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uL9Au18PzK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uL9Au18PzK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uL9Au18PzK .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uL9Au18PzK .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uL9Au18PzK .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: #ffffff;
}
.cid-uL9Au18PzK .navbar.opened {
  transition: all 0.3s;
}
.cid-uL9Au18PzK .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uL9Au18PzK .navbar .navbar-logo img {
  width: auto;
}
.cid-uL9Au18PzK .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uL9Au18PzK .navbar.collapsed {
  justify-content: center;
}
.cid-uL9Au18PzK .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uL9Au18PzK .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uL9Au18PzK .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uL9Au18PzK .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uL9Au18PzK .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uL9Au18PzK .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-uL9Au18PzK .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uL9Au18PzK .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uL9Au18PzK .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uL9Au18PzK .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uL9Au18PzK .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uL9Au18PzK .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uL9Au18PzK .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uL9Au18PzK .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-uL9Au18PzK .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uL9Au18PzK .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uL9Au18PzK .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uL9Au18PzK .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uL9Au18PzK .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uL9Au18PzK .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uL9Au18PzK .navbar.navbar-short {
  min-height: 60px;
}
.cid-uL9Au18PzK .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uL9Au18PzK .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uL9Au18PzK .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-uL9Au18PzK .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uL9Au18PzK .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uL9Au18PzK .dropdown-item.active,
.cid-uL9Au18PzK .dropdown-item:active {
  background-color: transparent;
}
.cid-uL9Au18PzK .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uL9Au18PzK .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uL9Au18PzK .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uL9Au18PzK .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uL9Au18PzK .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uL9Au18PzK .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uL9Au18PzK ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uL9Au18PzK .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uL9Au18PzK button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uL9Au18PzK button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #05386b;
}
.cid-uL9Au18PzK button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uL9Au18PzK button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uL9Au18PzK button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uL9Au18PzK button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uL9Au18PzK nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uL9Au18PzK nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uL9Au18PzK nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uL9Au18PzK nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uL9Au18PzK .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uL9Au18PzK a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uL9Au18PzK .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-uL9Au18PzK .navbar {
    height: 70px;
  }
  .cid-uL9Au18PzK .navbar.opened {
    height: auto;
  }
  .cid-uL9Au18PzK .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uLJuHTCbGr {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uLJuHTCbGr .item-subtitle {
  line-height: 1.2;
  color: #232323;
  text-align: center;
}
.cid-uLJuHTCbGr img,
.cid-uLJuHTCbGr .item-img {
  width: 100%;
  height: 100%;
  height: 500px;
  object-fit: cover;
}
.cid-uLJuHTCbGr .item:focus,
.cid-uLJuHTCbGr span:focus {
  outline: none;
}
.cid-uLJuHTCbGr .item {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uLJuHTCbGr .item {
    margin-bottom: 1rem;
  }
}
.cid-uLJuHTCbGr .item-wrapper {
  position: relative;
  border-radius: 4px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uLJuHTCbGr .mbr-section-title {
  color: #232323;
}
.cid-uLJuHTCbGr .mbr-text,
.cid-uLJuHTCbGr .mbr-section-btn {
  color: #232323;
  text-align: center;
}
.cid-uLJuHTCbGr .item-title {
  color: #232323;
  text-align: center;
}
.cid-uLJuHTCbGr .content-head {
  max-width: 800px;
}
.cid-uLJtu7dvaU {
  padding-top: 9rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/01b52575f2963284f073553350e371cfff38996e50-2000x1333.jpeg");
}
.cid-uLJtu7dvaU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLJtu7dvaU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLJtu7dvaU .mbr-text,
.cid-uLJtu7dvaU .mbr-section-btn {
  color: #232323;
}
.cid-uLJtu7dvaU .card-title,
.cid-uLJtu7dvaU .card-box {
  color: #ffffff;
}
.cid-uLJtu7dvaU .mbr-text,
.cid-uLJtu7dvaU .link-wrap {
  color: #ffffff;
}
.cid-uLKelqmBcb {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uLKelqmBcb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLKelqmBcb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLKelqmBcb .item {
  padding-bottom: 2rem;
}
.cid-uLKelqmBcb .item-wrapper {
  height: 300px;
  position: relative;
}
.cid-uLKelqmBcb .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uLKelqmBcb .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-uLKelqmBcb .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uLKelqmBcb .carousel-control,
.cid-uLKelqmBcb .close {
  background: #1b1b1b;
}
.cid-uLKelqmBcb .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uLKelqmBcb .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uLKelqmBcb .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uLKelqmBcb .carousel-control-next span {
  margin-left: 5px;
}
.cid-uLKelqmBcb .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-uLKelqmBcb .close::before {
  content: '\e91a';
}
.cid-uLKelqmBcb .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uLKelqmBcb .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-uLKelqmBcb .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uLKelqmBcb .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uLKelqmBcb .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uLKelqmBcb .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uLKelqmBcb .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-uLKelqmBcb .carousel-indicators li.active,
.cid-uLKelqmBcb .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uLKelqmBcb .carousel-indicators li::after,
.cid-uLKelqmBcb .carousel-indicators li::before {
  content: none;
}
.cid-uLKelqmBcb .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uLKelqmBcb .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uLKelqmBcb .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uLKelqmBcb .carousel-indicators {
    display: none;
  }
}
.cid-uLKelqmBcb .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uLKelqmBcb .carousel-inner > .active {
  display: block;
}
.cid-uLKelqmBcb .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uLKelqmBcb .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uLKelqmBcb .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uLKelqmBcb .carousel-control,
  .cid-uLKelqmBcb .carousel-indicators,
  .cid-uLKelqmBcb .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uLKelqmBcb .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uLKelqmBcb .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uLKelqmBcb .carousel-indicators .active,
.cid-uLKelqmBcb .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uLKelqmBcb .carousel-indicators .active {
  background: #fff;
}
.cid-uLKelqmBcb .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uLKelqmBcb .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uLKelqmBcb .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uLKelqmBcb .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uLKelqmBcb .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uLKelqmBcb .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uLKelqmBcb .carousel {
  width: 100%;
}
.cid-uLKelqmBcb .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uLKelqmBcb .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uLKelqmBcb .modal.fade .modal-dialog,
.cid-uLKelqmBcb .modal.in .modal-dialog {
  transform: none;
}
.cid-uLKelqmBcb .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uLKelqmBcb H6 {
  text-align: center;
}
.cid-uLJtCbIfUg {
  padding-top: 9rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/0148ade46beea1acb8817ff135b9c836223d563106-2000x1333.jpeg");
}
.cid-uLJtCbIfUg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLJtCbIfUg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLJtCbIfUg .mbr-text,
.cid-uLJtCbIfUg .mbr-section-btn {
  color: #232323;
}
.cid-uLJtCbIfUg .card-title,
.cid-uLJtCbIfUg .card-box {
  color: #ffffff;
}
.cid-uLJtCbIfUg .mbr-text,
.cid-uLJtCbIfUg .link-wrap {
  color: #ffffff;
}
.cid-uLKfvn7Zvf {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uLKfvn7Zvf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLKfvn7Zvf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLKfvn7Zvf .item {
  padding-bottom: 2rem;
}
.cid-uLKfvn7Zvf .item-wrapper {
  height: 300px;
  position: relative;
}
.cid-uLKfvn7Zvf .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uLKfvn7Zvf .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-uLKfvn7Zvf .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uLKfvn7Zvf .carousel-control,
.cid-uLKfvn7Zvf .close {
  background: #1b1b1b;
}
.cid-uLKfvn7Zvf .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uLKfvn7Zvf .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uLKfvn7Zvf .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uLKfvn7Zvf .carousel-control-next span {
  margin-left: 5px;
}
.cid-uLKfvn7Zvf .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-uLKfvn7Zvf .close::before {
  content: '\e91a';
}
.cid-uLKfvn7Zvf .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uLKfvn7Zvf .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-uLKfvn7Zvf .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uLKfvn7Zvf .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uLKfvn7Zvf .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uLKfvn7Zvf .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uLKfvn7Zvf .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-uLKfvn7Zvf .carousel-indicators li.active,
.cid-uLKfvn7Zvf .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uLKfvn7Zvf .carousel-indicators li::after,
.cid-uLKfvn7Zvf .carousel-indicators li::before {
  content: none;
}
.cid-uLKfvn7Zvf .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uLKfvn7Zvf .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uLKfvn7Zvf .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uLKfvn7Zvf .carousel-indicators {
    display: none;
  }
}
.cid-uLKfvn7Zvf .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uLKfvn7Zvf .carousel-inner > .active {
  display: block;
}
.cid-uLKfvn7Zvf .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uLKfvn7Zvf .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uLKfvn7Zvf .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uLKfvn7Zvf .carousel-control,
  .cid-uLKfvn7Zvf .carousel-indicators,
  .cid-uLKfvn7Zvf .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uLKfvn7Zvf .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uLKfvn7Zvf .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uLKfvn7Zvf .carousel-indicators .active,
.cid-uLKfvn7Zvf .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uLKfvn7Zvf .carousel-indicators .active {
  background: #fff;
}
.cid-uLKfvn7Zvf .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uLKfvn7Zvf .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uLKfvn7Zvf .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uLKfvn7Zvf .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uLKfvn7Zvf .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uLKfvn7Zvf .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uLKfvn7Zvf .carousel {
  width: 100%;
}
.cid-uLKfvn7Zvf .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uLKfvn7Zvf .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uLKfvn7Zvf .modal.fade .modal-dialog,
.cid-uLKfvn7Zvf .modal.in .modal-dialog {
  transform: none;
}
.cid-uLKfvn7Zvf .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uLKfvn7Zvf H6 {
  text-align: center;
}
.cid-uMo01NtkZR {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uLm1FgeBNn {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uLm1FgeBNn .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;
}
@media (max-width: 767px) {
  .cid-uLm1FgeBNn .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uLm1FgeBNn .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uLm1FgeBNn .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
}
.cid-uLm1FgeBNn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uLm1FgeBNn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uLm1FgeBNn .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-uLm1FgeBNn .navbar-nav .nav-item {
  padding: 0 !important;
  transition: 0.3s all !important;
}
.cid-uLm1FgeBNn .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: 0.3s all !important;
  border-radius: 4px !important;
}
.cid-uLm1FgeBNn .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-uLm1FgeBNn .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uLm1FgeBNn .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uLm1FgeBNn .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: 0.3s all !important;
  border-radius: 4px !important;
}
.cid-uLm1FgeBNn .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uLm1FgeBNn .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-uLm1FgeBNn .nav-link {
  width: fit-content;
  position: relative;
}
.cid-uLm1FgeBNn .navbar-logo {
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uLm1FgeBNn .navbar-logo {
    padding-left: 0;
  }
}
.cid-uLm1FgeBNn .navbar-caption {
  padding-left: 1rem;
  padding-right: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uLm1FgeBNn .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uLm1FgeBNn .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: 0.3s all;
}
.cid-uLm1FgeBNn .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem 0.5rem 1rem;
  flex-wrap: nowrap;
  background: rgba(255, 255, 255, 0.8) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #ffffff;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
  border-radius: 4px !important;
}
@media (max-width: 992px) {
  .cid-uLm1FgeBNn .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uLm1FgeBNn .container {
    width: 95%;
    height: 56px !important;
    padding: 0.5rem;
    margin-top: 0rem;
  }
}
.cid-uLm1FgeBNn .iconfont-wrapper {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uLm1FgeBNn .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: 0.3s all !important;
  min-width: auto;
  background: #ffffff;
  background: rgba(255, 255, 255, 0.8) !important;
  border-radius: 4px !important;
}
.cid-uLm1FgeBNn .nav-item:focus,
.cid-uLm1FgeBNn .nav-link:focus {
  outline: none;
}
.cid-uLm1FgeBNn .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uLm1FgeBNn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uLm1FgeBNn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uLm1FgeBNn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uLm1FgeBNn .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uLm1FgeBNn .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uLm1FgeBNn .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uLm1FgeBNn .navbar.opened {
  transition: all 0.3s;
}
.cid-uLm1FgeBNn .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uLm1FgeBNn .navbar .navbar-logo img {
  width: auto;
  border-radius: 4px !important;
}
.cid-uLm1FgeBNn .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-uLm1FgeBNn .navbar.collapsed {
  justify-content: center;
}
.cid-uLm1FgeBNn .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uLm1FgeBNn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uLm1FgeBNn .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-uLm1FgeBNn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uLm1FgeBNn .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uLm1FgeBNn .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-uLm1FgeBNn .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uLm1FgeBNn .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uLm1FgeBNn .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uLm1FgeBNn .navbar {
    min-height: 72px;
  }
  .cid-uLm1FgeBNn .navbar .navbar-logo img {
    height: 2.5rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uLm1FgeBNn .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uLm1FgeBNn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uLm1FgeBNn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uLm1FgeBNn .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uLm1FgeBNn .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-uLm1FgeBNn .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uLm1FgeBNn .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uLm1FgeBNn .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uLm1FgeBNn .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uLm1FgeBNn .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uLm1FgeBNn .dropdown-item.active,
.cid-uLm1FgeBNn .dropdown-item:active {
  background-color: transparent;
}
.cid-uLm1FgeBNn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uLm1FgeBNn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uLm1FgeBNn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uLm1FgeBNn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uLm1FgeBNn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-uLm1FgeBNn .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uLm1FgeBNn ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uLm1FgeBNn .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uLm1FgeBNn .navbar-buttons {
    text-align: left;
  }
}
.cid-uLm1FgeBNn button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uLm1FgeBNn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uLm1FgeBNn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uLm1FgeBNn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uLm1FgeBNn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uLm1FgeBNn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uLm1FgeBNn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uLm1FgeBNn nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uLm1FgeBNn nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uLm1FgeBNn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uLm1FgeBNn .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uLm1FgeBNn a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uLm1FgeBNn .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uLm1FgeBNn .icons-menu {
    justify-content: flex-start;
    margin-bottom: 0.5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uLm1FgeBNn .navbar {
    height: 70px;
  }
  .cid-uLm1FgeBNn .navbar.opened {
    height: auto;
  }
  .cid-uLm1FgeBNn .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uLm1FgeBNn .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uLm1FgeBNn .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uLm1FgeBNn .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uLm1FgeBNn .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: 0.3s all;
  transform: rotate(-90deg);
}
.cid-uLm1FgeBNn .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uLm1FgeBNn .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-uLm1FgeBNn .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uLm1FgeBNn .navbar-brand {
    margin-right: auto;
  }
  .cid-uLm1FgeBNn .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #ffffff;
    opacity: 1;
    border-color: rgba(255, 255, 255, 0.8) !important;
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(8px);
    border-radius: 4px !important;
  }
  .cid-uLm1FgeBNn .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uLm1FgeBNn .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uLm1FgeBNn .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uLm1FgeBNn .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uLm1FgeBNn .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uLm1FgeBNn .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: 0.3s all;
    transform: rotate(0deg);
  }
  .cid-uLm1FgeBNn .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uLm1FgeBNn .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uLm1FgeBNn .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-uLm1FgeBNn .navbar-collapse {
    padding: 1rem;
  }
}
.cid-uLyKnUl8Iq {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #747070;
}
.cid-uLyKnUl8Iq .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uLyKnUl8Iq .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uLyKnUl8Iq .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uLyKnUl8Iq .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uLyKnUl8Iq .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uLyKnUl8Iq .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uLyKnUl8Iq .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-uLyKnUl8Iq .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uLyKnUl8Iq .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uLyKnUl8Iq .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uLyKnUl8Iq .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uLyKnUl8Iq .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uLyKnUl8Iq .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uLyKnUl8Iq .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uL4cG6elmz .navbar-dropdown {
  position: relative !important;
}
.cid-uL4cG6elmz .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-uL4cG6elmz .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uL4cG6elmz .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uL4cG6elmz .dropdown-item:hover,
.cid-uL4cG6elmz .dropdown-item:focus {
  background: #bbbbbb !important;
  color: white !important;
}
.cid-uL4cG6elmz .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uL4cG6elmz .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uL4cG6elmz .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uL4cG6elmz .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uL4cG6elmz .nav-link {
  position: relative;
}
.cid-uL4cG6elmz .container {
  display: flex;
  margin: auto;
}
.cid-uL4cG6elmz .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uL4cG6elmz .dropdown-menu,
.cid-uL4cG6elmz .navbar.opened {
  background: #ffffff !important;
}
.cid-uL4cG6elmz .nav-item:focus,
.cid-uL4cG6elmz .nav-link:focus {
  outline: none;
}
.cid-uL4cG6elmz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uL4cG6elmz .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uL4cG6elmz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uL4cG6elmz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uL4cG6elmz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uL4cG6elmz .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uL4cG6elmz .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: #ffffff;
}
.cid-uL4cG6elmz .navbar.opened {
  transition: all 0.3s;
}
.cid-uL4cG6elmz .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uL4cG6elmz .navbar .navbar-logo img {
  width: auto;
}
.cid-uL4cG6elmz .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uL4cG6elmz .navbar.collapsed {
  justify-content: center;
}
.cid-uL4cG6elmz .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uL4cG6elmz .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uL4cG6elmz .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uL4cG6elmz .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uL4cG6elmz .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uL4cG6elmz .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-uL4cG6elmz .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uL4cG6elmz .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uL4cG6elmz .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uL4cG6elmz .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uL4cG6elmz .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uL4cG6elmz .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uL4cG6elmz .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uL4cG6elmz .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-uL4cG6elmz .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uL4cG6elmz .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uL4cG6elmz .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uL4cG6elmz .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uL4cG6elmz .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uL4cG6elmz .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uL4cG6elmz .navbar.navbar-short {
  min-height: 60px;
}
.cid-uL4cG6elmz .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uL4cG6elmz .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uL4cG6elmz .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-uL4cG6elmz .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uL4cG6elmz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uL4cG6elmz .dropdown-item.active,
.cid-uL4cG6elmz .dropdown-item:active {
  background-color: transparent;
}
.cid-uL4cG6elmz .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uL4cG6elmz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uL4cG6elmz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uL4cG6elmz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uL4cG6elmz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uL4cG6elmz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uL4cG6elmz ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uL4cG6elmz .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uL4cG6elmz button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uL4cG6elmz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #05386b;
}
.cid-uL4cG6elmz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uL4cG6elmz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uL4cG6elmz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uL4cG6elmz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uL4cG6elmz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uL4cG6elmz nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uL4cG6elmz nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uL4cG6elmz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uL4cG6elmz .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uL4cG6elmz a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uL4cG6elmz .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-uL4cG6elmz .navbar {
    height: 70px;
  }
  .cid-uL4cG6elmz .navbar.opened {
    height: auto;
  }
  .cid-uL4cG6elmz .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uMcXTjsA0Q {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uMcXTjsA0Q .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMcXTjsA0Q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMcXTjsA0Q .item {
  padding-bottom: 2rem;
}
.cid-uMcXTjsA0Q .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uMcXTjsA0Q .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uMcXTjsA0Q .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-uMcXTjsA0Q .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uMcXTjsA0Q .carousel-control,
.cid-uMcXTjsA0Q .close {
  background: #1b1b1b;
}
.cid-uMcXTjsA0Q .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uMcXTjsA0Q .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uMcXTjsA0Q .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uMcXTjsA0Q .carousel-control-next span {
  margin-left: 5px;
}
.cid-uMcXTjsA0Q .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-uMcXTjsA0Q .close::before {
  content: '\e91a';
}
.cid-uMcXTjsA0Q .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uMcXTjsA0Q .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-uMcXTjsA0Q .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uMcXTjsA0Q .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uMcXTjsA0Q .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uMcXTjsA0Q .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uMcXTjsA0Q .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-uMcXTjsA0Q .carousel-indicators li.active,
.cid-uMcXTjsA0Q .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uMcXTjsA0Q .carousel-indicators li::after,
.cid-uMcXTjsA0Q .carousel-indicators li::before {
  content: none;
}
.cid-uMcXTjsA0Q .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uMcXTjsA0Q .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uMcXTjsA0Q .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uMcXTjsA0Q .carousel-indicators {
    display: none;
  }
}
.cid-uMcXTjsA0Q .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uMcXTjsA0Q .carousel-inner > .active {
  display: block;
}
.cid-uMcXTjsA0Q .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uMcXTjsA0Q .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uMcXTjsA0Q .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uMcXTjsA0Q .carousel-control,
  .cid-uMcXTjsA0Q .carousel-indicators,
  .cid-uMcXTjsA0Q .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uMcXTjsA0Q .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uMcXTjsA0Q .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uMcXTjsA0Q .carousel-indicators .active,
.cid-uMcXTjsA0Q .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uMcXTjsA0Q .carousel-indicators .active {
  background: #fff;
}
.cid-uMcXTjsA0Q .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uMcXTjsA0Q .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uMcXTjsA0Q .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uMcXTjsA0Q .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uMcXTjsA0Q .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uMcXTjsA0Q .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uMcXTjsA0Q .carousel {
  width: 100%;
}
.cid-uMcXTjsA0Q .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uMcXTjsA0Q .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uMcXTjsA0Q .modal.fade .modal-dialog,
.cid-uMcXTjsA0Q .modal.in .modal-dialog {
  transform: none;
}
.cid-uMcXTjsA0Q .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uMcXTjsA0Q H6 {
  text-align: center;
}
.cid-uMcXUmKFTU {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uLyKnUl8Iq {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #747070;
}
.cid-uLyKnUl8Iq .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uLyKnUl8Iq .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uLyKnUl8Iq .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uLyKnUl8Iq .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uLyKnUl8Iq .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uLyKnUl8Iq .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uLyKnUl8Iq .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-uLyKnUl8Iq .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uLyKnUl8Iq .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uLyKnUl8Iq .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uLyKnUl8Iq .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uLyKnUl8Iq .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uLyKnUl8Iq .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uLyKnUl8Iq .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uMdagT7JGr .navbar-dropdown {
  position: relative !important;
}
.cid-uMdagT7JGr .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-uMdagT7JGr .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uMdagT7JGr .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uMdagT7JGr .dropdown-item:hover,
.cid-uMdagT7JGr .dropdown-item:focus {
  background: #bbbbbb !important;
  color: white !important;
}
.cid-uMdagT7JGr .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uMdagT7JGr .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uMdagT7JGr .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uMdagT7JGr .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uMdagT7JGr .nav-link {
  position: relative;
}
.cid-uMdagT7JGr .container {
  display: flex;
  margin: auto;
}
.cid-uMdagT7JGr .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uMdagT7JGr .dropdown-menu,
.cid-uMdagT7JGr .navbar.opened {
  background: #ffffff !important;
}
.cid-uMdagT7JGr .nav-item:focus,
.cid-uMdagT7JGr .nav-link:focus {
  outline: none;
}
.cid-uMdagT7JGr .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uMdagT7JGr .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uMdagT7JGr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uMdagT7JGr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uMdagT7JGr .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uMdagT7JGr .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uMdagT7JGr .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: #ffffff;
}
.cid-uMdagT7JGr .navbar.opened {
  transition: all 0.3s;
}
.cid-uMdagT7JGr .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uMdagT7JGr .navbar .navbar-logo img {
  width: auto;
}
.cid-uMdagT7JGr .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uMdagT7JGr .navbar.collapsed {
  justify-content: center;
}
.cid-uMdagT7JGr .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uMdagT7JGr .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uMdagT7JGr .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uMdagT7JGr .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uMdagT7JGr .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uMdagT7JGr .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-uMdagT7JGr .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uMdagT7JGr .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uMdagT7JGr .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uMdagT7JGr .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uMdagT7JGr .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uMdagT7JGr .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uMdagT7JGr .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uMdagT7JGr .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-uMdagT7JGr .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uMdagT7JGr .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uMdagT7JGr .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uMdagT7JGr .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uMdagT7JGr .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uMdagT7JGr .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uMdagT7JGr .navbar.navbar-short {
  min-height: 60px;
}
.cid-uMdagT7JGr .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uMdagT7JGr .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uMdagT7JGr .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-uMdagT7JGr .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uMdagT7JGr .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uMdagT7JGr .dropdown-item.active,
.cid-uMdagT7JGr .dropdown-item:active {
  background-color: transparent;
}
.cid-uMdagT7JGr .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uMdagT7JGr .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uMdagT7JGr .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uMdagT7JGr .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uMdagT7JGr .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uMdagT7JGr .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uMdagT7JGr ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uMdagT7JGr .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uMdagT7JGr button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uMdagT7JGr button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #05386b;
}
.cid-uMdagT7JGr button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uMdagT7JGr button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMdagT7JGr button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMdagT7JGr button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uMdagT7JGr nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMdagT7JGr nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uMdagT7JGr nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uMdagT7JGr nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMdagT7JGr .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uMdagT7JGr a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uMdagT7JGr .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-uMdagT7JGr .navbar {
    height: 70px;
  }
  .cid-uMdagT7JGr .navbar.opened {
    height: auto;
  }
  .cid-uMdagT7JGr .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uMocZoUwC7 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uMocZoUwC7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMocZoUwC7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMWudR5ISa {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background: #ffffff;
}
.cid-uMWudR5ISa .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMWudR5ISa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 768px) {
  .cid-uMWudR5ISa .container-fluid {
    padding: 0;
  }
}
.cid-uMWudR5ISa .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 490px;
  max-width: 490px;
}
@media (max-width: 768px) {
  .cid-uMWudR5ISa .embla__slide {
    min-width: 100%;
    max-width: 100%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-uMWudR5ISa .embla__button--next,
.cid-uMWudR5ISa .embla__button--prev {
  display: flex;
}
.cid-uMWudR5ISa .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uMWudR5ISa .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uMWudR5ISa .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uMWudR5ISa .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uMWudR5ISa .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uMWudR5ISa .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uMWudR5ISa .embla__button {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uMWudR5ISa .embla {
  position: relative;
  width: 100%;
}
.cid-uMWudR5ISa .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-uMWudR5ISa .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uMWudR5ISa .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uMWudR5ISa .embla__slide a {
  cursor: grab;
}
.cid-uMWudR5ISa .embla__slide a:active {
  cursor: grabbing;
}
.cid-uMWudR5ISa .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uMWudR5ISa .item-menu-overlay {
  border-radius: 2rem;
}
.cid-uMWudR5ISa .mbr-section-title {
  color: #232323;
}
.cid-uMWudR5ISa .mbr-section-subtitle {
  color: #232323;
}
.cid-uMWudR5ISa .mbr-box {
  color: #ffffff;
}
.cid-uMWudR5ISa .slide-content {
  position: relative;
  border-radius: 4px;
  height: 100%;
  width: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
.cid-uMWudR5ISa img,
.cid-uMWudR5ISa .item-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-uMWudR5ISa .item-wrapper {
  position: relative;
}
.cid-uMWudR5ISa .content-head {
  max-width: 800px;
}
.cid-uMoanvZH7E {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background: #ffffff;
}
.cid-uMoanvZH7E .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMoanvZH7E .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 768px) {
  .cid-uMoanvZH7E .container-fluid {
    padding: 0;
  }
}
.cid-uMoanvZH7E .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 490px;
  max-width: 490px;
}
@media (max-width: 768px) {
  .cid-uMoanvZH7E .embla__slide {
    min-width: 100%;
    max-width: 100%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-uMoanvZH7E .embla__button--next,
.cid-uMoanvZH7E .embla__button--prev {
  display: flex;
}
.cid-uMoanvZH7E .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uMoanvZH7E .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uMoanvZH7E .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uMoanvZH7E .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uMoanvZH7E .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uMoanvZH7E .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uMoanvZH7E .embla__button {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uMoanvZH7E .embla {
  position: relative;
  width: 100%;
}
.cid-uMoanvZH7E .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-uMoanvZH7E .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uMoanvZH7E .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uMoanvZH7E .embla__slide a {
  cursor: grab;
}
.cid-uMoanvZH7E .embla__slide a:active {
  cursor: grabbing;
}
.cid-uMoanvZH7E .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uMoanvZH7E .item-menu-overlay {
  border-radius: 2rem;
}
.cid-uMoanvZH7E .mbr-section-title {
  color: #232323;
}
.cid-uMoanvZH7E .mbr-section-subtitle {
  color: #232323;
}
.cid-uMoanvZH7E .mbr-box {
  color: #ffffff;
}
.cid-uMoanvZH7E .slide-content {
  position: relative;
  border-radius: 4px;
  height: 100%;
  width: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
.cid-uMoanvZH7E img,
.cid-uMoanvZH7E .item-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-uMoanvZH7E .item-wrapper {
  position: relative;
}
.cid-uMoanvZH7E .content-head {
  max-width: 800px;
}
.cid-uMod4Bo6jB {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background: #ffffff;
}
.cid-uMod4Bo6jB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMod4Bo6jB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 768px) {
  .cid-uMod4Bo6jB .container-fluid {
    padding: 0;
  }
}
.cid-uMod4Bo6jB .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 490px;
  max-width: 490px;
}
@media (max-width: 768px) {
  .cid-uMod4Bo6jB .embla__slide {
    min-width: 100%;
    max-width: 100%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-uMod4Bo6jB .embla__button--next,
.cid-uMod4Bo6jB .embla__button--prev {
  display: flex;
}
.cid-uMod4Bo6jB .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uMod4Bo6jB .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uMod4Bo6jB .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uMod4Bo6jB .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uMod4Bo6jB .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uMod4Bo6jB .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uMod4Bo6jB .embla__button {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uMod4Bo6jB .embla {
  position: relative;
  width: 100%;
}
.cid-uMod4Bo6jB .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-uMod4Bo6jB .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uMod4Bo6jB .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uMod4Bo6jB .embla__slide a {
  cursor: grab;
}
.cid-uMod4Bo6jB .embla__slide a:active {
  cursor: grabbing;
}
.cid-uMod4Bo6jB .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uMod4Bo6jB .item-menu-overlay {
  border-radius: 2rem;
}
.cid-uMod4Bo6jB .mbr-section-title {
  color: #232323;
}
.cid-uMod4Bo6jB .mbr-section-subtitle {
  color: #232323;
}
.cid-uMod4Bo6jB .mbr-box {
  color: #ffffff;
}
.cid-uMod4Bo6jB .slide-content {
  position: relative;
  border-radius: 4px;
  height: 100%;
  width: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
.cid-uMod4Bo6jB img,
.cid-uMod4Bo6jB .item-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-uMod4Bo6jB .item-wrapper {
  position: relative;
}
.cid-uMod4Bo6jB .content-head {
  max-width: 800px;
}
.cid-uMo82HhL4D {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background: #ffffff;
}
.cid-uMo82HhL4D .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMo82HhL4D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 768px) {
  .cid-uMo82HhL4D .container-fluid {
    padding: 0;
  }
}
.cid-uMo82HhL4D .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 490px;
  max-width: 490px;
}
@media (max-width: 768px) {
  .cid-uMo82HhL4D .embla__slide {
    min-width: 100%;
    max-width: 100%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-uMo82HhL4D .embla__button--next,
.cid-uMo82HhL4D .embla__button--prev {
  display: flex;
}
.cid-uMo82HhL4D .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uMo82HhL4D .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uMo82HhL4D .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uMo82HhL4D .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uMo82HhL4D .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uMo82HhL4D .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uMo82HhL4D .embla__button {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uMo82HhL4D .embla {
  position: relative;
  width: 100%;
}
.cid-uMo82HhL4D .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-uMo82HhL4D .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uMo82HhL4D .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uMo82HhL4D .embla__slide a {
  cursor: grab;
}
.cid-uMo82HhL4D .embla__slide a:active {
  cursor: grabbing;
}
.cid-uMo82HhL4D .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uMo82HhL4D .item-menu-overlay {
  border-radius: 2rem;
}
.cid-uMo82HhL4D .mbr-section-title {
  color: #232323;
}
.cid-uMo82HhL4D .mbr-section-subtitle {
  color: #232323;
}
.cid-uMo82HhL4D .mbr-box {
  color: #ffffff;
}
.cid-uMo82HhL4D .slide-content {
  position: relative;
  border-radius: 4px;
  height: 100%;
  width: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
.cid-uMo82HhL4D img,
.cid-uMo82HhL4D .item-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-uMo82HhL4D .item-wrapper {
  position: relative;
}
.cid-uMo82HhL4D .content-head {
  max-width: 800px;
}
.cid-uMoet9zIc9 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background: #ffffff;
}
.cid-uMoet9zIc9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMoet9zIc9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 768px) {
  .cid-uMoet9zIc9 .container-fluid {
    padding: 0;
  }
}
.cid-uMoet9zIc9 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 490px;
  max-width: 490px;
}
@media (max-width: 768px) {
  .cid-uMoet9zIc9 .embla__slide {
    min-width: 100%;
    max-width: 100%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-uMoet9zIc9 .embla__button--next,
.cid-uMoet9zIc9 .embla__button--prev {
  display: flex;
}
.cid-uMoet9zIc9 .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uMoet9zIc9 .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uMoet9zIc9 .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uMoet9zIc9 .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uMoet9zIc9 .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uMoet9zIc9 .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uMoet9zIc9 .embla__button {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uMoet9zIc9 .embla {
  position: relative;
  width: 100%;
}
.cid-uMoet9zIc9 .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-uMoet9zIc9 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uMoet9zIc9 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uMoet9zIc9 .embla__slide a {
  cursor: grab;
}
.cid-uMoet9zIc9 .embla__slide a:active {
  cursor: grabbing;
}
.cid-uMoet9zIc9 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uMoet9zIc9 .item-menu-overlay {
  border-radius: 2rem;
}
.cid-uMoet9zIc9 .mbr-section-title {
  color: #232323;
}
.cid-uMoet9zIc9 .mbr-section-subtitle {
  color: #232323;
}
.cid-uMoet9zIc9 .mbr-box {
  color: #ffffff;
}
.cid-uMoet9zIc9 .slide-content {
  position: relative;
  border-radius: 4px;
  height: 100%;
  width: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
.cid-uMoet9zIc9 img,
.cid-uMoet9zIc9 .item-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-uMoet9zIc9 .item-wrapper {
  position: relative;
}
.cid-uMoet9zIc9 .content-head {
  max-width: 800px;
}
.cid-uMdagTZBRc {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #747070;
}
.cid-uMdagTZBRc .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uMdagTZBRc .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uMdagTZBRc .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uMdagTZBRc .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uMdagTZBRc .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uMdagTZBRc .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uMdagTZBRc .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-uMdagTZBRc .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uMdagTZBRc .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uMdagTZBRc .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uMdagTZBRc .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uMdagTZBRc .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uMdagTZBRc .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uMdagTZBRc .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uMc7tfLrjA .navbar-dropdown {
  position: relative !important;
}
.cid-uMc7tfLrjA .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-uMc7tfLrjA .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uMc7tfLrjA .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uMc7tfLrjA .dropdown-item:hover,
.cid-uMc7tfLrjA .dropdown-item:focus {
  background: #bbbbbb !important;
  color: white !important;
}
.cid-uMc7tfLrjA .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uMc7tfLrjA .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uMc7tfLrjA .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uMc7tfLrjA .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uMc7tfLrjA .nav-link {
  position: relative;
}
.cid-uMc7tfLrjA .container {
  display: flex;
  margin: auto;
}
.cid-uMc7tfLrjA .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uMc7tfLrjA .dropdown-menu,
.cid-uMc7tfLrjA .navbar.opened {
  background: #ffffff !important;
}
.cid-uMc7tfLrjA .nav-item:focus,
.cid-uMc7tfLrjA .nav-link:focus {
  outline: none;
}
.cid-uMc7tfLrjA .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uMc7tfLrjA .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uMc7tfLrjA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uMc7tfLrjA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uMc7tfLrjA .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uMc7tfLrjA .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uMc7tfLrjA .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: #ffffff;
}
.cid-uMc7tfLrjA .navbar.opened {
  transition: all 0.3s;
}
.cid-uMc7tfLrjA .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uMc7tfLrjA .navbar .navbar-logo img {
  width: auto;
}
.cid-uMc7tfLrjA .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uMc7tfLrjA .navbar.collapsed {
  justify-content: center;
}
.cid-uMc7tfLrjA .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uMc7tfLrjA .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uMc7tfLrjA .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uMc7tfLrjA .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uMc7tfLrjA .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uMc7tfLrjA .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-uMc7tfLrjA .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uMc7tfLrjA .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uMc7tfLrjA .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uMc7tfLrjA .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uMc7tfLrjA .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uMc7tfLrjA .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uMc7tfLrjA .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uMc7tfLrjA .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-uMc7tfLrjA .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uMc7tfLrjA .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uMc7tfLrjA .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uMc7tfLrjA .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uMc7tfLrjA .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uMc7tfLrjA .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uMc7tfLrjA .navbar.navbar-short {
  min-height: 60px;
}
.cid-uMc7tfLrjA .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uMc7tfLrjA .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uMc7tfLrjA .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-uMc7tfLrjA .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uMc7tfLrjA .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uMc7tfLrjA .dropdown-item.active,
.cid-uMc7tfLrjA .dropdown-item:active {
  background-color: transparent;
}
.cid-uMc7tfLrjA .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uMc7tfLrjA .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uMc7tfLrjA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uMc7tfLrjA .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uMc7tfLrjA .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uMc7tfLrjA .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uMc7tfLrjA ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uMc7tfLrjA .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uMc7tfLrjA button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uMc7tfLrjA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #05386b;
}
.cid-uMc7tfLrjA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uMc7tfLrjA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMc7tfLrjA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMc7tfLrjA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uMc7tfLrjA nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMc7tfLrjA nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uMc7tfLrjA nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uMc7tfLrjA nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMc7tfLrjA .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uMc7tfLrjA a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uMc7tfLrjA .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-uMc7tfLrjA .navbar {
    height: 70px;
  }
  .cid-uMc7tfLrjA .navbar.opened {
    height: auto;
  }
  .cid-uMc7tfLrjA .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uMcEv6jpoO {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uMcEv6jpoO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMcEv6jpoO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMcEv6jpoO .item {
  padding-bottom: 2rem;
}
.cid-uMcEv6jpoO .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uMcEv6jpoO .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uMcEv6jpoO .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-uMcEv6jpoO .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uMcEv6jpoO .carousel-control,
.cid-uMcEv6jpoO .close {
  background: #1b1b1b;
}
.cid-uMcEv6jpoO .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uMcEv6jpoO .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uMcEv6jpoO .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uMcEv6jpoO .carousel-control-next span {
  margin-left: 5px;
}
.cid-uMcEv6jpoO .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-uMcEv6jpoO .close::before {
  content: '\e91a';
}
.cid-uMcEv6jpoO .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uMcEv6jpoO .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-uMcEv6jpoO .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uMcEv6jpoO .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uMcEv6jpoO .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uMcEv6jpoO .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uMcEv6jpoO .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-uMcEv6jpoO .carousel-indicators li.active,
.cid-uMcEv6jpoO .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uMcEv6jpoO .carousel-indicators li::after,
.cid-uMcEv6jpoO .carousel-indicators li::before {
  content: none;
}
.cid-uMcEv6jpoO .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uMcEv6jpoO .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uMcEv6jpoO .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uMcEv6jpoO .carousel-indicators {
    display: none;
  }
}
.cid-uMcEv6jpoO .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uMcEv6jpoO .carousel-inner > .active {
  display: block;
}
.cid-uMcEv6jpoO .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uMcEv6jpoO .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uMcEv6jpoO .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uMcEv6jpoO .carousel-control,
  .cid-uMcEv6jpoO .carousel-indicators,
  .cid-uMcEv6jpoO .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uMcEv6jpoO .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uMcEv6jpoO .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uMcEv6jpoO .carousel-indicators .active,
.cid-uMcEv6jpoO .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uMcEv6jpoO .carousel-indicators .active {
  background: #fff;
}
.cid-uMcEv6jpoO .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uMcEv6jpoO .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uMcEv6jpoO .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uMcEv6jpoO .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uMcEv6jpoO .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uMcEv6jpoO .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uMcEv6jpoO .carousel {
  width: 100%;
}
.cid-uMcEv6jpoO .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uMcEv6jpoO .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uMcEv6jpoO .modal.fade .modal-dialog,
.cid-uMcEv6jpoO .modal.in .modal-dialog {
  transform: none;
}
.cid-uMcEv6jpoO .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uMcEv6jpoO H6 {
  text-align: center;
}
.cid-uMcJwmegGn {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uMcJx7T1G5 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uMcJx7T1G5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMcJx7T1G5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMcJx7T1G5 .item {
  padding-bottom: 2rem;
}
.cid-uMcJx7T1G5 .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uMcJx7T1G5 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uMcJx7T1G5 .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-uMcJx7T1G5 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uMcJx7T1G5 .carousel-control,
.cid-uMcJx7T1G5 .close {
  background: #1b1b1b;
}
.cid-uMcJx7T1G5 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uMcJx7T1G5 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uMcJx7T1G5 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uMcJx7T1G5 .carousel-control-next span {
  margin-left: 5px;
}
.cid-uMcJx7T1G5 .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-uMcJx7T1G5 .close::before {
  content: '\e91a';
}
.cid-uMcJx7T1G5 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uMcJx7T1G5 .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-uMcJx7T1G5 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uMcJx7T1G5 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uMcJx7T1G5 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uMcJx7T1G5 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uMcJx7T1G5 .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-uMcJx7T1G5 .carousel-indicators li.active,
.cid-uMcJx7T1G5 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uMcJx7T1G5 .carousel-indicators li::after,
.cid-uMcJx7T1G5 .carousel-indicators li::before {
  content: none;
}
.cid-uMcJx7T1G5 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uMcJx7T1G5 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uMcJx7T1G5 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uMcJx7T1G5 .carousel-indicators {
    display: none;
  }
}
.cid-uMcJx7T1G5 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uMcJx7T1G5 .carousel-inner > .active {
  display: block;
}
.cid-uMcJx7T1G5 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uMcJx7T1G5 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uMcJx7T1G5 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uMcJx7T1G5 .carousel-control,
  .cid-uMcJx7T1G5 .carousel-indicators,
  .cid-uMcJx7T1G5 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uMcJx7T1G5 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uMcJx7T1G5 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uMcJx7T1G5 .carousel-indicators .active,
.cid-uMcJx7T1G5 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uMcJx7T1G5 .carousel-indicators .active {
  background: #fff;
}
.cid-uMcJx7T1G5 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uMcJx7T1G5 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uMcJx7T1G5 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uMcJx7T1G5 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uMcJx7T1G5 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uMcJx7T1G5 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uMcJx7T1G5 .carousel {
  width: 100%;
}
.cid-uMcJx7T1G5 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uMcJx7T1G5 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uMcJx7T1G5 .modal.fade .modal-dialog,
.cid-uMcJx7T1G5 .modal.in .modal-dialog {
  transform: none;
}
.cid-uMcJx7T1G5 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uMcJx7T1G5 H6 {
  text-align: center;
}
.cid-uMcE4EJILr {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uMc7tgxG15 {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #747070;
}
.cid-uMc7tgxG15 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uMc7tgxG15 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uMc7tgxG15 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uMc7tgxG15 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uMc7tgxG15 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uMc7tgxG15 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uMc7tgxG15 .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-uMc7tgxG15 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uMc7tgxG15 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uMc7tgxG15 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uMc7tgxG15 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uMc7tgxG15 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uMc7tgxG15 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uMc7tgxG15 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uMc9QqPopR .navbar-dropdown {
  position: relative !important;
}
.cid-uMc9QqPopR .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-uMc9QqPopR .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uMc9QqPopR .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uMc9QqPopR .dropdown-item:hover,
.cid-uMc9QqPopR .dropdown-item:focus {
  background: #bbbbbb !important;
  color: white !important;
}
.cid-uMc9QqPopR .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uMc9QqPopR .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uMc9QqPopR .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uMc9QqPopR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uMc9QqPopR .nav-link {
  position: relative;
}
.cid-uMc9QqPopR .container {
  display: flex;
  margin: auto;
}
.cid-uMc9QqPopR .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uMc9QqPopR .dropdown-menu,
.cid-uMc9QqPopR .navbar.opened {
  background: #ffffff !important;
}
.cid-uMc9QqPopR .nav-item:focus,
.cid-uMc9QqPopR .nav-link:focus {
  outline: none;
}
.cid-uMc9QqPopR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uMc9QqPopR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uMc9QqPopR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uMc9QqPopR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uMc9QqPopR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uMc9QqPopR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uMc9QqPopR .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: #ffffff;
}
.cid-uMc9QqPopR .navbar.opened {
  transition: all 0.3s;
}
.cid-uMc9QqPopR .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uMc9QqPopR .navbar .navbar-logo img {
  width: auto;
}
.cid-uMc9QqPopR .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uMc9QqPopR .navbar.collapsed {
  justify-content: center;
}
.cid-uMc9QqPopR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uMc9QqPopR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uMc9QqPopR .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uMc9QqPopR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uMc9QqPopR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uMc9QqPopR .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-uMc9QqPopR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uMc9QqPopR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uMc9QqPopR .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uMc9QqPopR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uMc9QqPopR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uMc9QqPopR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uMc9QqPopR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uMc9QqPopR .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-uMc9QqPopR .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uMc9QqPopR .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uMc9QqPopR .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uMc9QqPopR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uMc9QqPopR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uMc9QqPopR .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uMc9QqPopR .navbar.navbar-short {
  min-height: 60px;
}
.cid-uMc9QqPopR .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uMc9QqPopR .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uMc9QqPopR .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-uMc9QqPopR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uMc9QqPopR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uMc9QqPopR .dropdown-item.active,
.cid-uMc9QqPopR .dropdown-item:active {
  background-color: transparent;
}
.cid-uMc9QqPopR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uMc9QqPopR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uMc9QqPopR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uMc9QqPopR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uMc9QqPopR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uMc9QqPopR .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uMc9QqPopR ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uMc9QqPopR .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uMc9QqPopR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uMc9QqPopR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #05386b;
}
.cid-uMc9QqPopR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uMc9QqPopR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMc9QqPopR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMc9QqPopR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uMc9QqPopR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMc9QqPopR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uMc9QqPopR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uMc9QqPopR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMc9QqPopR .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uMc9QqPopR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uMc9QqPopR .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-uMc9QqPopR .navbar {
    height: 70px;
  }
  .cid-uMc9QqPopR .navbar.opened {
    height: auto;
  }
  .cid-uMc9QqPopR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uMcXbc1FTM {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uMcXbc1FTM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMcXbc1FTM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMcXbc1FTM .item {
  padding-bottom: 2rem;
}
.cid-uMcXbc1FTM .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uMcXbc1FTM .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uMcXbc1FTM .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-uMcXbc1FTM .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uMcXbc1FTM .carousel-control,
.cid-uMcXbc1FTM .close {
  background: #1b1b1b;
}
.cid-uMcXbc1FTM .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uMcXbc1FTM .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uMcXbc1FTM .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uMcXbc1FTM .carousel-control-next span {
  margin-left: 5px;
}
.cid-uMcXbc1FTM .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-uMcXbc1FTM .close::before {
  content: '\e91a';
}
.cid-uMcXbc1FTM .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uMcXbc1FTM .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-uMcXbc1FTM .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uMcXbc1FTM .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uMcXbc1FTM .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uMcXbc1FTM .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uMcXbc1FTM .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-uMcXbc1FTM .carousel-indicators li.active,
.cid-uMcXbc1FTM .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uMcXbc1FTM .carousel-indicators li::after,
.cid-uMcXbc1FTM .carousel-indicators li::before {
  content: none;
}
.cid-uMcXbc1FTM .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uMcXbc1FTM .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uMcXbc1FTM .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uMcXbc1FTM .carousel-indicators {
    display: none;
  }
}
.cid-uMcXbc1FTM .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uMcXbc1FTM .carousel-inner > .active {
  display: block;
}
.cid-uMcXbc1FTM .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uMcXbc1FTM .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uMcXbc1FTM .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uMcXbc1FTM .carousel-control,
  .cid-uMcXbc1FTM .carousel-indicators,
  .cid-uMcXbc1FTM .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uMcXbc1FTM .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uMcXbc1FTM .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uMcXbc1FTM .carousel-indicators .active,
.cid-uMcXbc1FTM .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uMcXbc1FTM .carousel-indicators .active {
  background: #fff;
}
.cid-uMcXbc1FTM .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uMcXbc1FTM .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uMcXbc1FTM .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uMcXbc1FTM .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uMcXbc1FTM .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uMcXbc1FTM .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uMcXbc1FTM .carousel {
  width: 100%;
}
.cid-uMcXbc1FTM .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uMcXbc1FTM .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uMcXbc1FTM .modal.fade .modal-dialog,
.cid-uMcXbc1FTM .modal.in .modal-dialog {
  transform: none;
}
.cid-uMcXbc1FTM .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uMcXbc1FTM H6 {
  text-align: center;
}
.cid-uMcXbV2V7o {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uMc9QrQyWi {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #747070;
}
.cid-uMc9QrQyWi .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uMc9QrQyWi .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uMc9QrQyWi .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uMc9QrQyWi .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uMc9QrQyWi .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uMc9QrQyWi .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uMc9QrQyWi .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-uMc9QrQyWi .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uMc9QrQyWi .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uMc9QrQyWi .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uMc9QrQyWi .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uMc9QrQyWi .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uMc9QrQyWi .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uMc9QrQyWi .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uMcA81QMPJ .navbar-dropdown {
  position: relative !important;
}
.cid-uMcA81QMPJ .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-uMcA81QMPJ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uMcA81QMPJ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uMcA81QMPJ .dropdown-item:hover,
.cid-uMcA81QMPJ .dropdown-item:focus {
  background: #bbbbbb !important;
  color: white !important;
}
.cid-uMcA81QMPJ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uMcA81QMPJ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uMcA81QMPJ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uMcA81QMPJ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uMcA81QMPJ .nav-link {
  position: relative;
}
.cid-uMcA81QMPJ .container {
  display: flex;
  margin: auto;
}
.cid-uMcA81QMPJ .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uMcA81QMPJ .dropdown-menu,
.cid-uMcA81QMPJ .navbar.opened {
  background: #ffffff !important;
}
.cid-uMcA81QMPJ .nav-item:focus,
.cid-uMcA81QMPJ .nav-link:focus {
  outline: none;
}
.cid-uMcA81QMPJ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uMcA81QMPJ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uMcA81QMPJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uMcA81QMPJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uMcA81QMPJ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uMcA81QMPJ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uMcA81QMPJ .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: #ffffff;
}
.cid-uMcA81QMPJ .navbar.opened {
  transition: all 0.3s;
}
.cid-uMcA81QMPJ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uMcA81QMPJ .navbar .navbar-logo img {
  width: auto;
}
.cid-uMcA81QMPJ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uMcA81QMPJ .navbar.collapsed {
  justify-content: center;
}
.cid-uMcA81QMPJ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uMcA81QMPJ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uMcA81QMPJ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uMcA81QMPJ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uMcA81QMPJ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uMcA81QMPJ .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-uMcA81QMPJ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uMcA81QMPJ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uMcA81QMPJ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uMcA81QMPJ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uMcA81QMPJ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uMcA81QMPJ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uMcA81QMPJ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uMcA81QMPJ .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-uMcA81QMPJ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uMcA81QMPJ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uMcA81QMPJ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uMcA81QMPJ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uMcA81QMPJ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uMcA81QMPJ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uMcA81QMPJ .navbar.navbar-short {
  min-height: 60px;
}
.cid-uMcA81QMPJ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uMcA81QMPJ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uMcA81QMPJ .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-uMcA81QMPJ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uMcA81QMPJ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uMcA81QMPJ .dropdown-item.active,
.cid-uMcA81QMPJ .dropdown-item:active {
  background-color: transparent;
}
.cid-uMcA81QMPJ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uMcA81QMPJ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uMcA81QMPJ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uMcA81QMPJ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uMcA81QMPJ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uMcA81QMPJ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uMcA81QMPJ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uMcA81QMPJ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uMcA81QMPJ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uMcA81QMPJ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #05386b;
}
.cid-uMcA81QMPJ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uMcA81QMPJ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMcA81QMPJ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMcA81QMPJ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uMcA81QMPJ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMcA81QMPJ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uMcA81QMPJ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uMcA81QMPJ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMcA81QMPJ .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uMcA81QMPJ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uMcA81QMPJ .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-uMcA81QMPJ .navbar {
    height: 70px;
  }
  .cid-uMcA81QMPJ .navbar.opened {
    height: auto;
  }
  .cid-uMcA81QMPJ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uMcOp9vc6i {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uMcOp9vc6i .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMcOp9vc6i .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMcOp9vc6i .item {
  padding-bottom: 2rem;
}
.cid-uMcOp9vc6i .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uMcOp9vc6i .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uMcOp9vc6i .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-uMcOp9vc6i .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uMcOp9vc6i .carousel-control,
.cid-uMcOp9vc6i .close {
  background: #1b1b1b;
}
.cid-uMcOp9vc6i .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uMcOp9vc6i .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uMcOp9vc6i .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uMcOp9vc6i .carousel-control-next span {
  margin-left: 5px;
}
.cid-uMcOp9vc6i .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-uMcOp9vc6i .close::before {
  content: '\e91a';
}
.cid-uMcOp9vc6i .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uMcOp9vc6i .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-uMcOp9vc6i .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uMcOp9vc6i .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uMcOp9vc6i .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uMcOp9vc6i .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uMcOp9vc6i .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-uMcOp9vc6i .carousel-indicators li.active,
.cid-uMcOp9vc6i .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uMcOp9vc6i .carousel-indicators li::after,
.cid-uMcOp9vc6i .carousel-indicators li::before {
  content: none;
}
.cid-uMcOp9vc6i .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uMcOp9vc6i .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uMcOp9vc6i .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uMcOp9vc6i .carousel-indicators {
    display: none;
  }
}
.cid-uMcOp9vc6i .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uMcOp9vc6i .carousel-inner > .active {
  display: block;
}
.cid-uMcOp9vc6i .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uMcOp9vc6i .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uMcOp9vc6i .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uMcOp9vc6i .carousel-control,
  .cid-uMcOp9vc6i .carousel-indicators,
  .cid-uMcOp9vc6i .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uMcOp9vc6i .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uMcOp9vc6i .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uMcOp9vc6i .carousel-indicators .active,
.cid-uMcOp9vc6i .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uMcOp9vc6i .carousel-indicators .active {
  background: #fff;
}
.cid-uMcOp9vc6i .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uMcOp9vc6i .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uMcOp9vc6i .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uMcOp9vc6i .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uMcOp9vc6i .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uMcOp9vc6i .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uMcOp9vc6i .carousel {
  width: 100%;
}
.cid-uMcOp9vc6i .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uMcOp9vc6i .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uMcOp9vc6i .modal.fade .modal-dialog,
.cid-uMcOp9vc6i .modal.in .modal-dialog {
  transform: none;
}
.cid-uMcOp9vc6i .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uMcOp9vc6i H6 {
  text-align: center;
}
.cid-uMcOq360V5 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uMcA82Pdcn {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #747070;
}
.cid-uMcA82Pdcn .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uMcA82Pdcn .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uMcA82Pdcn .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uMcA82Pdcn .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uMcA82Pdcn .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uMcA82Pdcn .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uMcA82Pdcn .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-uMcA82Pdcn .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uMcA82Pdcn .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uMcA82Pdcn .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uMcA82Pdcn .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uMcA82Pdcn .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uMcA82Pdcn .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uMcA82Pdcn .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uMxRit3ggu .navbar-dropdown {
  position: relative !important;
}
.cid-uMxRit3ggu .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-uMxRit3ggu .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uMxRit3ggu .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uMxRit3ggu .dropdown-item:hover,
.cid-uMxRit3ggu .dropdown-item:focus {
  background: #bbbbbb !important;
  color: white !important;
}
.cid-uMxRit3ggu .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uMxRit3ggu .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uMxRit3ggu .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uMxRit3ggu .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uMxRit3ggu .nav-link {
  position: relative;
}
.cid-uMxRit3ggu .container {
  display: flex;
  margin: auto;
}
.cid-uMxRit3ggu .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uMxRit3ggu .dropdown-menu,
.cid-uMxRit3ggu .navbar.opened {
  background: #ffffff !important;
}
.cid-uMxRit3ggu .nav-item:focus,
.cid-uMxRit3ggu .nav-link:focus {
  outline: none;
}
.cid-uMxRit3ggu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uMxRit3ggu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uMxRit3ggu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uMxRit3ggu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uMxRit3ggu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uMxRit3ggu .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uMxRit3ggu .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: #ffffff;
}
.cid-uMxRit3ggu .navbar.opened {
  transition: all 0.3s;
}
.cid-uMxRit3ggu .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uMxRit3ggu .navbar .navbar-logo img {
  width: auto;
}
.cid-uMxRit3ggu .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uMxRit3ggu .navbar.collapsed {
  justify-content: center;
}
.cid-uMxRit3ggu .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uMxRit3ggu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uMxRit3ggu .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uMxRit3ggu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uMxRit3ggu .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uMxRit3ggu .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-uMxRit3ggu .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uMxRit3ggu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uMxRit3ggu .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uMxRit3ggu .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uMxRit3ggu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uMxRit3ggu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uMxRit3ggu .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uMxRit3ggu .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-uMxRit3ggu .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uMxRit3ggu .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uMxRit3ggu .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uMxRit3ggu .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uMxRit3ggu .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uMxRit3ggu .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uMxRit3ggu .navbar.navbar-short {
  min-height: 60px;
}
.cid-uMxRit3ggu .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uMxRit3ggu .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uMxRit3ggu .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-uMxRit3ggu .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uMxRit3ggu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uMxRit3ggu .dropdown-item.active,
.cid-uMxRit3ggu .dropdown-item:active {
  background-color: transparent;
}
.cid-uMxRit3ggu .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uMxRit3ggu .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uMxRit3ggu .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uMxRit3ggu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uMxRit3ggu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uMxRit3ggu .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uMxRit3ggu ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uMxRit3ggu .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uMxRit3ggu button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uMxRit3ggu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #05386b;
}
.cid-uMxRit3ggu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uMxRit3ggu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMxRit3ggu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMxRit3ggu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uMxRit3ggu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMxRit3ggu nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uMxRit3ggu nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uMxRit3ggu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMxRit3ggu .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uMxRit3ggu a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uMxRit3ggu .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-uMxRit3ggu .navbar {
    height: 70px;
  }
  .cid-uMxRit3ggu .navbar.opened {
    height: auto;
  }
  .cid-uMxRit3ggu .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uMxRitveSI {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uMxRitveSI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMxRitveSI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMxRitveSI .item {
  padding-bottom: 2rem;
}
.cid-uMxRitveSI .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uMxRitveSI .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uMxRitveSI .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-uMxRitveSI .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uMxRitveSI .carousel-control,
.cid-uMxRitveSI .close {
  background: #1b1b1b;
}
.cid-uMxRitveSI .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uMxRitveSI .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uMxRitveSI .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uMxRitveSI .carousel-control-next span {
  margin-left: 5px;
}
.cid-uMxRitveSI .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-uMxRitveSI .close::before {
  content: '\e91a';
}
.cid-uMxRitveSI .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uMxRitveSI .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-uMxRitveSI .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uMxRitveSI .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uMxRitveSI .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uMxRitveSI .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uMxRitveSI .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-uMxRitveSI .carousel-indicators li.active,
.cid-uMxRitveSI .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uMxRitveSI .carousel-indicators li::after,
.cid-uMxRitveSI .carousel-indicators li::before {
  content: none;
}
.cid-uMxRitveSI .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uMxRitveSI .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uMxRitveSI .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uMxRitveSI .carousel-indicators {
    display: none;
  }
}
.cid-uMxRitveSI .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uMxRitveSI .carousel-inner > .active {
  display: block;
}
.cid-uMxRitveSI .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uMxRitveSI .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uMxRitveSI .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uMxRitveSI .carousel-control,
  .cid-uMxRitveSI .carousel-indicators,
  .cid-uMxRitveSI .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uMxRitveSI .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uMxRitveSI .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uMxRitveSI .carousel-indicators .active,
.cid-uMxRitveSI .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uMxRitveSI .carousel-indicators .active {
  background: #fff;
}
.cid-uMxRitveSI .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uMxRitveSI .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uMxRitveSI .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uMxRitveSI .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uMxRitveSI .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uMxRitveSI .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uMxRitveSI .carousel {
  width: 100%;
}
.cid-uMxRitveSI .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uMxRitveSI .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uMxRitveSI .modal.fade .modal-dialog,
.cid-uMxRitveSI .modal.in .modal-dialog {
  transform: none;
}
.cid-uMxRitveSI .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uMxRitveSI H6 {
  text-align: center;
}
.cid-uMxRiu4e8q {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uMxRiucbwc {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #747070;
}
.cid-uMxRiucbwc .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uMxRiucbwc .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uMxRiucbwc .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uMxRiucbwc .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uMxRiucbwc .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uMxRiucbwc .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uMxRiucbwc .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-uMxRiucbwc .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uMxRiucbwc .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uMxRiucbwc .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uMxRiucbwc .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uMxRiucbwc .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uMxRiucbwc .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uMxRiucbwc .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uMxUxRIMIE .navbar-dropdown {
  position: relative !important;
}
.cid-uMxUxRIMIE .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-uMxUxRIMIE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uMxUxRIMIE .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uMxUxRIMIE .dropdown-item:hover,
.cid-uMxUxRIMIE .dropdown-item:focus {
  background: #bbbbbb !important;
  color: white !important;
}
.cid-uMxUxRIMIE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uMxUxRIMIE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uMxUxRIMIE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uMxUxRIMIE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uMxUxRIMIE .nav-link {
  position: relative;
}
.cid-uMxUxRIMIE .container {
  display: flex;
  margin: auto;
}
.cid-uMxUxRIMIE .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uMxUxRIMIE .dropdown-menu,
.cid-uMxUxRIMIE .navbar.opened {
  background: #ffffff !important;
}
.cid-uMxUxRIMIE .nav-item:focus,
.cid-uMxUxRIMIE .nav-link:focus {
  outline: none;
}
.cid-uMxUxRIMIE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uMxUxRIMIE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uMxUxRIMIE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uMxUxRIMIE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uMxUxRIMIE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uMxUxRIMIE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uMxUxRIMIE .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: #ffffff;
}
.cid-uMxUxRIMIE .navbar.opened {
  transition: all 0.3s;
}
.cid-uMxUxRIMIE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uMxUxRIMIE .navbar .navbar-logo img {
  width: auto;
}
.cid-uMxUxRIMIE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uMxUxRIMIE .navbar.collapsed {
  justify-content: center;
}
.cid-uMxUxRIMIE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uMxUxRIMIE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uMxUxRIMIE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uMxUxRIMIE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uMxUxRIMIE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uMxUxRIMIE .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-uMxUxRIMIE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uMxUxRIMIE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uMxUxRIMIE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uMxUxRIMIE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uMxUxRIMIE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uMxUxRIMIE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uMxUxRIMIE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uMxUxRIMIE .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-uMxUxRIMIE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uMxUxRIMIE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uMxUxRIMIE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uMxUxRIMIE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uMxUxRIMIE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uMxUxRIMIE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uMxUxRIMIE .navbar.navbar-short {
  min-height: 60px;
}
.cid-uMxUxRIMIE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uMxUxRIMIE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uMxUxRIMIE .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-uMxUxRIMIE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uMxUxRIMIE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uMxUxRIMIE .dropdown-item.active,
.cid-uMxUxRIMIE .dropdown-item:active {
  background-color: transparent;
}
.cid-uMxUxRIMIE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uMxUxRIMIE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uMxUxRIMIE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uMxUxRIMIE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uMxUxRIMIE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uMxUxRIMIE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uMxUxRIMIE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uMxUxRIMIE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uMxUxRIMIE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uMxUxRIMIE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #05386b;
}
.cid-uMxUxRIMIE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uMxUxRIMIE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMxUxRIMIE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMxUxRIMIE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uMxUxRIMIE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMxUxRIMIE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uMxUxRIMIE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uMxUxRIMIE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMxUxRIMIE .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uMxUxRIMIE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uMxUxRIMIE .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-uMxUxRIMIE .navbar {
    height: 70px;
  }
  .cid-uMxUxRIMIE .navbar.opened {
    height: auto;
  }
  .cid-uMxUxRIMIE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uMxUxShYJx {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uMxUxShYJx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMxUxShYJx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMxUxShYJx .item {
  padding-bottom: 2rem;
}
.cid-uMxUxShYJx .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uMxUxShYJx .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uMxUxShYJx .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-uMxUxShYJx .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uMxUxShYJx .carousel-control,
.cid-uMxUxShYJx .close {
  background: #1b1b1b;
}
.cid-uMxUxShYJx .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uMxUxShYJx .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uMxUxShYJx .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uMxUxShYJx .carousel-control-next span {
  margin-left: 5px;
}
.cid-uMxUxShYJx .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-uMxUxShYJx .close::before {
  content: '\e91a';
}
.cid-uMxUxShYJx .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uMxUxShYJx .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-uMxUxShYJx .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uMxUxShYJx .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uMxUxShYJx .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uMxUxShYJx .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uMxUxShYJx .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-uMxUxShYJx .carousel-indicators li.active,
.cid-uMxUxShYJx .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uMxUxShYJx .carousel-indicators li::after,
.cid-uMxUxShYJx .carousel-indicators li::before {
  content: none;
}
.cid-uMxUxShYJx .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uMxUxShYJx .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uMxUxShYJx .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uMxUxShYJx .carousel-indicators {
    display: none;
  }
}
.cid-uMxUxShYJx .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uMxUxShYJx .carousel-inner > .active {
  display: block;
}
.cid-uMxUxShYJx .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uMxUxShYJx .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uMxUxShYJx .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uMxUxShYJx .carousel-control,
  .cid-uMxUxShYJx .carousel-indicators,
  .cid-uMxUxShYJx .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uMxUxShYJx .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uMxUxShYJx .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uMxUxShYJx .carousel-indicators .active,
.cid-uMxUxShYJx .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uMxUxShYJx .carousel-indicators .active {
  background: #fff;
}
.cid-uMxUxShYJx .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uMxUxShYJx .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uMxUxShYJx .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uMxUxShYJx .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uMxUxShYJx .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uMxUxShYJx .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uMxUxShYJx .carousel {
  width: 100%;
}
.cid-uMxUxShYJx .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uMxUxShYJx .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uMxUxShYJx .modal.fade .modal-dialog,
.cid-uMxUxShYJx .modal.in .modal-dialog {
  transform: none;
}
.cid-uMxUxShYJx .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uMxUxShYJx H6 {
  text-align: center;
}
.cid-uMxUxSO9r9 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uMxUxSW7kY {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #747070;
}
.cid-uMxUxSW7kY .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uMxUxSW7kY .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uMxUxSW7kY .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uMxUxSW7kY .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uMxUxSW7kY .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uMxUxSW7kY .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uMxUxSW7kY .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-uMxUxSW7kY .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uMxUxSW7kY .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uMxUxSW7kY .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uMxUxSW7kY .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uMxUxSW7kY .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uMxUxSW7kY .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uMxUxSW7kY .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uMnFQqi6ER .navbar-dropdown {
  position: relative !important;
}
.cid-uMnFQqi6ER .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-uMnFQqi6ER .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uMnFQqi6ER .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uMnFQqi6ER .dropdown-item:hover,
.cid-uMnFQqi6ER .dropdown-item:focus {
  background: #bbbbbb !important;
  color: white !important;
}
.cid-uMnFQqi6ER .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uMnFQqi6ER .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uMnFQqi6ER .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uMnFQqi6ER .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uMnFQqi6ER .nav-link {
  position: relative;
}
.cid-uMnFQqi6ER .container {
  display: flex;
  margin: auto;
}
.cid-uMnFQqi6ER .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uMnFQqi6ER .dropdown-menu,
.cid-uMnFQqi6ER .navbar.opened {
  background: #ffffff !important;
}
.cid-uMnFQqi6ER .nav-item:focus,
.cid-uMnFQqi6ER .nav-link:focus {
  outline: none;
}
.cid-uMnFQqi6ER .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uMnFQqi6ER .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uMnFQqi6ER .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uMnFQqi6ER .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uMnFQqi6ER .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uMnFQqi6ER .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uMnFQqi6ER .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: #ffffff;
}
.cid-uMnFQqi6ER .navbar.opened {
  transition: all 0.3s;
}
.cid-uMnFQqi6ER .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uMnFQqi6ER .navbar .navbar-logo img {
  width: auto;
}
.cid-uMnFQqi6ER .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uMnFQqi6ER .navbar.collapsed {
  justify-content: center;
}
.cid-uMnFQqi6ER .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uMnFQqi6ER .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uMnFQqi6ER .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uMnFQqi6ER .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uMnFQqi6ER .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uMnFQqi6ER .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-uMnFQqi6ER .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uMnFQqi6ER .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uMnFQqi6ER .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uMnFQqi6ER .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uMnFQqi6ER .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uMnFQqi6ER .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uMnFQqi6ER .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uMnFQqi6ER .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-uMnFQqi6ER .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uMnFQqi6ER .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uMnFQqi6ER .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uMnFQqi6ER .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uMnFQqi6ER .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uMnFQqi6ER .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uMnFQqi6ER .navbar.navbar-short {
  min-height: 60px;
}
.cid-uMnFQqi6ER .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uMnFQqi6ER .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uMnFQqi6ER .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-uMnFQqi6ER .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uMnFQqi6ER .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uMnFQqi6ER .dropdown-item.active,
.cid-uMnFQqi6ER .dropdown-item:active {
  background-color: transparent;
}
.cid-uMnFQqi6ER .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uMnFQqi6ER .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uMnFQqi6ER .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uMnFQqi6ER .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uMnFQqi6ER .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uMnFQqi6ER .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uMnFQqi6ER ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uMnFQqi6ER .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uMnFQqi6ER button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uMnFQqi6ER button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #05386b;
}
.cid-uMnFQqi6ER button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uMnFQqi6ER button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMnFQqi6ER button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMnFQqi6ER button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uMnFQqi6ER nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMnFQqi6ER nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uMnFQqi6ER nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uMnFQqi6ER nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMnFQqi6ER .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uMnFQqi6ER a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uMnFQqi6ER .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-uMnFQqi6ER .navbar {
    height: 70px;
  }
  .cid-uMnFQqi6ER .navbar.opened {
    height: auto;
  }
  .cid-uMnFQqi6ER .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uLTp958kgk {
  display: flex;
  padding-top: 13rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/cover-amb-9-ak-project11-magic.jpg");
}
.cid-uLTp958kgk .mbr-overlay {
  background-color: #5e5959;
  opacity: 0.2;
}
@media (min-width: 768px) {
  .cid-uLTp958kgk {
    align-items: flex-end;
  }
  .cid-uLTp958kgk .row {
    justify-content: center;
  }
  .cid-uLTp958kgk .content-wrap {
    padding: 1rem 3rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uLTp958kgk .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uLTp958kgk {
    -webkit-align-items: center;
    align-items: flex-end;
  }
  .cid-uLTp958kgk .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uLTp958kgk .content-wrap {
    width: 100%;
  }
}
.cid-uLTp958kgk .mbr-section-title,
.cid-uLTp958kgk .mbr-section-subtitle {
  text-align: center;
}
.cid-uLTp958kgk .mbr-text,
.cid-uLTp958kgk .mbr-section-btn {
  text-align: center;
}
.cid-uLTsn0rETB {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uLTsn0rETB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLTsn0rETB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLTsn0rETB .mbr-section-btn {
  opacity: 0;
  transition-delay: 0.1s;
  z-index: 1;
  position: relative;
  margin: auto;
}
.cid-uLTsn0rETB .content-head {
  max-width: 800px;
}
.cid-uLTsn0rETB .card1 {
  background-image: url("../../../assets/images/screenshot-2025-05-22.png");
  background-size: cover;
  background-position: center center;
}
.cid-uLTsn0rETB .card1:before {
  background: #fafafa;
}
.cid-uLTsn0rETB .card2 {
  background-image: url("../../../assets/images/m9w2-5.jpg");
  background-size: cover;
  background-position: center center;
}
.cid-uLTsn0rETB .card2:before {
  background: #bbbbbb;
}
.cid-uLTsn0rETB .card3 {
  background-image: url("../../../assets/images/screenshot-2025-05-23.png");
  background-size: cover;
  background-position: center center;
}
.cid-uLTsn0rETB .card3:before {
  background: #5f5c5c;
}
.cid-uLTsn0rETB .card4 {
  background-image: url("../../../assets/images/team4.jpg");
  background-size: cover;
  background-position: center center;
}
.cid-uLTsn0rETB .card4:before {
  background: #9fe870;
}
.cid-uLTsn0rETB .content-wrap {
  margin: auto;
  display: flex;
  height: 100%;
}
.cid-uLTsn0rETB .card-wrap {
  border-radius: inherit;
  height: 400px;
  position: relative;
  transition: all 0.3s;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uLTsn0rETB .card-wrap {
    margin-bottom: 1rem;
  }
}
.cid-uLTsn0rETB .card-wrap:before {
  content: "";
  position: absolute;
  border-radius: inherit;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition-delay: 0.1s;
  opacity: 0;
}
.cid-uLTsn0rETB .card {
  transition: transform 0.6s;
}
.cid-uLTsn0rETB .card:hover .card-wrap,
.cid-uLTsn0rETB .card:focus-within .card-wrap {
  transform: rotateY(180deg);
}
.cid-uLTsn0rETB .card:hover .card-wrap:before,
.cid-uLTsn0rETB .card:focus-within .card-wrap:before {
  opacity: 1;
}
.cid-uLTsn0rETB .card:hover .mbr-section-btn,
.cid-uLTsn0rETB .card:focus-within .mbr-section-btn {
  opacity: 1;
  transform: rotateY(180deg);
}
@media (max-width: 767px) {
  .cid-uLTsn0rETB .card:hover .card-wrap {
    transform: none;
  }
  .cid-uLTsn0rETB .card:hover .card-wrap:before {
    opacity: 0.8;
  }
  .cid-uLTsn0rETB .card-wrap:before {
    opacity: 0.8;
  }
  .cid-uLTsn0rETB .card-wrap:hover {
    transform: none;
  }
  .cid-uLTsn0rETB .card-wrap:hover .mbr-section-btn {
    transform: none;
  }
  .cid-uLTsn0rETB .mbr-section-btn {
    opacity: 1;
  }
}
.cid-uLTsn0rETB .mbr-section-title {
  color: #ffffff;
}
.cid-uLTtGk3dKk {
  display: flex;
  padding-top: 12rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/1234-6.jpg");
}
.cid-uLTtGk3dKk .mbr-overlay {
  background-color: #5e5959;
  opacity: 0.2;
}
@media (min-width: 768px) {
  .cid-uLTtGk3dKk {
    align-items: flex-end;
  }
  .cid-uLTtGk3dKk .row {
    justify-content: center;
  }
  .cid-uLTtGk3dKk .content-wrap {
    padding: 1rem 3rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uLTtGk3dKk .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uLTtGk3dKk {
    -webkit-align-items: center;
    align-items: flex-end;
  }
  .cid-uLTtGk3dKk .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uLTtGk3dKk .content-wrap {
    width: 100%;
  }
}
.cid-uLTtGk3dKk .mbr-section-title,
.cid-uLTtGk3dKk .mbr-section-subtitle {
  text-align: center;
}
.cid-uLTtGk3dKk .mbr-text,
.cid-uLTtGk3dKk .mbr-section-btn {
  text-align: center;
}
.cid-uLI02Hpmb3 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uLI02Hpmb3 h6 {
  line-height: 1.2;
}
.cid-uLI02Hpmb3 img,
.cid-uLI02Hpmb3 .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uLI02Hpmb3 .item:focus,
.cid-uLI02Hpmb3 span:focus {
  outline: none;
}
.cid-uLI02Hpmb3 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uLI02Hpmb3 .item {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uLI02Hpmb3 .mbr-section-content {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
}
.cid-uLI02Hpmb3 .item-wrapper {
  position: relative;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uLI02Hpmb3 .mbr-section-btn {
  margin-top: auto !important;
  text-align: center;
}
.cid-uLI02Hpmb3 .mbr-section-title {
  color: #000000;
}
.cid-uLI02Hpmb3 .mbr-text,
.cid-uLI02Hpmb3 .mbr-section-btn {
  color: #000000;
}
.cid-uLI02Hpmb3 .item-title {
  color: #000000;
  text-align: center;
}
.cid-uLI02Hpmb3 .item-subtitle {
  color: #000000;
  text-align: center;
}
.cid-uLI02Hpmb3 .item-text {
  color: #000000;
  text-align: center;
}
.cid-uLI02Hpmb3 .content-head {
  max-width: 800px;
}
.cid-uMnMJPo0BN {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uLTq6yrYJm {
  display: flex;
  padding-top: 12rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/m9w2-5.jpeg");
}
.cid-uLTq6yrYJm .mbr-overlay {
  background-color: #5e5959;
  opacity: 0.2;
}
@media (min-width: 768px) {
  .cid-uLTq6yrYJm {
    align-items: flex-end;
  }
  .cid-uLTq6yrYJm .row {
    justify-content: center;
  }
  .cid-uLTq6yrYJm .content-wrap {
    padding: 1rem 3rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uLTq6yrYJm .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uLTq6yrYJm {
    -webkit-align-items: center;
    align-items: flex-end;
  }
  .cid-uLTq6yrYJm .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uLTq6yrYJm .content-wrap {
    width: 100%;
  }
}
.cid-uLTq6yrYJm .mbr-section-title,
.cid-uLTq6yrYJm .mbr-section-subtitle {
  text-align: center;
}
.cid-uLTq6yrYJm .mbr-text,
.cid-uLTq6yrYJm .mbr-section-btn {
  text-align: center;
}
.cid-uMnNokADUs {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uMnNokADUs h6 {
  line-height: 1.2;
}
.cid-uMnNokADUs img,
.cid-uMnNokADUs .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uMnNokADUs .item:focus,
.cid-uMnNokADUs span:focus {
  outline: none;
}
.cid-uMnNokADUs .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uMnNokADUs .item {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uMnNokADUs .mbr-section-content {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
}
.cid-uMnNokADUs .item-wrapper {
  position: relative;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uMnNokADUs .mbr-section-btn {
  margin-top: auto !important;
  text-align: center;
}
.cid-uMnNokADUs .mbr-section-title {
  color: #000000;
}
.cid-uMnNokADUs .mbr-text,
.cid-uMnNokADUs .mbr-section-btn {
  color: #000000;
}
.cid-uMnNokADUs .item-title {
  color: #000000;
  text-align: center;
}
.cid-uMnNokADUs .item-subtitle {
  color: #000000;
  text-align: center;
}
.cid-uMnNokADUs .item-text {
  color: #000000;
  text-align: center;
}
.cid-uMnNokADUs .content-head {
  max-width: 800px;
}
.cid-uMnN1HeISa {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uLTx7s0vgJ {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uLTx7s0vgJ img,
.cid-uLTx7s0vgJ .item-img {
  width: 100%;
}
.cid-uLTx7s0vgJ .item:focus,
.cid-uLTx7s0vgJ span:focus {
  outline: none;
}
.cid-uLTx7s0vgJ .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uLTx7s0vgJ .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uLTx7s0vgJ .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uLTx7s0vgJ .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uLTx7s0vgJ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uLTx7s0vgJ .mbr-section-title {
  color: #232323;
}
.cid-uLTx7s0vgJ .mbr-text,
.cid-uLTx7s0vgJ .mbr-section-btn {
  text-align: left;
}
.cid-uLTx7s0vgJ .item-title {
  text-align: left;
  color: #000000;
}
.cid-uLTx7s0vgJ .item-subtitle {
  text-align: left;
  color: #232323;
}
.cid-uMnHqDJqOb {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uLyKnUl8Iq {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #747070;
}
.cid-uLyKnUl8Iq .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uLyKnUl8Iq .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uLyKnUl8Iq .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uLyKnUl8Iq .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uLyKnUl8Iq .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uLyKnUl8Iq .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uLyKnUl8Iq .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-uLyKnUl8Iq .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uLyKnUl8Iq .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uLyKnUl8Iq .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uLyKnUl8Iq .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uLyKnUl8Iq .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uLyKnUl8Iq .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uLyKnUl8Iq .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uXBniIUyy4 .navbar-dropdown {
  position: relative !important;
}
.cid-uXBniIUyy4 .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-uXBniIUyy4 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uXBniIUyy4 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uXBniIUyy4 .dropdown-item:hover,
.cid-uXBniIUyy4 .dropdown-item:focus {
  background: #bbbbbb !important;
  color: white !important;
}
.cid-uXBniIUyy4 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uXBniIUyy4 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uXBniIUyy4 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uXBniIUyy4 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uXBniIUyy4 .nav-link {
  position: relative;
}
.cid-uXBniIUyy4 .container {
  display: flex;
  margin: auto;
}
.cid-uXBniIUyy4 .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uXBniIUyy4 .dropdown-menu,
.cid-uXBniIUyy4 .navbar.opened {
  background: #ffffff !important;
}
.cid-uXBniIUyy4 .nav-item:focus,
.cid-uXBniIUyy4 .nav-link:focus {
  outline: none;
}
.cid-uXBniIUyy4 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uXBniIUyy4 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uXBniIUyy4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uXBniIUyy4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uXBniIUyy4 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uXBniIUyy4 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uXBniIUyy4 .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: #ffffff;
}
.cid-uXBniIUyy4 .navbar.opened {
  transition: all 0.3s;
}
.cid-uXBniIUyy4 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uXBniIUyy4 .navbar .navbar-logo img {
  width: auto;
}
.cid-uXBniIUyy4 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uXBniIUyy4 .navbar.collapsed {
  justify-content: center;
}
.cid-uXBniIUyy4 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uXBniIUyy4 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uXBniIUyy4 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uXBniIUyy4 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uXBniIUyy4 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uXBniIUyy4 .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-uXBniIUyy4 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uXBniIUyy4 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uXBniIUyy4 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uXBniIUyy4 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uXBniIUyy4 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uXBniIUyy4 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uXBniIUyy4 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uXBniIUyy4 .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-uXBniIUyy4 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uXBniIUyy4 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uXBniIUyy4 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uXBniIUyy4 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uXBniIUyy4 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uXBniIUyy4 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uXBniIUyy4 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uXBniIUyy4 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uXBniIUyy4 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uXBniIUyy4 .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-uXBniIUyy4 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uXBniIUyy4 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uXBniIUyy4 .dropdown-item.active,
.cid-uXBniIUyy4 .dropdown-item:active {
  background-color: transparent;
}
.cid-uXBniIUyy4 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uXBniIUyy4 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uXBniIUyy4 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uXBniIUyy4 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uXBniIUyy4 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uXBniIUyy4 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uXBniIUyy4 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uXBniIUyy4 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uXBniIUyy4 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uXBniIUyy4 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #05386b;
}
.cid-uXBniIUyy4 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uXBniIUyy4 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uXBniIUyy4 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uXBniIUyy4 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uXBniIUyy4 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uXBniIUyy4 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uXBniIUyy4 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uXBniIUyy4 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uXBniIUyy4 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uXBniIUyy4 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uXBniIUyy4 .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-uXBniIUyy4 .navbar {
    height: 70px;
  }
  .cid-uXBniIUyy4 .navbar.opened {
    height: auto;
  }
  .cid-uXBniIUyy4 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uXBniJd23H {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uXBniJd23H .mbr-fallback-image.disabled {
  display: none;
}
.cid-uXBniJd23H .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uXBniJd23H .item {
  padding-bottom: 2rem;
}
.cid-uXBniJd23H .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uXBniJd23H .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uXBniJd23H .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-uXBniJd23H .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uXBniJd23H .carousel-control,
.cid-uXBniJd23H .close {
  background: #1b1b1b;
}
.cid-uXBniJd23H .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uXBniJd23H .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uXBniJd23H .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uXBniJd23H .carousel-control-next span {
  margin-left: 5px;
}
.cid-uXBniJd23H .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-uXBniJd23H .close::before {
  content: '\e91a';
}
.cid-uXBniJd23H .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uXBniJd23H .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-uXBniJd23H .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uXBniJd23H .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uXBniJd23H .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uXBniJd23H .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uXBniJd23H .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-uXBniJd23H .carousel-indicators li.active,
.cid-uXBniJd23H .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uXBniJd23H .carousel-indicators li::after,
.cid-uXBniJd23H .carousel-indicators li::before {
  content: none;
}
.cid-uXBniJd23H .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uXBniJd23H .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uXBniJd23H .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uXBniJd23H .carousel-indicators {
    display: none;
  }
}
.cid-uXBniJd23H .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uXBniJd23H .carousel-inner > .active {
  display: block;
}
.cid-uXBniJd23H .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uXBniJd23H .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uXBniJd23H .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uXBniJd23H .carousel-control,
  .cid-uXBniJd23H .carousel-indicators,
  .cid-uXBniJd23H .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uXBniJd23H .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uXBniJd23H .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uXBniJd23H .carousel-indicators .active,
.cid-uXBniJd23H .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uXBniJd23H .carousel-indicators .active {
  background: #fff;
}
.cid-uXBniJd23H .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uXBniJd23H .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uXBniJd23H .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uXBniJd23H .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uXBniJd23H .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uXBniJd23H .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uXBniJd23H .carousel {
  width: 100%;
}
.cid-uXBniJd23H .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uXBniJd23H .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uXBniJd23H .modal.fade .modal-dialog,
.cid-uXBniJd23H .modal.in .modal-dialog {
  transform: none;
}
.cid-uXBniJd23H .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uXBniJd23H H6 {
  text-align: center;
}
.cid-uXBniJSYvY {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uXBniJZQJE {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #747070;
}
.cid-uXBniJZQJE .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uXBniJZQJE .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uXBniJZQJE .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uXBniJZQJE .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uXBniJZQJE .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uXBniJZQJE .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uXBniJZQJE .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-uXBniJZQJE .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uXBniJZQJE .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uXBniJZQJE .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uXBniJZQJE .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uXBniJZQJE .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uXBniJZQJE .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uXBniJZQJE .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uXBnxCnSIX .navbar-dropdown {
  position: relative !important;
}
.cid-uXBnxCnSIX .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-uXBnxCnSIX .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uXBnxCnSIX .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uXBnxCnSIX .dropdown-item:hover,
.cid-uXBnxCnSIX .dropdown-item:focus {
  background: #bbbbbb !important;
  color: white !important;
}
.cid-uXBnxCnSIX .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uXBnxCnSIX .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uXBnxCnSIX .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uXBnxCnSIX .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uXBnxCnSIX .nav-link {
  position: relative;
}
.cid-uXBnxCnSIX .container {
  display: flex;
  margin: auto;
}
.cid-uXBnxCnSIX .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uXBnxCnSIX .dropdown-menu,
.cid-uXBnxCnSIX .navbar.opened {
  background: #ffffff !important;
}
.cid-uXBnxCnSIX .nav-item:focus,
.cid-uXBnxCnSIX .nav-link:focus {
  outline: none;
}
.cid-uXBnxCnSIX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uXBnxCnSIX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uXBnxCnSIX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uXBnxCnSIX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uXBnxCnSIX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uXBnxCnSIX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uXBnxCnSIX .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: #ffffff;
}
.cid-uXBnxCnSIX .navbar.opened {
  transition: all 0.3s;
}
.cid-uXBnxCnSIX .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uXBnxCnSIX .navbar .navbar-logo img {
  width: auto;
}
.cid-uXBnxCnSIX .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uXBnxCnSIX .navbar.collapsed {
  justify-content: center;
}
.cid-uXBnxCnSIX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uXBnxCnSIX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uXBnxCnSIX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uXBnxCnSIX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uXBnxCnSIX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uXBnxCnSIX .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-uXBnxCnSIX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uXBnxCnSIX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uXBnxCnSIX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uXBnxCnSIX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uXBnxCnSIX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uXBnxCnSIX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uXBnxCnSIX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uXBnxCnSIX .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-uXBnxCnSIX .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uXBnxCnSIX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uXBnxCnSIX .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uXBnxCnSIX .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uXBnxCnSIX .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uXBnxCnSIX .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uXBnxCnSIX .navbar.navbar-short {
  min-height: 60px;
}
.cid-uXBnxCnSIX .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uXBnxCnSIX .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uXBnxCnSIX .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-uXBnxCnSIX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uXBnxCnSIX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uXBnxCnSIX .dropdown-item.active,
.cid-uXBnxCnSIX .dropdown-item:active {
  background-color: transparent;
}
.cid-uXBnxCnSIX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uXBnxCnSIX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uXBnxCnSIX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uXBnxCnSIX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uXBnxCnSIX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uXBnxCnSIX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uXBnxCnSIX ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uXBnxCnSIX .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uXBnxCnSIX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uXBnxCnSIX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #05386b;
}
.cid-uXBnxCnSIX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uXBnxCnSIX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uXBnxCnSIX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uXBnxCnSIX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uXBnxCnSIX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uXBnxCnSIX nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uXBnxCnSIX nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uXBnxCnSIX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uXBnxCnSIX .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uXBnxCnSIX a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uXBnxCnSIX .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-uXBnxCnSIX .navbar {
    height: 70px;
  }
  .cid-uXBnxCnSIX .navbar.opened {
    height: auto;
  }
  .cid-uXBnxCnSIX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uXBnxCE3QV {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uXBnxCE3QV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uXBnxCE3QV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uXBnxCE3QV .item {
  padding-bottom: 2rem;
}
.cid-uXBnxCE3QV .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uXBnxCE3QV .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uXBnxCE3QV .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-uXBnxCE3QV .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uXBnxCE3QV .carousel-control,
.cid-uXBnxCE3QV .close {
  background: #1b1b1b;
}
.cid-uXBnxCE3QV .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uXBnxCE3QV .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uXBnxCE3QV .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uXBnxCE3QV .carousel-control-next span {
  margin-left: 5px;
}
.cid-uXBnxCE3QV .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-uXBnxCE3QV .close::before {
  content: '\e91a';
}
.cid-uXBnxCE3QV .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uXBnxCE3QV .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-uXBnxCE3QV .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uXBnxCE3QV .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uXBnxCE3QV .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uXBnxCE3QV .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uXBnxCE3QV .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-uXBnxCE3QV .carousel-indicators li.active,
.cid-uXBnxCE3QV .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uXBnxCE3QV .carousel-indicators li::after,
.cid-uXBnxCE3QV .carousel-indicators li::before {
  content: none;
}
.cid-uXBnxCE3QV .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uXBnxCE3QV .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uXBnxCE3QV .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uXBnxCE3QV .carousel-indicators {
    display: none;
  }
}
.cid-uXBnxCE3QV .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uXBnxCE3QV .carousel-inner > .active {
  display: block;
}
.cid-uXBnxCE3QV .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uXBnxCE3QV .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uXBnxCE3QV .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uXBnxCE3QV .carousel-control,
  .cid-uXBnxCE3QV .carousel-indicators,
  .cid-uXBnxCE3QV .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uXBnxCE3QV .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uXBnxCE3QV .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uXBnxCE3QV .carousel-indicators .active,
.cid-uXBnxCE3QV .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uXBnxCE3QV .carousel-indicators .active {
  background: #fff;
}
.cid-uXBnxCE3QV .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uXBnxCE3QV .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uXBnxCE3QV .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uXBnxCE3QV .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uXBnxCE3QV .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uXBnxCE3QV .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uXBnxCE3QV .carousel {
  width: 100%;
}
.cid-uXBnxCE3QV .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uXBnxCE3QV .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uXBnxCE3QV .modal.fade .modal-dialog,
.cid-uXBnxCE3QV .modal.in .modal-dialog {
  transform: none;
}
.cid-uXBnxCE3QV .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uXBnxCE3QV H6 {
  text-align: center;
}
.cid-uXBnxDqDaZ {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uXBnxDzwDg {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #747070;
}
.cid-uXBnxDzwDg .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uXBnxDzwDg .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uXBnxDzwDg .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uXBnxDzwDg .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uXBnxDzwDg .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uXBnxDzwDg .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uXBnxDzwDg .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-uXBnxDzwDg .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uXBnxDzwDg .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uXBnxDzwDg .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uXBnxDzwDg .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uXBnxDzwDg .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uXBnxDzwDg .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uXBnxDzwDg .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uXBnEbLEBG .navbar-dropdown {
  position: relative !important;
}
.cid-uXBnEbLEBG .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-uXBnEbLEBG .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uXBnEbLEBG .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uXBnEbLEBG .dropdown-item:hover,
.cid-uXBnEbLEBG .dropdown-item:focus {
  background: #bbbbbb !important;
  color: white !important;
}
.cid-uXBnEbLEBG .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uXBnEbLEBG .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uXBnEbLEBG .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uXBnEbLEBG .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uXBnEbLEBG .nav-link {
  position: relative;
}
.cid-uXBnEbLEBG .container {
  display: flex;
  margin: auto;
}
.cid-uXBnEbLEBG .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uXBnEbLEBG .dropdown-menu,
.cid-uXBnEbLEBG .navbar.opened {
  background: #ffffff !important;
}
.cid-uXBnEbLEBG .nav-item:focus,
.cid-uXBnEbLEBG .nav-link:focus {
  outline: none;
}
.cid-uXBnEbLEBG .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uXBnEbLEBG .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uXBnEbLEBG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uXBnEbLEBG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uXBnEbLEBG .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uXBnEbLEBG .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uXBnEbLEBG .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: #ffffff;
}
.cid-uXBnEbLEBG .navbar.opened {
  transition: all 0.3s;
}
.cid-uXBnEbLEBG .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uXBnEbLEBG .navbar .navbar-logo img {
  width: auto;
}
.cid-uXBnEbLEBG .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uXBnEbLEBG .navbar.collapsed {
  justify-content: center;
}
.cid-uXBnEbLEBG .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uXBnEbLEBG .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uXBnEbLEBG .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uXBnEbLEBG .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uXBnEbLEBG .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uXBnEbLEBG .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-uXBnEbLEBG .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uXBnEbLEBG .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uXBnEbLEBG .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uXBnEbLEBG .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uXBnEbLEBG .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uXBnEbLEBG .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uXBnEbLEBG .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uXBnEbLEBG .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-uXBnEbLEBG .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uXBnEbLEBG .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uXBnEbLEBG .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uXBnEbLEBG .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uXBnEbLEBG .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uXBnEbLEBG .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uXBnEbLEBG .navbar.navbar-short {
  min-height: 60px;
}
.cid-uXBnEbLEBG .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uXBnEbLEBG .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uXBnEbLEBG .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-uXBnEbLEBG .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uXBnEbLEBG .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uXBnEbLEBG .dropdown-item.active,
.cid-uXBnEbLEBG .dropdown-item:active {
  background-color: transparent;
}
.cid-uXBnEbLEBG .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uXBnEbLEBG .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uXBnEbLEBG .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uXBnEbLEBG .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uXBnEbLEBG .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uXBnEbLEBG .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uXBnEbLEBG ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uXBnEbLEBG .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uXBnEbLEBG button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uXBnEbLEBG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #05386b;
}
.cid-uXBnEbLEBG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uXBnEbLEBG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uXBnEbLEBG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uXBnEbLEBG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uXBnEbLEBG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uXBnEbLEBG nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uXBnEbLEBG nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uXBnEbLEBG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uXBnEbLEBG .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uXBnEbLEBG a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uXBnEbLEBG .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-uXBnEbLEBG .navbar {
    height: 70px;
  }
  .cid-uXBnEbLEBG .navbar.opened {
    height: auto;
  }
  .cid-uXBnEbLEBG .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uXBnEckF2I {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uXBnEckF2I .mbr-fallback-image.disabled {
  display: none;
}
.cid-uXBnEckF2I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uXBnEckF2I .item {
  padding-bottom: 2rem;
}
.cid-uXBnEckF2I .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uXBnEckF2I .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uXBnEckF2I .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-uXBnEckF2I .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uXBnEckF2I .carousel-control,
.cid-uXBnEckF2I .close {
  background: #1b1b1b;
}
.cid-uXBnEckF2I .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uXBnEckF2I .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uXBnEckF2I .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uXBnEckF2I .carousel-control-next span {
  margin-left: 5px;
}
.cid-uXBnEckF2I .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-uXBnEckF2I .close::before {
  content: '\e91a';
}
.cid-uXBnEckF2I .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uXBnEckF2I .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-uXBnEckF2I .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uXBnEckF2I .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uXBnEckF2I .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uXBnEckF2I .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uXBnEckF2I .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-uXBnEckF2I .carousel-indicators li.active,
.cid-uXBnEckF2I .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uXBnEckF2I .carousel-indicators li::after,
.cid-uXBnEckF2I .carousel-indicators li::before {
  content: none;
}
.cid-uXBnEckF2I .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uXBnEckF2I .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uXBnEckF2I .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uXBnEckF2I .carousel-indicators {
    display: none;
  }
}
.cid-uXBnEckF2I .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uXBnEckF2I .carousel-inner > .active {
  display: block;
}
.cid-uXBnEckF2I .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uXBnEckF2I .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uXBnEckF2I .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uXBnEckF2I .carousel-control,
  .cid-uXBnEckF2I .carousel-indicators,
  .cid-uXBnEckF2I .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uXBnEckF2I .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uXBnEckF2I .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uXBnEckF2I .carousel-indicators .active,
.cid-uXBnEckF2I .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uXBnEckF2I .carousel-indicators .active {
  background: #fff;
}
.cid-uXBnEckF2I .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uXBnEckF2I .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uXBnEckF2I .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uXBnEckF2I .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uXBnEckF2I .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uXBnEckF2I .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uXBnEckF2I .carousel {
  width: 100%;
}
.cid-uXBnEckF2I .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uXBnEckF2I .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uXBnEckF2I .modal.fade .modal-dialog,
.cid-uXBnEckF2I .modal.in .modal-dialog {
  transform: none;
}
.cid-uXBnEckF2I .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uXBnEckF2I H6 {
  text-align: center;
}
.cid-uXBnEcSlS7 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uXBnEcZYWy {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #747070;
}
.cid-uXBnEcZYWy .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uXBnEcZYWy .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uXBnEcZYWy .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uXBnEcZYWy .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uXBnEcZYWy .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uXBnEcZYWy .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uXBnEcZYWy .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-uXBnEcZYWy .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uXBnEcZYWy .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uXBnEcZYWy .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uXBnEcZYWy .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uXBnEcZYWy .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uXBnEcZYWy .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uXBnEcZYWy .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-veS85XnueF .navbar-dropdown {
  position: relative !important;
}
.cid-veS85XnueF .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-veS85XnueF .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-veS85XnueF .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-veS85XnueF .dropdown-item:hover,
.cid-veS85XnueF .dropdown-item:focus {
  background: #bbbbbb !important;
  color: white !important;
}
.cid-veS85XnueF .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-veS85XnueF .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-veS85XnueF .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-veS85XnueF .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-veS85XnueF .nav-link {
  position: relative;
}
.cid-veS85XnueF .container {
  display: flex;
  margin: auto;
}
.cid-veS85XnueF .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-veS85XnueF .dropdown-menu,
.cid-veS85XnueF .navbar.opened {
  background: #ffffff !important;
}
.cid-veS85XnueF .nav-item:focus,
.cid-veS85XnueF .nav-link:focus {
  outline: none;
}
.cid-veS85XnueF .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-veS85XnueF .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-veS85XnueF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-veS85XnueF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-veS85XnueF .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-veS85XnueF .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-veS85XnueF .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: #ffffff;
}
.cid-veS85XnueF .navbar.opened {
  transition: all 0.3s;
}
.cid-veS85XnueF .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-veS85XnueF .navbar .navbar-logo img {
  width: auto;
}
.cid-veS85XnueF .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-veS85XnueF .navbar.collapsed {
  justify-content: center;
}
.cid-veS85XnueF .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-veS85XnueF .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-veS85XnueF .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-veS85XnueF .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-veS85XnueF .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-veS85XnueF .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-veS85XnueF .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-veS85XnueF .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-veS85XnueF .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-veS85XnueF .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-veS85XnueF .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-veS85XnueF .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-veS85XnueF .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-veS85XnueF .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-veS85XnueF .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-veS85XnueF .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-veS85XnueF .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-veS85XnueF .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-veS85XnueF .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-veS85XnueF .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-veS85XnueF .navbar.navbar-short {
  min-height: 60px;
}
.cid-veS85XnueF .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-veS85XnueF .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-veS85XnueF .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-veS85XnueF .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-veS85XnueF .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-veS85XnueF .dropdown-item.active,
.cid-veS85XnueF .dropdown-item:active {
  background-color: transparent;
}
.cid-veS85XnueF .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-veS85XnueF .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-veS85XnueF .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-veS85XnueF .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-veS85XnueF .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-veS85XnueF .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-veS85XnueF ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-veS85XnueF .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-veS85XnueF button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-veS85XnueF button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #05386b;
}
.cid-veS85XnueF button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-veS85XnueF button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-veS85XnueF button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-veS85XnueF button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-veS85XnueF nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-veS85XnueF nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-veS85XnueF nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-veS85XnueF nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-veS85XnueF .navbar-dropdown {
  padding: 0 1rem;
}
.cid-veS85XnueF a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-veS85XnueF .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-veS85XnueF .navbar {
    height: 70px;
  }
  .cid-veS85XnueF .navbar.opened {
    height: auto;
  }
  .cid-veS85XnueF .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-veS85XKK0V {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-veS85XKK0V .mbr-fallback-image.disabled {
  display: none;
}
.cid-veS85XKK0V .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-veS85XKK0V .item {
  padding-bottom: 2rem;
}
.cid-veS85XKK0V .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-veS85XKK0V .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-veS85XKK0V .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-veS85XKK0V .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-veS85XKK0V .carousel-control,
.cid-veS85XKK0V .close {
  background: #1b1b1b;
}
.cid-veS85XKK0V .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-veS85XKK0V .carousel-control-prev span {
  margin-right: 5px;
}
.cid-veS85XKK0V .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-veS85XKK0V .carousel-control-next span {
  margin-left: 5px;
}
.cid-veS85XKK0V .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-veS85XKK0V .close::before {
  content: '\e91a';
}
.cid-veS85XKK0V .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-veS85XKK0V .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-veS85XKK0V .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-veS85XKK0V .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-veS85XKK0V .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-veS85XKK0V .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-veS85XKK0V .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-veS85XKK0V .carousel-indicators li.active,
.cid-veS85XKK0V .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-veS85XKK0V .carousel-indicators li::after,
.cid-veS85XKK0V .carousel-indicators li::before {
  content: none;
}
.cid-veS85XKK0V .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-veS85XKK0V .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-veS85XKK0V .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-veS85XKK0V .carousel-indicators {
    display: none;
  }
}
.cid-veS85XKK0V .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-veS85XKK0V .carousel-inner > .active {
  display: block;
}
.cid-veS85XKK0V .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-veS85XKK0V .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-veS85XKK0V .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-veS85XKK0V .carousel-control,
  .cid-veS85XKK0V .carousel-indicators,
  .cid-veS85XKK0V .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-veS85XKK0V .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-veS85XKK0V .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-veS85XKK0V .carousel-indicators .active,
.cid-veS85XKK0V .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-veS85XKK0V .carousel-indicators .active {
  background: #fff;
}
.cid-veS85XKK0V .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-veS85XKK0V .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-veS85XKK0V .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-veS85XKK0V .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-veS85XKK0V .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-veS85XKK0V .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-veS85XKK0V .carousel {
  width: 100%;
}
.cid-veS85XKK0V .modal-backdrop.in {
  opacity: 0.8;
}
.cid-veS85XKK0V .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-veS85XKK0V .modal.fade .modal-dialog,
.cid-veS85XKK0V .modal.in .modal-dialog {
  transform: none;
}
.cid-veS85XKK0V .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-veS85XKK0V H6 {
  text-align: center;
}
.cid-vf28usMlPc {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-vf28usMlPc .mbr-fallback-image.disabled {
  display: none;
}
.cid-vf28usMlPc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vf28usMlPc .item {
  padding-bottom: 2rem;
}
.cid-vf28usMlPc .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-vf28usMlPc .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-vf28usMlPc .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-vf28usMlPc .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-vf28usMlPc .carousel-control,
.cid-vf28usMlPc .close {
  background: #1b1b1b;
}
.cid-vf28usMlPc .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-vf28usMlPc .carousel-control-prev span {
  margin-right: 5px;
}
.cid-vf28usMlPc .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-vf28usMlPc .carousel-control-next span {
  margin-left: 5px;
}
.cid-vf28usMlPc .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-vf28usMlPc .close::before {
  content: '\e91a';
}
.cid-vf28usMlPc .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-vf28usMlPc .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-vf28usMlPc .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vf28usMlPc .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-vf28usMlPc .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-vf28usMlPc .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-vf28usMlPc .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-vf28usMlPc .carousel-indicators li.active,
.cid-vf28usMlPc .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-vf28usMlPc .carousel-indicators li::after,
.cid-vf28usMlPc .carousel-indicators li::before {
  content: none;
}
.cid-vf28usMlPc .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-vf28usMlPc .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-vf28usMlPc .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-vf28usMlPc .carousel-indicators {
    display: none;
  }
}
.cid-vf28usMlPc .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-vf28usMlPc .carousel-inner > .active {
  display: block;
}
.cid-vf28usMlPc .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vf28usMlPc .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-vf28usMlPc .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-vf28usMlPc .carousel-control,
  .cid-vf28usMlPc .carousel-indicators,
  .cid-vf28usMlPc .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-vf28usMlPc .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-vf28usMlPc .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-vf28usMlPc .carousel-indicators .active,
.cid-vf28usMlPc .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-vf28usMlPc .carousel-indicators .active {
  background: #fff;
}
.cid-vf28usMlPc .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-vf28usMlPc .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-vf28usMlPc .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-vf28usMlPc .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-vf28usMlPc .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-vf28usMlPc .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-vf28usMlPc .carousel {
  width: 100%;
}
.cid-vf28usMlPc .modal-backdrop.in {
  opacity: 0.8;
}
.cid-vf28usMlPc .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-vf28usMlPc .modal.fade .modal-dialog,
.cid-vf28usMlPc .modal.in .modal-dialog {
  transform: none;
}
.cid-vf28usMlPc .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-vf28usMlPc H6 {
  text-align: center;
}
.cid-veS85YsufQ {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-veS85YAeqx {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #747070;
}
.cid-veS85YAeqx .row-links {
  width: 100%;
  justify-content: center;
}
.cid-veS85YAeqx .social-row {
  width: 100%;
  justify-content: center;
}
.cid-veS85YAeqx .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-veS85YAeqx .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-veS85YAeqx .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-veS85YAeqx .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-veS85YAeqx .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-veS85YAeqx .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-veS85YAeqx .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-veS85YAeqx .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-veS85YAeqx .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-veS85YAeqx .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-veS85YAeqx .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-veS85YAeqx .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-veWIjgEXze .navbar-dropdown {
  position: relative !important;
}
.cid-veWIjgEXze .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-veWIjgEXze .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-veWIjgEXze .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-veWIjgEXze .dropdown-item:hover,
.cid-veWIjgEXze .dropdown-item:focus {
  background: #bbbbbb !important;
  color: white !important;
}
.cid-veWIjgEXze .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-veWIjgEXze .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-veWIjgEXze .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-veWIjgEXze .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-veWIjgEXze .nav-link {
  position: relative;
}
.cid-veWIjgEXze .container {
  display: flex;
  margin: auto;
}
.cid-veWIjgEXze .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-veWIjgEXze .dropdown-menu,
.cid-veWIjgEXze .navbar.opened {
  background: #ffffff !important;
}
.cid-veWIjgEXze .nav-item:focus,
.cid-veWIjgEXze .nav-link:focus {
  outline: none;
}
.cid-veWIjgEXze .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-veWIjgEXze .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-veWIjgEXze .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-veWIjgEXze .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-veWIjgEXze .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-veWIjgEXze .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-veWIjgEXze .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: #ffffff;
}
.cid-veWIjgEXze .navbar.opened {
  transition: all 0.3s;
}
.cid-veWIjgEXze .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-veWIjgEXze .navbar .navbar-logo img {
  width: auto;
}
.cid-veWIjgEXze .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-veWIjgEXze .navbar.collapsed {
  justify-content: center;
}
.cid-veWIjgEXze .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-veWIjgEXze .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-veWIjgEXze .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-veWIjgEXze .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-veWIjgEXze .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-veWIjgEXze .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-veWIjgEXze .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-veWIjgEXze .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-veWIjgEXze .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-veWIjgEXze .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-veWIjgEXze .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-veWIjgEXze .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-veWIjgEXze .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-veWIjgEXze .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-veWIjgEXze .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-veWIjgEXze .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-veWIjgEXze .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-veWIjgEXze .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-veWIjgEXze .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-veWIjgEXze .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-veWIjgEXze .navbar.navbar-short {
  min-height: 60px;
}
.cid-veWIjgEXze .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-veWIjgEXze .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-veWIjgEXze .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-veWIjgEXze .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-veWIjgEXze .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-veWIjgEXze .dropdown-item.active,
.cid-veWIjgEXze .dropdown-item:active {
  background-color: transparent;
}
.cid-veWIjgEXze .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-veWIjgEXze .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-veWIjgEXze .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-veWIjgEXze .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-veWIjgEXze .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-veWIjgEXze .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-veWIjgEXze ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-veWIjgEXze .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-veWIjgEXze button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-veWIjgEXze button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #05386b;
}
.cid-veWIjgEXze button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-veWIjgEXze button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-veWIjgEXze button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-veWIjgEXze button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-veWIjgEXze nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-veWIjgEXze nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-veWIjgEXze nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-veWIjgEXze nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-veWIjgEXze .navbar-dropdown {
  padding: 0 1rem;
}
.cid-veWIjgEXze a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-veWIjgEXze .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-veWIjgEXze .navbar {
    height: 70px;
  }
  .cid-veWIjgEXze .navbar.opened {
    height: auto;
  }
  .cid-veWIjgEXze .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-veWIjh38y1 {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-veWIjh38y1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-veWIjh38y1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-veWIjh38y1 .item {
  padding-bottom: 2rem;
}
.cid-veWIjh38y1 .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-veWIjh38y1 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-veWIjh38y1 .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-veWIjh38y1 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-veWIjh38y1 .carousel-control,
.cid-veWIjh38y1 .close {
  background: #1b1b1b;
}
.cid-veWIjh38y1 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-veWIjh38y1 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-veWIjh38y1 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-veWIjh38y1 .carousel-control-next span {
  margin-left: 5px;
}
.cid-veWIjh38y1 .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-veWIjh38y1 .close::before {
  content: '\e91a';
}
.cid-veWIjh38y1 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-veWIjh38y1 .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-veWIjh38y1 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-veWIjh38y1 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-veWIjh38y1 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-veWIjh38y1 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-veWIjh38y1 .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-veWIjh38y1 .carousel-indicators li.active,
.cid-veWIjh38y1 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-veWIjh38y1 .carousel-indicators li::after,
.cid-veWIjh38y1 .carousel-indicators li::before {
  content: none;
}
.cid-veWIjh38y1 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-veWIjh38y1 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-veWIjh38y1 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-veWIjh38y1 .carousel-indicators {
    display: none;
  }
}
.cid-veWIjh38y1 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-veWIjh38y1 .carousel-inner > .active {
  display: block;
}
.cid-veWIjh38y1 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-veWIjh38y1 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-veWIjh38y1 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-veWIjh38y1 .carousel-control,
  .cid-veWIjh38y1 .carousel-indicators,
  .cid-veWIjh38y1 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-veWIjh38y1 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-veWIjh38y1 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-veWIjh38y1 .carousel-indicators .active,
.cid-veWIjh38y1 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-veWIjh38y1 .carousel-indicators .active {
  background: #fff;
}
.cid-veWIjh38y1 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-veWIjh38y1 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-veWIjh38y1 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-veWIjh38y1 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-veWIjh38y1 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-veWIjh38y1 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-veWIjh38y1 .carousel {
  width: 100%;
}
.cid-veWIjh38y1 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-veWIjh38y1 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-veWIjh38y1 .modal.fade .modal-dialog,
.cid-veWIjh38y1 .modal.in .modal-dialog {
  transform: none;
}
.cid-veWIjh38y1 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-veWIjh38y1 H6 {
  text-align: center;
}
.cid-veWIjhqUAT {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-veWIjhwLma {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #747070;
}
.cid-veWIjhwLma .row-links {
  width: 100%;
  justify-content: center;
}
.cid-veWIjhwLma .social-row {
  width: 100%;
  justify-content: center;
}
.cid-veWIjhwLma .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-veWIjhwLma .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-veWIjhwLma .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-veWIjhwLma .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-veWIjhwLma .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-veWIjhwLma .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-veWIjhwLma .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-veWIjhwLma .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-veWIjhwLma .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-veWIjhwLma .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-veWIjhwLma .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-veWIjhwLma .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-veWxZ9whap .navbar-dropdown {
  position: relative !important;
}
.cid-veWxZ9whap .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-veWxZ9whap .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-veWxZ9whap .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-veWxZ9whap .dropdown-item:hover,
.cid-veWxZ9whap .dropdown-item:focus {
  background: #bbbbbb !important;
  color: white !important;
}
.cid-veWxZ9whap .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-veWxZ9whap .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-veWxZ9whap .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-veWxZ9whap .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-veWxZ9whap .nav-link {
  position: relative;
}
.cid-veWxZ9whap .container {
  display: flex;
  margin: auto;
}
.cid-veWxZ9whap .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-veWxZ9whap .dropdown-menu,
.cid-veWxZ9whap .navbar.opened {
  background: #ffffff !important;
}
.cid-veWxZ9whap .nav-item:focus,
.cid-veWxZ9whap .nav-link:focus {
  outline: none;
}
.cid-veWxZ9whap .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-veWxZ9whap .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-veWxZ9whap .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-veWxZ9whap .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-veWxZ9whap .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-veWxZ9whap .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-veWxZ9whap .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: #ffffff;
}
.cid-veWxZ9whap .navbar.opened {
  transition: all 0.3s;
}
.cid-veWxZ9whap .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-veWxZ9whap .navbar .navbar-logo img {
  width: auto;
}
.cid-veWxZ9whap .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-veWxZ9whap .navbar.collapsed {
  justify-content: center;
}
.cid-veWxZ9whap .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-veWxZ9whap .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-veWxZ9whap .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-veWxZ9whap .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-veWxZ9whap .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-veWxZ9whap .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-veWxZ9whap .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-veWxZ9whap .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-veWxZ9whap .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-veWxZ9whap .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-veWxZ9whap .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-veWxZ9whap .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-veWxZ9whap .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-veWxZ9whap .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-veWxZ9whap .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-veWxZ9whap .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-veWxZ9whap .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-veWxZ9whap .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-veWxZ9whap .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-veWxZ9whap .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-veWxZ9whap .navbar.navbar-short {
  min-height: 60px;
}
.cid-veWxZ9whap .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-veWxZ9whap .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-veWxZ9whap .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-veWxZ9whap .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-veWxZ9whap .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-veWxZ9whap .dropdown-item.active,
.cid-veWxZ9whap .dropdown-item:active {
  background-color: transparent;
}
.cid-veWxZ9whap .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-veWxZ9whap .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-veWxZ9whap .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-veWxZ9whap .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-veWxZ9whap .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-veWxZ9whap .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-veWxZ9whap ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-veWxZ9whap .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-veWxZ9whap button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-veWxZ9whap button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #05386b;
}
.cid-veWxZ9whap button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-veWxZ9whap button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-veWxZ9whap button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-veWxZ9whap button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-veWxZ9whap nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-veWxZ9whap nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-veWxZ9whap nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-veWxZ9whap nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-veWxZ9whap .navbar-dropdown {
  padding: 0 1rem;
}
.cid-veWxZ9whap a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-veWxZ9whap .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-veWxZ9whap .navbar {
    height: 70px;
  }
  .cid-veWxZ9whap .navbar.opened {
    height: auto;
  }
  .cid-veWxZ9whap .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-veWxZ9SP2s {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-veWxZ9SP2s .mbr-fallback-image.disabled {
  display: none;
}
.cid-veWxZ9SP2s .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-veWxZ9SP2s .item {
  padding-bottom: 2rem;
}
.cid-veWxZ9SP2s .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-veWxZ9SP2s .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-veWxZ9SP2s .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-veWxZ9SP2s .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-veWxZ9SP2s .carousel-control,
.cid-veWxZ9SP2s .close {
  background: #1b1b1b;
}
.cid-veWxZ9SP2s .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-veWxZ9SP2s .carousel-control-prev span {
  margin-right: 5px;
}
.cid-veWxZ9SP2s .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-veWxZ9SP2s .carousel-control-next span {
  margin-left: 5px;
}
.cid-veWxZ9SP2s .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-veWxZ9SP2s .close::before {
  content: '\e91a';
}
.cid-veWxZ9SP2s .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-veWxZ9SP2s .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-veWxZ9SP2s .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-veWxZ9SP2s .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-veWxZ9SP2s .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-veWxZ9SP2s .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-veWxZ9SP2s .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-veWxZ9SP2s .carousel-indicators li.active,
.cid-veWxZ9SP2s .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-veWxZ9SP2s .carousel-indicators li::after,
.cid-veWxZ9SP2s .carousel-indicators li::before {
  content: none;
}
.cid-veWxZ9SP2s .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-veWxZ9SP2s .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-veWxZ9SP2s .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-veWxZ9SP2s .carousel-indicators {
    display: none;
  }
}
.cid-veWxZ9SP2s .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-veWxZ9SP2s .carousel-inner > .active {
  display: block;
}
.cid-veWxZ9SP2s .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-veWxZ9SP2s .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-veWxZ9SP2s .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-veWxZ9SP2s .carousel-control,
  .cid-veWxZ9SP2s .carousel-indicators,
  .cid-veWxZ9SP2s .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-veWxZ9SP2s .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-veWxZ9SP2s .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-veWxZ9SP2s .carousel-indicators .active,
.cid-veWxZ9SP2s .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-veWxZ9SP2s .carousel-indicators .active {
  background: #fff;
}
.cid-veWxZ9SP2s .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-veWxZ9SP2s .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-veWxZ9SP2s .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-veWxZ9SP2s .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-veWxZ9SP2s .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-veWxZ9SP2s .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-veWxZ9SP2s .carousel {
  width: 100%;
}
.cid-veWxZ9SP2s .modal-backdrop.in {
  opacity: 0.8;
}
.cid-veWxZ9SP2s .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-veWxZ9SP2s .modal.fade .modal-dialog,
.cid-veWxZ9SP2s .modal.in .modal-dialog {
  transform: none;
}
.cid-veWxZ9SP2s .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-veWxZ9SP2s H6 {
  text-align: center;
}
.cid-veWxZaHSYc {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-veWxZaP4sF {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #747070;
}
.cid-veWxZaP4sF .row-links {
  width: 100%;
  justify-content: center;
}
.cid-veWxZaP4sF .social-row {
  width: 100%;
  justify-content: center;
}
.cid-veWxZaP4sF .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-veWxZaP4sF .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-veWxZaP4sF .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-veWxZaP4sF .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-veWxZaP4sF .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-veWxZaP4sF .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-veWxZaP4sF .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-veWxZaP4sF .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-veWxZaP4sF .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-veWxZaP4sF .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-veWxZaP4sF .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-veWxZaP4sF .media-container-row .row-copirayt p {
  width: 100%;
}
