body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #6592e6 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #6592e6;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #2260d2 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #6592e6 !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #205ac5 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #6592e6;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #6592e6;
  border-color: #6592e6;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #6592e6;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #6592e6 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #6592e6;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #6592e6;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #6592e6;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #6592e6;
  border-bottom-color: #6592e6;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #6592e6 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ff6666 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%236592e6' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-uILStdPCoq {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uILStdPCoq .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
}
@media (max-width: 992px) {
  .cid-uILStdPCoq .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-uILStdPCoq .iconfont-wrapper {
  color: #103178 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-uILStdPCoq .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-uILStdPCoq .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-uILStdPCoq .container {
    padding: 0 1rem;
  }
}
.cid-uILStdPCoq .menu-tite {
  background: #6592e6;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffc800;
}
.cid-uILStdPCoq .nav-link {
  position: relative;
}
.cid-uILStdPCoq .nav-link:hover {
  color: #47b5ed !important;
}
.cid-uILStdPCoq nav.navbar {
  position: fixed;
}
.cid-uILStdPCoq .navbar {
  padding: 0!important;
  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-uILStdPCoq .navbar.opened {
  transition: all 0.3s;
}
.cid-uILStdPCoq .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uILStdPCoq .navbar .navbar-logo img {
  width: auto;
}
.cid-uILStdPCoq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uILStdPCoq .navbar.collapsed {
  justify-content: center;
}
.cid-uILStdPCoq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uILStdPCoq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uILStdPCoq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 7rem);
  }
}
.cid-uILStdPCoq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uILStdPCoq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uILStdPCoq .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-uILStdPCoq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uILStdPCoq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uILStdPCoq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uILStdPCoq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uILStdPCoq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uILStdPCoq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uILStdPCoq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uILStdPCoq .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-uILStdPCoq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uILStdPCoq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uILStdPCoq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uILStdPCoq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uILStdPCoq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uILStdPCoq .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uILStdPCoq .navbar.navbar-short {
  min-height: 60px;
}
.cid-uILStdPCoq .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uILStdPCoq .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uILStdPCoq .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-uILStdPCoq .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uILStdPCoq .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uILStdPCoq .dropdown-item:hover,
.cid-uILStdPCoq .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uILStdPCoq .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uILStdPCoq .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uILStdPCoq .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-uILStdPCoq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uILStdPCoq .dropdown-menu,
.cid-uILStdPCoq .navbar.opened {
  background: #ffffff !important;
}
.cid-uILStdPCoq .nav-item:focus,
.cid-uILStdPCoq .nav-link:focus {
  outline: none;
}
.cid-uILStdPCoq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uILStdPCoq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uILStdPCoq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uILStdPCoq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uILStdPCoq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uILStdPCoq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uILStdPCoq .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uILStdPCoq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uILStdPCoq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uILStdPCoq .dropdown-item.active,
.cid-uILStdPCoq .dropdown-item:active {
  background-color: transparent;
}
.cid-uILStdPCoq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uILStdPCoq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uILStdPCoq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uILStdPCoq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uILStdPCoq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uILStdPCoq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uILStdPCoq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uILStdPCoq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uILStdPCoq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uILStdPCoq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uILStdPCoq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uILStdPCoq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uILStdPCoq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uILStdPCoq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uILStdPCoq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uILStdPCoq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uILStdPCoq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uILStdPCoq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uILStdPCoq .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uILStdPCoq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uILStdPCoq .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-uILStdPCoq .navbar {
    height: 70px;
  }
  .cid-uILStdPCoq .navbar.opened {
    height: auto;
  }
  .cid-uILStdPCoq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uJ1dOIq45o .modal-body .close {
  background: #1b1b1b;
}
.cid-uJ1dOIq45o .modal-body .close span {
  font-style: normal;
}
.cid-uJ1dOIq45o .carousel-inner > .active,
.cid-uJ1dOIq45o .carousel-inner > .next,
.cid-uJ1dOIq45o .carousel-inner > .prev {
  display: flex;
}
.cid-uJ1dOIq45o .carousel-control .icon-next,
.cid-uJ1dOIq45o .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-uJ1dOIq45o .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uJ1dOIq45o .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uJ1dOIq45o .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-uJ1dOIq45o .boxed-slider > div {
  position: relative;
}
.cid-uJ1dOIq45o .container img {
  width: 100%;
}
.cid-uJ1dOIq45o .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-uJ1dOIq45o .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-uJ1dOIq45o .mbr-table-cell {
  padding: 0;
}
.cid-uJ1dOIq45o .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uJ1dOIq45o .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-uJ1dOIq45o .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-uJ1dOIq45o .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-uJ1dOIq45o .carousel-item.active.right,
.cid-uJ1dOIq45o .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-uJ1dOIq45o .carousel-item.active.left,
.cid-uJ1dOIq45o .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-uJ1dOIq45o .carousel-item.active,
.cid-uJ1dOIq45o .carousel-item.next.left,
.cid-uJ1dOIq45o .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-uJ1dOIq45o .mbr-slider .carousel-control {
  top: 50%;
  width: 70px;
  height: 70px;
  margin-top: -1.5rem;
  font-size: 35px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
  z-index: 11;
}
.cid-uJ1dOIq45o .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uJ1dOIq45o .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uJ1dOIq45o .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-uJ1dOIq45o .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uJ1dOIq45o .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uJ1dOIq45o .mbr-slider .carousel-indicators li {
  max-width: 20px;
  width: 20px;
  height: 20px;
  max-height: 20px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-uJ1dOIq45o .mbr-slider .carousel-indicators li.active,
.cid-uJ1dOIq45o .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-uJ1dOIq45o .mbr-slider .carousel-indicators li::after,
.cid-uJ1dOIq45o .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-uJ1dOIq45o .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-uJ1dOIq45o .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-uJ1dOIq45o .mbr-slider > .container img {
  width: 100%;
}
.cid-uJ1dOIq45o .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-uJ1dOIq45o .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-uJ1dOIq45o .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uJ1dOIq45o .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-uJ1dOIq45o .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-uJ1dOIq45o .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-uJ1dOIq45o .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-uJ1dOIq45o .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-uJ1dOIq45o .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-uJ1dOIq45o .full-screen .carousel-item .container.container-slide {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-uJ1dOIq45o .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-uJ1dOIq45o .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-uJ1dOIq45o .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-uYN6cFolKH {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uYN6cFolKH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYN6cFolKH .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-uYN6cFolKH .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYN6cFolKH .row {
  flex-direction: row-reverse;
}
.cid-uYN6cFolKH img {
  width: 100%;
}
.cid-uITjkxvlOp {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uITjkxvlOp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uITjkxvlOp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYmTH4uSVb {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uYmTH4uSVb .item-wrapper {
  position: relative;
  overflow: initial;
}
.cid-uYmTH4uSVb .item-img:before {
  content: ' ';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000000;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.cid-uYmTH4uSVb .item:hover .item-img:before {
  opacity: 0.3;
}
@media (max-width: 992px) {
  .cid-uYmTH4uSVb .col-12 {
    margin-top: 30px;
  }
  .cid-uYmTH4uSVb .col-12:first-child {
    margin-top: 0px;
  }
  .cid-uYmTH4uSVb .col-12:nth-child(2) {
    margin-top: 0px;
  }
  .cid-uYmTH4uSVb .col-12:nth-child(3) {
    margin-top: 0px;
  }
}
@media (max-width: 768px) {
  .cid-uYmTH4uSVb .col-12:nth-child(2) {
    margin-top: 30px;
  }
  .cid-uYmTH4uSVb .col-12:nth-child(3) {
    margin-top: 30px;
  }
}
.cid-uYuCK9zXgl {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-uYuCK9zXgl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYuCK9zXgl .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-uYuCK9zXgl .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYuCK9zXgl .row {
  flex-direction: row-reverse;
}
.cid-uYuCK9zXgl img {
  width: 100%;
}
.cid-uYuCiMaquV {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uYuCiMaquV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYuCiMaquV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYumBEzX7G {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uYumBEzX7G .item-wrapper {
  position: relative;
  overflow: initial;
}
.cid-uYumBEzX7G .item-img:before {
  content: ' ';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000000;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.cid-uYumBEzX7G .item:hover .item-img:before {
  opacity: 0.3;
}
@media (max-width: 992px) {
  .cid-uYumBEzX7G .col-12 {
    margin-top: 30px;
  }
  .cid-uYumBEzX7G .col-12:first-child {
    margin-top: 0px;
  }
  .cid-uYumBEzX7G .col-12:nth-child(2) {
    margin-top: 0px;
  }
  .cid-uYumBEzX7G .col-12:nth-child(3) {
    margin-top: 0px;
  }
}
@media (max-width: 768px) {
  .cid-uYumBEzX7G .col-12:nth-child(2) {
    margin-top: 30px;
  }
  .cid-uYumBEzX7G .col-12:nth-child(3) {
    margin-top: 30px;
  }
}
.cid-uSx91vYClk {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uSx91vYClk .item-wrapper {
  position: relative;
  overflow: initial;
}
.cid-uSx91vYClk .item-img:before {
  content: ' ';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000000;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.cid-uSx91vYClk .item:hover .item-img:before {
  opacity: 0.3;
}
@media (max-width: 992px) {
  .cid-uSx91vYClk .col-12 {
    margin-top: 30px;
  }
  .cid-uSx91vYClk .col-12:first-child {
    margin-top: 0px;
  }
  .cid-uSx91vYClk .col-12:nth-child(2) {
    margin-top: 0px;
  }
  .cid-uSx91vYClk .col-12:nth-child(3) {
    margin-top: 0px;
  }
}
@media (max-width: 768px) {
  .cid-uSx91vYClk .col-12:nth-child(2) {
    margin-top: 30px;
  }
  .cid-uSx91vYClk .col-12:nth-child(3) {
    margin-top: 30px;
  }
}
.cid-uIT6bRqpFO {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-uIT6bRqpFO .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uIT6bRqpFO .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uIT6bRqpFO .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uIT6bRqpFO .mbr-gallery-item {
  width: 33.3%;
}
.cid-uIT6bRqpFO .mbr-gallery-item:hover img {
  transform: scale(1.1);
}
@media (max-width: 767px) {
  .cid-uIT6bRqpFO .mbr-gallery-item {
    width: 100%;
  }
}
.cid-uIT6bRqpFO .container {
  padding-right: 6px;
  padding-left: 6px;
}
.cid-uIT6bRqpFO .mbr-gallery-row {
  justify-content: center;
}
.cid-uIT6bRqpFO .mbr-gallery-item > div:hover:before {
  z-index: 5;
}
.cid-uIT6bRqpFO .mbr-gallery-item > div:hover .icon-focus {
  opacity: 0.8 !important;
}
.cid-uIT6bRqpFO .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uIT6bRqpFO .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-uIT6bRqpFO .icon-focus {
  font-family: 'Moririse2' !important;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 50px;
  background: white;
  border-radius: 6px;
}
.cid-uIT6bRqpFO .icon-focus:before {
  content: '\e970';
  font-size: 1.2rem;
  color: black;
}
.cid-uIT6bRqpFO .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uIT6bRqpFO .mbr-gallery-item > div {
  overflow: hidden;
}
.cid-uIT6bRqpFO img {
  transition: all 2s !important;
}
.cid-uIT6bRqpFO .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-uIT6bRqpFO .mbr-gallery-title {
  font-size: 0.9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 5;
}
.cid-uIT6bRqpFO .mbr-gallery-title:before {
  content: ' ';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #000000 !important;
  opacity: 0.4;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-uQZ2XfZslg {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uQZ2XfZslg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQZ2XfZslg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQZ26yD122 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uQZ26yD122 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQZ26yD122 .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-uQZ26yD122 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uQZ26yD122 .row {
  flex-direction: row-reverse;
}
.cid-uQZ26yD122 img {
  width: 100%;
}
.cid-uOcUiGBUhb {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uOcUiGBUhb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOcUiGBUhb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOcUiGBUhb .video-wrapper iframe {
  width: 100%;
}
.cid-uOcUiGBUhb .mbr-section-title,
.cid-uOcUiGBUhb .mbr-section-subtitle,
.cid-uOcUiGBUhb .mbr-text {
  text-align: center;
}
.cid-uOcUiGBUhb .mbr-text {
  color: #000000;
}
.cid-uQiNLReCbg {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f7f5f0;
}
.cid-uQiNLReCbg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQiNLReCbg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQiNLReCbg .content-wrap {
  margin: 0;
}
.cid-uQiNLReCbg .content-wrap .card {
  padding: 0;
  justify-content: center;
}
.cid-uQiNLReCbg .content-wrapper {
  padding-right: 112px;
}
@media (max-width: 1440px) {
  .cid-uQiNLReCbg .content-wrapper {
    padding-right: 64px;
  }
}
@media (max-width: 1200px) {
  .cid-uQiNLReCbg .content-wrapper {
    padding-right: 32px;
  }
}
@media (max-width: 992px) {
  .cid-uQiNLReCbg .content-wrapper {
    padding: 0;
    margin-bottom: 32px;
  }
}
.cid-uQiNLReCbg .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uQiNLReCbg .video-wrapper {
  padding-left: 112px;
  border-left: 3px dashed #c10b02;
}
@media (max-width: 1440px) {
  .cid-uQiNLReCbg .video-wrapper {
    padding-left: 64px;
  }
}
@media (max-width: 1200px) {
  .cid-uQiNLReCbg .video-wrapper {
    padding-left: 32px;
  }
}
@media (max-width: 992px) {
  .cid-uQiNLReCbg .video-wrapper {
    padding-left: 0;
    border-left: none;
    border-top: 3px dashed #c10b02;
    padding-top: 22px;
  }
}
.cid-uQiNLReCbg .mbr-section-title {
  color: #c10b02;
  text-align: center;
}
.cid-uQiNLReCbg .mbr-text,
.cid-uQiNLReCbg .text-wrapper {
  color: #4b4949;
  text-align: center;
}
.cid-uITm1mAbXk {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uITmRyRoJu {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uITmRyRoJu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uITmRyRoJu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQYTgl4POr {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-uQYTgl4POr .item-wrapper {
  position: relative;
  overflow: initial;
}
.cid-uQYTgl4POr .item-img:before {
  content: ' ';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000000;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.cid-uQYTgl4POr .item:hover .item-img:before {
  opacity: 0.3;
}
@media (max-width: 992px) {
  .cid-uQYTgl4POr .col-12 {
    margin-top: 30px;
  }
  .cid-uQYTgl4POr .col-12:first-child {
    margin-top: 0px;
  }
  .cid-uQYTgl4POr .col-12:nth-child(2) {
    margin-top: 0px;
  }
  .cid-uQYTgl4POr .col-12:nth-child(3) {
    margin-top: 0px;
  }
}
@media (max-width: 768px) {
  .cid-uQYTgl4POr .col-12:nth-child(2) {
    margin-top: 30px;
  }
  .cid-uQYTgl4POr .col-12:nth-child(3) {
    margin-top: 30px;
  }
}
.cid-uYuxLI2zZx {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-uYuxLI2zZx .item-wrapper {
  position: relative;
  overflow: initial;
}
.cid-uYuxLI2zZx .item-img:before {
  content: ' ';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000000;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.cid-uYuxLI2zZx .item:hover .item-img:before {
  opacity: 0.3;
}
@media (max-width: 992px) {
  .cid-uYuxLI2zZx .col-12 {
    margin-top: 30px;
  }
  .cid-uYuxLI2zZx .col-12:first-child {
    margin-top: 0px;
  }
  .cid-uYuxLI2zZx .col-12:nth-child(2) {
    margin-top: 0px;
  }
  .cid-uYuxLI2zZx .col-12:nth-child(3) {
    margin-top: 0px;
  }
}
@media (max-width: 768px) {
  .cid-uYuxLI2zZx .col-12:nth-child(2) {
    margin-top: 30px;
  }
  .cid-uYuxLI2zZx .col-12:nth-child(3) {
    margin-top: 30px;
  }
}
.cid-uISNBLSKDM {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uISNBLSKDM .item-wrapper {
  position: relative;
  overflow: initial;
}
.cid-uISNBLSKDM .item-img:before {
  content: ' ';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000000;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.cid-uISNBLSKDM .item:hover .item-img:before {
  opacity: 0.3;
}
@media (max-width: 992px) {
  .cid-uISNBLSKDM .col-12 {
    margin-top: 30px;
  }
  .cid-uISNBLSKDM .col-12:first-child {
    margin-top: 0px;
  }
  .cid-uISNBLSKDM .col-12:nth-child(2) {
    margin-top: 0px;
  }
  .cid-uISNBLSKDM .col-12:nth-child(3) {
    margin-top: 0px;
  }
}
@media (max-width: 768px) {
  .cid-uISNBLSKDM .col-12:nth-child(2) {
    margin-top: 30px;
  }
  .cid-uISNBLSKDM .col-12:nth-child(3) {
    margin-top: 30px;
  }
}
.cid-uITqnYzrQE {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-uJ0TA9K7cn {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uJ0TA9K7cn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ0TA9K7cn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJ0V24S5Ny {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uJ0V24S5Ny .item-wrapper {
  position: relative;
  overflow: initial;
}
.cid-uJ0V24S5Ny .item-img:before {
  content: ' ';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000000;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.cid-uJ0V24S5Ny .item:hover .item-img:before {
  opacity: 0.3;
}
@media (max-width: 992px) {
  .cid-uJ0V24S5Ny .col-12 {
    margin-top: 30px;
  }
  .cid-uJ0V24S5Ny .col-12:first-child {
    margin-top: 0px;
  }
  .cid-uJ0V24S5Ny .col-12:nth-child(2) {
    margin-top: 0px;
  }
  .cid-uJ0V24S5Ny .col-12:nth-child(3) {
    margin-top: 0px;
  }
}
@media (max-width: 768px) {
  .cid-uJ0V24S5Ny .col-12:nth-child(2) {
    margin-top: 30px;
  }
  .cid-uJ0V24S5Ny .col-12:nth-child(3) {
    margin-top: 30px;
  }
}
.cid-uJ1cEOx1sv {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uJ28CypeTl {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uJ28CypeTl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ28CypeTl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJ28ztWcD8 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #fafafa;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-uJ28ztWcD8 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uJ28ztWcD8 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uJ28ztWcD8 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uJ28ztWcD8 .mbr-gallery-item {
  width: 33.3%;
}
.cid-uJ28ztWcD8 .mbr-gallery-item:hover img {
  transform: scale(1.1);
}
@media (max-width: 767px) {
  .cid-uJ28ztWcD8 .mbr-gallery-item {
    width: 100%;
  }
}
.cid-uJ28ztWcD8 .container {
  padding-right: 6px;
  padding-left: 6px;
}
.cid-uJ28ztWcD8 .mbr-gallery-row {
  justify-content: center;
}
.cid-uJ28ztWcD8 .mbr-gallery-item > div:hover:before {
  z-index: 5;
}
.cid-uJ28ztWcD8 .mbr-gallery-item > div:hover .icon-focus {
  opacity: 0.8 !important;
}
.cid-uJ28ztWcD8 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uJ28ztWcD8 .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-uJ28ztWcD8 .icon-focus {
  font-family: 'Moririse2' !important;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 50px;
  background: white;
  border-radius: 6px;
}
.cid-uJ28ztWcD8 .icon-focus:before {
  content: '\e970';
  font-size: 1.2rem;
  color: black;
}
.cid-uJ28ztWcD8 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uJ28ztWcD8 .mbr-gallery-item > div {
  overflow: hidden;
}
.cid-uJ28ztWcD8 img {
  transition: all 2s !important;
}
.cid-uJ28ztWcD8 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-uJ28ztWcD8 .mbr-gallery-title {
  font-size: 0.9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 5;
}
.cid-uJ28ztWcD8 .mbr-gallery-title:before {
  content: ' ';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #000000 !important;
  opacity: 0.4;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-uJ5yqPskY3 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uJ5yqPskY3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ5yqPskY3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJ5xRQS5pz {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-uJ5xRQS5pz h2 {
  letter-spacing: 0.1em;
  -webkit-font-smoothing: antialiased;
  margin-bottom: 2rem;
}
.cid-uJ5xRQS5pz .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uJ5xRQS5pz .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uJ5xRQS5pz .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uJ5xRQS5pz .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uJ5xRQS5pz .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-uJ5xRQS5pz .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uJ5xRQS5pz .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uJ5xRQS5pz .mbr-gallery-filter-all > a {
  padding: 30px;
  background-color: transparent !important;
  color: #888888;
}
.cid-uJ5xRQS5pz .mbr-section-title {
  padding-bottom: 2rem;
  margin: 0;
}
.cid-uJ5xRQS5pz .mbr-section-title p {
  margin: 0;
}
.cid-uJ5xRQS5pz .mbr-gallery-filter {
  padding-top: 0;
  padding-bottom: 2rem;
}
.cid-uJ5xRQS5pz .mbr-gallery-filter .btn {
  text-transform: uppercase;
  color: #888888;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin: 0px !important;
  border: none;
  padding: 12px 15px 12px 15px;
}
.cid-uJ5xRQS5pz .mbr-gallery-filter .btn:hover {
  background-color: transparent;
}
.cid-uJ5xRQS5pz .mbr-gallery-filter li.active .btn {
  background-color: transparent;
  color: #000000;
}
.cid-uJ5xRQS5pz .mbr-gallery-title {
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uJ5xRQS5pz .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-uISKPDiK91 {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-uISKPDiK91 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uISKPDiK91 .text-content .content-title {
  color: #130947;
  margin-bottom: 30px;
}
.cid-uISKPDiK91 .text-content .content-title.display-5 {
  font-size: 26px;
  line-height: 1.38;
  letter-spacing: -0.5px;
}
.cid-uISKPDiK91 .text-content .list-block {
  border-bottom-width: 1px;
  padding-bottom: 30px;
  border-bottom-color: #130947;
  border-bottom-style: dotted;
  margin-bottom: 20px;
}
.cid-uISKPDiK91 .text-content .list-block .card-img span {
  color: #4f87fb;
  font-size: 2.5rem;
}
.cid-uISKPDiK91 .text-content .list-block .list-item-title {
  color: #130947;
}
.cid-uISKPDiK91 .text-content .list-block .list-item-title.display-7 {
  font-size: 20px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.cid-uISKPDiK91 .text-content .list-block .list-item-text {
  padding-top: 10px;
  line-height: 1.29;
  color: #6d7a8c;
  margin-bottom: 0;
}
.cid-uISKPDiK91 .text-content .list-block.last {
  border-bottom: none;
  margin-bottom: 20px;
  padding-bottom: 0;
}
.cid-uISKPDiK91 .text-content .social {
  font-size: 1.2rem;
  padding-left: 4.5rem;
}
.cid-uISKPDiK91 .text-content .social span {
  margin-right: 11.2px;
  margin-bottom: 8px;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  color: #6d7a8c;
}
.cid-uISKPDiK91 .text-content .social span:hover {
  color: #4f87fb;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.cid-uISKPDiK91 .card-img {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 3rem;
  text-align: center;
}
.cid-uISKPDiK91 .list-block {
  position: relative;
}
.cid-uISKPDiK91 .list-block h4,
.cid-uISKPDiK91 .list-block p {
  padding-left: 4.5rem;
}
.cid-uISKPDiK91 .card-img {
  display: block;
}
.cid-uISKPDiK91 input,
.cid-uISKPDiK91 textarea {
  border-left: none;
  border-top: none;
  border-right: none;
  border-radius: 4px;
  padding: 20px 10px 20px 20px;
  font-size: 13px;
  color: #ffffff;
  font-weight: 600;
}
.cid-uISKPDiK91 input:focus,
.cid-uISKPDiK91 textarea:focus {
  border-left: none;
  border-top: none;
  border-right: none;
}
.cid-uISKPDiK91 .form-control,
.cid-uISKPDiK91 .field-input {
  min-height: 3rem;
  padding: 20px 10px 20px 20px;
  background-color: #ecf1f8;
  border-color: #ffffff;
  color: #000000;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-uISKPDiK91 .form-control:hover,
.cid-uISKPDiK91 .field-input:hover,
.cid-uISKPDiK91 .form-control:focus,
.cid-uISKPDiK91 .field-input:focus {
  background-color: #ecf1f8;
  border-color: #ffffff !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-uISKPDiK91 input::-webkit-input-placeholder,
.cid-uISKPDiK91 textarea::-webkit-input-placeholder {
  color: #28303f;
}
.cid-uISKPDiK91 input:-moz-placeholder,
.cid-uISKPDiK91 textarea:-moz-placeholder {
  color: #28303f;
}
.cid-uISKPDiK91 .jq-selectbox li,
.cid-uISKPDiK91 .jq-selectbox li {
  background-color: #ecf1f8;
  color: #000000;
}
.cid-uISKPDiK91 .jq-selectbox li:hover,
.cid-uISKPDiK91 .jq-selectbox li.selected {
  background-color: #ecf1f8;
  color: #000000;
}
.cid-uISKPDiK91 .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #ecf1f8;
}
.cid-uISKPDiK91 .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #ecf1f8;
}
.cid-uISKPDiK91 .mbr-form {
  max-width: 550px;
}
.cid-uISKPDiK91 .mbr-form .mbr-subtitle {
  color: #4f87fb;
  font-weight: 800;
}
.cid-uISKPDiK91 .mbr-form .mbr-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-uISKPDiK91 .mbr-form .mbr-section-title {
  color: #130947;
  font-weight: 700;
}
.cid-uISKPDiK91 .mbr-form .mbr-section-title.display-2 {
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-uISKPDiK91 .mbr-form .mbr-text {
  color: #6d7a8c;
}
.cid-uISKPDiK91 .mbr-form textarea {
  min-height: 100px;
}
.cid-uISKPDiK91 .mbr-form .btn {
  -webkit-box-pack: justify;
  justify-content: space-between;
  border-width: 2px;
  border-radius: 4px;
  border-color: #6592e6;
  color: #4f87fb;
  padding: 18px 29px;
}
.cid-uISKPDiK91 .mbr-form .btn.display-4 {
  font-size: 13px;
  letter-spacing: 1px;
}
.cid-uISKPDiK91 .mbr-form span.value.form-control {
  min-height: 3.5rem;
  padding: 1rem;
}
@media (max-width: 991px) {
  .cid-uISKPDiK91 .mbr-form {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
@media (max-width: 768px) {
  .cid-uISKPDiK91 .mbr-section-title,
  .cid-uISKPDiK91 .content-title,
  .cid-uISKPDiK91 .mbr-section-btn {
    text-align: left;
  }
}
.cid-uIMil4n5O4 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uIMil4n5O4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIMil4n5O4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIMil4n5O4 .google-map {
  height: 30rem;
  position: relative;
}
.cid-uIMil4n5O4 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uIMil4n5O4 .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-uIMil4n5O4 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uIMil4n5O4 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uIMjxlISz4 {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uIMjxlISz4 .mbr-text {
  color: #000000;
}
.cid-uIMjxlISz4 .container {
  max-width: 1000px;
}
.cid-uIMjxlISz4 h4 {
  text-align: center;
}
.cid-uIMjxlISz4 p {
  text-align: center;
}
.cid-uIMjxlISz4 .row {
  justify-content: center;
}
.cid-uIMjxlISz4 .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-uIMjxlISz4 .mbr-iconfont {
  font-size: 1.5rem;
  color: #000000;
  display: block;
}
.cid-uIMjxlISz4 .card-title,
.cid-uIMjxlISz4 .card-img {
  color: #000000;
}
.cid-uIMjxlISz4 .icon-wrap {
  padding-bottom: 7.6rem;
}
.cid-uIMjxlISz4 .icon-wrap:before {
  content: '';
  position: absolute;
  background: #000000;
  bottom: 0rem;
  left: 50%;
  width: 2px;
  height: 90px;
}
.cid-uIMjxlISz4 img {
  margin-bottom: 5rem;
  width: auto;
  margin-left: auto;
  margin-right: auto;
}
.cid-uIMjxlISz4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIMjxlISz4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIMk8FqJFx {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
  overflow: hidden;
}
.cid-uKBprB2dj3 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uKBprB2dj3 .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
}
@media (max-width: 992px) {
  .cid-uKBprB2dj3 .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-uKBprB2dj3 .iconfont-wrapper {
  color: #103178 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-uKBprB2dj3 .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-uKBprB2dj3 .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-uKBprB2dj3 .container {
    padding: 0 1rem;
  }
}
.cid-uKBprB2dj3 .menu-tite {
  background: #6592e6;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffc800;
}
.cid-uKBprB2dj3 .nav-link {
  position: relative;
}
.cid-uKBprB2dj3 .nav-link:hover {
  color: #47b5ed !important;
}
.cid-uKBprB2dj3 nav.navbar {
  position: fixed;
}
.cid-uKBprB2dj3 .navbar {
  padding: 0!important;
  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-uKBprB2dj3 .navbar.opened {
  transition: all 0.3s;
}
.cid-uKBprB2dj3 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uKBprB2dj3 .navbar .navbar-logo img {
  width: auto;
}
.cid-uKBprB2dj3 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uKBprB2dj3 .navbar.collapsed {
  justify-content: center;
}
.cid-uKBprB2dj3 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uKBprB2dj3 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uKBprB2dj3 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 7rem);
  }
}
.cid-uKBprB2dj3 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uKBprB2dj3 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uKBprB2dj3 .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-uKBprB2dj3 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uKBprB2dj3 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uKBprB2dj3 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uKBprB2dj3 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uKBprB2dj3 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uKBprB2dj3 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uKBprB2dj3 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uKBprB2dj3 .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-uKBprB2dj3 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uKBprB2dj3 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uKBprB2dj3 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uKBprB2dj3 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uKBprB2dj3 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uKBprB2dj3 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uKBprB2dj3 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uKBprB2dj3 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uKBprB2dj3 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uKBprB2dj3 .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-uKBprB2dj3 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uKBprB2dj3 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uKBprB2dj3 .dropdown-item:hover,
.cid-uKBprB2dj3 .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uKBprB2dj3 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uKBprB2dj3 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uKBprB2dj3 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-uKBprB2dj3 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uKBprB2dj3 .dropdown-menu,
.cid-uKBprB2dj3 .navbar.opened {
  background: #ffffff !important;
}
.cid-uKBprB2dj3 .nav-item:focus,
.cid-uKBprB2dj3 .nav-link:focus {
  outline: none;
}
.cid-uKBprB2dj3 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uKBprB2dj3 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uKBprB2dj3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uKBprB2dj3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uKBprB2dj3 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uKBprB2dj3 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uKBprB2dj3 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uKBprB2dj3 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uKBprB2dj3 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uKBprB2dj3 .dropdown-item.active,
.cid-uKBprB2dj3 .dropdown-item:active {
  background-color: transparent;
}
.cid-uKBprB2dj3 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uKBprB2dj3 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uKBprB2dj3 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uKBprB2dj3 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uKBprB2dj3 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uKBprB2dj3 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uKBprB2dj3 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uKBprB2dj3 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uKBprB2dj3 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uKBprB2dj3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uKBprB2dj3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uKBprB2dj3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uKBprB2dj3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uKBprB2dj3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uKBprB2dj3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKBprB2dj3 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uKBprB2dj3 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uKBprB2dj3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKBprB2dj3 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uKBprB2dj3 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uKBprB2dj3 .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-uKBprB2dj3 .navbar {
    height: 70px;
  }
  .cid-uKBprB2dj3 .navbar.opened {
    height: auto;
  }
  .cid-uKBprB2dj3 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uKBprCphHa {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uKBprCphHa .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKBprCphHa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKBNx0xBbH {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uKBNx0xBbH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKBNx0xBbH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKBNx0xBbH .mbr-section-head {
  margin-bottom: 32px;
}
.cid-uKBNx0xBbH .mbr-section-title {
  color: #24262b;
}
.cid-uKBNx0xBbH .mbr-section-subtitle {
  color: #24262b;
}
.cid-uKBNx0xBbH .items-row {
  row-gap: 32px;
}
.cid-uKBNx0xBbH .item-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-uKBNx0xBbH .item-wrapper img {
  width: 100%;
  aspect-ratio: calc(8 / (1 * 12));
  object-fit: cover;
  transition: all 0.3s;
}
.cid-uKBNx0xBbH .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  z-index: 3;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  opacity: 0;
  color: #24262b;
  transform: translateX(-50%) translateY(-50%);
  background-color: #FFFFFF;
  transition: 0.3s;
}
.cid-uKBNx0xBbH .item-wrapper .img-overlay {
  position: absolute;
  pointer-events: none;
  transition: all 0.3s;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #33363b;
  opacity: 0;
  z-index: 2;
}
.cid-uKBNx0xBbH .item-wrapper:hover img {
  transform: scale(1.05);
}
.cid-uKBNx0xBbH .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-uKBNx0xBbH .item-wrapper:hover .img-overlay {
  opacity: 0.3;
}
.cid-uKBNx0xBbH .mbr-item-subtitle {
  color: #24262b;
}
.cid-uKBNx0xBbH .carousel-control,
.cid-uKBNx0xBbH .close {
  background: #1b1b1b;
}
.cid-uKBNx0xBbH .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uKBNx0xBbH .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uKBNx0xBbH .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uKBNx0xBbH .carousel-control-next span {
  margin-left: 5px;
}
.cid-uKBNx0xBbH .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-uKBNx0xBbH .close::before {
  content: '\e91a';
}
.cid-uKBNx0xBbH .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uKBNx0xBbH .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-uKBNx0xBbH .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uKBNx0xBbH .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uKBNx0xBbH .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uKBNx0xBbH .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uKBNx0xBbH .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-uKBNx0xBbH .carousel-indicators li.active,
.cid-uKBNx0xBbH .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uKBNx0xBbH .carousel-indicators li::after,
.cid-uKBNx0xBbH .carousel-indicators li::before {
  content: none;
}
.cid-uKBNx0xBbH .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uKBNx0xBbH .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uKBNx0xBbH .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uKBNx0xBbH .carousel-indicators {
    display: none;
  }
}
.cid-uKBNx0xBbH .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uKBNx0xBbH .carousel-inner > .active {
  display: block;
}
.cid-uKBNx0xBbH .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uKBNx0xBbH .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uKBNx0xBbH .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uKBNx0xBbH .carousel-control,
  .cid-uKBNx0xBbH .carousel-indicators,
  .cid-uKBNx0xBbH .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uKBNx0xBbH .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uKBNx0xBbH .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uKBNx0xBbH .carousel-indicators .active,
.cid-uKBNx0xBbH .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uKBNx0xBbH .carousel-indicators .active {
  background: #fff;
}
.cid-uKBNx0xBbH .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uKBNx0xBbH .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uKBNx0xBbH .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uKBNx0xBbH .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uKBNx0xBbH .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uKBNx0xBbH .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uKBNx0xBbH .carousel {
  width: 100%;
}
.cid-uKBNx0xBbH .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uKBNx0xBbH .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uKBNx0xBbH .modal.fade .modal-dialog,
.cid-uKBNx0xBbH .modal.in .modal-dialog {
  transform: none;
}
.cid-uKBNx0xBbH .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uKBNx0xBbH H6 {
  text-align: center;
}
.cid-uKBprMLqUN {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uKBprMLqUN .mbr-text {
  color: #000000;
}
.cid-uKBprMLqUN .container {
  max-width: 1000px;
}
.cid-uKBprMLqUN h4 {
  text-align: center;
}
.cid-uKBprMLqUN p {
  text-align: center;
}
.cid-uKBprMLqUN .row {
  justify-content: center;
}
.cid-uKBprMLqUN .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-uKBprMLqUN .mbr-iconfont {
  font-size: 1.5rem;
  color: #000000;
  display: block;
}
.cid-uKBprMLqUN .card-title,
.cid-uKBprMLqUN .card-img {
  color: #000000;
}
.cid-uKBprMLqUN .icon-wrap {
  padding-bottom: 7.6rem;
}
.cid-uKBprMLqUN .icon-wrap:before {
  content: '';
  position: absolute;
  background: #000000;
  bottom: 0rem;
  left: 50%;
  width: 2px;
  height: 90px;
}
.cid-uKBprMLqUN img {
  margin-bottom: 5rem;
  width: auto;
  margin-left: auto;
  margin-right: auto;
}
.cid-uKBprMLqUN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKBprMLqUN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKBprNBVey {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
  overflow: hidden;
}
.cid-uKBZeKdbuN {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uKBZeKdbuN .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
}
@media (max-width: 992px) {
  .cid-uKBZeKdbuN .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-uKBZeKdbuN .iconfont-wrapper {
  color: #103178 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-uKBZeKdbuN .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-uKBZeKdbuN .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-uKBZeKdbuN .container {
    padding: 0 1rem;
  }
}
.cid-uKBZeKdbuN .menu-tite {
  background: #6592e6;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffc800;
}
.cid-uKBZeKdbuN .nav-link {
  position: relative;
}
.cid-uKBZeKdbuN .nav-link:hover {
  color: #47b5ed !important;
}
.cid-uKBZeKdbuN nav.navbar {
  position: fixed;
}
.cid-uKBZeKdbuN .navbar {
  padding: 0!important;
  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-uKBZeKdbuN .navbar.opened {
  transition: all 0.3s;
}
.cid-uKBZeKdbuN .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uKBZeKdbuN .navbar .navbar-logo img {
  width: auto;
}
.cid-uKBZeKdbuN .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uKBZeKdbuN .navbar.collapsed {
  justify-content: center;
}
.cid-uKBZeKdbuN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uKBZeKdbuN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uKBZeKdbuN .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 7rem);
  }
}
.cid-uKBZeKdbuN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uKBZeKdbuN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uKBZeKdbuN .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-uKBZeKdbuN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uKBZeKdbuN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uKBZeKdbuN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uKBZeKdbuN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uKBZeKdbuN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uKBZeKdbuN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uKBZeKdbuN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uKBZeKdbuN .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-uKBZeKdbuN .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uKBZeKdbuN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uKBZeKdbuN .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uKBZeKdbuN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uKBZeKdbuN .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uKBZeKdbuN .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uKBZeKdbuN .navbar.navbar-short {
  min-height: 60px;
}
.cid-uKBZeKdbuN .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uKBZeKdbuN .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uKBZeKdbuN .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-uKBZeKdbuN .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uKBZeKdbuN .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uKBZeKdbuN .dropdown-item:hover,
.cid-uKBZeKdbuN .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uKBZeKdbuN .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uKBZeKdbuN .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uKBZeKdbuN .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-uKBZeKdbuN .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uKBZeKdbuN .dropdown-menu,
.cid-uKBZeKdbuN .navbar.opened {
  background: #ffffff !important;
}
.cid-uKBZeKdbuN .nav-item:focus,
.cid-uKBZeKdbuN .nav-link:focus {
  outline: none;
}
.cid-uKBZeKdbuN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uKBZeKdbuN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uKBZeKdbuN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uKBZeKdbuN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uKBZeKdbuN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uKBZeKdbuN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uKBZeKdbuN .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uKBZeKdbuN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uKBZeKdbuN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uKBZeKdbuN .dropdown-item.active,
.cid-uKBZeKdbuN .dropdown-item:active {
  background-color: transparent;
}
.cid-uKBZeKdbuN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uKBZeKdbuN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uKBZeKdbuN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uKBZeKdbuN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uKBZeKdbuN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uKBZeKdbuN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uKBZeKdbuN ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uKBZeKdbuN .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uKBZeKdbuN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uKBZeKdbuN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uKBZeKdbuN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uKBZeKdbuN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uKBZeKdbuN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uKBZeKdbuN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uKBZeKdbuN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKBZeKdbuN nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uKBZeKdbuN nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uKBZeKdbuN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKBZeKdbuN .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uKBZeKdbuN a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uKBZeKdbuN .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-uKBZeKdbuN .navbar {
    height: 70px;
  }
  .cid-uKBZeKdbuN .navbar.opened {
    height: auto;
  }
  .cid-uKBZeKdbuN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uKBZeKVdYJ {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uKBZeKVdYJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKBZeKVdYJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKBZeLoNPR {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uKBZeLoNPR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKBZeLoNPR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKBZeLoNPR .mbr-section-head {
  margin-bottom: 32px;
}
.cid-uKBZeLoNPR .mbr-section-title {
  color: #24262b;
}
.cid-uKBZeLoNPR .mbr-section-subtitle {
  color: #24262b;
}
.cid-uKBZeLoNPR .items-row {
  row-gap: 32px;
}
.cid-uKBZeLoNPR .item-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-uKBZeLoNPR .item-wrapper img {
  width: 100%;
  aspect-ratio: calc(8 / (1 * 12));
  object-fit: cover;
  transition: all 0.3s;
}
.cid-uKBZeLoNPR .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  z-index: 3;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  opacity: 0;
  color: #24262b;
  transform: translateX(-50%) translateY(-50%);
  background-color: #FFFFFF;
  transition: 0.3s;
}
.cid-uKBZeLoNPR .item-wrapper .img-overlay {
  position: absolute;
  pointer-events: none;
  transition: all 0.3s;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #33363b;
  opacity: 0;
  z-index: 2;
}
.cid-uKBZeLoNPR .item-wrapper:hover img {
  transform: scale(1.05);
}
.cid-uKBZeLoNPR .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-uKBZeLoNPR .item-wrapper:hover .img-overlay {
  opacity: 0.3;
}
.cid-uKBZeLoNPR .mbr-item-subtitle {
  color: #24262b;
}
.cid-uKBZeLoNPR .carousel-control,
.cid-uKBZeLoNPR .close {
  background: #1b1b1b;
}
.cid-uKBZeLoNPR .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uKBZeLoNPR .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uKBZeLoNPR .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uKBZeLoNPR .carousel-control-next span {
  margin-left: 5px;
}
.cid-uKBZeLoNPR .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-uKBZeLoNPR .close::before {
  content: '\e91a';
}
.cid-uKBZeLoNPR .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uKBZeLoNPR .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-uKBZeLoNPR .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uKBZeLoNPR .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uKBZeLoNPR .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uKBZeLoNPR .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uKBZeLoNPR .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-uKBZeLoNPR .carousel-indicators li.active,
.cid-uKBZeLoNPR .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uKBZeLoNPR .carousel-indicators li::after,
.cid-uKBZeLoNPR .carousel-indicators li::before {
  content: none;
}
.cid-uKBZeLoNPR .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uKBZeLoNPR .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uKBZeLoNPR .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uKBZeLoNPR .carousel-indicators {
    display: none;
  }
}
.cid-uKBZeLoNPR .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uKBZeLoNPR .carousel-inner > .active {
  display: block;
}
.cid-uKBZeLoNPR .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uKBZeLoNPR .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uKBZeLoNPR .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uKBZeLoNPR .carousel-control,
  .cid-uKBZeLoNPR .carousel-indicators,
  .cid-uKBZeLoNPR .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uKBZeLoNPR .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uKBZeLoNPR .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uKBZeLoNPR .carousel-indicators .active,
.cid-uKBZeLoNPR .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uKBZeLoNPR .carousel-indicators .active {
  background: #fff;
}
.cid-uKBZeLoNPR .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uKBZeLoNPR .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uKBZeLoNPR .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uKBZeLoNPR .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uKBZeLoNPR .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uKBZeLoNPR .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uKBZeLoNPR .carousel {
  width: 100%;
}
.cid-uKBZeLoNPR .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uKBZeLoNPR .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uKBZeLoNPR .modal.fade .modal-dialog,
.cid-uKBZeLoNPR .modal.in .modal-dialog {
  transform: none;
}
.cid-uKBZeLoNPR .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uKBZeLoNPR H6 {
  text-align: center;
}
.cid-uKBZeM07K7 {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uKBZeM07K7 .mbr-text {
  color: #000000;
}
.cid-uKBZeM07K7 .container {
  max-width: 1000px;
}
.cid-uKBZeM07K7 h4 {
  text-align: center;
}
.cid-uKBZeM07K7 p {
  text-align: center;
}
.cid-uKBZeM07K7 .row {
  justify-content: center;
}
.cid-uKBZeM07K7 .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-uKBZeM07K7 .mbr-iconfont {
  font-size: 1.5rem;
  color: #000000;
  display: block;
}
.cid-uKBZeM07K7 .card-title,
.cid-uKBZeM07K7 .card-img {
  color: #000000;
}
.cid-uKBZeM07K7 .icon-wrap {
  padding-bottom: 7.6rem;
}
.cid-uKBZeM07K7 .icon-wrap:before {
  content: '';
  position: absolute;
  background: #000000;
  bottom: 0rem;
  left: 50%;
  width: 2px;
  height: 90px;
}
.cid-uKBZeM07K7 img {
  margin-bottom: 5rem;
  width: auto;
  margin-left: auto;
  margin-right: auto;
}
.cid-uKBZeM07K7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKBZeM07K7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKBZeMzYBe {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
  overflow: hidden;
}
.cid-uKC0QdrYUH {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uKC0QdrYUH .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
}
@media (max-width: 992px) {
  .cid-uKC0QdrYUH .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-uKC0QdrYUH .iconfont-wrapper {
  color: #103178 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-uKC0QdrYUH .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-uKC0QdrYUH .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-uKC0QdrYUH .container {
    padding: 0 1rem;
  }
}
.cid-uKC0QdrYUH .menu-tite {
  background: #6592e6;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffc800;
}
.cid-uKC0QdrYUH .nav-link {
  position: relative;
}
.cid-uKC0QdrYUH .nav-link:hover {
  color: #47b5ed !important;
}
.cid-uKC0QdrYUH nav.navbar {
  position: fixed;
}
.cid-uKC0QdrYUH .navbar {
  padding: 0!important;
  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-uKC0QdrYUH .navbar.opened {
  transition: all 0.3s;
}
.cid-uKC0QdrYUH .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uKC0QdrYUH .navbar .navbar-logo img {
  width: auto;
}
.cid-uKC0QdrYUH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uKC0QdrYUH .navbar.collapsed {
  justify-content: center;
}
.cid-uKC0QdrYUH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uKC0QdrYUH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uKC0QdrYUH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 7rem);
  }
}
.cid-uKC0QdrYUH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uKC0QdrYUH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uKC0QdrYUH .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-uKC0QdrYUH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uKC0QdrYUH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uKC0QdrYUH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uKC0QdrYUH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uKC0QdrYUH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uKC0QdrYUH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uKC0QdrYUH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uKC0QdrYUH .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-uKC0QdrYUH .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uKC0QdrYUH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uKC0QdrYUH .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uKC0QdrYUH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uKC0QdrYUH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uKC0QdrYUH .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uKC0QdrYUH .navbar.navbar-short {
  min-height: 60px;
}
.cid-uKC0QdrYUH .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uKC0QdrYUH .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uKC0QdrYUH .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-uKC0QdrYUH .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uKC0QdrYUH .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uKC0QdrYUH .dropdown-item:hover,
.cid-uKC0QdrYUH .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uKC0QdrYUH .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uKC0QdrYUH .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uKC0QdrYUH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-uKC0QdrYUH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uKC0QdrYUH .dropdown-menu,
.cid-uKC0QdrYUH .navbar.opened {
  background: #ffffff !important;
}
.cid-uKC0QdrYUH .nav-item:focus,
.cid-uKC0QdrYUH .nav-link:focus {
  outline: none;
}
.cid-uKC0QdrYUH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uKC0QdrYUH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uKC0QdrYUH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uKC0QdrYUH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uKC0QdrYUH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uKC0QdrYUH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uKC0QdrYUH .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uKC0QdrYUH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uKC0QdrYUH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uKC0QdrYUH .dropdown-item.active,
.cid-uKC0QdrYUH .dropdown-item:active {
  background-color: transparent;
}
.cid-uKC0QdrYUH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uKC0QdrYUH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uKC0QdrYUH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uKC0QdrYUH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uKC0QdrYUH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uKC0QdrYUH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uKC0QdrYUH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uKC0QdrYUH .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uKC0QdrYUH button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uKC0QdrYUH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uKC0QdrYUH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uKC0QdrYUH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uKC0QdrYUH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uKC0QdrYUH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uKC0QdrYUH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKC0QdrYUH nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uKC0QdrYUH nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uKC0QdrYUH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKC0QdrYUH .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uKC0QdrYUH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uKC0QdrYUH .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-uKC0QdrYUH .navbar {
    height: 70px;
  }
  .cid-uKC0QdrYUH .navbar.opened {
    height: auto;
  }
  .cid-uKC0QdrYUH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uKC0Qe9szm {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uKC0Qe9szm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKC0Qe9szm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKC0QeD8IX {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uKC0QeD8IX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKC0QeD8IX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKC0QeD8IX .mbr-section-head {
  margin-bottom: 32px;
}
.cid-uKC0QeD8IX .mbr-section-title {
  color: #24262b;
}
.cid-uKC0QeD8IX .mbr-section-subtitle {
  color: #24262b;
}
.cid-uKC0QeD8IX .items-row {
  row-gap: 32px;
}
.cid-uKC0QeD8IX .item-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-uKC0QeD8IX .item-wrapper img {
  width: 100%;
  aspect-ratio: calc(8 / (1 * 12));
  object-fit: cover;
  transition: all 0.3s;
}
.cid-uKC0QeD8IX .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  z-index: 3;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  opacity: 0;
  color: #24262b;
  transform: translateX(-50%) translateY(-50%);
  background-color: #FFFFFF;
  transition: 0.3s;
}
.cid-uKC0QeD8IX .item-wrapper .img-overlay {
  position: absolute;
  pointer-events: none;
  transition: all 0.3s;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #33363b;
  opacity: 0;
  z-index: 2;
}
.cid-uKC0QeD8IX .item-wrapper:hover img {
  transform: scale(1.05);
}
.cid-uKC0QeD8IX .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-uKC0QeD8IX .item-wrapper:hover .img-overlay {
  opacity: 0.3;
}
.cid-uKC0QeD8IX .mbr-item-subtitle {
  color: #24262b;
}
.cid-uKC0QeD8IX .carousel-control,
.cid-uKC0QeD8IX .close {
  background: #1b1b1b;
}
.cid-uKC0QeD8IX .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uKC0QeD8IX .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uKC0QeD8IX .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uKC0QeD8IX .carousel-control-next span {
  margin-left: 5px;
}
.cid-uKC0QeD8IX .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-uKC0QeD8IX .close::before {
  content: '\e91a';
}
.cid-uKC0QeD8IX .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uKC0QeD8IX .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-uKC0QeD8IX .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uKC0QeD8IX .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uKC0QeD8IX .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uKC0QeD8IX .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uKC0QeD8IX .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-uKC0QeD8IX .carousel-indicators li.active,
.cid-uKC0QeD8IX .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uKC0QeD8IX .carousel-indicators li::after,
.cid-uKC0QeD8IX .carousel-indicators li::before {
  content: none;
}
.cid-uKC0QeD8IX .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uKC0QeD8IX .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uKC0QeD8IX .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uKC0QeD8IX .carousel-indicators {
    display: none;
  }
}
.cid-uKC0QeD8IX .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uKC0QeD8IX .carousel-inner > .active {
  display: block;
}
.cid-uKC0QeD8IX .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uKC0QeD8IX .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uKC0QeD8IX .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uKC0QeD8IX .carousel-control,
  .cid-uKC0QeD8IX .carousel-indicators,
  .cid-uKC0QeD8IX .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uKC0QeD8IX .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uKC0QeD8IX .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uKC0QeD8IX .carousel-indicators .active,
.cid-uKC0QeD8IX .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uKC0QeD8IX .carousel-indicators .active {
  background: #fff;
}
.cid-uKC0QeD8IX .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uKC0QeD8IX .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uKC0QeD8IX .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uKC0QeD8IX .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uKC0QeD8IX .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uKC0QeD8IX .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uKC0QeD8IX .carousel {
  width: 100%;
}
.cid-uKC0QeD8IX .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uKC0QeD8IX .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uKC0QeD8IX .modal.fade .modal-dialog,
.cid-uKC0QeD8IX .modal.in .modal-dialog {
  transform: none;
}
.cid-uKC0QeD8IX .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uKC0QeD8IX H6 {
  text-align: center;
}
.cid-uKC0Qfi5ua {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uKC0Qfi5ua .mbr-text {
  color: #000000;
}
.cid-uKC0Qfi5ua .container {
  max-width: 1000px;
}
.cid-uKC0Qfi5ua h4 {
  text-align: center;
}
.cid-uKC0Qfi5ua p {
  text-align: center;
}
.cid-uKC0Qfi5ua .row {
  justify-content: center;
}
.cid-uKC0Qfi5ua .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-uKC0Qfi5ua .mbr-iconfont {
  font-size: 1.5rem;
  color: #000000;
  display: block;
}
.cid-uKC0Qfi5ua .card-title,
.cid-uKC0Qfi5ua .card-img {
  color: #000000;
}
.cid-uKC0Qfi5ua .icon-wrap {
  padding-bottom: 7.6rem;
}
.cid-uKC0Qfi5ua .icon-wrap:before {
  content: '';
  position: absolute;
  background: #000000;
  bottom: 0rem;
  left: 50%;
  width: 2px;
  height: 90px;
}
.cid-uKC0Qfi5ua img {
  margin-bottom: 5rem;
  width: auto;
  margin-left: auto;
  margin-right: auto;
}
.cid-uKC0Qfi5ua .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKC0Qfi5ua .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKC0QfPpAI {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
  overflow: hidden;
}
.cid-uKC64VAcJu {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uKC64VAcJu .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
}
@media (max-width: 992px) {
  .cid-uKC64VAcJu .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-uKC64VAcJu .iconfont-wrapper {
  color: #103178 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-uKC64VAcJu .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-uKC64VAcJu .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-uKC64VAcJu .container {
    padding: 0 1rem;
  }
}
.cid-uKC64VAcJu .menu-tite {
  background: #6592e6;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffc800;
}
.cid-uKC64VAcJu .nav-link {
  position: relative;
}
.cid-uKC64VAcJu .nav-link:hover {
  color: #47b5ed !important;
}
.cid-uKC64VAcJu nav.navbar {
  position: fixed;
}
.cid-uKC64VAcJu .navbar {
  padding: 0!important;
  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-uKC64VAcJu .navbar.opened {
  transition: all 0.3s;
}
.cid-uKC64VAcJu .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uKC64VAcJu .navbar .navbar-logo img {
  width: auto;
}
.cid-uKC64VAcJu .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uKC64VAcJu .navbar.collapsed {
  justify-content: center;
}
.cid-uKC64VAcJu .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uKC64VAcJu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uKC64VAcJu .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 7rem);
  }
}
.cid-uKC64VAcJu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uKC64VAcJu .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uKC64VAcJu .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-uKC64VAcJu .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uKC64VAcJu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uKC64VAcJu .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uKC64VAcJu .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uKC64VAcJu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uKC64VAcJu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uKC64VAcJu .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uKC64VAcJu .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-uKC64VAcJu .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uKC64VAcJu .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uKC64VAcJu .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uKC64VAcJu .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uKC64VAcJu .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uKC64VAcJu .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uKC64VAcJu .navbar.navbar-short {
  min-height: 60px;
}
.cid-uKC64VAcJu .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uKC64VAcJu .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uKC64VAcJu .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-uKC64VAcJu .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uKC64VAcJu .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uKC64VAcJu .dropdown-item:hover,
.cid-uKC64VAcJu .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uKC64VAcJu .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uKC64VAcJu .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uKC64VAcJu .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-uKC64VAcJu .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uKC64VAcJu .dropdown-menu,
.cid-uKC64VAcJu .navbar.opened {
  background: #ffffff !important;
}
.cid-uKC64VAcJu .nav-item:focus,
.cid-uKC64VAcJu .nav-link:focus {
  outline: none;
}
.cid-uKC64VAcJu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uKC64VAcJu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uKC64VAcJu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uKC64VAcJu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uKC64VAcJu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uKC64VAcJu .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uKC64VAcJu .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uKC64VAcJu .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uKC64VAcJu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uKC64VAcJu .dropdown-item.active,
.cid-uKC64VAcJu .dropdown-item:active {
  background-color: transparent;
}
.cid-uKC64VAcJu .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uKC64VAcJu .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uKC64VAcJu .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uKC64VAcJu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uKC64VAcJu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uKC64VAcJu .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uKC64VAcJu ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uKC64VAcJu .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uKC64VAcJu button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uKC64VAcJu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uKC64VAcJu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uKC64VAcJu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uKC64VAcJu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uKC64VAcJu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uKC64VAcJu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKC64VAcJu nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uKC64VAcJu nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uKC64VAcJu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKC64VAcJu .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uKC64VAcJu a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uKC64VAcJu .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-uKC64VAcJu .navbar {
    height: 70px;
  }
  .cid-uKC64VAcJu .navbar.opened {
    height: auto;
  }
  .cid-uKC64VAcJu .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uKC64WIVQN {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uKC64WIVQN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKC64WIVQN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKC64XBqTw {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uKC64XBqTw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKC64XBqTw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKC64XBqTw .mbr-section-head {
  margin-bottom: 32px;
}
.cid-uKC64XBqTw .mbr-section-title {
  color: #24262b;
}
.cid-uKC64XBqTw .mbr-section-subtitle {
  color: #24262b;
}
.cid-uKC64XBqTw .items-row {
  row-gap: 32px;
}
.cid-uKC64XBqTw .item-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-uKC64XBqTw .item-wrapper img {
  width: 100%;
  aspect-ratio: calc(8 / (1 * 12));
  object-fit: cover;
  transition: all 0.3s;
}
.cid-uKC64XBqTw .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  z-index: 3;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  opacity: 0;
  color: #24262b;
  transform: translateX(-50%) translateY(-50%);
  background-color: #FFFFFF;
  transition: 0.3s;
}
.cid-uKC64XBqTw .item-wrapper .img-overlay {
  position: absolute;
  pointer-events: none;
  transition: all 0.3s;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #33363b;
  opacity: 0;
  z-index: 2;
}
.cid-uKC64XBqTw .item-wrapper:hover img {
  transform: scale(1.05);
}
.cid-uKC64XBqTw .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-uKC64XBqTw .item-wrapper:hover .img-overlay {
  opacity: 0.3;
}
.cid-uKC64XBqTw .mbr-item-subtitle {
  color: #24262b;
}
.cid-uKC64XBqTw .carousel-control,
.cid-uKC64XBqTw .close {
  background: #1b1b1b;
}
.cid-uKC64XBqTw .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uKC64XBqTw .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uKC64XBqTw .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uKC64XBqTw .carousel-control-next span {
  margin-left: 5px;
}
.cid-uKC64XBqTw .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-uKC64XBqTw .close::before {
  content: '\e91a';
}
.cid-uKC64XBqTw .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uKC64XBqTw .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-uKC64XBqTw .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uKC64XBqTw .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uKC64XBqTw .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uKC64XBqTw .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uKC64XBqTw .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-uKC64XBqTw .carousel-indicators li.active,
.cid-uKC64XBqTw .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uKC64XBqTw .carousel-indicators li::after,
.cid-uKC64XBqTw .carousel-indicators li::before {
  content: none;
}
.cid-uKC64XBqTw .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uKC64XBqTw .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uKC64XBqTw .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uKC64XBqTw .carousel-indicators {
    display: none;
  }
}
.cid-uKC64XBqTw .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uKC64XBqTw .carousel-inner > .active {
  display: block;
}
.cid-uKC64XBqTw .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uKC64XBqTw .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uKC64XBqTw .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uKC64XBqTw .carousel-control,
  .cid-uKC64XBqTw .carousel-indicators,
  .cid-uKC64XBqTw .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uKC64XBqTw .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uKC64XBqTw .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uKC64XBqTw .carousel-indicators .active,
.cid-uKC64XBqTw .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uKC64XBqTw .carousel-indicators .active {
  background: #fff;
}
.cid-uKC64XBqTw .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uKC64XBqTw .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uKC64XBqTw .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uKC64XBqTw .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uKC64XBqTw .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uKC64XBqTw .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uKC64XBqTw .carousel {
  width: 100%;
}
.cid-uKC64XBqTw .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uKC64XBqTw .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uKC64XBqTw .modal.fade .modal-dialog,
.cid-uKC64XBqTw .modal.in .modal-dialog {
  transform: none;
}
.cid-uKC64XBqTw .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uKC64XBqTw H6 {
  text-align: center;
}
.cid-uKC64Z46jZ {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uKC64Z46jZ .mbr-text {
  color: #000000;
}
.cid-uKC64Z46jZ .container {
  max-width: 1000px;
}
.cid-uKC64Z46jZ h4 {
  text-align: center;
}
.cid-uKC64Z46jZ p {
  text-align: center;
}
.cid-uKC64Z46jZ .row {
  justify-content: center;
}
.cid-uKC64Z46jZ .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-uKC64Z46jZ .mbr-iconfont {
  font-size: 1.5rem;
  color: #000000;
  display: block;
}
.cid-uKC64Z46jZ .card-title,
.cid-uKC64Z46jZ .card-img {
  color: #000000;
}
.cid-uKC64Z46jZ .icon-wrap {
  padding-bottom: 7.6rem;
}
.cid-uKC64Z46jZ .icon-wrap:before {
  content: '';
  position: absolute;
  background: #000000;
  bottom: 0rem;
  left: 50%;
  width: 2px;
  height: 90px;
}
.cid-uKC64Z46jZ img {
  margin-bottom: 5rem;
  width: auto;
  margin-left: auto;
  margin-right: auto;
}
.cid-uKC64Z46jZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKC64Z46jZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKC64ZGYwk {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
  overflow: hidden;
}
.cid-uKC7iJh9Sr {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uKC7iJh9Sr .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
}
@media (max-width: 992px) {
  .cid-uKC7iJh9Sr .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-uKC7iJh9Sr .iconfont-wrapper {
  color: #103178 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-uKC7iJh9Sr .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-uKC7iJh9Sr .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-uKC7iJh9Sr .container {
    padding: 0 1rem;
  }
}
.cid-uKC7iJh9Sr .menu-tite {
  background: #6592e6;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffc800;
}
.cid-uKC7iJh9Sr .nav-link {
  position: relative;
}
.cid-uKC7iJh9Sr .nav-link:hover {
  color: #47b5ed !important;
}
.cid-uKC7iJh9Sr nav.navbar {
  position: fixed;
}
.cid-uKC7iJh9Sr .navbar {
  padding: 0!important;
  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-uKC7iJh9Sr .navbar.opened {
  transition: all 0.3s;
}
.cid-uKC7iJh9Sr .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uKC7iJh9Sr .navbar .navbar-logo img {
  width: auto;
}
.cid-uKC7iJh9Sr .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uKC7iJh9Sr .navbar.collapsed {
  justify-content: center;
}
.cid-uKC7iJh9Sr .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uKC7iJh9Sr .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uKC7iJh9Sr .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 7rem);
  }
}
.cid-uKC7iJh9Sr .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uKC7iJh9Sr .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uKC7iJh9Sr .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-uKC7iJh9Sr .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uKC7iJh9Sr .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uKC7iJh9Sr .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uKC7iJh9Sr .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uKC7iJh9Sr .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uKC7iJh9Sr .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uKC7iJh9Sr .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uKC7iJh9Sr .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-uKC7iJh9Sr .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uKC7iJh9Sr .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uKC7iJh9Sr .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uKC7iJh9Sr .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uKC7iJh9Sr .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uKC7iJh9Sr .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uKC7iJh9Sr .navbar.navbar-short {
  min-height: 60px;
}
.cid-uKC7iJh9Sr .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uKC7iJh9Sr .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uKC7iJh9Sr .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-uKC7iJh9Sr .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uKC7iJh9Sr .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uKC7iJh9Sr .dropdown-item:hover,
.cid-uKC7iJh9Sr .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uKC7iJh9Sr .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uKC7iJh9Sr .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uKC7iJh9Sr .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-uKC7iJh9Sr .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uKC7iJh9Sr .dropdown-menu,
.cid-uKC7iJh9Sr .navbar.opened {
  background: #ffffff !important;
}
.cid-uKC7iJh9Sr .nav-item:focus,
.cid-uKC7iJh9Sr .nav-link:focus {
  outline: none;
}
.cid-uKC7iJh9Sr .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uKC7iJh9Sr .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uKC7iJh9Sr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uKC7iJh9Sr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uKC7iJh9Sr .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uKC7iJh9Sr .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uKC7iJh9Sr .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uKC7iJh9Sr .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uKC7iJh9Sr .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uKC7iJh9Sr .dropdown-item.active,
.cid-uKC7iJh9Sr .dropdown-item:active {
  background-color: transparent;
}
.cid-uKC7iJh9Sr .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uKC7iJh9Sr .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uKC7iJh9Sr .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uKC7iJh9Sr .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uKC7iJh9Sr .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uKC7iJh9Sr .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uKC7iJh9Sr ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uKC7iJh9Sr .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uKC7iJh9Sr button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uKC7iJh9Sr button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uKC7iJh9Sr button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uKC7iJh9Sr button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uKC7iJh9Sr button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uKC7iJh9Sr button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uKC7iJh9Sr nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKC7iJh9Sr nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uKC7iJh9Sr nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uKC7iJh9Sr nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKC7iJh9Sr .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uKC7iJh9Sr a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uKC7iJh9Sr .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-uKC7iJh9Sr .navbar {
    height: 70px;
  }
  .cid-uKC7iJh9Sr .navbar.opened {
    height: auto;
  }
  .cid-uKC7iJh9Sr .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uKC7iKgV4U {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uKC7iKgV4U .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKC7iKgV4U .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKC7iKQ6hb {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uKC7iKQ6hb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKC7iKQ6hb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKC7iKQ6hb .mbr-section-head {
  margin-bottom: 32px;
}
.cid-uKC7iKQ6hb .mbr-section-title {
  color: #24262b;
}
.cid-uKC7iKQ6hb .mbr-section-subtitle {
  color: #24262b;
}
.cid-uKC7iKQ6hb .items-row {
  row-gap: 32px;
}
.cid-uKC7iKQ6hb .item-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-uKC7iKQ6hb .item-wrapper img {
  width: 100%;
  aspect-ratio: calc(8 / (1 * 12));
  object-fit: cover;
  transition: all 0.3s;
}
.cid-uKC7iKQ6hb .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  z-index: 3;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  opacity: 0;
  color: #24262b;
  transform: translateX(-50%) translateY(-50%);
  background-color: #FFFFFF;
  transition: 0.3s;
}
.cid-uKC7iKQ6hb .item-wrapper .img-overlay {
  position: absolute;
  pointer-events: none;
  transition: all 0.3s;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #33363b;
  opacity: 0;
  z-index: 2;
}
.cid-uKC7iKQ6hb .item-wrapper:hover img {
  transform: scale(1.05);
}
.cid-uKC7iKQ6hb .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-uKC7iKQ6hb .item-wrapper:hover .img-overlay {
  opacity: 0.3;
}
.cid-uKC7iKQ6hb .mbr-item-subtitle {
  color: #24262b;
}
.cid-uKC7iKQ6hb .carousel-control,
.cid-uKC7iKQ6hb .close {
  background: #1b1b1b;
}
.cid-uKC7iKQ6hb .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uKC7iKQ6hb .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uKC7iKQ6hb .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uKC7iKQ6hb .carousel-control-next span {
  margin-left: 5px;
}
.cid-uKC7iKQ6hb .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-uKC7iKQ6hb .close::before {
  content: '\e91a';
}
.cid-uKC7iKQ6hb .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uKC7iKQ6hb .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-uKC7iKQ6hb .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uKC7iKQ6hb .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uKC7iKQ6hb .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uKC7iKQ6hb .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uKC7iKQ6hb .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-uKC7iKQ6hb .carousel-indicators li.active,
.cid-uKC7iKQ6hb .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uKC7iKQ6hb .carousel-indicators li::after,
.cid-uKC7iKQ6hb .carousel-indicators li::before {
  content: none;
}
.cid-uKC7iKQ6hb .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uKC7iKQ6hb .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uKC7iKQ6hb .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uKC7iKQ6hb .carousel-indicators {
    display: none;
  }
}
.cid-uKC7iKQ6hb .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uKC7iKQ6hb .carousel-inner > .active {
  display: block;
}
.cid-uKC7iKQ6hb .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uKC7iKQ6hb .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uKC7iKQ6hb .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uKC7iKQ6hb .carousel-control,
  .cid-uKC7iKQ6hb .carousel-indicators,
  .cid-uKC7iKQ6hb .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uKC7iKQ6hb .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uKC7iKQ6hb .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uKC7iKQ6hb .carousel-indicators .active,
.cid-uKC7iKQ6hb .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uKC7iKQ6hb .carousel-indicators .active {
  background: #fff;
}
.cid-uKC7iKQ6hb .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uKC7iKQ6hb .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uKC7iKQ6hb .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uKC7iKQ6hb .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uKC7iKQ6hb .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uKC7iKQ6hb .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uKC7iKQ6hb .carousel {
  width: 100%;
}
.cid-uKC7iKQ6hb .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uKC7iKQ6hb .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uKC7iKQ6hb .modal.fade .modal-dialog,
.cid-uKC7iKQ6hb .modal.in .modal-dialog {
  transform: none;
}
.cid-uKC7iKQ6hb .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uKC7iKQ6hb H6 {
  text-align: center;
}
.cid-uKC7iLFaBA {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uKC7iLFaBA .mbr-text {
  color: #000000;
}
.cid-uKC7iLFaBA .container {
  max-width: 1000px;
}
.cid-uKC7iLFaBA h4 {
  text-align: center;
}
.cid-uKC7iLFaBA p {
  text-align: center;
}
.cid-uKC7iLFaBA .row {
  justify-content: center;
}
.cid-uKC7iLFaBA .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-uKC7iLFaBA .mbr-iconfont {
  font-size: 1.5rem;
  color: #000000;
  display: block;
}
.cid-uKC7iLFaBA .card-title,
.cid-uKC7iLFaBA .card-img {
  color: #000000;
}
.cid-uKC7iLFaBA .icon-wrap {
  padding-bottom: 7.6rem;
}
.cid-uKC7iLFaBA .icon-wrap:before {
  content: '';
  position: absolute;
  background: #000000;
  bottom: 0rem;
  left: 50%;
  width: 2px;
  height: 90px;
}
.cid-uKC7iLFaBA img {
  margin-bottom: 5rem;
  width: auto;
  margin-left: auto;
  margin-right: auto;
}
.cid-uKC7iLFaBA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKC7iLFaBA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKC7iMnT3m {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
  overflow: hidden;
}
.cid-uKC85FlUh1 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uKC85FlUh1 .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
}
@media (max-width: 992px) {
  .cid-uKC85FlUh1 .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-uKC85FlUh1 .iconfont-wrapper {
  color: #103178 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-uKC85FlUh1 .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-uKC85FlUh1 .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-uKC85FlUh1 .container {
    padding: 0 1rem;
  }
}
.cid-uKC85FlUh1 .menu-tite {
  background: #6592e6;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffc800;
}
.cid-uKC85FlUh1 .nav-link {
  position: relative;
}
.cid-uKC85FlUh1 .nav-link:hover {
  color: #47b5ed !important;
}
.cid-uKC85FlUh1 nav.navbar {
  position: fixed;
}
.cid-uKC85FlUh1 .navbar {
  padding: 0!important;
  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-uKC85FlUh1 .navbar.opened {
  transition: all 0.3s;
}
.cid-uKC85FlUh1 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uKC85FlUh1 .navbar .navbar-logo img {
  width: auto;
}
.cid-uKC85FlUh1 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uKC85FlUh1 .navbar.collapsed {
  justify-content: center;
}
.cid-uKC85FlUh1 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uKC85FlUh1 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uKC85FlUh1 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 7rem);
  }
}
.cid-uKC85FlUh1 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uKC85FlUh1 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uKC85FlUh1 .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-uKC85FlUh1 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uKC85FlUh1 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uKC85FlUh1 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uKC85FlUh1 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uKC85FlUh1 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uKC85FlUh1 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uKC85FlUh1 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uKC85FlUh1 .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-uKC85FlUh1 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uKC85FlUh1 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uKC85FlUh1 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uKC85FlUh1 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uKC85FlUh1 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uKC85FlUh1 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uKC85FlUh1 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uKC85FlUh1 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uKC85FlUh1 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uKC85FlUh1 .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-uKC85FlUh1 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uKC85FlUh1 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uKC85FlUh1 .dropdown-item:hover,
.cid-uKC85FlUh1 .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uKC85FlUh1 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uKC85FlUh1 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uKC85FlUh1 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-uKC85FlUh1 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uKC85FlUh1 .dropdown-menu,
.cid-uKC85FlUh1 .navbar.opened {
  background: #ffffff !important;
}
.cid-uKC85FlUh1 .nav-item:focus,
.cid-uKC85FlUh1 .nav-link:focus {
  outline: none;
}
.cid-uKC85FlUh1 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uKC85FlUh1 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uKC85FlUh1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uKC85FlUh1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uKC85FlUh1 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uKC85FlUh1 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uKC85FlUh1 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uKC85FlUh1 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uKC85FlUh1 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uKC85FlUh1 .dropdown-item.active,
.cid-uKC85FlUh1 .dropdown-item:active {
  background-color: transparent;
}
.cid-uKC85FlUh1 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uKC85FlUh1 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uKC85FlUh1 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uKC85FlUh1 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uKC85FlUh1 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uKC85FlUh1 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uKC85FlUh1 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uKC85FlUh1 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uKC85FlUh1 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uKC85FlUh1 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uKC85FlUh1 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uKC85FlUh1 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uKC85FlUh1 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uKC85FlUh1 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uKC85FlUh1 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKC85FlUh1 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uKC85FlUh1 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uKC85FlUh1 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKC85FlUh1 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uKC85FlUh1 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uKC85FlUh1 .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-uKC85FlUh1 .navbar {
    height: 70px;
  }
  .cid-uKC85FlUh1 .navbar.opened {
    height: auto;
  }
  .cid-uKC85FlUh1 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uKC85Geu4j {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uKC85Geu4j .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKC85Geu4j .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKIq46KPp1 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uKIq46KPp1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKIq46KPp1 .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-uKIq46KPp1 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uKIq46KPp1 .row {
  flex-direction: row-reverse;
}
.cid-uKIq46KPp1 img {
  width: 100%;
}
.cid-uKC85GXTFo {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uKC85GXTFo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKC85GXTFo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKC85GXTFo .mbr-section-head {
  margin-bottom: 32px;
}
.cid-uKC85GXTFo .mbr-section-title {
  color: #24262b;
}
.cid-uKC85GXTFo .mbr-section-subtitle {
  color: #24262b;
}
.cid-uKC85GXTFo .items-row {
  row-gap: 32px;
}
.cid-uKC85GXTFo .item-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-uKC85GXTFo .item-wrapper img {
  width: 100%;
  aspect-ratio: calc(8 / (1 * 11));
  object-fit: cover;
  transition: all 0.3s;
}
.cid-uKC85GXTFo .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  z-index: 3;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  opacity: 0;
  color: #24262b;
  transform: translateX(-50%) translateY(-50%);
  background-color: #FFFFFF;
  transition: 0.3s;
}
.cid-uKC85GXTFo .item-wrapper .img-overlay {
  position: absolute;
  pointer-events: none;
  transition: all 0.3s;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #33363b;
  opacity: 0;
  z-index: 2;
}
.cid-uKC85GXTFo .item-wrapper:hover img {
  transform: scale(1.05);
}
.cid-uKC85GXTFo .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-uKC85GXTFo .item-wrapper:hover .img-overlay {
  opacity: 0.3;
}
.cid-uKC85GXTFo .mbr-item-subtitle {
  color: #24262b;
}
.cid-uKC85GXTFo .carousel-control,
.cid-uKC85GXTFo .close {
  background: #1b1b1b;
}
.cid-uKC85GXTFo .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uKC85GXTFo .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uKC85GXTFo .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uKC85GXTFo .carousel-control-next span {
  margin-left: 5px;
}
.cid-uKC85GXTFo .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-uKC85GXTFo .close::before {
  content: '\e91a';
}
.cid-uKC85GXTFo .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uKC85GXTFo .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-uKC85GXTFo .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uKC85GXTFo .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uKC85GXTFo .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uKC85GXTFo .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uKC85GXTFo .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-uKC85GXTFo .carousel-indicators li.active,
.cid-uKC85GXTFo .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uKC85GXTFo .carousel-indicators li::after,
.cid-uKC85GXTFo .carousel-indicators li::before {
  content: none;
}
.cid-uKC85GXTFo .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uKC85GXTFo .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uKC85GXTFo .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uKC85GXTFo .carousel-indicators {
    display: none;
  }
}
.cid-uKC85GXTFo .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uKC85GXTFo .carousel-inner > .active {
  display: block;
}
.cid-uKC85GXTFo .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uKC85GXTFo .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uKC85GXTFo .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uKC85GXTFo .carousel-control,
  .cid-uKC85GXTFo .carousel-indicators,
  .cid-uKC85GXTFo .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uKC85GXTFo .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uKC85GXTFo .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uKC85GXTFo .carousel-indicators .active,
.cid-uKC85GXTFo .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uKC85GXTFo .carousel-indicators .active {
  background: #fff;
}
.cid-uKC85GXTFo .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uKC85GXTFo .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uKC85GXTFo .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uKC85GXTFo .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uKC85GXTFo .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uKC85GXTFo .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uKC85GXTFo .carousel {
  width: 100%;
}
.cid-uKC85GXTFo .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uKC85GXTFo .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uKC85GXTFo .modal.fade .modal-dialog,
.cid-uKC85GXTFo .modal.in .modal-dialog {
  transform: none;
}
.cid-uKC85GXTFo .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uKC85GXTFo H6 {
  text-align: center;
}
.cid-uKIrIgEPdO {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uKIrIgEPdO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKIrIgEPdO .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-uKIrIgEPdO .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uKIrIgEPdO .row {
  flex-direction: row-reverse;
}
.cid-uKIrIgEPdO img {
  width: 100%;
}
.cid-uKIrZQjPgs {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uKIrZQjPgs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKIrZQjPgs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKIrZQjPgs .mbr-section-head {
  margin-bottom: 32px;
}
.cid-uKIrZQjPgs .mbr-section-title {
  color: #24262b;
}
.cid-uKIrZQjPgs .mbr-section-subtitle {
  color: #24262b;
}
.cid-uKIrZQjPgs .items-row {
  row-gap: 32px;
}
.cid-uKIrZQjPgs .item-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-uKIrZQjPgs .item-wrapper img {
  width: 100%;
  aspect-ratio: calc(8 / (1 * 11));
  object-fit: cover;
  transition: all 0.3s;
}
.cid-uKIrZQjPgs .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  z-index: 3;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  opacity: 0;
  color: #24262b;
  transform: translateX(-50%) translateY(-50%);
  background-color: #FFFFFF;
  transition: 0.3s;
}
.cid-uKIrZQjPgs .item-wrapper .img-overlay {
  position: absolute;
  pointer-events: none;
  transition: all 0.3s;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #33363b;
  opacity: 0;
  z-index: 2;
}
.cid-uKIrZQjPgs .item-wrapper:hover img {
  transform: scale(1.05);
}
.cid-uKIrZQjPgs .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-uKIrZQjPgs .item-wrapper:hover .img-overlay {
  opacity: 0.3;
}
.cid-uKIrZQjPgs .mbr-item-subtitle {
  color: #24262b;
}
.cid-uKIrZQjPgs .carousel-control,
.cid-uKIrZQjPgs .close {
  background: #1b1b1b;
}
.cid-uKIrZQjPgs .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uKIrZQjPgs .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uKIrZQjPgs .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uKIrZQjPgs .carousel-control-next span {
  margin-left: 5px;
}
.cid-uKIrZQjPgs .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-uKIrZQjPgs .close::before {
  content: '\e91a';
}
.cid-uKIrZQjPgs .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uKIrZQjPgs .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-uKIrZQjPgs .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uKIrZQjPgs .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uKIrZQjPgs .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uKIrZQjPgs .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uKIrZQjPgs .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-uKIrZQjPgs .carousel-indicators li.active,
.cid-uKIrZQjPgs .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uKIrZQjPgs .carousel-indicators li::after,
.cid-uKIrZQjPgs .carousel-indicators li::before {
  content: none;
}
.cid-uKIrZQjPgs .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uKIrZQjPgs .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uKIrZQjPgs .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uKIrZQjPgs .carousel-indicators {
    display: none;
  }
}
.cid-uKIrZQjPgs .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uKIrZQjPgs .carousel-inner > .active {
  display: block;
}
.cid-uKIrZQjPgs .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uKIrZQjPgs .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uKIrZQjPgs .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uKIrZQjPgs .carousel-control,
  .cid-uKIrZQjPgs .carousel-indicators,
  .cid-uKIrZQjPgs .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uKIrZQjPgs .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uKIrZQjPgs .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uKIrZQjPgs .carousel-indicators .active,
.cid-uKIrZQjPgs .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uKIrZQjPgs .carousel-indicators .active {
  background: #fff;
}
.cid-uKIrZQjPgs .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uKIrZQjPgs .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uKIrZQjPgs .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uKIrZQjPgs .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uKIrZQjPgs .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uKIrZQjPgs .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uKIrZQjPgs .carousel {
  width: 100%;
}
.cid-uKIrZQjPgs .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uKIrZQjPgs .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uKIrZQjPgs .modal.fade .modal-dialog,
.cid-uKIrZQjPgs .modal.in .modal-dialog {
  transform: none;
}
.cid-uKIrZQjPgs .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uKIrZQjPgs H6 {
  text-align: center;
}
.cid-uKC85HPKXU {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uKC85HPKXU .mbr-text {
  color: #000000;
}
.cid-uKC85HPKXU .container {
  max-width: 1000px;
}
.cid-uKC85HPKXU h4 {
  text-align: center;
}
.cid-uKC85HPKXU p {
  text-align: center;
}
.cid-uKC85HPKXU .row {
  justify-content: center;
}
.cid-uKC85HPKXU .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-uKC85HPKXU .mbr-iconfont {
  font-size: 1.5rem;
  color: #000000;
  display: block;
}
.cid-uKC85HPKXU .card-title,
.cid-uKC85HPKXU .card-img {
  color: #000000;
}
.cid-uKC85HPKXU .icon-wrap {
  padding-bottom: 7.6rem;
}
.cid-uKC85HPKXU .icon-wrap:before {
  content: '';
  position: absolute;
  background: #000000;
  bottom: 0rem;
  left: 50%;
  width: 2px;
  height: 90px;
}
.cid-uKC85HPKXU img {
  margin-bottom: 5rem;
  width: auto;
  margin-left: auto;
  margin-right: auto;
}
.cid-uKC85HPKXU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKC85HPKXU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKC85IAwJk {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
  overflow: hidden;
}
.cid-uKKF1oD4zC {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uKKF1oD4zC .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
}
@media (max-width: 992px) {
  .cid-uKKF1oD4zC .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-uKKF1oD4zC .iconfont-wrapper {
  color: #103178 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-uKKF1oD4zC .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-uKKF1oD4zC .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-uKKF1oD4zC .container {
    padding: 0 1rem;
  }
}
.cid-uKKF1oD4zC .menu-tite {
  background: #6592e6;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffc800;
}
.cid-uKKF1oD4zC .nav-link {
  position: relative;
}
.cid-uKKF1oD4zC .nav-link:hover {
  color: #47b5ed !important;
}
.cid-uKKF1oD4zC nav.navbar {
  position: fixed;
}
.cid-uKKF1oD4zC .navbar {
  padding: 0!important;
  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-uKKF1oD4zC .navbar.opened {
  transition: all 0.3s;
}
.cid-uKKF1oD4zC .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uKKF1oD4zC .navbar .navbar-logo img {
  width: auto;
}
.cid-uKKF1oD4zC .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uKKF1oD4zC .navbar.collapsed {
  justify-content: center;
}
.cid-uKKF1oD4zC .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uKKF1oD4zC .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uKKF1oD4zC .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 7rem);
  }
}
.cid-uKKF1oD4zC .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uKKF1oD4zC .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uKKF1oD4zC .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-uKKF1oD4zC .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uKKF1oD4zC .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uKKF1oD4zC .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uKKF1oD4zC .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uKKF1oD4zC .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uKKF1oD4zC .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uKKF1oD4zC .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uKKF1oD4zC .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-uKKF1oD4zC .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uKKF1oD4zC .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uKKF1oD4zC .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uKKF1oD4zC .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uKKF1oD4zC .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uKKF1oD4zC .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uKKF1oD4zC .navbar.navbar-short {
  min-height: 60px;
}
.cid-uKKF1oD4zC .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uKKF1oD4zC .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uKKF1oD4zC .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-uKKF1oD4zC .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uKKF1oD4zC .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uKKF1oD4zC .dropdown-item:hover,
.cid-uKKF1oD4zC .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uKKF1oD4zC .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uKKF1oD4zC .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uKKF1oD4zC .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-uKKF1oD4zC .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uKKF1oD4zC .dropdown-menu,
.cid-uKKF1oD4zC .navbar.opened {
  background: #ffffff !important;
}
.cid-uKKF1oD4zC .nav-item:focus,
.cid-uKKF1oD4zC .nav-link:focus {
  outline: none;
}
.cid-uKKF1oD4zC .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uKKF1oD4zC .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uKKF1oD4zC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uKKF1oD4zC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uKKF1oD4zC .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uKKF1oD4zC .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uKKF1oD4zC .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uKKF1oD4zC .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uKKF1oD4zC .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uKKF1oD4zC .dropdown-item.active,
.cid-uKKF1oD4zC .dropdown-item:active {
  background-color: transparent;
}
.cid-uKKF1oD4zC .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uKKF1oD4zC .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uKKF1oD4zC .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uKKF1oD4zC .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uKKF1oD4zC .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uKKF1oD4zC .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uKKF1oD4zC ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uKKF1oD4zC .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uKKF1oD4zC button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uKKF1oD4zC button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uKKF1oD4zC button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uKKF1oD4zC button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uKKF1oD4zC button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uKKF1oD4zC button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uKKF1oD4zC nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKKF1oD4zC nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uKKF1oD4zC nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uKKF1oD4zC nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKKF1oD4zC .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uKKF1oD4zC a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uKKF1oD4zC .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-uKKF1oD4zC .navbar {
    height: 70px;
  }
  .cid-uKKF1oD4zC .navbar.opened {
    height: auto;
  }
  .cid-uKKF1oD4zC .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uKKF1p9eZ2 {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uKKF1p9eZ2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKKF1p9eZ2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKKF1pv3L8 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uKKF1pv3L8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKKF1pv3L8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKKF1pv3L8 .mbr-section-head {
  margin-bottom: 32px;
}
.cid-uKKF1pv3L8 .mbr-section-title {
  color: #24262b;
}
.cid-uKKF1pv3L8 .mbr-section-subtitle {
  color: #24262b;
}
.cid-uKKF1pv3L8 .items-row {
  row-gap: 32px;
}
.cid-uKKF1pv3L8 .item-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-uKKF1pv3L8 .item-wrapper img {
  width: 100%;
  aspect-ratio: calc(8 / (1 * 11));
  object-fit: cover;
  transition: all 0.3s;
}
.cid-uKKF1pv3L8 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  z-index: 3;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  opacity: 0;
  color: #24262b;
  transform: translateX(-50%) translateY(-50%);
  background-color: #FFFFFF;
  transition: 0.3s;
}
.cid-uKKF1pv3L8 .item-wrapper .img-overlay {
  position: absolute;
  pointer-events: none;
  transition: all 0.3s;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #33363b;
  opacity: 0;
  z-index: 2;
}
.cid-uKKF1pv3L8 .item-wrapper:hover img {
  transform: scale(1.05);
}
.cid-uKKF1pv3L8 .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-uKKF1pv3L8 .item-wrapper:hover .img-overlay {
  opacity: 0.3;
}
.cid-uKKF1pv3L8 .mbr-item-subtitle {
  color: #24262b;
}
.cid-uKKF1pv3L8 .carousel-control,
.cid-uKKF1pv3L8 .close {
  background: #1b1b1b;
}
.cid-uKKF1pv3L8 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uKKF1pv3L8 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uKKF1pv3L8 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uKKF1pv3L8 .carousel-control-next span {
  margin-left: 5px;
}
.cid-uKKF1pv3L8 .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-uKKF1pv3L8 .close::before {
  content: '\e91a';
}
.cid-uKKF1pv3L8 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uKKF1pv3L8 .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-uKKF1pv3L8 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uKKF1pv3L8 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uKKF1pv3L8 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uKKF1pv3L8 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uKKF1pv3L8 .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-uKKF1pv3L8 .carousel-indicators li.active,
.cid-uKKF1pv3L8 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uKKF1pv3L8 .carousel-indicators li::after,
.cid-uKKF1pv3L8 .carousel-indicators li::before {
  content: none;
}
.cid-uKKF1pv3L8 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uKKF1pv3L8 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uKKF1pv3L8 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uKKF1pv3L8 .carousel-indicators {
    display: none;
  }
}
.cid-uKKF1pv3L8 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uKKF1pv3L8 .carousel-inner > .active {
  display: block;
}
.cid-uKKF1pv3L8 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uKKF1pv3L8 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uKKF1pv3L8 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uKKF1pv3L8 .carousel-control,
  .cid-uKKF1pv3L8 .carousel-indicators,
  .cid-uKKF1pv3L8 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uKKF1pv3L8 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uKKF1pv3L8 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uKKF1pv3L8 .carousel-indicators .active,
.cid-uKKF1pv3L8 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uKKF1pv3L8 .carousel-indicators .active {
  background: #fff;
}
.cid-uKKF1pv3L8 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uKKF1pv3L8 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uKKF1pv3L8 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uKKF1pv3L8 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uKKF1pv3L8 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uKKF1pv3L8 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uKKF1pv3L8 .carousel {
  width: 100%;
}
.cid-uKKF1pv3L8 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uKKF1pv3L8 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uKKF1pv3L8 .modal.fade .modal-dialog,
.cid-uKKF1pv3L8 .modal.in .modal-dialog {
  transform: none;
}
.cid-uKKF1pv3L8 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uKKF1pv3L8 H6 {
  text-align: center;
}
.cid-uKKF1q16qE {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uKKF1q16qE .mbr-text {
  color: #000000;
}
.cid-uKKF1q16qE .container {
  max-width: 1000px;
}
.cid-uKKF1q16qE h4 {
  text-align: center;
}
.cid-uKKF1q16qE p {
  text-align: center;
}
.cid-uKKF1q16qE .row {
  justify-content: center;
}
.cid-uKKF1q16qE .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-uKKF1q16qE .mbr-iconfont {
  font-size: 1.5rem;
  color: #000000;
  display: block;
}
.cid-uKKF1q16qE .card-title,
.cid-uKKF1q16qE .card-img {
  color: #000000;
}
.cid-uKKF1q16qE .icon-wrap {
  padding-bottom: 7.6rem;
}
.cid-uKKF1q16qE .icon-wrap:before {
  content: '';
  position: absolute;
  background: #000000;
  bottom: 0rem;
  left: 50%;
  width: 2px;
  height: 90px;
}
.cid-uKKF1q16qE img {
  margin-bottom: 5rem;
  width: auto;
  margin-left: auto;
  margin-right: auto;
}
.cid-uKKF1q16qE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKKF1q16qE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKKF1qwM7b {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
  overflow: hidden;
}
.cid-uKKGbcMqGC {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uKKGbcMqGC .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
}
@media (max-width: 992px) {
  .cid-uKKGbcMqGC .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-uKKGbcMqGC .iconfont-wrapper {
  color: #103178 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-uKKGbcMqGC .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-uKKGbcMqGC .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-uKKGbcMqGC .container {
    padding: 0 1rem;
  }
}
.cid-uKKGbcMqGC .menu-tite {
  background: #6592e6;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffc800;
}
.cid-uKKGbcMqGC .nav-link {
  position: relative;
}
.cid-uKKGbcMqGC .nav-link:hover {
  color: #47b5ed !important;
}
.cid-uKKGbcMqGC nav.navbar {
  position: fixed;
}
.cid-uKKGbcMqGC .navbar {
  padding: 0!important;
  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-uKKGbcMqGC .navbar.opened {
  transition: all 0.3s;
}
.cid-uKKGbcMqGC .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uKKGbcMqGC .navbar .navbar-logo img {
  width: auto;
}
.cid-uKKGbcMqGC .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uKKGbcMqGC .navbar.collapsed {
  justify-content: center;
}
.cid-uKKGbcMqGC .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uKKGbcMqGC .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uKKGbcMqGC .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 7rem);
  }
}
.cid-uKKGbcMqGC .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uKKGbcMqGC .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uKKGbcMqGC .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-uKKGbcMqGC .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uKKGbcMqGC .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uKKGbcMqGC .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uKKGbcMqGC .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uKKGbcMqGC .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uKKGbcMqGC .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uKKGbcMqGC .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uKKGbcMqGC .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-uKKGbcMqGC .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uKKGbcMqGC .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uKKGbcMqGC .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uKKGbcMqGC .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uKKGbcMqGC .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uKKGbcMqGC .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uKKGbcMqGC .navbar.navbar-short {
  min-height: 60px;
}
.cid-uKKGbcMqGC .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uKKGbcMqGC .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uKKGbcMqGC .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-uKKGbcMqGC .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uKKGbcMqGC .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uKKGbcMqGC .dropdown-item:hover,
.cid-uKKGbcMqGC .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uKKGbcMqGC .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uKKGbcMqGC .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uKKGbcMqGC .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-uKKGbcMqGC .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uKKGbcMqGC .dropdown-menu,
.cid-uKKGbcMqGC .navbar.opened {
  background: #ffffff !important;
}
.cid-uKKGbcMqGC .nav-item:focus,
.cid-uKKGbcMqGC .nav-link:focus {
  outline: none;
}
.cid-uKKGbcMqGC .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uKKGbcMqGC .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uKKGbcMqGC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uKKGbcMqGC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uKKGbcMqGC .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uKKGbcMqGC .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uKKGbcMqGC .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uKKGbcMqGC .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uKKGbcMqGC .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uKKGbcMqGC .dropdown-item.active,
.cid-uKKGbcMqGC .dropdown-item:active {
  background-color: transparent;
}
.cid-uKKGbcMqGC .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uKKGbcMqGC .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uKKGbcMqGC .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uKKGbcMqGC .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uKKGbcMqGC .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uKKGbcMqGC .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uKKGbcMqGC ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uKKGbcMqGC .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uKKGbcMqGC button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uKKGbcMqGC button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uKKGbcMqGC button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uKKGbcMqGC button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uKKGbcMqGC button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uKKGbcMqGC button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uKKGbcMqGC nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKKGbcMqGC nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uKKGbcMqGC nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uKKGbcMqGC nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKKGbcMqGC .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uKKGbcMqGC a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uKKGbcMqGC .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-uKKGbcMqGC .navbar {
    height: 70px;
  }
  .cid-uKKGbcMqGC .navbar.opened {
    height: auto;
  }
  .cid-uKKGbcMqGC .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uKKGbdrDK4 {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uKKGbdrDK4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKKGbdrDK4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKKGbdQYFe {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uKKGbdQYFe .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKKGbdQYFe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKKGbdQYFe .mbr-section-head {
  margin-bottom: 32px;
}
.cid-uKKGbdQYFe .mbr-section-title {
  color: #24262b;
}
.cid-uKKGbdQYFe .mbr-section-subtitle {
  color: #24262b;
}
.cid-uKKGbdQYFe .items-row {
  row-gap: 32px;
}
.cid-uKKGbdQYFe .item-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-uKKGbdQYFe .item-wrapper img {
  width: 100%;
  aspect-ratio: calc(8 / (1 * 11));
  object-fit: cover;
  transition: all 0.3s;
}
.cid-uKKGbdQYFe .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  z-index: 3;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  opacity: 0;
  color: #24262b;
  transform: translateX(-50%) translateY(-50%);
  background-color: #FFFFFF;
  transition: 0.3s;
}
.cid-uKKGbdQYFe .item-wrapper .img-overlay {
  position: absolute;
  pointer-events: none;
  transition: all 0.3s;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #33363b;
  opacity: 0;
  z-index: 2;
}
.cid-uKKGbdQYFe .item-wrapper:hover img {
  transform: scale(1.05);
}
.cid-uKKGbdQYFe .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-uKKGbdQYFe .item-wrapper:hover .img-overlay {
  opacity: 0.3;
}
.cid-uKKGbdQYFe .mbr-item-subtitle {
  color: #24262b;
}
.cid-uKKGbdQYFe .carousel-control,
.cid-uKKGbdQYFe .close {
  background: #1b1b1b;
}
.cid-uKKGbdQYFe .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uKKGbdQYFe .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uKKGbdQYFe .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uKKGbdQYFe .carousel-control-next span {
  margin-left: 5px;
}
.cid-uKKGbdQYFe .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-uKKGbdQYFe .close::before {
  content: '\e91a';
}
.cid-uKKGbdQYFe .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uKKGbdQYFe .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-uKKGbdQYFe .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uKKGbdQYFe .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uKKGbdQYFe .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uKKGbdQYFe .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uKKGbdQYFe .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-uKKGbdQYFe .carousel-indicators li.active,
.cid-uKKGbdQYFe .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uKKGbdQYFe .carousel-indicators li::after,
.cid-uKKGbdQYFe .carousel-indicators li::before {
  content: none;
}
.cid-uKKGbdQYFe .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uKKGbdQYFe .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uKKGbdQYFe .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uKKGbdQYFe .carousel-indicators {
    display: none;
  }
}
.cid-uKKGbdQYFe .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uKKGbdQYFe .carousel-inner > .active {
  display: block;
}
.cid-uKKGbdQYFe .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uKKGbdQYFe .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uKKGbdQYFe .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uKKGbdQYFe .carousel-control,
  .cid-uKKGbdQYFe .carousel-indicators,
  .cid-uKKGbdQYFe .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uKKGbdQYFe .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uKKGbdQYFe .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uKKGbdQYFe .carousel-indicators .active,
.cid-uKKGbdQYFe .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uKKGbdQYFe .carousel-indicators .active {
  background: #fff;
}
.cid-uKKGbdQYFe .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uKKGbdQYFe .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uKKGbdQYFe .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uKKGbdQYFe .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uKKGbdQYFe .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uKKGbdQYFe .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uKKGbdQYFe .carousel {
  width: 100%;
}
.cid-uKKGbdQYFe .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uKKGbdQYFe .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uKKGbdQYFe .modal.fade .modal-dialog,
.cid-uKKGbdQYFe .modal.in .modal-dialog {
  transform: none;
}
.cid-uKKGbdQYFe .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uKKGbdQYFe H6 {
  text-align: center;
}
.cid-uKKGbeBQFo {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uKKGbeBQFo .mbr-text {
  color: #000000;
}
.cid-uKKGbeBQFo .container {
  max-width: 1000px;
}
.cid-uKKGbeBQFo h4 {
  text-align: center;
}
.cid-uKKGbeBQFo p {
  text-align: center;
}
.cid-uKKGbeBQFo .row {
  justify-content: center;
}
.cid-uKKGbeBQFo .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-uKKGbeBQFo .mbr-iconfont {
  font-size: 1.5rem;
  color: #000000;
  display: block;
}
.cid-uKKGbeBQFo .card-title,
.cid-uKKGbeBQFo .card-img {
  color: #000000;
}
.cid-uKKGbeBQFo .icon-wrap {
  padding-bottom: 7.6rem;
}
.cid-uKKGbeBQFo .icon-wrap:before {
  content: '';
  position: absolute;
  background: #000000;
  bottom: 0rem;
  left: 50%;
  width: 2px;
  height: 90px;
}
.cid-uKKGbeBQFo img {
  margin-bottom: 5rem;
  width: auto;
  margin-left: auto;
  margin-right: auto;
}
.cid-uKKGbeBQFo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKKGbeBQFo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKKGbf3Ccr {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
  overflow: hidden;
}
.cid-uKKITW07cH {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uKKITW07cH .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
}
@media (max-width: 992px) {
  .cid-uKKITW07cH .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-uKKITW07cH .iconfont-wrapper {
  color: #103178 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-uKKITW07cH .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-uKKITW07cH .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-uKKITW07cH .container {
    padding: 0 1rem;
  }
}
.cid-uKKITW07cH .menu-tite {
  background: #6592e6;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffc800;
}
.cid-uKKITW07cH .nav-link {
  position: relative;
}
.cid-uKKITW07cH .nav-link:hover {
  color: #47b5ed !important;
}
.cid-uKKITW07cH nav.navbar {
  position: fixed;
}
.cid-uKKITW07cH .navbar {
  padding: 0!important;
  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-uKKITW07cH .navbar.opened {
  transition: all 0.3s;
}
.cid-uKKITW07cH .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uKKITW07cH .navbar .navbar-logo img {
  width: auto;
}
.cid-uKKITW07cH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uKKITW07cH .navbar.collapsed {
  justify-content: center;
}
.cid-uKKITW07cH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uKKITW07cH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uKKITW07cH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 7rem);
  }
}
.cid-uKKITW07cH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uKKITW07cH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uKKITW07cH .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-uKKITW07cH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uKKITW07cH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uKKITW07cH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uKKITW07cH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uKKITW07cH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uKKITW07cH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uKKITW07cH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uKKITW07cH .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-uKKITW07cH .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uKKITW07cH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uKKITW07cH .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uKKITW07cH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uKKITW07cH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uKKITW07cH .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uKKITW07cH .navbar.navbar-short {
  min-height: 60px;
}
.cid-uKKITW07cH .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uKKITW07cH .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uKKITW07cH .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-uKKITW07cH .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uKKITW07cH .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uKKITW07cH .dropdown-item:hover,
.cid-uKKITW07cH .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uKKITW07cH .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uKKITW07cH .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uKKITW07cH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-uKKITW07cH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uKKITW07cH .dropdown-menu,
.cid-uKKITW07cH .navbar.opened {
  background: #ffffff !important;
}
.cid-uKKITW07cH .nav-item:focus,
.cid-uKKITW07cH .nav-link:focus {
  outline: none;
}
.cid-uKKITW07cH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uKKITW07cH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uKKITW07cH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uKKITW07cH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uKKITW07cH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uKKITW07cH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uKKITW07cH .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uKKITW07cH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uKKITW07cH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uKKITW07cH .dropdown-item.active,
.cid-uKKITW07cH .dropdown-item:active {
  background-color: transparent;
}
.cid-uKKITW07cH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uKKITW07cH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uKKITW07cH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uKKITW07cH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uKKITW07cH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uKKITW07cH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uKKITW07cH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uKKITW07cH .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uKKITW07cH button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uKKITW07cH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uKKITW07cH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uKKITW07cH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uKKITW07cH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uKKITW07cH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uKKITW07cH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKKITW07cH nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uKKITW07cH nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uKKITW07cH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKKITW07cH .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uKKITW07cH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uKKITW07cH .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-uKKITW07cH .navbar {
    height: 70px;
  }
  .cid-uKKITW07cH .navbar.opened {
    height: auto;
  }
  .cid-uKKITW07cH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uKKITWPXLq {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uKKITWPXLq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKKITWPXLq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKKITXervx {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uKKITXervx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKKITXervx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKKITXervx .mbr-section-head {
  margin-bottom: 32px;
}
.cid-uKKITXervx .mbr-section-title {
  color: #24262b;
}
.cid-uKKITXervx .mbr-section-subtitle {
  color: #24262b;
}
.cid-uKKITXervx .items-row {
  row-gap: 32px;
}
.cid-uKKITXervx .item-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-uKKITXervx .item-wrapper img {
  width: 100%;
  aspect-ratio: calc(8 / (1 * 11));
  object-fit: cover;
  transition: all 0.3s;
}
.cid-uKKITXervx .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  z-index: 3;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  opacity: 0;
  color: #24262b;
  transform: translateX(-50%) translateY(-50%);
  background-color: #FFFFFF;
  transition: 0.3s;
}
.cid-uKKITXervx .item-wrapper .img-overlay {
  position: absolute;
  pointer-events: none;
  transition: all 0.3s;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #33363b;
  opacity: 0;
  z-index: 2;
}
.cid-uKKITXervx .item-wrapper:hover img {
  transform: scale(1.05);
}
.cid-uKKITXervx .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-uKKITXervx .item-wrapper:hover .img-overlay {
  opacity: 0.3;
}
.cid-uKKITXervx .mbr-item-subtitle {
  color: #24262b;
}
.cid-uKKITXervx .carousel-control,
.cid-uKKITXervx .close {
  background: #1b1b1b;
}
.cid-uKKITXervx .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uKKITXervx .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uKKITXervx .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uKKITXervx .carousel-control-next span {
  margin-left: 5px;
}
.cid-uKKITXervx .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-uKKITXervx .close::before {
  content: '\e91a';
}
.cid-uKKITXervx .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uKKITXervx .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-uKKITXervx .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uKKITXervx .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uKKITXervx .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uKKITXervx .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uKKITXervx .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-uKKITXervx .carousel-indicators li.active,
.cid-uKKITXervx .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uKKITXervx .carousel-indicators li::after,
.cid-uKKITXervx .carousel-indicators li::before {
  content: none;
}
.cid-uKKITXervx .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uKKITXervx .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uKKITXervx .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uKKITXervx .carousel-indicators {
    display: none;
  }
}
.cid-uKKITXervx .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uKKITXervx .carousel-inner > .active {
  display: block;
}
.cid-uKKITXervx .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uKKITXervx .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uKKITXervx .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uKKITXervx .carousel-control,
  .cid-uKKITXervx .carousel-indicators,
  .cid-uKKITXervx .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uKKITXervx .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uKKITXervx .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uKKITXervx .carousel-indicators .active,
.cid-uKKITXervx .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uKKITXervx .carousel-indicators .active {
  background: #fff;
}
.cid-uKKITXervx .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uKKITXervx .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uKKITXervx .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uKKITXervx .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uKKITXervx .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uKKITXervx .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uKKITXervx .carousel {
  width: 100%;
}
.cid-uKKITXervx .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uKKITXervx .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uKKITXervx .modal.fade .modal-dialog,
.cid-uKKITXervx .modal.in .modal-dialog {
  transform: none;
}
.cid-uKKITXervx .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uKKITXervx H6 {
  text-align: center;
}
.cid-uKKITY2YW3 {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uKKITY2YW3 .mbr-text {
  color: #000000;
}
.cid-uKKITY2YW3 .container {
  max-width: 1000px;
}
.cid-uKKITY2YW3 h4 {
  text-align: center;
}
.cid-uKKITY2YW3 p {
  text-align: center;
}
.cid-uKKITY2YW3 .row {
  justify-content: center;
}
.cid-uKKITY2YW3 .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-uKKITY2YW3 .mbr-iconfont {
  font-size: 1.5rem;
  color: #000000;
  display: block;
}
.cid-uKKITY2YW3 .card-title,
.cid-uKKITY2YW3 .card-img {
  color: #000000;
}
.cid-uKKITY2YW3 .icon-wrap {
  padding-bottom: 7.6rem;
}
.cid-uKKITY2YW3 .icon-wrap:before {
  content: '';
  position: absolute;
  background: #000000;
  bottom: 0rem;
  left: 50%;
  width: 2px;
  height: 90px;
}
.cid-uKKITY2YW3 img {
  margin-bottom: 5rem;
  width: auto;
  margin-left: auto;
  margin-right: auto;
}
.cid-uKKITY2YW3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKKITY2YW3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKKITYvB8l {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
  overflow: hidden;
}
.cid-uKC486yoEW {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uKC486yoEW .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
}
@media (max-width: 992px) {
  .cid-uKC486yoEW .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-uKC486yoEW .iconfont-wrapper {
  color: #103178 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-uKC486yoEW .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-uKC486yoEW .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-uKC486yoEW .container {
    padding: 0 1rem;
  }
}
.cid-uKC486yoEW .menu-tite {
  background: #6592e6;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffc800;
}
.cid-uKC486yoEW .nav-link {
  position: relative;
}
.cid-uKC486yoEW .nav-link:hover {
  color: #47b5ed !important;
}
.cid-uKC486yoEW nav.navbar {
  position: fixed;
}
.cid-uKC486yoEW .navbar {
  padding: 0!important;
  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-uKC486yoEW .navbar.opened {
  transition: all 0.3s;
}
.cid-uKC486yoEW .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uKC486yoEW .navbar .navbar-logo img {
  width: auto;
}
.cid-uKC486yoEW .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uKC486yoEW .navbar.collapsed {
  justify-content: center;
}
.cid-uKC486yoEW .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uKC486yoEW .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uKC486yoEW .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 7rem);
  }
}
.cid-uKC486yoEW .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uKC486yoEW .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uKC486yoEW .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-uKC486yoEW .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uKC486yoEW .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uKC486yoEW .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uKC486yoEW .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uKC486yoEW .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uKC486yoEW .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uKC486yoEW .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uKC486yoEW .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-uKC486yoEW .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uKC486yoEW .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uKC486yoEW .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uKC486yoEW .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uKC486yoEW .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uKC486yoEW .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uKC486yoEW .navbar.navbar-short {
  min-height: 60px;
}
.cid-uKC486yoEW .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uKC486yoEW .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uKC486yoEW .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-uKC486yoEW .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uKC486yoEW .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uKC486yoEW .dropdown-item:hover,
.cid-uKC486yoEW .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uKC486yoEW .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uKC486yoEW .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uKC486yoEW .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-uKC486yoEW .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uKC486yoEW .dropdown-menu,
.cid-uKC486yoEW .navbar.opened {
  background: #ffffff !important;
}
.cid-uKC486yoEW .nav-item:focus,
.cid-uKC486yoEW .nav-link:focus {
  outline: none;
}
.cid-uKC486yoEW .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uKC486yoEW .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uKC486yoEW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uKC486yoEW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uKC486yoEW .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uKC486yoEW .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uKC486yoEW .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uKC486yoEW .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uKC486yoEW .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uKC486yoEW .dropdown-item.active,
.cid-uKC486yoEW .dropdown-item:active {
  background-color: transparent;
}
.cid-uKC486yoEW .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uKC486yoEW .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uKC486yoEW .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uKC486yoEW .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uKC486yoEW .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uKC486yoEW .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uKC486yoEW ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uKC486yoEW .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uKC486yoEW button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uKC486yoEW button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uKC486yoEW button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uKC486yoEW button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uKC486yoEW button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uKC486yoEW button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uKC486yoEW nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKC486yoEW nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uKC486yoEW nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uKC486yoEW nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKC486yoEW .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uKC486yoEW a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uKC486yoEW .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-uKC486yoEW .navbar {
    height: 70px;
  }
  .cid-uKC486yoEW .navbar.opened {
    height: auto;
  }
  .cid-uKC486yoEW .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uKC487io76 {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uKC487io76 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKC487io76 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKC487Oq2Y {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uKC487Oq2Y .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKC487Oq2Y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKC487Oq2Y .mbr-section-head {
  margin-bottom: 32px;
}
.cid-uKC487Oq2Y .mbr-section-title {
  color: #24262b;
}
.cid-uKC487Oq2Y .mbr-section-subtitle {
  color: #24262b;
}
.cid-uKC487Oq2Y .items-row {
  row-gap: 32px;
}
.cid-uKC487Oq2Y .item-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-uKC487Oq2Y .item-wrapper img {
  width: 100%;
  aspect-ratio: calc(8 / (1 * 5));
  object-fit: cover;
  transition: all 0.3s;
}
.cid-uKC487Oq2Y .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  z-index: 3;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  opacity: 0;
  color: #24262b;
  transform: translateX(-50%) translateY(-50%);
  background-color: #FFFFFF;
  transition: 0.3s;
}
.cid-uKC487Oq2Y .item-wrapper .img-overlay {
  position: absolute;
  pointer-events: none;
  transition: all 0.3s;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #33363b;
  opacity: 0;
  z-index: 2;
}
.cid-uKC487Oq2Y .item-wrapper:hover img {
  transform: scale(1.05);
}
.cid-uKC487Oq2Y .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-uKC487Oq2Y .item-wrapper:hover .img-overlay {
  opacity: 0.3;
}
.cid-uKC487Oq2Y .mbr-item-subtitle {
  color: #24262b;
}
.cid-uKC487Oq2Y .carousel-control,
.cid-uKC487Oq2Y .close {
  background: #1b1b1b;
}
.cid-uKC487Oq2Y .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uKC487Oq2Y .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uKC487Oq2Y .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uKC487Oq2Y .carousel-control-next span {
  margin-left: 5px;
}
.cid-uKC487Oq2Y .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-uKC487Oq2Y .close::before {
  content: '\e91a';
}
.cid-uKC487Oq2Y .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uKC487Oq2Y .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-uKC487Oq2Y .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uKC487Oq2Y .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uKC487Oq2Y .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uKC487Oq2Y .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uKC487Oq2Y .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-uKC487Oq2Y .carousel-indicators li.active,
.cid-uKC487Oq2Y .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uKC487Oq2Y .carousel-indicators li::after,
.cid-uKC487Oq2Y .carousel-indicators li::before {
  content: none;
}
.cid-uKC487Oq2Y .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uKC487Oq2Y .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uKC487Oq2Y .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uKC487Oq2Y .carousel-indicators {
    display: none;
  }
}
.cid-uKC487Oq2Y .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uKC487Oq2Y .carousel-inner > .active {
  display: block;
}
.cid-uKC487Oq2Y .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uKC487Oq2Y .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uKC487Oq2Y .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uKC487Oq2Y .carousel-control,
  .cid-uKC487Oq2Y .carousel-indicators,
  .cid-uKC487Oq2Y .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uKC487Oq2Y .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uKC487Oq2Y .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uKC487Oq2Y .carousel-indicators .active,
.cid-uKC487Oq2Y .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uKC487Oq2Y .carousel-indicators .active {
  background: #fff;
}
.cid-uKC487Oq2Y .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uKC487Oq2Y .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uKC487Oq2Y .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uKC487Oq2Y .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uKC487Oq2Y .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uKC487Oq2Y .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uKC487Oq2Y .carousel {
  width: 100%;
}
.cid-uKC487Oq2Y .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uKC487Oq2Y .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uKC487Oq2Y .modal.fade .modal-dialog,
.cid-uKC487Oq2Y .modal.in .modal-dialog {
  transform: none;
}
.cid-uKC487Oq2Y .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uKC487Oq2Y H6 {
  text-align: center;
}
.cid-uKC488uLWd {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uKC488uLWd .mbr-text {
  color: #000000;
}
.cid-uKC488uLWd .container {
  max-width: 1000px;
}
.cid-uKC488uLWd h4 {
  text-align: center;
}
.cid-uKC488uLWd p {
  text-align: center;
}
.cid-uKC488uLWd .row {
  justify-content: center;
}
.cid-uKC488uLWd .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-uKC488uLWd .mbr-iconfont {
  font-size: 1.5rem;
  color: #000000;
  display: block;
}
.cid-uKC488uLWd .card-title,
.cid-uKC488uLWd .card-img {
  color: #000000;
}
.cid-uKC488uLWd .icon-wrap {
  padding-bottom: 7.6rem;
}
.cid-uKC488uLWd .icon-wrap:before {
  content: '';
  position: absolute;
  background: #000000;
  bottom: 0rem;
  left: 50%;
  width: 2px;
  height: 90px;
}
.cid-uKC488uLWd img {
  margin-bottom: 5rem;
  width: auto;
  margin-left: auto;
  margin-right: auto;
}
.cid-uKC488uLWd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKC488uLWd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKC489cqoN {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
  overflow: hidden;
}
.cid-uKKKM27gxD {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uKKKM27gxD .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
}
@media (max-width: 992px) {
  .cid-uKKKM27gxD .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-uKKKM27gxD .iconfont-wrapper {
  color: #103178 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-uKKKM27gxD .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-uKKKM27gxD .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-uKKKM27gxD .container {
    padding: 0 1rem;
  }
}
.cid-uKKKM27gxD .menu-tite {
  background: #6592e6;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffc800;
}
.cid-uKKKM27gxD .nav-link {
  position: relative;
}
.cid-uKKKM27gxD .nav-link:hover {
  color: #47b5ed !important;
}
.cid-uKKKM27gxD nav.navbar {
  position: fixed;
}
.cid-uKKKM27gxD .navbar {
  padding: 0!important;
  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-uKKKM27gxD .navbar.opened {
  transition: all 0.3s;
}
.cid-uKKKM27gxD .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uKKKM27gxD .navbar .navbar-logo img {
  width: auto;
}
.cid-uKKKM27gxD .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uKKKM27gxD .navbar.collapsed {
  justify-content: center;
}
.cid-uKKKM27gxD .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uKKKM27gxD .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uKKKM27gxD .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 7rem);
  }
}
.cid-uKKKM27gxD .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uKKKM27gxD .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uKKKM27gxD .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-uKKKM27gxD .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uKKKM27gxD .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uKKKM27gxD .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uKKKM27gxD .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uKKKM27gxD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uKKKM27gxD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uKKKM27gxD .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uKKKM27gxD .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-uKKKM27gxD .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uKKKM27gxD .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uKKKM27gxD .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uKKKM27gxD .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uKKKM27gxD .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uKKKM27gxD .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uKKKM27gxD .navbar.navbar-short {
  min-height: 60px;
}
.cid-uKKKM27gxD .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uKKKM27gxD .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uKKKM27gxD .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-uKKKM27gxD .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uKKKM27gxD .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uKKKM27gxD .dropdown-item:hover,
.cid-uKKKM27gxD .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uKKKM27gxD .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uKKKM27gxD .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uKKKM27gxD .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-uKKKM27gxD .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uKKKM27gxD .dropdown-menu,
.cid-uKKKM27gxD .navbar.opened {
  background: #ffffff !important;
}
.cid-uKKKM27gxD .nav-item:focus,
.cid-uKKKM27gxD .nav-link:focus {
  outline: none;
}
.cid-uKKKM27gxD .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uKKKM27gxD .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uKKKM27gxD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uKKKM27gxD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uKKKM27gxD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uKKKM27gxD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uKKKM27gxD .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uKKKM27gxD .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uKKKM27gxD .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uKKKM27gxD .dropdown-item.active,
.cid-uKKKM27gxD .dropdown-item:active {
  background-color: transparent;
}
.cid-uKKKM27gxD .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uKKKM27gxD .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uKKKM27gxD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uKKKM27gxD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uKKKM27gxD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uKKKM27gxD .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uKKKM27gxD ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uKKKM27gxD .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uKKKM27gxD button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uKKKM27gxD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uKKKM27gxD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uKKKM27gxD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uKKKM27gxD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uKKKM27gxD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uKKKM27gxD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKKKM27gxD nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uKKKM27gxD nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uKKKM27gxD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKKKM27gxD .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uKKKM27gxD a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uKKKM27gxD .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-uKKKM27gxD .navbar {
    height: 70px;
  }
  .cid-uKKKM27gxD .navbar.opened {
    height: auto;
  }
  .cid-uKKKM27gxD .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uKKKM2KNzc {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uKKKM2KNzc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKKKM2KNzc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKKKZXnueb {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uKKKZXnueb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKKKZXnueb .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-uKKKZXnueb .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uKKKZXnueb .row {
  flex-direction: row-reverse;
}
.cid-uKKKZXnueb img {
  width: 100%;
}
.cid-uKKLc1Smgs {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uKKLc1Smgs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKKLc1Smgs .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-uKKLc1Smgs .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uKKLc1Smgs .row {
  flex-direction: row-reverse;
}
.cid-uKKLc1Smgs img {
  width: 100%;
}
.cid-uKKLjpCIl7 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uKKLjpCIl7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKKLjpCIl7 .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-uKKLjpCIl7 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uKKLjpCIl7 .row {
  flex-direction: row-reverse;
}
.cid-uKKLjpCIl7 img {
  width: 100%;
}
.cid-uKKKM3KT7K {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uKKKM3KT7K .mbr-text {
  color: #000000;
}
.cid-uKKKM3KT7K .container {
  max-width: 1000px;
}
.cid-uKKKM3KT7K h4 {
  text-align: center;
}
.cid-uKKKM3KT7K p {
  text-align: center;
}
.cid-uKKKM3KT7K .row {
  justify-content: center;
}
.cid-uKKKM3KT7K .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-uKKKM3KT7K .mbr-iconfont {
  font-size: 1.5rem;
  color: #000000;
  display: block;
}
.cid-uKKKM3KT7K .card-title,
.cid-uKKKM3KT7K .card-img {
  color: #000000;
}
.cid-uKKKM3KT7K .icon-wrap {
  padding-bottom: 7.6rem;
}
.cid-uKKKM3KT7K .icon-wrap:before {
  content: '';
  position: absolute;
  background: #000000;
  bottom: 0rem;
  left: 50%;
  width: 2px;
  height: 90px;
}
.cid-uKKKM3KT7K img {
  margin-bottom: 5rem;
  width: auto;
  margin-left: auto;
  margin-right: auto;
}
.cid-uKKKM3KT7K .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKKKM3KT7K .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKKKM4dV0D {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
  overflow: hidden;
}
.cid-uKKMexl3LG {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uKKMexl3LG .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
}
@media (max-width: 992px) {
  .cid-uKKMexl3LG .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-uKKMexl3LG .iconfont-wrapper {
  color: #103178 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-uKKMexl3LG .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-uKKMexl3LG .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-uKKMexl3LG .container {
    padding: 0 1rem;
  }
}
.cid-uKKMexl3LG .menu-tite {
  background: #6592e6;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffc800;
}
.cid-uKKMexl3LG .nav-link {
  position: relative;
}
.cid-uKKMexl3LG .nav-link:hover {
  color: #47b5ed !important;
}
.cid-uKKMexl3LG nav.navbar {
  position: fixed;
}
.cid-uKKMexl3LG .navbar {
  padding: 0!important;
  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-uKKMexl3LG .navbar.opened {
  transition: all 0.3s;
}
.cid-uKKMexl3LG .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uKKMexl3LG .navbar .navbar-logo img {
  width: auto;
}
.cid-uKKMexl3LG .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uKKMexl3LG .navbar.collapsed {
  justify-content: center;
}
.cid-uKKMexl3LG .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uKKMexl3LG .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uKKMexl3LG .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 7rem);
  }
}
.cid-uKKMexl3LG .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uKKMexl3LG .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uKKMexl3LG .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-uKKMexl3LG .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uKKMexl3LG .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uKKMexl3LG .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uKKMexl3LG .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uKKMexl3LG .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uKKMexl3LG .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uKKMexl3LG .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uKKMexl3LG .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-uKKMexl3LG .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uKKMexl3LG .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uKKMexl3LG .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uKKMexl3LG .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uKKMexl3LG .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uKKMexl3LG .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uKKMexl3LG .navbar.navbar-short {
  min-height: 60px;
}
.cid-uKKMexl3LG .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uKKMexl3LG .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uKKMexl3LG .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-uKKMexl3LG .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uKKMexl3LG .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uKKMexl3LG .dropdown-item:hover,
.cid-uKKMexl3LG .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uKKMexl3LG .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uKKMexl3LG .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uKKMexl3LG .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-uKKMexl3LG .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uKKMexl3LG .dropdown-menu,
.cid-uKKMexl3LG .navbar.opened {
  background: #ffffff !important;
}
.cid-uKKMexl3LG .nav-item:focus,
.cid-uKKMexl3LG .nav-link:focus {
  outline: none;
}
.cid-uKKMexl3LG .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uKKMexl3LG .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uKKMexl3LG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uKKMexl3LG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uKKMexl3LG .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uKKMexl3LG .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uKKMexl3LG .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uKKMexl3LG .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uKKMexl3LG .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uKKMexl3LG .dropdown-item.active,
.cid-uKKMexl3LG .dropdown-item:active {
  background-color: transparent;
}
.cid-uKKMexl3LG .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uKKMexl3LG .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uKKMexl3LG .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uKKMexl3LG .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uKKMexl3LG .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uKKMexl3LG .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uKKMexl3LG ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uKKMexl3LG .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uKKMexl3LG button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uKKMexl3LG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uKKMexl3LG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uKKMexl3LG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uKKMexl3LG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uKKMexl3LG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uKKMexl3LG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKKMexl3LG nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uKKMexl3LG nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uKKMexl3LG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKKMexl3LG .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uKKMexl3LG a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uKKMexl3LG .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-uKKMexl3LG .navbar {
    height: 70px;
  }
  .cid-uKKMexl3LG .navbar.opened {
    height: auto;
  }
  .cid-uKKMexl3LG .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uKKMey0nOp {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uKKMey0nOp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKKMey0nOp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKL2LEWIwV {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uKL2LEWIwV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKL2LEWIwV .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-uKL2LEWIwV .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uKL2LEWIwV .row {
  flex-direction: row-reverse;
}
.cid-uKL2LEWIwV img {
  width: 100%;
}
.cid-uKKMeyyiD9 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uKKMeyyiD9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKKMeyyiD9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKKMeyyiD9 .mbr-section-head {
  margin-bottom: 32px;
}
.cid-uKKMeyyiD9 .mbr-section-title {
  color: #24262b;
}
.cid-uKKMeyyiD9 .mbr-section-subtitle {
  color: #24262b;
}
.cid-uKKMeyyiD9 .items-row {
  row-gap: 32px;
}
.cid-uKKMeyyiD9 .item-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-uKKMeyyiD9 .item-wrapper img {
  width: 100%;
  aspect-ratio: calc(8 / (1 * 11));
  object-fit: cover;
  transition: all 0.3s;
}
.cid-uKKMeyyiD9 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  z-index: 3;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  opacity: 0;
  color: #24262b;
  transform: translateX(-50%) translateY(-50%);
  background-color: #FFFFFF;
  transition: 0.3s;
}
.cid-uKKMeyyiD9 .item-wrapper .img-overlay {
  position: absolute;
  pointer-events: none;
  transition: all 0.3s;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #33363b;
  opacity: 0;
  z-index: 2;
}
.cid-uKKMeyyiD9 .item-wrapper:hover img {
  transform: scale(1.05);
}
.cid-uKKMeyyiD9 .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-uKKMeyyiD9 .item-wrapper:hover .img-overlay {
  opacity: 0.3;
}
.cid-uKKMeyyiD9 .mbr-item-subtitle {
  color: #24262b;
}
.cid-uKKMeyyiD9 .carousel-control,
.cid-uKKMeyyiD9 .close {
  background: #1b1b1b;
}
.cid-uKKMeyyiD9 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uKKMeyyiD9 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uKKMeyyiD9 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uKKMeyyiD9 .carousel-control-next span {
  margin-left: 5px;
}
.cid-uKKMeyyiD9 .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-uKKMeyyiD9 .close::before {
  content: '\e91a';
}
.cid-uKKMeyyiD9 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uKKMeyyiD9 .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-uKKMeyyiD9 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uKKMeyyiD9 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uKKMeyyiD9 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uKKMeyyiD9 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uKKMeyyiD9 .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-uKKMeyyiD9 .carousel-indicators li.active,
.cid-uKKMeyyiD9 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uKKMeyyiD9 .carousel-indicators li::after,
.cid-uKKMeyyiD9 .carousel-indicators li::before {
  content: none;
}
.cid-uKKMeyyiD9 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uKKMeyyiD9 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uKKMeyyiD9 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uKKMeyyiD9 .carousel-indicators {
    display: none;
  }
}
.cid-uKKMeyyiD9 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uKKMeyyiD9 .carousel-inner > .active {
  display: block;
}
.cid-uKKMeyyiD9 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uKKMeyyiD9 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uKKMeyyiD9 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uKKMeyyiD9 .carousel-control,
  .cid-uKKMeyyiD9 .carousel-indicators,
  .cid-uKKMeyyiD9 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uKKMeyyiD9 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uKKMeyyiD9 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uKKMeyyiD9 .carousel-indicators .active,
.cid-uKKMeyyiD9 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uKKMeyyiD9 .carousel-indicators .active {
  background: #fff;
}
.cid-uKKMeyyiD9 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uKKMeyyiD9 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uKKMeyyiD9 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uKKMeyyiD9 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uKKMeyyiD9 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uKKMeyyiD9 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uKKMeyyiD9 .carousel {
  width: 100%;
}
.cid-uKKMeyyiD9 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uKKMeyyiD9 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uKKMeyyiD9 .modal.fade .modal-dialog,
.cid-uKKMeyyiD9 .modal.in .modal-dialog {
  transform: none;
}
.cid-uKKMeyyiD9 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uKKMeyyiD9 H6 {
  text-align: center;
}
.cid-uKL2WyeyKv {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uKL2WyeyKv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKL2WyeyKv .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-uKL2WyeyKv .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uKL2WyeyKv .row {
  flex-direction: row-reverse;
}
.cid-uKL2WyeyKv img {
  width: 100%;
}
.cid-uKL3bquAOJ {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uKL3bquAOJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKL3bquAOJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKL3bquAOJ .mbr-section-head {
  margin-bottom: 32px;
}
.cid-uKL3bquAOJ .mbr-section-title {
  color: #24262b;
}
.cid-uKL3bquAOJ .mbr-section-subtitle {
  color: #24262b;
}
.cid-uKL3bquAOJ .items-row {
  row-gap: 32px;
}
.cid-uKL3bquAOJ .item-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-uKL3bquAOJ .item-wrapper img {
  width: 100%;
  aspect-ratio: calc(8 / (1 * 11));
  object-fit: cover;
  transition: all 0.3s;
}
.cid-uKL3bquAOJ .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  z-index: 3;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  opacity: 0;
  color: #24262b;
  transform: translateX(-50%) translateY(-50%);
  background-color: #FFFFFF;
  transition: 0.3s;
}
.cid-uKL3bquAOJ .item-wrapper .img-overlay {
  position: absolute;
  pointer-events: none;
  transition: all 0.3s;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #33363b;
  opacity: 0;
  z-index: 2;
}
.cid-uKL3bquAOJ .item-wrapper:hover img {
  transform: scale(1.05);
}
.cid-uKL3bquAOJ .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-uKL3bquAOJ .item-wrapper:hover .img-overlay {
  opacity: 0.3;
}
.cid-uKL3bquAOJ .mbr-item-subtitle {
  color: #24262b;
}
.cid-uKL3bquAOJ .carousel-control,
.cid-uKL3bquAOJ .close {
  background: #1b1b1b;
}
.cid-uKL3bquAOJ .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uKL3bquAOJ .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uKL3bquAOJ .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uKL3bquAOJ .carousel-control-next span {
  margin-left: 5px;
}
.cid-uKL3bquAOJ .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-uKL3bquAOJ .close::before {
  content: '\e91a';
}
.cid-uKL3bquAOJ .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uKL3bquAOJ .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-uKL3bquAOJ .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uKL3bquAOJ .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uKL3bquAOJ .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uKL3bquAOJ .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uKL3bquAOJ .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-uKL3bquAOJ .carousel-indicators li.active,
.cid-uKL3bquAOJ .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uKL3bquAOJ .carousel-indicators li::after,
.cid-uKL3bquAOJ .carousel-indicators li::before {
  content: none;
}
.cid-uKL3bquAOJ .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uKL3bquAOJ .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uKL3bquAOJ .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uKL3bquAOJ .carousel-indicators {
    display: none;
  }
}
.cid-uKL3bquAOJ .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uKL3bquAOJ .carousel-inner > .active {
  display: block;
}
.cid-uKL3bquAOJ .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uKL3bquAOJ .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uKL3bquAOJ .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uKL3bquAOJ .carousel-control,
  .cid-uKL3bquAOJ .carousel-indicators,
  .cid-uKL3bquAOJ .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uKL3bquAOJ .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uKL3bquAOJ .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uKL3bquAOJ .carousel-indicators .active,
.cid-uKL3bquAOJ .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uKL3bquAOJ .carousel-indicators .active {
  background: #fff;
}
.cid-uKL3bquAOJ .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uKL3bquAOJ .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uKL3bquAOJ .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uKL3bquAOJ .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uKL3bquAOJ .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uKL3bquAOJ .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uKL3bquAOJ .carousel {
  width: 100%;
}
.cid-uKL3bquAOJ .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uKL3bquAOJ .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uKL3bquAOJ .modal.fade .modal-dialog,
.cid-uKL3bquAOJ .modal.in .modal-dialog {
  transform: none;
}
.cid-uKL3bquAOJ .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uKL3bquAOJ H6 {
  text-align: center;
}
.cid-uKKMeza9lU {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uKKMeza9lU .mbr-text {
  color: #000000;
}
.cid-uKKMeza9lU .container {
  max-width: 1000px;
}
.cid-uKKMeza9lU h4 {
  text-align: center;
}
.cid-uKKMeza9lU p {
  text-align: center;
}
.cid-uKKMeza9lU .row {
  justify-content: center;
}
.cid-uKKMeza9lU .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-uKKMeza9lU .mbr-iconfont {
  font-size: 1.5rem;
  color: #000000;
  display: block;
}
.cid-uKKMeza9lU .card-title,
.cid-uKKMeza9lU .card-img {
  color: #000000;
}
.cid-uKKMeza9lU .icon-wrap {
  padding-bottom: 7.6rem;
}
.cid-uKKMeza9lU .icon-wrap:before {
  content: '';
  position: absolute;
  background: #000000;
  bottom: 0rem;
  left: 50%;
  width: 2px;
  height: 90px;
}
.cid-uKKMeza9lU img {
  margin-bottom: 5rem;
  width: auto;
  margin-left: auto;
  margin-right: auto;
}
.cid-uKKMeza9lU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKKMeza9lU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKKMezJoOT {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
  overflow: hidden;
}
.cid-uKKOo93Awn {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uKKOo93Awn .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
}
@media (max-width: 992px) {
  .cid-uKKOo93Awn .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-uKKOo93Awn .iconfont-wrapper {
  color: #103178 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-uKKOo93Awn .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-uKKOo93Awn .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-uKKOo93Awn .container {
    padding: 0 1rem;
  }
}
.cid-uKKOo93Awn .menu-tite {
  background: #6592e6;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffc800;
}
.cid-uKKOo93Awn .nav-link {
  position: relative;
}
.cid-uKKOo93Awn .nav-link:hover {
  color: #47b5ed !important;
}
.cid-uKKOo93Awn nav.navbar {
  position: fixed;
}
.cid-uKKOo93Awn .navbar {
  padding: 0!important;
  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-uKKOo93Awn .navbar.opened {
  transition: all 0.3s;
}
.cid-uKKOo93Awn .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uKKOo93Awn .navbar .navbar-logo img {
  width: auto;
}
.cid-uKKOo93Awn .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uKKOo93Awn .navbar.collapsed {
  justify-content: center;
}
.cid-uKKOo93Awn .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uKKOo93Awn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uKKOo93Awn .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 7rem);
  }
}
.cid-uKKOo93Awn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uKKOo93Awn .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uKKOo93Awn .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-uKKOo93Awn .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uKKOo93Awn .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uKKOo93Awn .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uKKOo93Awn .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uKKOo93Awn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uKKOo93Awn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uKKOo93Awn .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uKKOo93Awn .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-uKKOo93Awn .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uKKOo93Awn .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uKKOo93Awn .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uKKOo93Awn .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uKKOo93Awn .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uKKOo93Awn .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uKKOo93Awn .navbar.navbar-short {
  min-height: 60px;
}
.cid-uKKOo93Awn .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uKKOo93Awn .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uKKOo93Awn .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-uKKOo93Awn .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uKKOo93Awn .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uKKOo93Awn .dropdown-item:hover,
.cid-uKKOo93Awn .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uKKOo93Awn .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uKKOo93Awn .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uKKOo93Awn .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-uKKOo93Awn .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uKKOo93Awn .dropdown-menu,
.cid-uKKOo93Awn .navbar.opened {
  background: #ffffff !important;
}
.cid-uKKOo93Awn .nav-item:focus,
.cid-uKKOo93Awn .nav-link:focus {
  outline: none;
}
.cid-uKKOo93Awn .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uKKOo93Awn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uKKOo93Awn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uKKOo93Awn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uKKOo93Awn .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uKKOo93Awn .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uKKOo93Awn .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uKKOo93Awn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uKKOo93Awn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uKKOo93Awn .dropdown-item.active,
.cid-uKKOo93Awn .dropdown-item:active {
  background-color: transparent;
}
.cid-uKKOo93Awn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uKKOo93Awn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uKKOo93Awn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uKKOo93Awn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uKKOo93Awn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uKKOo93Awn .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uKKOo93Awn ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uKKOo93Awn .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uKKOo93Awn button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uKKOo93Awn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uKKOo93Awn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uKKOo93Awn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uKKOo93Awn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uKKOo93Awn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uKKOo93Awn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKKOo93Awn nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uKKOo93Awn nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uKKOo93Awn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKKOo93Awn .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uKKOo93Awn a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uKKOo93Awn .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-uKKOo93Awn .navbar {
    height: 70px;
  }
  .cid-uKKOo93Awn .navbar.opened {
    height: auto;
  }
  .cid-uKKOo93Awn .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uKKOo9Mjuu {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uKKOo9Mjuu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKKOo9Mjuu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKKOoae0z2 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uKKOoae0z2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKKOoae0z2 .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-uKKOoae0z2 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uKKOoae0z2 .row {
  flex-direction: row-reverse;
}
.cid-uKKOoae0z2 img {
  width: 100%;
}
.cid-uKKPqszY9I {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uKKPqszY9I .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKKPqszY9I .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-uKKPqszY9I .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uKKPqszY9I .row {
  flex-direction: row-reverse;
}
.cid-uKKPqszY9I img {
  width: 100%;
}
.cid-uKKTyiXQNw {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uKKTyiXQNw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKKTyiXQNw .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-uKKTyiXQNw .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uKKTyiXQNw .row {
  flex-direction: row-reverse;
}
.cid-uKKTyiXQNw img {
  width: 100%;
}
.cid-uKKTPB6yvk {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uKKTPB6yvk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKKTPB6yvk .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-uKKTPB6yvk .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uKKTPB6yvk .row {
  flex-direction: row-reverse;
}
.cid-uKKTPB6yvk img {
  width: 100%;
}
.cid-uKKU0VC4HO {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uKKU0VC4HO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKKU0VC4HO .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-uKKU0VC4HO .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uKKU0VC4HO .row {
  flex-direction: row-reverse;
}
.cid-uKKU0VC4HO img {
  width: 100%;
}
.cid-uKKOobxmoG {
  padding-top: 10rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uKKOobxmoG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKKOobxmoG .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-uKKOobxmoG .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uKKOobxmoG .row {
  flex-direction: row-reverse;
}
.cid-uKKOobxmoG img {
  width: 100%;
}
.cid-uKKOOJHYRR {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uKKOOJHYRR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKKOOJHYRR .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-uKKOOJHYRR .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uKKOOJHYRR .row {
  flex-direction: row-reverse;
}
.cid-uKKOOJHYRR img {
  width: 100%;
}
.cid-uKKPao7qMx {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uKKPao7qMx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKKPao7qMx .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-uKKPao7qMx .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uKKPao7qMx .row {
  flex-direction: row-reverse;
}
.cid-uKKPao7qMx img {
  width: 100%;
}
.cid-uKKPgw9uE7 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uKKPgw9uE7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKKPgw9uE7 .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-uKKPgw9uE7 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uKKPgw9uE7 .row {
  flex-direction: row-reverse;
}
.cid-uKKPgw9uE7 img {
  width: 100%;
}
.cid-uKKOocXaK6 {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uKKOocXaK6 .mbr-text {
  color: #000000;
}
.cid-uKKOocXaK6 .container {
  max-width: 1000px;
}
.cid-uKKOocXaK6 h4 {
  text-align: center;
}
.cid-uKKOocXaK6 p {
  text-align: center;
}
.cid-uKKOocXaK6 .row {
  justify-content: center;
}
.cid-uKKOocXaK6 .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-uKKOocXaK6 .mbr-iconfont {
  font-size: 1.5rem;
  color: #000000;
  display: block;
}
.cid-uKKOocXaK6 .card-title,
.cid-uKKOocXaK6 .card-img {
  color: #000000;
}
.cid-uKKOocXaK6 .icon-wrap {
  padding-bottom: 7.6rem;
}
.cid-uKKOocXaK6 .icon-wrap:before {
  content: '';
  position: absolute;
  background: #000000;
  bottom: 0rem;
  left: 50%;
  width: 2px;
  height: 90px;
}
.cid-uKKOocXaK6 img {
  margin-bottom: 5rem;
  width: auto;
  margin-left: auto;
  margin-right: auto;
}
.cid-uKKOocXaK6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKKOocXaK6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKKOody6iO {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
  overflow: hidden;
}
.cid-uMjCv1GYFb {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uMjCv1GYFb .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
}
@media (max-width: 992px) {
  .cid-uMjCv1GYFb .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-uMjCv1GYFb .iconfont-wrapper {
  color: #103178 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-uMjCv1GYFb .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-uMjCv1GYFb .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-uMjCv1GYFb .container {
    padding: 0 1rem;
  }
}
.cid-uMjCv1GYFb .menu-tite {
  background: #6592e6;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffc800;
}
.cid-uMjCv1GYFb .nav-link {
  position: relative;
}
.cid-uMjCv1GYFb .nav-link:hover {
  color: #47b5ed !important;
}
.cid-uMjCv1GYFb nav.navbar {
  position: fixed;
}
.cid-uMjCv1GYFb .navbar {
  padding: 0!important;
  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-uMjCv1GYFb .navbar.opened {
  transition: all 0.3s;
}
.cid-uMjCv1GYFb .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uMjCv1GYFb .navbar .navbar-logo img {
  width: auto;
}
.cid-uMjCv1GYFb .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uMjCv1GYFb .navbar.collapsed {
  justify-content: center;
}
.cid-uMjCv1GYFb .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uMjCv1GYFb .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uMjCv1GYFb .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 7rem);
  }
}
.cid-uMjCv1GYFb .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uMjCv1GYFb .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uMjCv1GYFb .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-uMjCv1GYFb .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uMjCv1GYFb .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uMjCv1GYFb .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uMjCv1GYFb .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uMjCv1GYFb .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uMjCv1GYFb .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uMjCv1GYFb .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uMjCv1GYFb .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-uMjCv1GYFb .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uMjCv1GYFb .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uMjCv1GYFb .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uMjCv1GYFb .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uMjCv1GYFb .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uMjCv1GYFb .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uMjCv1GYFb .navbar.navbar-short {
  min-height: 60px;
}
.cid-uMjCv1GYFb .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uMjCv1GYFb .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uMjCv1GYFb .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-uMjCv1GYFb .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uMjCv1GYFb .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uMjCv1GYFb .dropdown-item:hover,
.cid-uMjCv1GYFb .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uMjCv1GYFb .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uMjCv1GYFb .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uMjCv1GYFb .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-uMjCv1GYFb .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uMjCv1GYFb .dropdown-menu,
.cid-uMjCv1GYFb .navbar.opened {
  background: #ffffff !important;
}
.cid-uMjCv1GYFb .nav-item:focus,
.cid-uMjCv1GYFb .nav-link:focus {
  outline: none;
}
.cid-uMjCv1GYFb .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uMjCv1GYFb .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uMjCv1GYFb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uMjCv1GYFb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uMjCv1GYFb .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uMjCv1GYFb .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uMjCv1GYFb .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uMjCv1GYFb .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uMjCv1GYFb .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uMjCv1GYFb .dropdown-item.active,
.cid-uMjCv1GYFb .dropdown-item:active {
  background-color: transparent;
}
.cid-uMjCv1GYFb .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uMjCv1GYFb .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uMjCv1GYFb .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uMjCv1GYFb .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uMjCv1GYFb .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uMjCv1GYFb .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uMjCv1GYFb ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uMjCv1GYFb .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uMjCv1GYFb button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uMjCv1GYFb button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uMjCv1GYFb button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uMjCv1GYFb button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMjCv1GYFb button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMjCv1GYFb button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uMjCv1GYFb nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMjCv1GYFb nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uMjCv1GYFb nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uMjCv1GYFb nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMjCv1GYFb .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uMjCv1GYFb a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uMjCv1GYFb .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-uMjCv1GYFb .navbar {
    height: 70px;
  }
  .cid-uMjCv1GYFb .navbar.opened {
    height: auto;
  }
  .cid-uMjCv1GYFb .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uMjCv4aN5N {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uMjCv4aN5N .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMjCv4aN5N .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMjCv5mRr3 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uMjCv5mRr3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMjCv5mRr3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMjCv5mRr3 .mbr-section-head {
  margin-bottom: 32px;
}
.cid-uMjCv5mRr3 .mbr-section-title {
  color: #24262b;
}
.cid-uMjCv5mRr3 .mbr-section-subtitle {
  color: #24262b;
}
.cid-uMjCv5mRr3 .items-row {
  row-gap: 32px;
}
.cid-uMjCv5mRr3 .item-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-uMjCv5mRr3 .item-wrapper img {
  width: 100%;
  aspect-ratio: calc(8 / (1 * 11));
  object-fit: cover;
  transition: all 0.3s;
}
.cid-uMjCv5mRr3 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  z-index: 3;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  opacity: 0;
  color: #24262b;
  transform: translateX(-50%) translateY(-50%);
  background-color: #FFFFFF;
  transition: 0.3s;
}
.cid-uMjCv5mRr3 .item-wrapper .img-overlay {
  position: absolute;
  pointer-events: none;
  transition: all 0.3s;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #33363b;
  opacity: 0;
  z-index: 2;
}
.cid-uMjCv5mRr3 .item-wrapper:hover img {
  transform: scale(1.05);
}
.cid-uMjCv5mRr3 .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-uMjCv5mRr3 .item-wrapper:hover .img-overlay {
  opacity: 0.3;
}
.cid-uMjCv5mRr3 .mbr-item-subtitle {
  color: #24262b;
}
.cid-uMjCv5mRr3 .carousel-control,
.cid-uMjCv5mRr3 .close {
  background: #1b1b1b;
}
.cid-uMjCv5mRr3 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uMjCv5mRr3 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uMjCv5mRr3 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uMjCv5mRr3 .carousel-control-next span {
  margin-left: 5px;
}
.cid-uMjCv5mRr3 .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-uMjCv5mRr3 .close::before {
  content: '\e91a';
}
.cid-uMjCv5mRr3 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uMjCv5mRr3 .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-uMjCv5mRr3 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uMjCv5mRr3 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uMjCv5mRr3 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uMjCv5mRr3 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uMjCv5mRr3 .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-uMjCv5mRr3 .carousel-indicators li.active,
.cid-uMjCv5mRr3 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uMjCv5mRr3 .carousel-indicators li::after,
.cid-uMjCv5mRr3 .carousel-indicators li::before {
  content: none;
}
.cid-uMjCv5mRr3 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uMjCv5mRr3 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uMjCv5mRr3 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uMjCv5mRr3 .carousel-indicators {
    display: none;
  }
}
.cid-uMjCv5mRr3 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uMjCv5mRr3 .carousel-inner > .active {
  display: block;
}
.cid-uMjCv5mRr3 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uMjCv5mRr3 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uMjCv5mRr3 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uMjCv5mRr3 .carousel-control,
  .cid-uMjCv5mRr3 .carousel-indicators,
  .cid-uMjCv5mRr3 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uMjCv5mRr3 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uMjCv5mRr3 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uMjCv5mRr3 .carousel-indicators .active,
.cid-uMjCv5mRr3 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uMjCv5mRr3 .carousel-indicators .active {
  background: #fff;
}
.cid-uMjCv5mRr3 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uMjCv5mRr3 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uMjCv5mRr3 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uMjCv5mRr3 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uMjCv5mRr3 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uMjCv5mRr3 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uMjCv5mRr3 .carousel {
  width: 100%;
}
.cid-uMjCv5mRr3 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uMjCv5mRr3 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uMjCv5mRr3 .modal.fade .modal-dialog,
.cid-uMjCv5mRr3 .modal.in .modal-dialog {
  transform: none;
}
.cid-uMjCv5mRr3 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uMjCv5mRr3 H6 {
  text-align: center;
}
.cid-uMjCv6SE9p {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uMjCv6SE9p .mbr-text {
  color: #000000;
}
.cid-uMjCv6SE9p .container {
  max-width: 1000px;
}
.cid-uMjCv6SE9p h4 {
  text-align: center;
}
.cid-uMjCv6SE9p p {
  text-align: center;
}
.cid-uMjCv6SE9p .row {
  justify-content: center;
}
.cid-uMjCv6SE9p .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-uMjCv6SE9p .mbr-iconfont {
  font-size: 1.5rem;
  color: #000000;
  display: block;
}
.cid-uMjCv6SE9p .card-title,
.cid-uMjCv6SE9p .card-img {
  color: #000000;
}
.cid-uMjCv6SE9p .icon-wrap {
  padding-bottom: 7.6rem;
}
.cid-uMjCv6SE9p .icon-wrap:before {
  content: '';
  position: absolute;
  background: #000000;
  bottom: 0rem;
  left: 50%;
  width: 2px;
  height: 90px;
}
.cid-uMjCv6SE9p img {
  margin-bottom: 5rem;
  width: auto;
  margin-left: auto;
  margin-right: auto;
}
.cid-uMjCv6SE9p .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMjCv6SE9p .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMjCv7UGPg {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
  overflow: hidden;
}
.cid-uMk3nepdo0 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uMk3nepdo0 .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
}
@media (max-width: 992px) {
  .cid-uMk3nepdo0 .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-uMk3nepdo0 .iconfont-wrapper {
  color: #103178 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-uMk3nepdo0 .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-uMk3nepdo0 .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-uMk3nepdo0 .container {
    padding: 0 1rem;
  }
}
.cid-uMk3nepdo0 .menu-tite {
  background: #6592e6;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffc800;
}
.cid-uMk3nepdo0 .nav-link {
  position: relative;
}
.cid-uMk3nepdo0 .nav-link:hover {
  color: #47b5ed !important;
}
.cid-uMk3nepdo0 nav.navbar {
  position: fixed;
}
.cid-uMk3nepdo0 .navbar {
  padding: 0!important;
  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-uMk3nepdo0 .navbar.opened {
  transition: all 0.3s;
}
.cid-uMk3nepdo0 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uMk3nepdo0 .navbar .navbar-logo img {
  width: auto;
}
.cid-uMk3nepdo0 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uMk3nepdo0 .navbar.collapsed {
  justify-content: center;
}
.cid-uMk3nepdo0 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uMk3nepdo0 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uMk3nepdo0 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 7rem);
  }
}
.cid-uMk3nepdo0 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uMk3nepdo0 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uMk3nepdo0 .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-uMk3nepdo0 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uMk3nepdo0 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uMk3nepdo0 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uMk3nepdo0 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uMk3nepdo0 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uMk3nepdo0 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uMk3nepdo0 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uMk3nepdo0 .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-uMk3nepdo0 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uMk3nepdo0 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uMk3nepdo0 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uMk3nepdo0 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uMk3nepdo0 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uMk3nepdo0 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uMk3nepdo0 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uMk3nepdo0 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uMk3nepdo0 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uMk3nepdo0 .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-uMk3nepdo0 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uMk3nepdo0 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uMk3nepdo0 .dropdown-item:hover,
.cid-uMk3nepdo0 .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uMk3nepdo0 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uMk3nepdo0 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uMk3nepdo0 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-uMk3nepdo0 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uMk3nepdo0 .dropdown-menu,
.cid-uMk3nepdo0 .navbar.opened {
  background: #ffffff !important;
}
.cid-uMk3nepdo0 .nav-item:focus,
.cid-uMk3nepdo0 .nav-link:focus {
  outline: none;
}
.cid-uMk3nepdo0 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uMk3nepdo0 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uMk3nepdo0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uMk3nepdo0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uMk3nepdo0 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uMk3nepdo0 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uMk3nepdo0 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uMk3nepdo0 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uMk3nepdo0 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uMk3nepdo0 .dropdown-item.active,
.cid-uMk3nepdo0 .dropdown-item:active {
  background-color: transparent;
}
.cid-uMk3nepdo0 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uMk3nepdo0 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uMk3nepdo0 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uMk3nepdo0 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uMk3nepdo0 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uMk3nepdo0 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uMk3nepdo0 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uMk3nepdo0 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uMk3nepdo0 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uMk3nepdo0 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uMk3nepdo0 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uMk3nepdo0 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMk3nepdo0 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMk3nepdo0 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uMk3nepdo0 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMk3nepdo0 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uMk3nepdo0 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uMk3nepdo0 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMk3nepdo0 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uMk3nepdo0 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uMk3nepdo0 .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-uMk3nepdo0 .navbar {
    height: 70px;
  }
  .cid-uMk3nepdo0 .navbar.opened {
    height: auto;
  }
  .cid-uMk3nepdo0 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uMk3nf16OM {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uMk3nf16OM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMk3nf16OM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMk3nfp1C0 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uMk3nfp1C0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMk3nfp1C0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMk3nfp1C0 .mbr-section-head {
  margin-bottom: 32px;
}
.cid-uMk3nfp1C0 .mbr-section-title {
  color: #24262b;
}
.cid-uMk3nfp1C0 .mbr-section-subtitle {
  color: #24262b;
}
.cid-uMk3nfp1C0 .items-row {
  row-gap: 32px;
}
.cid-uMk3nfp1C0 .item-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-uMk3nfp1C0 .item-wrapper img {
  width: 100%;
  aspect-ratio: calc(8 / (1 * 12));
  object-fit: cover;
  transition: all 0.3s;
}
.cid-uMk3nfp1C0 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  z-index: 3;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  opacity: 0;
  color: #24262b;
  transform: translateX(-50%) translateY(-50%);
  background-color: #FFFFFF;
  transition: 0.3s;
}
.cid-uMk3nfp1C0 .item-wrapper .img-overlay {
  position: absolute;
  pointer-events: none;
  transition: all 0.3s;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #33363b;
  opacity: 0;
  z-index: 2;
}
.cid-uMk3nfp1C0 .item-wrapper:hover img {
  transform: scale(1.05);
}
.cid-uMk3nfp1C0 .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-uMk3nfp1C0 .item-wrapper:hover .img-overlay {
  opacity: 0.3;
}
.cid-uMk3nfp1C0 .mbr-item-subtitle {
  color: #24262b;
}
.cid-uMk3nfp1C0 .carousel-control,
.cid-uMk3nfp1C0 .close {
  background: #1b1b1b;
}
.cid-uMk3nfp1C0 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uMk3nfp1C0 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uMk3nfp1C0 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uMk3nfp1C0 .carousel-control-next span {
  margin-left: 5px;
}
.cid-uMk3nfp1C0 .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-uMk3nfp1C0 .close::before {
  content: '\e91a';
}
.cid-uMk3nfp1C0 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uMk3nfp1C0 .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-uMk3nfp1C0 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uMk3nfp1C0 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uMk3nfp1C0 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uMk3nfp1C0 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uMk3nfp1C0 .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-uMk3nfp1C0 .carousel-indicators li.active,
.cid-uMk3nfp1C0 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uMk3nfp1C0 .carousel-indicators li::after,
.cid-uMk3nfp1C0 .carousel-indicators li::before {
  content: none;
}
.cid-uMk3nfp1C0 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uMk3nfp1C0 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uMk3nfp1C0 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uMk3nfp1C0 .carousel-indicators {
    display: none;
  }
}
.cid-uMk3nfp1C0 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uMk3nfp1C0 .carousel-inner > .active {
  display: block;
}
.cid-uMk3nfp1C0 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uMk3nfp1C0 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uMk3nfp1C0 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uMk3nfp1C0 .carousel-control,
  .cid-uMk3nfp1C0 .carousel-indicators,
  .cid-uMk3nfp1C0 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uMk3nfp1C0 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uMk3nfp1C0 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uMk3nfp1C0 .carousel-indicators .active,
.cid-uMk3nfp1C0 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uMk3nfp1C0 .carousel-indicators .active {
  background: #fff;
}
.cid-uMk3nfp1C0 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uMk3nfp1C0 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uMk3nfp1C0 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uMk3nfp1C0 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uMk3nfp1C0 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uMk3nfp1C0 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uMk3nfp1C0 .carousel {
  width: 100%;
}
.cid-uMk3nfp1C0 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uMk3nfp1C0 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uMk3nfp1C0 .modal.fade .modal-dialog,
.cid-uMk3nfp1C0 .modal.in .modal-dialog {
  transform: none;
}
.cid-uMk3nfp1C0 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uMk3nfp1C0 H6 {
  text-align: center;
}
.cid-uMk3nfXqAV {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uMk3nfXqAV .mbr-text {
  color: #000000;
}
.cid-uMk3nfXqAV .container {
  max-width: 1000px;
}
.cid-uMk3nfXqAV h4 {
  text-align: center;
}
.cid-uMk3nfXqAV p {
  text-align: center;
}
.cid-uMk3nfXqAV .row {
  justify-content: center;
}
.cid-uMk3nfXqAV .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-uMk3nfXqAV .mbr-iconfont {
  font-size: 1.5rem;
  color: #000000;
  display: block;
}
.cid-uMk3nfXqAV .card-title,
.cid-uMk3nfXqAV .card-img {
  color: #000000;
}
.cid-uMk3nfXqAV .icon-wrap {
  padding-bottom: 7.6rem;
}
.cid-uMk3nfXqAV .icon-wrap:before {
  content: '';
  position: absolute;
  background: #000000;
  bottom: 0rem;
  left: 50%;
  width: 2px;
  height: 90px;
}
.cid-uMk3nfXqAV img {
  margin-bottom: 5rem;
  width: auto;
  margin-left: auto;
  margin-right: auto;
}
.cid-uMk3nfXqAV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMk3nfXqAV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMk3ngoe2n {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
  overflow: hidden;
}
.cid-uMkcjKFc3R {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uMkcjKFc3R .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
}
@media (max-width: 992px) {
  .cid-uMkcjKFc3R .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-uMkcjKFc3R .iconfont-wrapper {
  color: #103178 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-uMkcjKFc3R .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-uMkcjKFc3R .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-uMkcjKFc3R .container {
    padding: 0 1rem;
  }
}
.cid-uMkcjKFc3R .menu-tite {
  background: #6592e6;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffc800;
}
.cid-uMkcjKFc3R .nav-link {
  position: relative;
}
.cid-uMkcjKFc3R .nav-link:hover {
  color: #47b5ed !important;
}
.cid-uMkcjKFc3R nav.navbar {
  position: fixed;
}
.cid-uMkcjKFc3R .navbar {
  padding: 0!important;
  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-uMkcjKFc3R .navbar.opened {
  transition: all 0.3s;
}
.cid-uMkcjKFc3R .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uMkcjKFc3R .navbar .navbar-logo img {
  width: auto;
}
.cid-uMkcjKFc3R .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uMkcjKFc3R .navbar.collapsed {
  justify-content: center;
}
.cid-uMkcjKFc3R .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uMkcjKFc3R .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uMkcjKFc3R .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 7rem);
  }
}
.cid-uMkcjKFc3R .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uMkcjKFc3R .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uMkcjKFc3R .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-uMkcjKFc3R .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uMkcjKFc3R .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uMkcjKFc3R .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uMkcjKFc3R .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uMkcjKFc3R .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uMkcjKFc3R .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uMkcjKFc3R .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uMkcjKFc3R .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-uMkcjKFc3R .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uMkcjKFc3R .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uMkcjKFc3R .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uMkcjKFc3R .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uMkcjKFc3R .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uMkcjKFc3R .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uMkcjKFc3R .navbar.navbar-short {
  min-height: 60px;
}
.cid-uMkcjKFc3R .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uMkcjKFc3R .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uMkcjKFc3R .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-uMkcjKFc3R .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uMkcjKFc3R .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uMkcjKFc3R .dropdown-item:hover,
.cid-uMkcjKFc3R .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uMkcjKFc3R .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uMkcjKFc3R .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uMkcjKFc3R .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-uMkcjKFc3R .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uMkcjKFc3R .dropdown-menu,
.cid-uMkcjKFc3R .navbar.opened {
  background: #ffffff !important;
}
.cid-uMkcjKFc3R .nav-item:focus,
.cid-uMkcjKFc3R .nav-link:focus {
  outline: none;
}
.cid-uMkcjKFc3R .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uMkcjKFc3R .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uMkcjKFc3R .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uMkcjKFc3R .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uMkcjKFc3R .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uMkcjKFc3R .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uMkcjKFc3R .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uMkcjKFc3R .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uMkcjKFc3R .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uMkcjKFc3R .dropdown-item.active,
.cid-uMkcjKFc3R .dropdown-item:active {
  background-color: transparent;
}
.cid-uMkcjKFc3R .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uMkcjKFc3R .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uMkcjKFc3R .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uMkcjKFc3R .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uMkcjKFc3R .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uMkcjKFc3R .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uMkcjKFc3R ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uMkcjKFc3R .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uMkcjKFc3R button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uMkcjKFc3R button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uMkcjKFc3R button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uMkcjKFc3R button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMkcjKFc3R button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMkcjKFc3R button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uMkcjKFc3R nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMkcjKFc3R nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uMkcjKFc3R nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uMkcjKFc3R nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMkcjKFc3R .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uMkcjKFc3R a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uMkcjKFc3R .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-uMkcjKFc3R .navbar {
    height: 70px;
  }
  .cid-uMkcjKFc3R .navbar.opened {
    height: auto;
  }
  .cid-uMkcjKFc3R .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uMkcjLj4wL {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uMkcjLj4wL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMkcjLj4wL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMkcjLGHof {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uMkcjLGHof .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMkcjLGHof .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-uMkcjLGHof .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uMkcjLGHof .row {
  flex-direction: row-reverse;
}
.cid-uMkcjLGHof img {
  width: 100%;
}
.cid-uMkcjM3YY8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uMkcjM3YY8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMkcjM3YY8 .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-uMkcjM3YY8 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uMkcjM3YY8 .row {
  flex-direction: row-reverse;
}
.cid-uMkcjM3YY8 img {
  width: 100%;
}
.cid-uMkcjMtGm0 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uMkcjMtGm0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMkcjMtGm0 .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-uMkcjMtGm0 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uMkcjMtGm0 .row {
  flex-direction: row-reverse;
}
.cid-uMkcjMtGm0 img {
  width: 100%;
}
.cid-uMkcjMURmC {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uMkcjMURmC .mbr-text {
  color: #000000;
}
.cid-uMkcjMURmC .container {
  max-width: 1000px;
}
.cid-uMkcjMURmC h4 {
  text-align: center;
}
.cid-uMkcjMURmC p {
  text-align: center;
}
.cid-uMkcjMURmC .row {
  justify-content: center;
}
.cid-uMkcjMURmC .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-uMkcjMURmC .mbr-iconfont {
  font-size: 1.5rem;
  color: #000000;
  display: block;
}
.cid-uMkcjMURmC .card-title,
.cid-uMkcjMURmC .card-img {
  color: #000000;
}
.cid-uMkcjMURmC .icon-wrap {
  padding-bottom: 7.6rem;
}
.cid-uMkcjMURmC .icon-wrap:before {
  content: '';
  position: absolute;
  background: #000000;
  bottom: 0rem;
  left: 50%;
  width: 2px;
  height: 90px;
}
.cid-uMkcjMURmC img {
  margin-bottom: 5rem;
  width: auto;
  margin-left: auto;
  margin-right: auto;
}
.cid-uMkcjMURmC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMkcjMURmC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMkcjNIVYK {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
  overflow: hidden;
}
.cid-uMlMi7F917 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uMlMi7F917 .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
}
@media (max-width: 992px) {
  .cid-uMlMi7F917 .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-uMlMi7F917 .iconfont-wrapper {
  color: #103178 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-uMlMi7F917 .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-uMlMi7F917 .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-uMlMi7F917 .container {
    padding: 0 1rem;
  }
}
.cid-uMlMi7F917 .menu-tite {
  background: #6592e6;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffc800;
}
.cid-uMlMi7F917 .nav-link {
  position: relative;
}
.cid-uMlMi7F917 .nav-link:hover {
  color: #47b5ed !important;
}
.cid-uMlMi7F917 nav.navbar {
  position: fixed;
}
.cid-uMlMi7F917 .navbar {
  padding: 0!important;
  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-uMlMi7F917 .navbar.opened {
  transition: all 0.3s;
}
.cid-uMlMi7F917 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uMlMi7F917 .navbar .navbar-logo img {
  width: auto;
}
.cid-uMlMi7F917 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uMlMi7F917 .navbar.collapsed {
  justify-content: center;
}
.cid-uMlMi7F917 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uMlMi7F917 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uMlMi7F917 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 7rem);
  }
}
.cid-uMlMi7F917 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uMlMi7F917 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uMlMi7F917 .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-uMlMi7F917 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uMlMi7F917 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uMlMi7F917 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uMlMi7F917 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uMlMi7F917 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uMlMi7F917 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uMlMi7F917 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uMlMi7F917 .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-uMlMi7F917 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uMlMi7F917 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uMlMi7F917 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uMlMi7F917 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uMlMi7F917 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uMlMi7F917 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uMlMi7F917 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uMlMi7F917 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uMlMi7F917 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uMlMi7F917 .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-uMlMi7F917 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uMlMi7F917 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uMlMi7F917 .dropdown-item:hover,
.cid-uMlMi7F917 .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uMlMi7F917 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uMlMi7F917 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uMlMi7F917 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-uMlMi7F917 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uMlMi7F917 .dropdown-menu,
.cid-uMlMi7F917 .navbar.opened {
  background: #ffffff !important;
}
.cid-uMlMi7F917 .nav-item:focus,
.cid-uMlMi7F917 .nav-link:focus {
  outline: none;
}
.cid-uMlMi7F917 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uMlMi7F917 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uMlMi7F917 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uMlMi7F917 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uMlMi7F917 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uMlMi7F917 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uMlMi7F917 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uMlMi7F917 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uMlMi7F917 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uMlMi7F917 .dropdown-item.active,
.cid-uMlMi7F917 .dropdown-item:active {
  background-color: transparent;
}
.cid-uMlMi7F917 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uMlMi7F917 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uMlMi7F917 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uMlMi7F917 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uMlMi7F917 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uMlMi7F917 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uMlMi7F917 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uMlMi7F917 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uMlMi7F917 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uMlMi7F917 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uMlMi7F917 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uMlMi7F917 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMlMi7F917 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMlMi7F917 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uMlMi7F917 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMlMi7F917 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uMlMi7F917 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uMlMi7F917 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMlMi7F917 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uMlMi7F917 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uMlMi7F917 .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-uMlMi7F917 .navbar {
    height: 70px;
  }
  .cid-uMlMi7F917 .navbar.opened {
    height: auto;
  }
  .cid-uMlMi7F917 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uMlMi9jh1L {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uMlMi9jh1L .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMlMi9jh1L .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMlMibPSVM {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uMlMibPSVM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMlMibPSVM .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-uMlMibPSVM .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uMlMibPSVM .row {
  flex-direction: row-reverse;
}
.cid-uMlMibPSVM img {
  width: 100%;
}
.cid-uMlMid262Z {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uMlMid262Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMlMid262Z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMlMid262Z .mbr-section-head {
  margin-bottom: 32px;
}
.cid-uMlMid262Z .mbr-section-title {
  color: #24262b;
}
.cid-uMlMid262Z .mbr-section-subtitle {
  color: #24262b;
}
.cid-uMlMid262Z .items-row {
  row-gap: 32px;
}
.cid-uMlMid262Z .item-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-uMlMid262Z .item-wrapper img {
  width: 100%;
  aspect-ratio: calc(8 / (1 * 11));
  object-fit: cover;
  transition: all 0.3s;
}
.cid-uMlMid262Z .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  z-index: 3;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  opacity: 0;
  color: #24262b;
  transform: translateX(-50%) translateY(-50%);
  background-color: #FFFFFF;
  transition: 0.3s;
}
.cid-uMlMid262Z .item-wrapper .img-overlay {
  position: absolute;
  pointer-events: none;
  transition: all 0.3s;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #33363b;
  opacity: 0;
  z-index: 2;
}
.cid-uMlMid262Z .item-wrapper:hover img {
  transform: scale(1.05);
}
.cid-uMlMid262Z .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-uMlMid262Z .item-wrapper:hover .img-overlay {
  opacity: 0.3;
}
.cid-uMlMid262Z .mbr-item-subtitle {
  color: #24262b;
}
.cid-uMlMid262Z .carousel-control,
.cid-uMlMid262Z .close {
  background: #1b1b1b;
}
.cid-uMlMid262Z .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uMlMid262Z .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uMlMid262Z .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uMlMid262Z .carousel-control-next span {
  margin-left: 5px;
}
.cid-uMlMid262Z .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-uMlMid262Z .close::before {
  content: '\e91a';
}
.cid-uMlMid262Z .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uMlMid262Z .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-uMlMid262Z .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uMlMid262Z .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uMlMid262Z .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uMlMid262Z .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uMlMid262Z .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-uMlMid262Z .carousel-indicators li.active,
.cid-uMlMid262Z .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uMlMid262Z .carousel-indicators li::after,
.cid-uMlMid262Z .carousel-indicators li::before {
  content: none;
}
.cid-uMlMid262Z .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uMlMid262Z .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uMlMid262Z .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uMlMid262Z .carousel-indicators {
    display: none;
  }
}
.cid-uMlMid262Z .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uMlMid262Z .carousel-inner > .active {
  display: block;
}
.cid-uMlMid262Z .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uMlMid262Z .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uMlMid262Z .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uMlMid262Z .carousel-control,
  .cid-uMlMid262Z .carousel-indicators,
  .cid-uMlMid262Z .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uMlMid262Z .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uMlMid262Z .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uMlMid262Z .carousel-indicators .active,
.cid-uMlMid262Z .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uMlMid262Z .carousel-indicators .active {
  background: #fff;
}
.cid-uMlMid262Z .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uMlMid262Z .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uMlMid262Z .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uMlMid262Z .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uMlMid262Z .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uMlMid262Z .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uMlMid262Z .carousel {
  width: 100%;
}
.cid-uMlMid262Z .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uMlMid262Z .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uMlMid262Z .modal.fade .modal-dialog,
.cid-uMlMid262Z .modal.in .modal-dialog {
  transform: none;
}
.cid-uMlMid262Z .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uMlMid262Z H6 {
  text-align: center;
}
.cid-uMlMifhsM3 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uMlMifhsM3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMlMifhsM3 .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-uMlMifhsM3 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uMlMifhsM3 .row {
  flex-direction: row-reverse;
}
.cid-uMlMifhsM3 img {
  width: 100%;
}
.cid-uMlMigJubt {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uMlMigJubt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMlMigJubt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMlMigJubt .mbr-section-head {
  margin-bottom: 32px;
}
.cid-uMlMigJubt .mbr-section-title {
  color: #24262b;
}
.cid-uMlMigJubt .mbr-section-subtitle {
  color: #24262b;
}
.cid-uMlMigJubt .items-row {
  row-gap: 32px;
}
.cid-uMlMigJubt .item-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-uMlMigJubt .item-wrapper img {
  width: 100%;
  aspect-ratio: calc(8 / (1 * 11));
  object-fit: cover;
  transition: all 0.3s;
}
.cid-uMlMigJubt .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  z-index: 3;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  opacity: 0;
  color: #24262b;
  transform: translateX(-50%) translateY(-50%);
  background-color: #FFFFFF;
  transition: 0.3s;
}
.cid-uMlMigJubt .item-wrapper .img-overlay {
  position: absolute;
  pointer-events: none;
  transition: all 0.3s;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #33363b;
  opacity: 0;
  z-index: 2;
}
.cid-uMlMigJubt .item-wrapper:hover img {
  transform: scale(1.05);
}
.cid-uMlMigJubt .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-uMlMigJubt .item-wrapper:hover .img-overlay {
  opacity: 0.3;
}
.cid-uMlMigJubt .mbr-item-subtitle {
  color: #24262b;
}
.cid-uMlMigJubt .carousel-control,
.cid-uMlMigJubt .close {
  background: #1b1b1b;
}
.cid-uMlMigJubt .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uMlMigJubt .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uMlMigJubt .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uMlMigJubt .carousel-control-next span {
  margin-left: 5px;
}
.cid-uMlMigJubt .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-uMlMigJubt .close::before {
  content: '\e91a';
}
.cid-uMlMigJubt .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uMlMigJubt .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-uMlMigJubt .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uMlMigJubt .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uMlMigJubt .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uMlMigJubt .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uMlMigJubt .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-uMlMigJubt .carousel-indicators li.active,
.cid-uMlMigJubt .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uMlMigJubt .carousel-indicators li::after,
.cid-uMlMigJubt .carousel-indicators li::before {
  content: none;
}
.cid-uMlMigJubt .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uMlMigJubt .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uMlMigJubt .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uMlMigJubt .carousel-indicators {
    display: none;
  }
}
.cid-uMlMigJubt .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uMlMigJubt .carousel-inner > .active {
  display: block;
}
.cid-uMlMigJubt .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uMlMigJubt .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uMlMigJubt .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uMlMigJubt .carousel-control,
  .cid-uMlMigJubt .carousel-indicators,
  .cid-uMlMigJubt .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uMlMigJubt .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uMlMigJubt .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uMlMigJubt .carousel-indicators .active,
.cid-uMlMigJubt .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uMlMigJubt .carousel-indicators .active {
  background: #fff;
}
.cid-uMlMigJubt .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uMlMigJubt .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uMlMigJubt .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uMlMigJubt .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uMlMigJubt .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uMlMigJubt .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uMlMigJubt .carousel {
  width: 100%;
}
.cid-uMlMigJubt .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uMlMigJubt .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uMlMigJubt .modal.fade .modal-dialog,
.cid-uMlMigJubt .modal.in .modal-dialog {
  transform: none;
}
.cid-uMlMigJubt .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uMlMigJubt H6 {
  text-align: center;
}
.cid-uMlMijDOAw {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uMlMijDOAw .mbr-text {
  color: #000000;
}
.cid-uMlMijDOAw .container {
  max-width: 1000px;
}
.cid-uMlMijDOAw h4 {
  text-align: center;
}
.cid-uMlMijDOAw p {
  text-align: center;
}
.cid-uMlMijDOAw .row {
  justify-content: center;
}
.cid-uMlMijDOAw .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-uMlMijDOAw .mbr-iconfont {
  font-size: 1.5rem;
  color: #000000;
  display: block;
}
.cid-uMlMijDOAw .card-title,
.cid-uMlMijDOAw .card-img {
  color: #000000;
}
.cid-uMlMijDOAw .icon-wrap {
  padding-bottom: 7.6rem;
}
.cid-uMlMijDOAw .icon-wrap:before {
  content: '';
  position: absolute;
  background: #000000;
  bottom: 0rem;
  left: 50%;
  width: 2px;
  height: 90px;
}
.cid-uMlMijDOAw img {
  margin-bottom: 5rem;
  width: auto;
  margin-left: auto;
  margin-right: auto;
}
.cid-uMlMijDOAw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMlMijDOAw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMlMiluiHM {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
  overflow: hidden;
}
.cid-uMrMAp3ClS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uMrMAp3ClS .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
}
@media (max-width: 992px) {
  .cid-uMrMAp3ClS .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-uMrMAp3ClS .iconfont-wrapper {
  color: #103178 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-uMrMAp3ClS .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-uMrMAp3ClS .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-uMrMAp3ClS .container {
    padding: 0 1rem;
  }
}
.cid-uMrMAp3ClS .menu-tite {
  background: #6592e6;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffc800;
}
.cid-uMrMAp3ClS .nav-link {
  position: relative;
}
.cid-uMrMAp3ClS .nav-link:hover {
  color: #47b5ed !important;
}
.cid-uMrMAp3ClS nav.navbar {
  position: fixed;
}
.cid-uMrMAp3ClS .navbar {
  padding: 0!important;
  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-uMrMAp3ClS .navbar.opened {
  transition: all 0.3s;
}
.cid-uMrMAp3ClS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uMrMAp3ClS .navbar .navbar-logo img {
  width: auto;
}
.cid-uMrMAp3ClS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uMrMAp3ClS .navbar.collapsed {
  justify-content: center;
}
.cid-uMrMAp3ClS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uMrMAp3ClS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uMrMAp3ClS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 7rem);
  }
}
.cid-uMrMAp3ClS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uMrMAp3ClS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uMrMAp3ClS .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-uMrMAp3ClS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uMrMAp3ClS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uMrMAp3ClS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uMrMAp3ClS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uMrMAp3ClS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uMrMAp3ClS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uMrMAp3ClS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uMrMAp3ClS .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-uMrMAp3ClS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uMrMAp3ClS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uMrMAp3ClS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uMrMAp3ClS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uMrMAp3ClS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uMrMAp3ClS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uMrMAp3ClS .navbar.navbar-short {
  min-height: 60px;
}
.cid-uMrMAp3ClS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uMrMAp3ClS .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uMrMAp3ClS .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-uMrMAp3ClS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uMrMAp3ClS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uMrMAp3ClS .dropdown-item:hover,
.cid-uMrMAp3ClS .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uMrMAp3ClS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uMrMAp3ClS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uMrMAp3ClS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-uMrMAp3ClS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uMrMAp3ClS .dropdown-menu,
.cid-uMrMAp3ClS .navbar.opened {
  background: #ffffff !important;
}
.cid-uMrMAp3ClS .nav-item:focus,
.cid-uMrMAp3ClS .nav-link:focus {
  outline: none;
}
.cid-uMrMAp3ClS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uMrMAp3ClS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uMrMAp3ClS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uMrMAp3ClS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uMrMAp3ClS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uMrMAp3ClS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uMrMAp3ClS .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uMrMAp3ClS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uMrMAp3ClS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uMrMAp3ClS .dropdown-item.active,
.cid-uMrMAp3ClS .dropdown-item:active {
  background-color: transparent;
}
.cid-uMrMAp3ClS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uMrMAp3ClS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uMrMAp3ClS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uMrMAp3ClS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uMrMAp3ClS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uMrMAp3ClS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uMrMAp3ClS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uMrMAp3ClS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uMrMAp3ClS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uMrMAp3ClS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uMrMAp3ClS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uMrMAp3ClS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMrMAp3ClS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMrMAp3ClS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uMrMAp3ClS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMrMAp3ClS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uMrMAp3ClS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uMrMAp3ClS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMrMAp3ClS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uMrMAp3ClS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uMrMAp3ClS .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-uMrMAp3ClS .navbar {
    height: 70px;
  }
  .cid-uMrMAp3ClS .navbar.opened {
    height: auto;
  }
  .cid-uMrMAp3ClS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uMrMApXXHv {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uMrMApXXHv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMrMApXXHv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMrMAqqhjM {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uMrMAqqhjM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMrMAqqhjM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMrMAqqhjM .mbr-section-head {
  margin-bottom: 32px;
}
.cid-uMrMAqqhjM .mbr-section-title {
  color: #24262b;
}
.cid-uMrMAqqhjM .mbr-section-subtitle {
  color: #24262b;
}
.cid-uMrMAqqhjM .items-row {
  row-gap: 32px;
}
.cid-uMrMAqqhjM .item-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-uMrMAqqhjM .item-wrapper img {
  width: 100%;
  aspect-ratio: calc(8 / (1 * 11));
  object-fit: cover;
  transition: all 0.3s;
}
.cid-uMrMAqqhjM .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  z-index: 3;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  opacity: 0;
  color: #24262b;
  transform: translateX(-50%) translateY(-50%);
  background-color: #FFFFFF;
  transition: 0.3s;
}
.cid-uMrMAqqhjM .item-wrapper .img-overlay {
  position: absolute;
  pointer-events: none;
  transition: all 0.3s;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #33363b;
  opacity: 0;
  z-index: 2;
}
.cid-uMrMAqqhjM .item-wrapper:hover img {
  transform: scale(1.05);
}
.cid-uMrMAqqhjM .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-uMrMAqqhjM .item-wrapper:hover .img-overlay {
  opacity: 0.3;
}
.cid-uMrMAqqhjM .mbr-item-subtitle {
  color: #24262b;
}
.cid-uMrMAqqhjM .carousel-control,
.cid-uMrMAqqhjM .close {
  background: #1b1b1b;
}
.cid-uMrMAqqhjM .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uMrMAqqhjM .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uMrMAqqhjM .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uMrMAqqhjM .carousel-control-next span {
  margin-left: 5px;
}
.cid-uMrMAqqhjM .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-uMrMAqqhjM .close::before {
  content: '\e91a';
}
.cid-uMrMAqqhjM .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uMrMAqqhjM .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-uMrMAqqhjM .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uMrMAqqhjM .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uMrMAqqhjM .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uMrMAqqhjM .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uMrMAqqhjM .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-uMrMAqqhjM .carousel-indicators li.active,
.cid-uMrMAqqhjM .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uMrMAqqhjM .carousel-indicators li::after,
.cid-uMrMAqqhjM .carousel-indicators li::before {
  content: none;
}
.cid-uMrMAqqhjM .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uMrMAqqhjM .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uMrMAqqhjM .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uMrMAqqhjM .carousel-indicators {
    display: none;
  }
}
.cid-uMrMAqqhjM .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uMrMAqqhjM .carousel-inner > .active {
  display: block;
}
.cid-uMrMAqqhjM .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uMrMAqqhjM .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uMrMAqqhjM .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uMrMAqqhjM .carousel-control,
  .cid-uMrMAqqhjM .carousel-indicators,
  .cid-uMrMAqqhjM .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uMrMAqqhjM .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uMrMAqqhjM .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uMrMAqqhjM .carousel-indicators .active,
.cid-uMrMAqqhjM .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uMrMAqqhjM .carousel-indicators .active {
  background: #fff;
}
.cid-uMrMAqqhjM .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uMrMAqqhjM .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uMrMAqqhjM .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uMrMAqqhjM .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uMrMAqqhjM .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uMrMAqqhjM .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uMrMAqqhjM .carousel {
  width: 100%;
}
.cid-uMrMAqqhjM .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uMrMAqqhjM .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uMrMAqqhjM .modal.fade .modal-dialog,
.cid-uMrMAqqhjM .modal.in .modal-dialog {
  transform: none;
}
.cid-uMrMAqqhjM .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uMrMAqqhjM H6 {
  text-align: center;
}
.cid-uMrMArb1iS {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uMrMArb1iS .mbr-text {
  color: #000000;
}
.cid-uMrMArb1iS .container {
  max-width: 1000px;
}
.cid-uMrMArb1iS h4 {
  text-align: center;
}
.cid-uMrMArb1iS p {
  text-align: center;
}
.cid-uMrMArb1iS .row {
  justify-content: center;
}
.cid-uMrMArb1iS .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-uMrMArb1iS .mbr-iconfont {
  font-size: 1.5rem;
  color: #000000;
  display: block;
}
.cid-uMrMArb1iS .card-title,
.cid-uMrMArb1iS .card-img {
  color: #000000;
}
.cid-uMrMArb1iS .icon-wrap {
  padding-bottom: 7.6rem;
}
.cid-uMrMArb1iS .icon-wrap:before {
  content: '';
  position: absolute;
  background: #000000;
  bottom: 0rem;
  left: 50%;
  width: 2px;
  height: 90px;
}
.cid-uMrMArb1iS img {
  margin-bottom: 5rem;
  width: auto;
  margin-left: auto;
  margin-right: auto;
}
.cid-uMrMArb1iS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMrMArb1iS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMrMArLH6K {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
  overflow: hidden;
}
.cid-uP3S5uQN6g {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uP3S5uQN6g .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
}
@media (max-width: 992px) {
  .cid-uP3S5uQN6g .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-uP3S5uQN6g .iconfont-wrapper {
  color: #103178 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-uP3S5uQN6g .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-uP3S5uQN6g .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-uP3S5uQN6g .container {
    padding: 0 1rem;
  }
}
.cid-uP3S5uQN6g .menu-tite {
  background: #6592e6;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffc800;
}
.cid-uP3S5uQN6g .nav-link {
  position: relative;
}
.cid-uP3S5uQN6g .nav-link:hover {
  color: #47b5ed !important;
}
.cid-uP3S5uQN6g nav.navbar {
  position: fixed;
}
.cid-uP3S5uQN6g .navbar {
  padding: 0!important;
  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-uP3S5uQN6g .navbar.opened {
  transition: all 0.3s;
}
.cid-uP3S5uQN6g .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uP3S5uQN6g .navbar .navbar-logo img {
  width: auto;
}
.cid-uP3S5uQN6g .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uP3S5uQN6g .navbar.collapsed {
  justify-content: center;
}
.cid-uP3S5uQN6g .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uP3S5uQN6g .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uP3S5uQN6g .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 7rem);
  }
}
.cid-uP3S5uQN6g .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uP3S5uQN6g .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uP3S5uQN6g .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-uP3S5uQN6g .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uP3S5uQN6g .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uP3S5uQN6g .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uP3S5uQN6g .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uP3S5uQN6g .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uP3S5uQN6g .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uP3S5uQN6g .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uP3S5uQN6g .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-uP3S5uQN6g .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uP3S5uQN6g .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uP3S5uQN6g .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uP3S5uQN6g .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uP3S5uQN6g .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uP3S5uQN6g .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uP3S5uQN6g .navbar.navbar-short {
  min-height: 60px;
}
.cid-uP3S5uQN6g .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uP3S5uQN6g .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uP3S5uQN6g .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-uP3S5uQN6g .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uP3S5uQN6g .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uP3S5uQN6g .dropdown-item:hover,
.cid-uP3S5uQN6g .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uP3S5uQN6g .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uP3S5uQN6g .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uP3S5uQN6g .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-uP3S5uQN6g .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uP3S5uQN6g .dropdown-menu,
.cid-uP3S5uQN6g .navbar.opened {
  background: #ffffff !important;
}
.cid-uP3S5uQN6g .nav-item:focus,
.cid-uP3S5uQN6g .nav-link:focus {
  outline: none;
}
.cid-uP3S5uQN6g .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uP3S5uQN6g .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uP3S5uQN6g .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uP3S5uQN6g .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uP3S5uQN6g .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uP3S5uQN6g .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uP3S5uQN6g .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uP3S5uQN6g .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uP3S5uQN6g .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uP3S5uQN6g .dropdown-item.active,
.cid-uP3S5uQN6g .dropdown-item:active {
  background-color: transparent;
}
.cid-uP3S5uQN6g .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uP3S5uQN6g .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uP3S5uQN6g .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uP3S5uQN6g .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uP3S5uQN6g .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uP3S5uQN6g .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uP3S5uQN6g ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uP3S5uQN6g .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uP3S5uQN6g button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uP3S5uQN6g button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uP3S5uQN6g button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uP3S5uQN6g button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uP3S5uQN6g button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uP3S5uQN6g button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uP3S5uQN6g nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uP3S5uQN6g nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uP3S5uQN6g nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uP3S5uQN6g nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uP3S5uQN6g .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uP3S5uQN6g a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uP3S5uQN6g .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-uP3S5uQN6g .navbar {
    height: 70px;
  }
  .cid-uP3S5uQN6g .navbar.opened {
    height: auto;
  }
  .cid-uP3S5uQN6g .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uP3S5vHbH1 {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uP3S5vHbH1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uP3S5vHbH1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uP3S5w45Ku {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uP3S5w45Ku .mbr-fallback-image.disabled {
  display: none;
}
.cid-uP3S5w45Ku .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uP3S5w45Ku .mbr-section-head {
  margin-bottom: 32px;
}
.cid-uP3S5w45Ku .mbr-section-title {
  color: #24262b;
}
.cid-uP3S5w45Ku .mbr-section-subtitle {
  color: #24262b;
}
.cid-uP3S5w45Ku .items-row {
  row-gap: 32px;
}
.cid-uP3S5w45Ku .item-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-uP3S5w45Ku .item-wrapper img {
  width: 100%;
  aspect-ratio: calc(8 / (1 * 12));
  object-fit: cover;
  transition: all 0.3s;
}
.cid-uP3S5w45Ku .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  z-index: 3;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  opacity: 0;
  color: #24262b;
  transform: translateX(-50%) translateY(-50%);
  background-color: #FFFFFF;
  transition: 0.3s;
}
.cid-uP3S5w45Ku .item-wrapper .img-overlay {
  position: absolute;
  pointer-events: none;
  transition: all 0.3s;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #33363b;
  opacity: 0;
  z-index: 2;
}
.cid-uP3S5w45Ku .item-wrapper:hover img {
  transform: scale(1.05);
}
.cid-uP3S5w45Ku .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-uP3S5w45Ku .item-wrapper:hover .img-overlay {
  opacity: 0.3;
}
.cid-uP3S5w45Ku .mbr-item-subtitle {
  color: #24262b;
}
.cid-uP3S5w45Ku .carousel-control,
.cid-uP3S5w45Ku .close {
  background: #1b1b1b;
}
.cid-uP3S5w45Ku .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uP3S5w45Ku .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uP3S5w45Ku .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uP3S5w45Ku .carousel-control-next span {
  margin-left: 5px;
}
.cid-uP3S5w45Ku .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-uP3S5w45Ku .close::before {
  content: '\e91a';
}
.cid-uP3S5w45Ku .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uP3S5w45Ku .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-uP3S5w45Ku .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uP3S5w45Ku .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uP3S5w45Ku .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uP3S5w45Ku .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uP3S5w45Ku .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-uP3S5w45Ku .carousel-indicators li.active,
.cid-uP3S5w45Ku .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uP3S5w45Ku .carousel-indicators li::after,
.cid-uP3S5w45Ku .carousel-indicators li::before {
  content: none;
}
.cid-uP3S5w45Ku .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uP3S5w45Ku .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uP3S5w45Ku .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uP3S5w45Ku .carousel-indicators {
    display: none;
  }
}
.cid-uP3S5w45Ku .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uP3S5w45Ku .carousel-inner > .active {
  display: block;
}
.cid-uP3S5w45Ku .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uP3S5w45Ku .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uP3S5w45Ku .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uP3S5w45Ku .carousel-control,
  .cid-uP3S5w45Ku .carousel-indicators,
  .cid-uP3S5w45Ku .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uP3S5w45Ku .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uP3S5w45Ku .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uP3S5w45Ku .carousel-indicators .active,
.cid-uP3S5w45Ku .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uP3S5w45Ku .carousel-indicators .active {
  background: #fff;
}
.cid-uP3S5w45Ku .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uP3S5w45Ku .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uP3S5w45Ku .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uP3S5w45Ku .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uP3S5w45Ku .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uP3S5w45Ku .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uP3S5w45Ku .carousel {
  width: 100%;
}
.cid-uP3S5w45Ku .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uP3S5w45Ku .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uP3S5w45Ku .modal.fade .modal-dialog,
.cid-uP3S5w45Ku .modal.in .modal-dialog {
  transform: none;
}
.cid-uP3S5w45Ku .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uP3S5w45Ku H6 {
  text-align: center;
}
.cid-uP3S5wNibo {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uP3S5wNibo .mbr-text {
  color: #000000;
}
.cid-uP3S5wNibo .container {
  max-width: 1000px;
}
.cid-uP3S5wNibo h4 {
  text-align: center;
}
.cid-uP3S5wNibo p {
  text-align: center;
}
.cid-uP3S5wNibo .row {
  justify-content: center;
}
.cid-uP3S5wNibo .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-uP3S5wNibo .mbr-iconfont {
  font-size: 1.5rem;
  color: #000000;
  display: block;
}
.cid-uP3S5wNibo .card-title,
.cid-uP3S5wNibo .card-img {
  color: #000000;
}
.cid-uP3S5wNibo .icon-wrap {
  padding-bottom: 7.6rem;
}
.cid-uP3S5wNibo .icon-wrap:before {
  content: '';
  position: absolute;
  background: #000000;
  bottom: 0rem;
  left: 50%;
  width: 2px;
  height: 90px;
}
.cid-uP3S5wNibo img {
  margin-bottom: 5rem;
  width: auto;
  margin-left: auto;
  margin-right: auto;
}
.cid-uP3S5wNibo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uP3S5wNibo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uP3S5xi5we {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
  overflow: hidden;
}
.cid-uTjyEz4OWo {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uTjyEz4OWo .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
}
@media (max-width: 992px) {
  .cid-uTjyEz4OWo .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-uTjyEz4OWo .iconfont-wrapper {
  color: #103178 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-uTjyEz4OWo .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-uTjyEz4OWo .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-uTjyEz4OWo .container {
    padding: 0 1rem;
  }
}
.cid-uTjyEz4OWo .menu-tite {
  background: #6592e6;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffc800;
}
.cid-uTjyEz4OWo .nav-link {
  position: relative;
}
.cid-uTjyEz4OWo .nav-link:hover {
  color: #47b5ed !important;
}
.cid-uTjyEz4OWo nav.navbar {
  position: fixed;
}
.cid-uTjyEz4OWo .navbar {
  padding: 0!important;
  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-uTjyEz4OWo .navbar.opened {
  transition: all 0.3s;
}
.cid-uTjyEz4OWo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uTjyEz4OWo .navbar .navbar-logo img {
  width: auto;
}
.cid-uTjyEz4OWo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uTjyEz4OWo .navbar.collapsed {
  justify-content: center;
}
.cid-uTjyEz4OWo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uTjyEz4OWo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uTjyEz4OWo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 7rem);
  }
}
.cid-uTjyEz4OWo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uTjyEz4OWo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uTjyEz4OWo .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-uTjyEz4OWo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uTjyEz4OWo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uTjyEz4OWo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uTjyEz4OWo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uTjyEz4OWo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uTjyEz4OWo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uTjyEz4OWo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uTjyEz4OWo .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-uTjyEz4OWo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uTjyEz4OWo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uTjyEz4OWo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uTjyEz4OWo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uTjyEz4OWo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uTjyEz4OWo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uTjyEz4OWo .navbar.navbar-short {
  min-height: 60px;
}
.cid-uTjyEz4OWo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uTjyEz4OWo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uTjyEz4OWo .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-uTjyEz4OWo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uTjyEz4OWo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uTjyEz4OWo .dropdown-item:hover,
.cid-uTjyEz4OWo .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uTjyEz4OWo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uTjyEz4OWo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uTjyEz4OWo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-uTjyEz4OWo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uTjyEz4OWo .dropdown-menu,
.cid-uTjyEz4OWo .navbar.opened {
  background: #ffffff !important;
}
.cid-uTjyEz4OWo .nav-item:focus,
.cid-uTjyEz4OWo .nav-link:focus {
  outline: none;
}
.cid-uTjyEz4OWo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uTjyEz4OWo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uTjyEz4OWo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uTjyEz4OWo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uTjyEz4OWo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uTjyEz4OWo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uTjyEz4OWo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uTjyEz4OWo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uTjyEz4OWo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uTjyEz4OWo .dropdown-item.active,
.cid-uTjyEz4OWo .dropdown-item:active {
  background-color: transparent;
}
.cid-uTjyEz4OWo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uTjyEz4OWo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uTjyEz4OWo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uTjyEz4OWo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uTjyEz4OWo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uTjyEz4OWo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uTjyEz4OWo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uTjyEz4OWo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uTjyEz4OWo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uTjyEz4OWo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uTjyEz4OWo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uTjyEz4OWo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uTjyEz4OWo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uTjyEz4OWo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uTjyEz4OWo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uTjyEz4OWo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uTjyEz4OWo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uTjyEz4OWo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uTjyEz4OWo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uTjyEz4OWo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uTjyEz4OWo .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-uTjyEz4OWo .navbar {
    height: 70px;
  }
  .cid-uTjyEz4OWo .navbar.opened {
    height: auto;
  }
  .cid-uTjyEz4OWo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uTjyEAr58T {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uTjyEAr58T .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTjyEAr58T .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uTjyEAQdXx {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uTjyEAQdXx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTjyEAQdXx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uTjyEAQdXx .mbr-section-head {
  margin-bottom: 32px;
}
.cid-uTjyEAQdXx .mbr-section-title {
  color: #24262b;
}
.cid-uTjyEAQdXx .mbr-section-subtitle {
  color: #24262b;
}
.cid-uTjyEAQdXx .items-row {
  row-gap: 32px;
}
.cid-uTjyEAQdXx .item-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-uTjyEAQdXx .item-wrapper img {
  width: 100%;
  aspect-ratio: calc(8 / (1 * 12));
  object-fit: cover;
  transition: all 0.3s;
}
.cid-uTjyEAQdXx .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  z-index: 3;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  opacity: 0;
  color: #24262b;
  transform: translateX(-50%) translateY(-50%);
  background-color: #FFFFFF;
  transition: 0.3s;
}
.cid-uTjyEAQdXx .item-wrapper .img-overlay {
  position: absolute;
  pointer-events: none;
  transition: all 0.3s;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #33363b;
  opacity: 0;
  z-index: 2;
}
.cid-uTjyEAQdXx .item-wrapper:hover img {
  transform: scale(1.05);
}
.cid-uTjyEAQdXx .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-uTjyEAQdXx .item-wrapper:hover .img-overlay {
  opacity: 0.3;
}
.cid-uTjyEAQdXx .mbr-item-subtitle {
  color: #24262b;
}
.cid-uTjyEAQdXx .carousel-control,
.cid-uTjyEAQdXx .close {
  background: #1b1b1b;
}
.cid-uTjyEAQdXx .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uTjyEAQdXx .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uTjyEAQdXx .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uTjyEAQdXx .carousel-control-next span {
  margin-left: 5px;
}
.cid-uTjyEAQdXx .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-uTjyEAQdXx .close::before {
  content: '\e91a';
}
.cid-uTjyEAQdXx .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uTjyEAQdXx .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-uTjyEAQdXx .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uTjyEAQdXx .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uTjyEAQdXx .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uTjyEAQdXx .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uTjyEAQdXx .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-uTjyEAQdXx .carousel-indicators li.active,
.cid-uTjyEAQdXx .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uTjyEAQdXx .carousel-indicators li::after,
.cid-uTjyEAQdXx .carousel-indicators li::before {
  content: none;
}
.cid-uTjyEAQdXx .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uTjyEAQdXx .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uTjyEAQdXx .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uTjyEAQdXx .carousel-indicators {
    display: none;
  }
}
.cid-uTjyEAQdXx .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uTjyEAQdXx .carousel-inner > .active {
  display: block;
}
.cid-uTjyEAQdXx .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uTjyEAQdXx .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uTjyEAQdXx .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uTjyEAQdXx .carousel-control,
  .cid-uTjyEAQdXx .carousel-indicators,
  .cid-uTjyEAQdXx .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uTjyEAQdXx .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uTjyEAQdXx .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uTjyEAQdXx .carousel-indicators .active,
.cid-uTjyEAQdXx .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uTjyEAQdXx .carousel-indicators .active {
  background: #fff;
}
.cid-uTjyEAQdXx .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uTjyEAQdXx .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uTjyEAQdXx .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uTjyEAQdXx .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uTjyEAQdXx .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uTjyEAQdXx .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uTjyEAQdXx .carousel {
  width: 100%;
}
.cid-uTjyEAQdXx .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uTjyEAQdXx .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uTjyEAQdXx .modal.fade .modal-dialog,
.cid-uTjyEAQdXx .modal.in .modal-dialog {
  transform: none;
}
.cid-uTjyEAQdXx .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uTjyEAQdXx H6 {
  text-align: center;
}
.cid-uTjyEByLzB {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uTjyEByLzB .mbr-text {
  color: #000000;
}
.cid-uTjyEByLzB .container {
  max-width: 1000px;
}
.cid-uTjyEByLzB h4 {
  text-align: center;
}
.cid-uTjyEByLzB p {
  text-align: center;
}
.cid-uTjyEByLzB .row {
  justify-content: center;
}
.cid-uTjyEByLzB .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-uTjyEByLzB .mbr-iconfont {
  font-size: 1.5rem;
  color: #000000;
  display: block;
}
.cid-uTjyEByLzB .card-title,
.cid-uTjyEByLzB .card-img {
  color: #000000;
}
.cid-uTjyEByLzB .icon-wrap {
  padding-bottom: 7.6rem;
}
.cid-uTjyEByLzB .icon-wrap:before {
  content: '';
  position: absolute;
  background: #000000;
  bottom: 0rem;
  left: 50%;
  width: 2px;
  height: 90px;
}
.cid-uTjyEByLzB img {
  margin-bottom: 5rem;
  width: auto;
  margin-left: auto;
  margin-right: auto;
}
.cid-uTjyEByLzB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTjyEByLzB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uTjyEC4Qlt {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
  overflow: hidden;
}
.cid-uTPlw9apIa {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uTPlw9apIa .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
}
@media (max-width: 992px) {
  .cid-uTPlw9apIa .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-uTPlw9apIa .iconfont-wrapper {
  color: #103178 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-uTPlw9apIa .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-uTPlw9apIa .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-uTPlw9apIa .container {
    padding: 0 1rem;
  }
}
.cid-uTPlw9apIa .menu-tite {
  background: #6592e6;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffc800;
}
.cid-uTPlw9apIa .nav-link {
  position: relative;
}
.cid-uTPlw9apIa .nav-link:hover {
  color: #47b5ed !important;
}
.cid-uTPlw9apIa nav.navbar {
  position: fixed;
}
.cid-uTPlw9apIa .navbar {
  padding: 0!important;
  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-uTPlw9apIa .navbar.opened {
  transition: all 0.3s;
}
.cid-uTPlw9apIa .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uTPlw9apIa .navbar .navbar-logo img {
  width: auto;
}
.cid-uTPlw9apIa .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uTPlw9apIa .navbar.collapsed {
  justify-content: center;
}
.cid-uTPlw9apIa .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uTPlw9apIa .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uTPlw9apIa .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 7rem);
  }
}
.cid-uTPlw9apIa .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uTPlw9apIa .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uTPlw9apIa .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-uTPlw9apIa .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uTPlw9apIa .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uTPlw9apIa .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uTPlw9apIa .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uTPlw9apIa .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uTPlw9apIa .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uTPlw9apIa .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uTPlw9apIa .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-uTPlw9apIa .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uTPlw9apIa .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uTPlw9apIa .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uTPlw9apIa .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uTPlw9apIa .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uTPlw9apIa .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uTPlw9apIa .navbar.navbar-short {
  min-height: 60px;
}
.cid-uTPlw9apIa .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uTPlw9apIa .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uTPlw9apIa .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-uTPlw9apIa .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uTPlw9apIa .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uTPlw9apIa .dropdown-item:hover,
.cid-uTPlw9apIa .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uTPlw9apIa .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uTPlw9apIa .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uTPlw9apIa .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-uTPlw9apIa .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uTPlw9apIa .dropdown-menu,
.cid-uTPlw9apIa .navbar.opened {
  background: #ffffff !important;
}
.cid-uTPlw9apIa .nav-item:focus,
.cid-uTPlw9apIa .nav-link:focus {
  outline: none;
}
.cid-uTPlw9apIa .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uTPlw9apIa .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uTPlw9apIa .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uTPlw9apIa .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uTPlw9apIa .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uTPlw9apIa .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uTPlw9apIa .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uTPlw9apIa .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uTPlw9apIa .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uTPlw9apIa .dropdown-item.active,
.cid-uTPlw9apIa .dropdown-item:active {
  background-color: transparent;
}
.cid-uTPlw9apIa .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uTPlw9apIa .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uTPlw9apIa .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uTPlw9apIa .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uTPlw9apIa .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uTPlw9apIa .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uTPlw9apIa ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uTPlw9apIa .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uTPlw9apIa button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uTPlw9apIa button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uTPlw9apIa button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uTPlw9apIa button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uTPlw9apIa button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uTPlw9apIa button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uTPlw9apIa nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uTPlw9apIa nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uTPlw9apIa nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uTPlw9apIa nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uTPlw9apIa .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uTPlw9apIa a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uTPlw9apIa .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-uTPlw9apIa .navbar {
    height: 70px;
  }
  .cid-uTPlw9apIa .navbar.opened {
    height: auto;
  }
  .cid-uTPlw9apIa .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uTPlw9KhcB {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uTPlw9KhcB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTPlw9KhcB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uTPlwaaD9h {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uTPlwaaD9h .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTPlwaaD9h .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uTPlwaaD9h .mbr-section-head {
  margin-bottom: 32px;
}
.cid-uTPlwaaD9h .mbr-section-title {
  color: #24262b;
}
.cid-uTPlwaaD9h .mbr-section-subtitle {
  color: #24262b;
}
.cid-uTPlwaaD9h .items-row {
  row-gap: 32px;
}
.cid-uTPlwaaD9h .item-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-uTPlwaaD9h .item-wrapper img {
  width: 100%;
  aspect-ratio: calc(8 / (1 * 11));
  object-fit: cover;
  transition: all 0.3s;
}
.cid-uTPlwaaD9h .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  z-index: 3;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  opacity: 0;
  color: #24262b;
  transform: translateX(-50%) translateY(-50%);
  background-color: #FFFFFF;
  transition: 0.3s;
}
.cid-uTPlwaaD9h .item-wrapper .img-overlay {
  position: absolute;
  pointer-events: none;
  transition: all 0.3s;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #33363b;
  opacity: 0;
  z-index: 2;
}
.cid-uTPlwaaD9h .item-wrapper:hover img {
  transform: scale(1.05);
}
.cid-uTPlwaaD9h .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-uTPlwaaD9h .item-wrapper:hover .img-overlay {
  opacity: 0.3;
}
.cid-uTPlwaaD9h .mbr-item-subtitle {
  color: #24262b;
}
.cid-uTPlwaaD9h .carousel-control,
.cid-uTPlwaaD9h .close {
  background: #1b1b1b;
}
.cid-uTPlwaaD9h .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uTPlwaaD9h .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uTPlwaaD9h .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uTPlwaaD9h .carousel-control-next span {
  margin-left: 5px;
}
.cid-uTPlwaaD9h .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-uTPlwaaD9h .close::before {
  content: '\e91a';
}
.cid-uTPlwaaD9h .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uTPlwaaD9h .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-uTPlwaaD9h .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uTPlwaaD9h .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uTPlwaaD9h .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uTPlwaaD9h .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uTPlwaaD9h .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-uTPlwaaD9h .carousel-indicators li.active,
.cid-uTPlwaaD9h .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uTPlwaaD9h .carousel-indicators li::after,
.cid-uTPlwaaD9h .carousel-indicators li::before {
  content: none;
}
.cid-uTPlwaaD9h .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uTPlwaaD9h .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uTPlwaaD9h .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uTPlwaaD9h .carousel-indicators {
    display: none;
  }
}
.cid-uTPlwaaD9h .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uTPlwaaD9h .carousel-inner > .active {
  display: block;
}
.cid-uTPlwaaD9h .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uTPlwaaD9h .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uTPlwaaD9h .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uTPlwaaD9h .carousel-control,
  .cid-uTPlwaaD9h .carousel-indicators,
  .cid-uTPlwaaD9h .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uTPlwaaD9h .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uTPlwaaD9h .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uTPlwaaD9h .carousel-indicators .active,
.cid-uTPlwaaD9h .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uTPlwaaD9h .carousel-indicators .active {
  background: #fff;
}
.cid-uTPlwaaD9h .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uTPlwaaD9h .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uTPlwaaD9h .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uTPlwaaD9h .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uTPlwaaD9h .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uTPlwaaD9h .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uTPlwaaD9h .carousel {
  width: 100%;
}
.cid-uTPlwaaD9h .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uTPlwaaD9h .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uTPlwaaD9h .modal.fade .modal-dialog,
.cid-uTPlwaaD9h .modal.in .modal-dialog {
  transform: none;
}
.cid-uTPlwaaD9h .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uTPlwaaD9h H6 {
  text-align: center;
}
.cid-uTPlwaOB7E {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uTPlwaOB7E .mbr-text {
  color: #000000;
}
.cid-uTPlwaOB7E .container {
  max-width: 1000px;
}
.cid-uTPlwaOB7E h4 {
  text-align: center;
}
.cid-uTPlwaOB7E p {
  text-align: center;
}
.cid-uTPlwaOB7E .row {
  justify-content: center;
}
.cid-uTPlwaOB7E .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-uTPlwaOB7E .mbr-iconfont {
  font-size: 1.5rem;
  color: #000000;
  display: block;
}
.cid-uTPlwaOB7E .card-title,
.cid-uTPlwaOB7E .card-img {
  color: #000000;
}
.cid-uTPlwaOB7E .icon-wrap {
  padding-bottom: 7.6rem;
}
.cid-uTPlwaOB7E .icon-wrap:before {
  content: '';
  position: absolute;
  background: #000000;
  bottom: 0rem;
  left: 50%;
  width: 2px;
  height: 90px;
}
.cid-uTPlwaOB7E img {
  margin-bottom: 5rem;
  width: auto;
  margin-left: auto;
  margin-right: auto;
}
.cid-uTPlwaOB7E .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTPlwaOB7E .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uTPlwbkcEd {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
  overflow: hidden;
}
.cid-uV5FC1y6Qz {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uV5FC1y6Qz .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
}
@media (max-width: 992px) {
  .cid-uV5FC1y6Qz .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-uV5FC1y6Qz .iconfont-wrapper {
  color: #103178 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-uV5FC1y6Qz .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-uV5FC1y6Qz .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-uV5FC1y6Qz .container {
    padding: 0 1rem;
  }
}
.cid-uV5FC1y6Qz .menu-tite {
  background: #6592e6;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffc800;
}
.cid-uV5FC1y6Qz .nav-link {
  position: relative;
}
.cid-uV5FC1y6Qz .nav-link:hover {
  color: #47b5ed !important;
}
.cid-uV5FC1y6Qz nav.navbar {
  position: fixed;
}
.cid-uV5FC1y6Qz .navbar {
  padding: 0!important;
  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-uV5FC1y6Qz .navbar.opened {
  transition: all 0.3s;
}
.cid-uV5FC1y6Qz .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uV5FC1y6Qz .navbar .navbar-logo img {
  width: auto;
}
.cid-uV5FC1y6Qz .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uV5FC1y6Qz .navbar.collapsed {
  justify-content: center;
}
.cid-uV5FC1y6Qz .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uV5FC1y6Qz .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uV5FC1y6Qz .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 7rem);
  }
}
.cid-uV5FC1y6Qz .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uV5FC1y6Qz .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uV5FC1y6Qz .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-uV5FC1y6Qz .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uV5FC1y6Qz .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uV5FC1y6Qz .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uV5FC1y6Qz .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uV5FC1y6Qz .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uV5FC1y6Qz .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uV5FC1y6Qz .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uV5FC1y6Qz .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-uV5FC1y6Qz .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uV5FC1y6Qz .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uV5FC1y6Qz .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uV5FC1y6Qz .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uV5FC1y6Qz .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uV5FC1y6Qz .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uV5FC1y6Qz .navbar.navbar-short {
  min-height: 60px;
}
.cid-uV5FC1y6Qz .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uV5FC1y6Qz .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uV5FC1y6Qz .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-uV5FC1y6Qz .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uV5FC1y6Qz .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uV5FC1y6Qz .dropdown-item:hover,
.cid-uV5FC1y6Qz .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uV5FC1y6Qz .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uV5FC1y6Qz .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uV5FC1y6Qz .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-uV5FC1y6Qz .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uV5FC1y6Qz .dropdown-menu,
.cid-uV5FC1y6Qz .navbar.opened {
  background: #ffffff !important;
}
.cid-uV5FC1y6Qz .nav-item:focus,
.cid-uV5FC1y6Qz .nav-link:focus {
  outline: none;
}
.cid-uV5FC1y6Qz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uV5FC1y6Qz .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uV5FC1y6Qz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uV5FC1y6Qz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uV5FC1y6Qz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uV5FC1y6Qz .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uV5FC1y6Qz .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uV5FC1y6Qz .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uV5FC1y6Qz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uV5FC1y6Qz .dropdown-item.active,
.cid-uV5FC1y6Qz .dropdown-item:active {
  background-color: transparent;
}
.cid-uV5FC1y6Qz .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uV5FC1y6Qz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uV5FC1y6Qz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uV5FC1y6Qz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uV5FC1y6Qz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uV5FC1y6Qz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uV5FC1y6Qz ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uV5FC1y6Qz .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uV5FC1y6Qz button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uV5FC1y6Qz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uV5FC1y6Qz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uV5FC1y6Qz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uV5FC1y6Qz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uV5FC1y6Qz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uV5FC1y6Qz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uV5FC1y6Qz nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uV5FC1y6Qz nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uV5FC1y6Qz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uV5FC1y6Qz .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uV5FC1y6Qz a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uV5FC1y6Qz .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-uV5FC1y6Qz .navbar {
    height: 70px;
  }
  .cid-uV5FC1y6Qz .navbar.opened {
    height: auto;
  }
  .cid-uV5FC1y6Qz .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uV5FC2jhuY {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uV5FC2jhuY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uV5FC2jhuY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uV5FC2S8Th {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uV5FC2S8Th .mbr-fallback-image.disabled {
  display: none;
}
.cid-uV5FC2S8Th .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uV5FC2S8Th .mbr-section-head {
  margin-bottom: 32px;
}
.cid-uV5FC2S8Th .mbr-section-title {
  color: #24262b;
}
.cid-uV5FC2S8Th .mbr-section-subtitle {
  color: #24262b;
}
.cid-uV5FC2S8Th .items-row {
  row-gap: 32px;
}
.cid-uV5FC2S8Th .item-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-uV5FC2S8Th .item-wrapper img {
  width: 100%;
  aspect-ratio: calc(8 / (1 * 11));
  object-fit: cover;
  transition: all 0.3s;
}
.cid-uV5FC2S8Th .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  z-index: 3;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  opacity: 0;
  color: #24262b;
  transform: translateX(-50%) translateY(-50%);
  background-color: #FFFFFF;
  transition: 0.3s;
}
.cid-uV5FC2S8Th .item-wrapper .img-overlay {
  position: absolute;
  pointer-events: none;
  transition: all 0.3s;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #33363b;
  opacity: 0;
  z-index: 2;
}
.cid-uV5FC2S8Th .item-wrapper:hover img {
  transform: scale(1.05);
}
.cid-uV5FC2S8Th .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-uV5FC2S8Th .item-wrapper:hover .img-overlay {
  opacity: 0.3;
}
.cid-uV5FC2S8Th .mbr-item-subtitle {
  color: #24262b;
}
.cid-uV5FC2S8Th .carousel-control,
.cid-uV5FC2S8Th .close {
  background: #1b1b1b;
}
.cid-uV5FC2S8Th .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uV5FC2S8Th .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uV5FC2S8Th .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uV5FC2S8Th .carousel-control-next span {
  margin-left: 5px;
}
.cid-uV5FC2S8Th .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-uV5FC2S8Th .close::before {
  content: '\e91a';
}
.cid-uV5FC2S8Th .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uV5FC2S8Th .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-uV5FC2S8Th .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uV5FC2S8Th .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uV5FC2S8Th .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uV5FC2S8Th .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uV5FC2S8Th .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-uV5FC2S8Th .carousel-indicators li.active,
.cid-uV5FC2S8Th .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uV5FC2S8Th .carousel-indicators li::after,
.cid-uV5FC2S8Th .carousel-indicators li::before {
  content: none;
}
.cid-uV5FC2S8Th .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uV5FC2S8Th .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uV5FC2S8Th .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uV5FC2S8Th .carousel-indicators {
    display: none;
  }
}
.cid-uV5FC2S8Th .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uV5FC2S8Th .carousel-inner > .active {
  display: block;
}
.cid-uV5FC2S8Th .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uV5FC2S8Th .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uV5FC2S8Th .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uV5FC2S8Th .carousel-control,
  .cid-uV5FC2S8Th .carousel-indicators,
  .cid-uV5FC2S8Th .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uV5FC2S8Th .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uV5FC2S8Th .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uV5FC2S8Th .carousel-indicators .active,
.cid-uV5FC2S8Th .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uV5FC2S8Th .carousel-indicators .active {
  background: #fff;
}
.cid-uV5FC2S8Th .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uV5FC2S8Th .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uV5FC2S8Th .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uV5FC2S8Th .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uV5FC2S8Th .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uV5FC2S8Th .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uV5FC2S8Th .carousel {
  width: 100%;
}
.cid-uV5FC2S8Th .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uV5FC2S8Th .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uV5FC2S8Th .modal.fade .modal-dialog,
.cid-uV5FC2S8Th .modal.in .modal-dialog {
  transform: none;
}
.cid-uV5FC2S8Th .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uV5FC2S8Th H6 {
  text-align: center;
}
.cid-uV5FC3FhEj {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uV5FC3FhEj .mbr-text {
  color: #000000;
}
.cid-uV5FC3FhEj .container {
  max-width: 1000px;
}
.cid-uV5FC3FhEj h4 {
  text-align: center;
}
.cid-uV5FC3FhEj p {
  text-align: center;
}
.cid-uV5FC3FhEj .row {
  justify-content: center;
}
.cid-uV5FC3FhEj .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-uV5FC3FhEj .mbr-iconfont {
  font-size: 1.5rem;
  color: #000000;
  display: block;
}
.cid-uV5FC3FhEj .card-title,
.cid-uV5FC3FhEj .card-img {
  color: #000000;
}
.cid-uV5FC3FhEj .icon-wrap {
  padding-bottom: 7.6rem;
}
.cid-uV5FC3FhEj .icon-wrap:before {
  content: '';
  position: absolute;
  background: #000000;
  bottom: 0rem;
  left: 50%;
  width: 2px;
  height: 90px;
}
.cid-uV5FC3FhEj img {
  margin-bottom: 5rem;
  width: auto;
  margin-left: auto;
  margin-right: auto;
}
.cid-uV5FC3FhEj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uV5FC3FhEj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uV5FC4jH9X {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
  overflow: hidden;
}
.cid-uV5ISbHDZM {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uV5ISbHDZM .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
}
@media (max-width: 992px) {
  .cid-uV5ISbHDZM .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-uV5ISbHDZM .iconfont-wrapper {
  color: #103178 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-uV5ISbHDZM .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-uV5ISbHDZM .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-uV5ISbHDZM .container {
    padding: 0 1rem;
  }
}
.cid-uV5ISbHDZM .menu-tite {
  background: #6592e6;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffc800;
}
.cid-uV5ISbHDZM .nav-link {
  position: relative;
}
.cid-uV5ISbHDZM .nav-link:hover {
  color: #47b5ed !important;
}
.cid-uV5ISbHDZM nav.navbar {
  position: fixed;
}
.cid-uV5ISbHDZM .navbar {
  padding: 0!important;
  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-uV5ISbHDZM .navbar.opened {
  transition: all 0.3s;
}
.cid-uV5ISbHDZM .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uV5ISbHDZM .navbar .navbar-logo img {
  width: auto;
}
.cid-uV5ISbHDZM .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uV5ISbHDZM .navbar.collapsed {
  justify-content: center;
}
.cid-uV5ISbHDZM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uV5ISbHDZM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uV5ISbHDZM .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 7rem);
  }
}
.cid-uV5ISbHDZM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uV5ISbHDZM .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uV5ISbHDZM .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-uV5ISbHDZM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uV5ISbHDZM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uV5ISbHDZM .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uV5ISbHDZM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uV5ISbHDZM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uV5ISbHDZM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uV5ISbHDZM .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uV5ISbHDZM .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-uV5ISbHDZM .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uV5ISbHDZM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uV5ISbHDZM .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uV5ISbHDZM .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uV5ISbHDZM .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uV5ISbHDZM .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uV5ISbHDZM .navbar.navbar-short {
  min-height: 60px;
}
.cid-uV5ISbHDZM .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uV5ISbHDZM .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uV5ISbHDZM .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-uV5ISbHDZM .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uV5ISbHDZM .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uV5ISbHDZM .dropdown-item:hover,
.cid-uV5ISbHDZM .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uV5ISbHDZM .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uV5ISbHDZM .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uV5ISbHDZM .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-uV5ISbHDZM .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uV5ISbHDZM .dropdown-menu,
.cid-uV5ISbHDZM .navbar.opened {
  background: #ffffff !important;
}
.cid-uV5ISbHDZM .nav-item:focus,
.cid-uV5ISbHDZM .nav-link:focus {
  outline: none;
}
.cid-uV5ISbHDZM .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uV5ISbHDZM .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uV5ISbHDZM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uV5ISbHDZM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uV5ISbHDZM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uV5ISbHDZM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uV5ISbHDZM .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uV5ISbHDZM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uV5ISbHDZM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uV5ISbHDZM .dropdown-item.active,
.cid-uV5ISbHDZM .dropdown-item:active {
  background-color: transparent;
}
.cid-uV5ISbHDZM .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uV5ISbHDZM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uV5ISbHDZM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uV5ISbHDZM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uV5ISbHDZM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uV5ISbHDZM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uV5ISbHDZM ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uV5ISbHDZM .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uV5ISbHDZM button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uV5ISbHDZM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uV5ISbHDZM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uV5ISbHDZM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uV5ISbHDZM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uV5ISbHDZM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uV5ISbHDZM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uV5ISbHDZM nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uV5ISbHDZM nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uV5ISbHDZM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uV5ISbHDZM .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uV5ISbHDZM a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uV5ISbHDZM .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-uV5ISbHDZM .navbar {
    height: 70px;
  }
  .cid-uV5ISbHDZM .navbar.opened {
    height: auto;
  }
  .cid-uV5ISbHDZM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uV5IScfgd9 {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uV5IScfgd9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uV5IScfgd9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uV5IScDsSx {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uV5IScDsSx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uV5IScDsSx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uV5IScDsSx .mbr-section-head {
  margin-bottom: 32px;
}
.cid-uV5IScDsSx .mbr-section-title {
  color: #24262b;
}
.cid-uV5IScDsSx .mbr-section-subtitle {
  color: #24262b;
}
.cid-uV5IScDsSx .items-row {
  row-gap: 32px;
}
.cid-uV5IScDsSx .item-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-uV5IScDsSx .item-wrapper img {
  width: 100%;
  aspect-ratio: calc(8 / (1 * 12));
  object-fit: cover;
  transition: all 0.3s;
}
.cid-uV5IScDsSx .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  z-index: 3;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  opacity: 0;
  color: #24262b;
  transform: translateX(-50%) translateY(-50%);
  background-color: #FFFFFF;
  transition: 0.3s;
}
.cid-uV5IScDsSx .item-wrapper .img-overlay {
  position: absolute;
  pointer-events: none;
  transition: all 0.3s;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #33363b;
  opacity: 0;
  z-index: 2;
}
.cid-uV5IScDsSx .item-wrapper:hover img {
  transform: scale(1.05);
}
.cid-uV5IScDsSx .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-uV5IScDsSx .item-wrapper:hover .img-overlay {
  opacity: 0.3;
}
.cid-uV5IScDsSx .mbr-item-subtitle {
  color: #24262b;
}
.cid-uV5IScDsSx .carousel-control,
.cid-uV5IScDsSx .close {
  background: #1b1b1b;
}
.cid-uV5IScDsSx .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uV5IScDsSx .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uV5IScDsSx .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uV5IScDsSx .carousel-control-next span {
  margin-left: 5px;
}
.cid-uV5IScDsSx .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-uV5IScDsSx .close::before {
  content: '\e91a';
}
.cid-uV5IScDsSx .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uV5IScDsSx .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-uV5IScDsSx .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uV5IScDsSx .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uV5IScDsSx .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uV5IScDsSx .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uV5IScDsSx .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-uV5IScDsSx .carousel-indicators li.active,
.cid-uV5IScDsSx .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uV5IScDsSx .carousel-indicators li::after,
.cid-uV5IScDsSx .carousel-indicators li::before {
  content: none;
}
.cid-uV5IScDsSx .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uV5IScDsSx .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uV5IScDsSx .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uV5IScDsSx .carousel-indicators {
    display: none;
  }
}
.cid-uV5IScDsSx .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uV5IScDsSx .carousel-inner > .active {
  display: block;
}
.cid-uV5IScDsSx .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uV5IScDsSx .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uV5IScDsSx .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uV5IScDsSx .carousel-control,
  .cid-uV5IScDsSx .carousel-indicators,
  .cid-uV5IScDsSx .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uV5IScDsSx .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uV5IScDsSx .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uV5IScDsSx .carousel-indicators .active,
.cid-uV5IScDsSx .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uV5IScDsSx .carousel-indicators .active {
  background: #fff;
}
.cid-uV5IScDsSx .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uV5IScDsSx .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uV5IScDsSx .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uV5IScDsSx .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uV5IScDsSx .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uV5IScDsSx .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uV5IScDsSx .carousel {
  width: 100%;
}
.cid-uV5IScDsSx .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uV5IScDsSx .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uV5IScDsSx .modal.fade .modal-dialog,
.cid-uV5IScDsSx .modal.in .modal-dialog {
  transform: none;
}
.cid-uV5IScDsSx .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uV5IScDsSx H6 {
  text-align: center;
}
.cid-uV5ISdazSs {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uV5ISdazSs .mbr-text {
  color: #000000;
}
.cid-uV5ISdazSs .container {
  max-width: 1000px;
}
.cid-uV5ISdazSs h4 {
  text-align: center;
}
.cid-uV5ISdazSs p {
  text-align: center;
}
.cid-uV5ISdazSs .row {
  justify-content: center;
}
.cid-uV5ISdazSs .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-uV5ISdazSs .mbr-iconfont {
  font-size: 1.5rem;
  color: #000000;
  display: block;
}
.cid-uV5ISdazSs .card-title,
.cid-uV5ISdazSs .card-img {
  color: #000000;
}
.cid-uV5ISdazSs .icon-wrap {
  padding-bottom: 7.6rem;
}
.cid-uV5ISdazSs .icon-wrap:before {
  content: '';
  position: absolute;
  background: #000000;
  bottom: 0rem;
  left: 50%;
  width: 2px;
  height: 90px;
}
.cid-uV5ISdazSs img {
  margin-bottom: 5rem;
  width: auto;
  margin-left: auto;
  margin-right: auto;
}
.cid-uV5ISdazSs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uV5ISdazSs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uV5ISdERXz {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
  overflow: hidden;
}
