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;
}
*:focus-visible {
  outline: red solid 2px !important;
  outline-offset: 2px !important;
  transition: outline 0.2s ease-in-out;
}
.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-vgDPJ0ibHT {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vgDPJ0ibHT .mbr-fallback-image.disabled {
  display: none;
}
.cid-vgDPJ0ibHT .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-vgDPJ0ibHT .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vgDPJ0ibHT .row {
  flex-direction: row-reverse;
}
.cid-vgDPJ0ibHT 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;
}
#custom-html-ar {
  /* Type valid CSS here */
}
#custom-html-ar div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-ar p {
  font-size: 60px;
  color: #777;
}
.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;
}
.cid-v0FKuqB3GS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0FKuqB3GS .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
}
@media (max-width: 992px) {
  .cid-v0FKuqB3GS .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v0FKuqB3GS .iconfont-wrapper {
  color: #103178 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v0FKuqB3GS .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v0FKuqB3GS .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v0FKuqB3GS .container {
    padding: 0 1rem;
  }
}
.cid-v0FKuqB3GS .menu-tite {
  background: #6592e6;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffc800;
}
.cid-v0FKuqB3GS .nav-link {
  position: relative;
}
.cid-v0FKuqB3GS .nav-link:hover {
  color: #47b5ed !important;
}
.cid-v0FKuqB3GS nav.navbar {
  position: fixed;
}
.cid-v0FKuqB3GS .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-v0FKuqB3GS .navbar.opened {
  transition: all 0.3s;
}
.cid-v0FKuqB3GS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0FKuqB3GS .navbar .navbar-logo img {
  width: auto;
}
.cid-v0FKuqB3GS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0FKuqB3GS .navbar.collapsed {
  justify-content: center;
}
.cid-v0FKuqB3GS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0FKuqB3GS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0FKuqB3GS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 7rem);
  }
}
.cid-v0FKuqB3GS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0FKuqB3GS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0FKuqB3GS .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-v0FKuqB3GS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0FKuqB3GS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0FKuqB3GS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0FKuqB3GS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0FKuqB3GS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0FKuqB3GS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0FKuqB3GS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0FKuqB3GS .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-v0FKuqB3GS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0FKuqB3GS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0FKuqB3GS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0FKuqB3GS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0FKuqB3GS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0FKuqB3GS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v0FKuqB3GS .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0FKuqB3GS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0FKuqB3GS .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0FKuqB3GS .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-v0FKuqB3GS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0FKuqB3GS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0FKuqB3GS .dropdown-item:hover,
.cid-v0FKuqB3GS .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-v0FKuqB3GS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0FKuqB3GS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0FKuqB3GS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v0FKuqB3GS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0FKuqB3GS .dropdown-menu,
.cid-v0FKuqB3GS .navbar.opened {
  background: #ffffff !important;
}
.cid-v0FKuqB3GS .nav-item:focus,
.cid-v0FKuqB3GS .nav-link:focus {
  outline: none;
}
.cid-v0FKuqB3GS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0FKuqB3GS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0FKuqB3GS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0FKuqB3GS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0FKuqB3GS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0FKuqB3GS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0FKuqB3GS .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-v0FKuqB3GS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0FKuqB3GS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0FKuqB3GS .dropdown-item.active,
.cid-v0FKuqB3GS .dropdown-item:active {
  background-color: transparent;
}
.cid-v0FKuqB3GS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0FKuqB3GS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0FKuqB3GS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0FKuqB3GS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v0FKuqB3GS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0FKuqB3GS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0FKuqB3GS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0FKuqB3GS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0FKuqB3GS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0FKuqB3GS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0FKuqB3GS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0FKuqB3GS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0FKuqB3GS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0FKuqB3GS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0FKuqB3GS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0FKuqB3GS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0FKuqB3GS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0FKuqB3GS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0FKuqB3GS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0FKuqB3GS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0FKuqB3GS .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-v0FKuqB3GS .navbar {
    height: 70px;
  }
  .cid-v0FKuqB3GS .navbar.opened {
    height: auto;
  }
  .cid-v0FKuqB3GS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v0FKurweky {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v0FKurweky .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0FKurweky .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0FKus9xxr {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v0FKus9xxr .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0FKus9xxr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0FKus9xxr .mbr-section-head {
  margin-bottom: 32px;
}
.cid-v0FKus9xxr .mbr-section-title {
  color: #24262b;
}
.cid-v0FKus9xxr .mbr-section-subtitle {
  color: #24262b;
}
.cid-v0FKus9xxr .items-row {
  row-gap: 32px;
}
.cid-v0FKus9xxr .item-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-v0FKus9xxr .item-wrapper img {
  width: 100%;
  aspect-ratio: calc(8 / (1 * 11));
  object-fit: cover;
  transition: all 0.3s;
}
.cid-v0FKus9xxr .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-v0FKus9xxr .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-v0FKus9xxr .item-wrapper:hover img {
  transform: scale(1.05);
}
.cid-v0FKus9xxr .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-v0FKus9xxr .item-wrapper:hover .img-overlay {
  opacity: 0.3;
}
.cid-v0FKus9xxr .mbr-item-subtitle {
  color: #24262b;
}
.cid-v0FKus9xxr .carousel-control,
.cid-v0FKus9xxr .close {
  background: #1b1b1b;
}
.cid-v0FKus9xxr .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-v0FKus9xxr .carousel-control-prev span {
  margin-right: 5px;
}
.cid-v0FKus9xxr .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-v0FKus9xxr .carousel-control-next span {
  margin-left: 5px;
}
.cid-v0FKus9xxr .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-v0FKus9xxr .close::before {
  content: '\e91a';
}
.cid-v0FKus9xxr .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-v0FKus9xxr .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-v0FKus9xxr .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v0FKus9xxr .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v0FKus9xxr .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v0FKus9xxr .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-v0FKus9xxr .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-v0FKus9xxr .carousel-indicators li.active,
.cid-v0FKus9xxr .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v0FKus9xxr .carousel-indicators li::after,
.cid-v0FKus9xxr .carousel-indicators li::before {
  content: none;
}
.cid-v0FKus9xxr .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v0FKus9xxr .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-v0FKus9xxr .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-v0FKus9xxr .carousel-indicators {
    display: none;
  }
}
.cid-v0FKus9xxr .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v0FKus9xxr .carousel-inner > .active {
  display: block;
}
.cid-v0FKus9xxr .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v0FKus9xxr .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v0FKus9xxr .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-v0FKus9xxr .carousel-control,
  .cid-v0FKus9xxr .carousel-indicators,
  .cid-v0FKus9xxr .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-v0FKus9xxr .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-v0FKus9xxr .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-v0FKus9xxr .carousel-indicators .active,
.cid-v0FKus9xxr .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-v0FKus9xxr .carousel-indicators .active {
  background: #fff;
}
.cid-v0FKus9xxr .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-v0FKus9xxr .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-v0FKus9xxr .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-v0FKus9xxr .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-v0FKus9xxr .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-v0FKus9xxr .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-v0FKus9xxr .carousel {
  width: 100%;
}
.cid-v0FKus9xxr .modal-backdrop.in {
  opacity: 0.8;
}
.cid-v0FKus9xxr .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-v0FKus9xxr .modal.fade .modal-dialog,
.cid-v0FKus9xxr .modal.in .modal-dialog {
  transform: none;
}
.cid-v0FKus9xxr .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-v0FKus9xxr H6 {
  text-align: center;
}
.cid-v0FKutk4WE {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v0FKutk4WE .mbr-text {
  color: #000000;
}
.cid-v0FKutk4WE .container {
  max-width: 1000px;
}
.cid-v0FKutk4WE h4 {
  text-align: center;
}
.cid-v0FKutk4WE p {
  text-align: center;
}
.cid-v0FKutk4WE .row {
  justify-content: center;
}
.cid-v0FKutk4WE .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-v0FKutk4WE .mbr-iconfont {
  font-size: 1.5rem;
  color: #000000;
  display: block;
}
.cid-v0FKutk4WE .card-title,
.cid-v0FKutk4WE .card-img {
  color: #000000;
}
.cid-v0FKutk4WE .icon-wrap {
  padding-bottom: 7.6rem;
}
.cid-v0FKutk4WE .icon-wrap:before {
  content: '';
  position: absolute;
  background: #000000;
  bottom: 0rem;
  left: 50%;
  width: 2px;
  height: 90px;
}
.cid-v0FKutk4WE img {
  margin-bottom: 5rem;
  width: auto;
  margin-left: auto;
  margin-right: auto;
}
.cid-v0FKutk4WE .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0FKutk4WE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0FKuuoBka {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
  overflow: hidden;
}
.cid-v0FVcGGYex {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0FVcGGYex .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
}
@media (max-width: 992px) {
  .cid-v0FVcGGYex .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v0FVcGGYex .iconfont-wrapper {
  color: #103178 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v0FVcGGYex .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v0FVcGGYex .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v0FVcGGYex .container {
    padding: 0 1rem;
  }
}
.cid-v0FVcGGYex .menu-tite {
  background: #6592e6;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffc800;
}
.cid-v0FVcGGYex .nav-link {
  position: relative;
}
.cid-v0FVcGGYex .nav-link:hover {
  color: #47b5ed !important;
}
.cid-v0FVcGGYex nav.navbar {
  position: fixed;
}
.cid-v0FVcGGYex .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-v0FVcGGYex .navbar.opened {
  transition: all 0.3s;
}
.cid-v0FVcGGYex .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0FVcGGYex .navbar .navbar-logo img {
  width: auto;
}
.cid-v0FVcGGYex .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0FVcGGYex .navbar.collapsed {
  justify-content: center;
}
.cid-v0FVcGGYex .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0FVcGGYex .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0FVcGGYex .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 7rem);
  }
}
.cid-v0FVcGGYex .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0FVcGGYex .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0FVcGGYex .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-v0FVcGGYex .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0FVcGGYex .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0FVcGGYex .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0FVcGGYex .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0FVcGGYex .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0FVcGGYex .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0FVcGGYex .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0FVcGGYex .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-v0FVcGGYex .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0FVcGGYex .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0FVcGGYex .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0FVcGGYex .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0FVcGGYex .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0FVcGGYex .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v0FVcGGYex .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0FVcGGYex .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0FVcGGYex .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0FVcGGYex .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-v0FVcGGYex .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0FVcGGYex .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0FVcGGYex .dropdown-item:hover,
.cid-v0FVcGGYex .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-v0FVcGGYex .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0FVcGGYex .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0FVcGGYex .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v0FVcGGYex .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0FVcGGYex .dropdown-menu,
.cid-v0FVcGGYex .navbar.opened {
  background: #ffffff !important;
}
.cid-v0FVcGGYex .nav-item:focus,
.cid-v0FVcGGYex .nav-link:focus {
  outline: none;
}
.cid-v0FVcGGYex .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0FVcGGYex .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0FVcGGYex .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0FVcGGYex .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0FVcGGYex .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0FVcGGYex .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0FVcGGYex .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-v0FVcGGYex .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0FVcGGYex .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0FVcGGYex .dropdown-item.active,
.cid-v0FVcGGYex .dropdown-item:active {
  background-color: transparent;
}
.cid-v0FVcGGYex .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0FVcGGYex .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0FVcGGYex .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0FVcGGYex .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v0FVcGGYex .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0FVcGGYex .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0FVcGGYex ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0FVcGGYex .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0FVcGGYex button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0FVcGGYex button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0FVcGGYex button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0FVcGGYex button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0FVcGGYex button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0FVcGGYex button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0FVcGGYex nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0FVcGGYex nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0FVcGGYex nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0FVcGGYex nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0FVcGGYex .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0FVcGGYex a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0FVcGGYex .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-v0FVcGGYex .navbar {
    height: 70px;
  }
  .cid-v0FVcGGYex .navbar.opened {
    height: auto;
  }
  .cid-v0FVcGGYex .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v0FVcHjUM1 {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v0FVcHjUM1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0FVcHjUM1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0FVcHIpI8 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v0FVcHIpI8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0FVcHIpI8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0FVcHIpI8 .mbr-section-head {
  margin-bottom: 32px;
}
.cid-v0FVcHIpI8 .mbr-section-title {
  color: #24262b;
}
.cid-v0FVcHIpI8 .mbr-section-subtitle {
  color: #24262b;
}
.cid-v0FVcHIpI8 .items-row {
  row-gap: 32px;
}
.cid-v0FVcHIpI8 .item-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-v0FVcHIpI8 .item-wrapper img {
  width: 100%;
  aspect-ratio: calc(8 / (1 * 11));
  object-fit: cover;
  transition: all 0.3s;
}
.cid-v0FVcHIpI8 .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-v0FVcHIpI8 .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-v0FVcHIpI8 .item-wrapper:hover img {
  transform: scale(1.05);
}
.cid-v0FVcHIpI8 .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-v0FVcHIpI8 .item-wrapper:hover .img-overlay {
  opacity: 0.3;
}
.cid-v0FVcHIpI8 .mbr-item-subtitle {
  color: #24262b;
}
.cid-v0FVcHIpI8 .carousel-control,
.cid-v0FVcHIpI8 .close {
  background: #1b1b1b;
}
.cid-v0FVcHIpI8 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-v0FVcHIpI8 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-v0FVcHIpI8 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-v0FVcHIpI8 .carousel-control-next span {
  margin-left: 5px;
}
.cid-v0FVcHIpI8 .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-v0FVcHIpI8 .close::before {
  content: '\e91a';
}
.cid-v0FVcHIpI8 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-v0FVcHIpI8 .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-v0FVcHIpI8 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v0FVcHIpI8 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v0FVcHIpI8 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v0FVcHIpI8 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-v0FVcHIpI8 .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-v0FVcHIpI8 .carousel-indicators li.active,
.cid-v0FVcHIpI8 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v0FVcHIpI8 .carousel-indicators li::after,
.cid-v0FVcHIpI8 .carousel-indicators li::before {
  content: none;
}
.cid-v0FVcHIpI8 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v0FVcHIpI8 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-v0FVcHIpI8 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-v0FVcHIpI8 .carousel-indicators {
    display: none;
  }
}
.cid-v0FVcHIpI8 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v0FVcHIpI8 .carousel-inner > .active {
  display: block;
}
.cid-v0FVcHIpI8 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v0FVcHIpI8 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v0FVcHIpI8 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-v0FVcHIpI8 .carousel-control,
  .cid-v0FVcHIpI8 .carousel-indicators,
  .cid-v0FVcHIpI8 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-v0FVcHIpI8 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-v0FVcHIpI8 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-v0FVcHIpI8 .carousel-indicators .active,
.cid-v0FVcHIpI8 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-v0FVcHIpI8 .carousel-indicators .active {
  background: #fff;
}
.cid-v0FVcHIpI8 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-v0FVcHIpI8 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-v0FVcHIpI8 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-v0FVcHIpI8 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-v0FVcHIpI8 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-v0FVcHIpI8 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-v0FVcHIpI8 .carousel {
  width: 100%;
}
.cid-v0FVcHIpI8 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-v0FVcHIpI8 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-v0FVcHIpI8 .modal.fade .modal-dialog,
.cid-v0FVcHIpI8 .modal.in .modal-dialog {
  transform: none;
}
.cid-v0FVcHIpI8 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-v0FVcHIpI8 H6 {
  text-align: center;
}
.cid-v0FVcIhG4h {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v0FVcIhG4h .mbr-text {
  color: #000000;
}
.cid-v0FVcIhG4h .container {
  max-width: 1000px;
}
.cid-v0FVcIhG4h h4 {
  text-align: center;
}
.cid-v0FVcIhG4h p {
  text-align: center;
}
.cid-v0FVcIhG4h .row {
  justify-content: center;
}
.cid-v0FVcIhG4h .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-v0FVcIhG4h .mbr-iconfont {
  font-size: 1.5rem;
  color: #000000;
  display: block;
}
.cid-v0FVcIhG4h .card-title,
.cid-v0FVcIhG4h .card-img {
  color: #000000;
}
.cid-v0FVcIhG4h .icon-wrap {
  padding-bottom: 7.6rem;
}
.cid-v0FVcIhG4h .icon-wrap:before {
  content: '';
  position: absolute;
  background: #000000;
  bottom: 0rem;
  left: 50%;
  width: 2px;
  height: 90px;
}
.cid-v0FVcIhG4h img {
  margin-bottom: 5rem;
  width: auto;
  margin-left: auto;
  margin-right: auto;
}
.cid-v0FVcIhG4h .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0FVcIhG4h .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0FVcIN6ZB {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
  overflow: hidden;
}
.cid-v0GDzQx7Un {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0GDzQx7Un .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
}
@media (max-width: 992px) {
  .cid-v0GDzQx7Un .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v0GDzQx7Un .iconfont-wrapper {
  color: #103178 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v0GDzQx7Un .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v0GDzQx7Un .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v0GDzQx7Un .container {
    padding: 0 1rem;
  }
}
.cid-v0GDzQx7Un .menu-tite {
  background: #6592e6;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffc800;
}
.cid-v0GDzQx7Un .nav-link {
  position: relative;
}
.cid-v0GDzQx7Un .nav-link:hover {
  color: #47b5ed !important;
}
.cid-v0GDzQx7Un nav.navbar {
  position: fixed;
}
.cid-v0GDzQx7Un .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-v0GDzQx7Un .navbar.opened {
  transition: all 0.3s;
}
.cid-v0GDzQx7Un .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0GDzQx7Un .navbar .navbar-logo img {
  width: auto;
}
.cid-v0GDzQx7Un .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0GDzQx7Un .navbar.collapsed {
  justify-content: center;
}
.cid-v0GDzQx7Un .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0GDzQx7Un .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0GDzQx7Un .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 7rem);
  }
}
.cid-v0GDzQx7Un .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0GDzQx7Un .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0GDzQx7Un .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-v0GDzQx7Un .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0GDzQx7Un .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0GDzQx7Un .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0GDzQx7Un .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0GDzQx7Un .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0GDzQx7Un .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0GDzQx7Un .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0GDzQx7Un .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-v0GDzQx7Un .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0GDzQx7Un .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0GDzQx7Un .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0GDzQx7Un .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0GDzQx7Un .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0GDzQx7Un .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v0GDzQx7Un .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0GDzQx7Un .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0GDzQx7Un .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0GDzQx7Un .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-v0GDzQx7Un .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0GDzQx7Un .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0GDzQx7Un .dropdown-item:hover,
.cid-v0GDzQx7Un .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-v0GDzQx7Un .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0GDzQx7Un .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0GDzQx7Un .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v0GDzQx7Un .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0GDzQx7Un .dropdown-menu,
.cid-v0GDzQx7Un .navbar.opened {
  background: #ffffff !important;
}
.cid-v0GDzQx7Un .nav-item:focus,
.cid-v0GDzQx7Un .nav-link:focus {
  outline: none;
}
.cid-v0GDzQx7Un .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0GDzQx7Un .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0GDzQx7Un .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0GDzQx7Un .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0GDzQx7Un .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0GDzQx7Un .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0GDzQx7Un .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-v0GDzQx7Un .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0GDzQx7Un .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0GDzQx7Un .dropdown-item.active,
.cid-v0GDzQx7Un .dropdown-item:active {
  background-color: transparent;
}
.cid-v0GDzQx7Un .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0GDzQx7Un .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0GDzQx7Un .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0GDzQx7Un .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v0GDzQx7Un .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0GDzQx7Un .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0GDzQx7Un ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0GDzQx7Un .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0GDzQx7Un button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0GDzQx7Un button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0GDzQx7Un button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0GDzQx7Un button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0GDzQx7Un button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0GDzQx7Un button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0GDzQx7Un nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0GDzQx7Un nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0GDzQx7Un nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0GDzQx7Un nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0GDzQx7Un .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0GDzQx7Un a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0GDzQx7Un .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-v0GDzQx7Un .navbar {
    height: 70px;
  }
  .cid-v0GDzQx7Un .navbar.opened {
    height: auto;
  }
  .cid-v0GDzQx7Un .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v0GDzRLLXN {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v0GDzRLLXN .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0GDzRLLXN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0GDzSJ34U {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v0GDzSJ34U .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0GDzSJ34U .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0GDzSJ34U .mbr-section-head {
  margin-bottom: 32px;
}
.cid-v0GDzSJ34U .mbr-section-title {
  color: #24262b;
}
.cid-v0GDzSJ34U .mbr-section-subtitle {
  color: #24262b;
}
.cid-v0GDzSJ34U .items-row {
  row-gap: 32px;
}
.cid-v0GDzSJ34U .item-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-v0GDzSJ34U .item-wrapper img {
  width: 100%;
  aspect-ratio: calc(8 / (1 * 12));
  object-fit: cover;
  transition: all 0.3s;
}
.cid-v0GDzSJ34U .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-v0GDzSJ34U .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-v0GDzSJ34U .item-wrapper:hover img {
  transform: scale(1.05);
}
.cid-v0GDzSJ34U .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-v0GDzSJ34U .item-wrapper:hover .img-overlay {
  opacity: 0.3;
}
.cid-v0GDzSJ34U .mbr-item-subtitle {
  color: #24262b;
}
.cid-v0GDzSJ34U .carousel-control,
.cid-v0GDzSJ34U .close {
  background: #1b1b1b;
}
.cid-v0GDzSJ34U .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-v0GDzSJ34U .carousel-control-prev span {
  margin-right: 5px;
}
.cid-v0GDzSJ34U .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-v0GDzSJ34U .carousel-control-next span {
  margin-left: 5px;
}
.cid-v0GDzSJ34U .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-v0GDzSJ34U .close::before {
  content: '\e91a';
}
.cid-v0GDzSJ34U .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-v0GDzSJ34U .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-v0GDzSJ34U .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v0GDzSJ34U .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v0GDzSJ34U .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v0GDzSJ34U .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-v0GDzSJ34U .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-v0GDzSJ34U .carousel-indicators li.active,
.cid-v0GDzSJ34U .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v0GDzSJ34U .carousel-indicators li::after,
.cid-v0GDzSJ34U .carousel-indicators li::before {
  content: none;
}
.cid-v0GDzSJ34U .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v0GDzSJ34U .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-v0GDzSJ34U .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-v0GDzSJ34U .carousel-indicators {
    display: none;
  }
}
.cid-v0GDzSJ34U .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v0GDzSJ34U .carousel-inner > .active {
  display: block;
}
.cid-v0GDzSJ34U .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v0GDzSJ34U .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v0GDzSJ34U .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-v0GDzSJ34U .carousel-control,
  .cid-v0GDzSJ34U .carousel-indicators,
  .cid-v0GDzSJ34U .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-v0GDzSJ34U .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-v0GDzSJ34U .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-v0GDzSJ34U .carousel-indicators .active,
.cid-v0GDzSJ34U .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-v0GDzSJ34U .carousel-indicators .active {
  background: #fff;
}
.cid-v0GDzSJ34U .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-v0GDzSJ34U .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-v0GDzSJ34U .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-v0GDzSJ34U .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-v0GDzSJ34U .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-v0GDzSJ34U .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-v0GDzSJ34U .carousel {
  width: 100%;
}
.cid-v0GDzSJ34U .modal-backdrop.in {
  opacity: 0.8;
}
.cid-v0GDzSJ34U .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-v0GDzSJ34U .modal.fade .modal-dialog,
.cid-v0GDzSJ34U .modal.in .modal-dialog {
  transform: none;
}
.cid-v0GDzSJ34U .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-v0GDzSJ34U H6 {
  text-align: center;
}
.cid-v0GDzTHD5d {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v0GDzTHD5d .mbr-text {
  color: #000000;
}
.cid-v0GDzTHD5d .container {
  max-width: 1000px;
}
.cid-v0GDzTHD5d h4 {
  text-align: center;
}
.cid-v0GDzTHD5d p {
  text-align: center;
}
.cid-v0GDzTHD5d .row {
  justify-content: center;
}
.cid-v0GDzTHD5d .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-v0GDzTHD5d .mbr-iconfont {
  font-size: 1.5rem;
  color: #000000;
  display: block;
}
.cid-v0GDzTHD5d .card-title,
.cid-v0GDzTHD5d .card-img {
  color: #000000;
}
.cid-v0GDzTHD5d .icon-wrap {
  padding-bottom: 7.6rem;
}
.cid-v0GDzTHD5d .icon-wrap:before {
  content: '';
  position: absolute;
  background: #000000;
  bottom: 0rem;
  left: 50%;
  width: 2px;
  height: 90px;
}
.cid-v0GDzTHD5d img {
  margin-bottom: 5rem;
  width: auto;
  margin-left: auto;
  margin-right: auto;
}
.cid-v0GDzTHD5d .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0GDzTHD5d .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0GDzUeL9e {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
  overflow: hidden;
}
.cid-v0GF9okJkn {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0GF9okJkn .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
}
@media (max-width: 992px) {
  .cid-v0GF9okJkn .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v0GF9okJkn .iconfont-wrapper {
  color: #103178 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v0GF9okJkn .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v0GF9okJkn .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v0GF9okJkn .container {
    padding: 0 1rem;
  }
}
.cid-v0GF9okJkn .menu-tite {
  background: #6592e6;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffc800;
}
.cid-v0GF9okJkn .nav-link {
  position: relative;
}
.cid-v0GF9okJkn .nav-link:hover {
  color: #47b5ed !important;
}
.cid-v0GF9okJkn nav.navbar {
  position: fixed;
}
.cid-v0GF9okJkn .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-v0GF9okJkn .navbar.opened {
  transition: all 0.3s;
}
.cid-v0GF9okJkn .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0GF9okJkn .navbar .navbar-logo img {
  width: auto;
}
.cid-v0GF9okJkn .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0GF9okJkn .navbar.collapsed {
  justify-content: center;
}
.cid-v0GF9okJkn .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0GF9okJkn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0GF9okJkn .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 7rem);
  }
}
.cid-v0GF9okJkn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0GF9okJkn .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0GF9okJkn .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-v0GF9okJkn .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0GF9okJkn .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0GF9okJkn .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0GF9okJkn .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0GF9okJkn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0GF9okJkn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0GF9okJkn .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0GF9okJkn .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-v0GF9okJkn .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0GF9okJkn .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0GF9okJkn .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0GF9okJkn .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0GF9okJkn .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0GF9okJkn .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v0GF9okJkn .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0GF9okJkn .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0GF9okJkn .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0GF9okJkn .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-v0GF9okJkn .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0GF9okJkn .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0GF9okJkn .dropdown-item:hover,
.cid-v0GF9okJkn .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-v0GF9okJkn .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0GF9okJkn .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0GF9okJkn .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v0GF9okJkn .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0GF9okJkn .dropdown-menu,
.cid-v0GF9okJkn .navbar.opened {
  background: #ffffff !important;
}
.cid-v0GF9okJkn .nav-item:focus,
.cid-v0GF9okJkn .nav-link:focus {
  outline: none;
}
.cid-v0GF9okJkn .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0GF9okJkn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0GF9okJkn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0GF9okJkn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0GF9okJkn .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0GF9okJkn .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0GF9okJkn .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-v0GF9okJkn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0GF9okJkn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0GF9okJkn .dropdown-item.active,
.cid-v0GF9okJkn .dropdown-item:active {
  background-color: transparent;
}
.cid-v0GF9okJkn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0GF9okJkn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0GF9okJkn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0GF9okJkn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v0GF9okJkn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0GF9okJkn .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0GF9okJkn ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0GF9okJkn .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0GF9okJkn button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0GF9okJkn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0GF9okJkn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0GF9okJkn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0GF9okJkn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0GF9okJkn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0GF9okJkn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0GF9okJkn nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0GF9okJkn nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0GF9okJkn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0GF9okJkn .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0GF9okJkn a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0GF9okJkn .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-v0GF9okJkn .navbar {
    height: 70px;
  }
  .cid-v0GF9okJkn .navbar.opened {
    height: auto;
  }
  .cid-v0GF9okJkn .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v0GF9p6k9h {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v0GF9p6k9h .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0GF9p6k9h .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0GF9pAXMG {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v0GF9pAXMG .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0GF9pAXMG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0GF9pAXMG .mbr-section-head {
  margin-bottom: 32px;
}
.cid-v0GF9pAXMG .mbr-section-title {
  color: #24262b;
}
.cid-v0GF9pAXMG .mbr-section-subtitle {
  color: #24262b;
}
.cid-v0GF9pAXMG .items-row {
  row-gap: 32px;
}
.cid-v0GF9pAXMG .item-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-v0GF9pAXMG .item-wrapper img {
  width: 100%;
  aspect-ratio: calc(8 / (1 * 12));
  object-fit: cover;
  transition: all 0.3s;
}
.cid-v0GF9pAXMG .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-v0GF9pAXMG .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-v0GF9pAXMG .item-wrapper:hover img {
  transform: scale(1.05);
}
.cid-v0GF9pAXMG .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-v0GF9pAXMG .item-wrapper:hover .img-overlay {
  opacity: 0.3;
}
.cid-v0GF9pAXMG .mbr-item-subtitle {
  color: #24262b;
}
.cid-v0GF9pAXMG .carousel-control,
.cid-v0GF9pAXMG .close {
  background: #1b1b1b;
}
.cid-v0GF9pAXMG .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-v0GF9pAXMG .carousel-control-prev span {
  margin-right: 5px;
}
.cid-v0GF9pAXMG .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-v0GF9pAXMG .carousel-control-next span {
  margin-left: 5px;
}
.cid-v0GF9pAXMG .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-v0GF9pAXMG .close::before {
  content: '\e91a';
}
.cid-v0GF9pAXMG .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-v0GF9pAXMG .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-v0GF9pAXMG .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v0GF9pAXMG .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v0GF9pAXMG .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v0GF9pAXMG .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-v0GF9pAXMG .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-v0GF9pAXMG .carousel-indicators li.active,
.cid-v0GF9pAXMG .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v0GF9pAXMG .carousel-indicators li::after,
.cid-v0GF9pAXMG .carousel-indicators li::before {
  content: none;
}
.cid-v0GF9pAXMG .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v0GF9pAXMG .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-v0GF9pAXMG .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-v0GF9pAXMG .carousel-indicators {
    display: none;
  }
}
.cid-v0GF9pAXMG .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v0GF9pAXMG .carousel-inner > .active {
  display: block;
}
.cid-v0GF9pAXMG .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v0GF9pAXMG .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v0GF9pAXMG .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-v0GF9pAXMG .carousel-control,
  .cid-v0GF9pAXMG .carousel-indicators,
  .cid-v0GF9pAXMG .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-v0GF9pAXMG .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-v0GF9pAXMG .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-v0GF9pAXMG .carousel-indicators .active,
.cid-v0GF9pAXMG .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-v0GF9pAXMG .carousel-indicators .active {
  background: #fff;
}
.cid-v0GF9pAXMG .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-v0GF9pAXMG .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-v0GF9pAXMG .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-v0GF9pAXMG .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-v0GF9pAXMG .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-v0GF9pAXMG .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-v0GF9pAXMG .carousel {
  width: 100%;
}
.cid-v0GF9pAXMG .modal-backdrop.in {
  opacity: 0.8;
}
.cid-v0GF9pAXMG .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-v0GF9pAXMG .modal.fade .modal-dialog,
.cid-v0GF9pAXMG .modal.in .modal-dialog {
  transform: none;
}
.cid-v0GF9pAXMG .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-v0GF9pAXMG H6 {
  text-align: center;
}
.cid-v0GF9qe35R {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v0GF9qe35R .mbr-text {
  color: #000000;
}
.cid-v0GF9qe35R .container {
  max-width: 1000px;
}
.cid-v0GF9qe35R h4 {
  text-align: center;
}
.cid-v0GF9qe35R p {
  text-align: center;
}
.cid-v0GF9qe35R .row {
  justify-content: center;
}
.cid-v0GF9qe35R .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-v0GF9qe35R .mbr-iconfont {
  font-size: 1.5rem;
  color: #000000;
  display: block;
}
.cid-v0GF9qe35R .card-title,
.cid-v0GF9qe35R .card-img {
  color: #000000;
}
.cid-v0GF9qe35R .icon-wrap {
  padding-bottom: 7.6rem;
}
.cid-v0GF9qe35R .icon-wrap:before {
  content: '';
  position: absolute;
  background: #000000;
  bottom: 0rem;
  left: 50%;
  width: 2px;
  height: 90px;
}
.cid-v0GF9qe35R img {
  margin-bottom: 5rem;
  width: auto;
  margin-left: auto;
  margin-right: auto;
}
.cid-v0GF9qe35R .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0GF9qe35R .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0GF9qQdSz {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
  overflow: hidden;
}
.cid-v7iWakv65r {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v7iWakv65r .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
}
@media (max-width: 992px) {
  .cid-v7iWakv65r .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v7iWakv65r .iconfont-wrapper {
  color: #103178 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v7iWakv65r .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v7iWakv65r .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v7iWakv65r .container {
    padding: 0 1rem;
  }
}
.cid-v7iWakv65r .menu-tite {
  background: #6592e6;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffc800;
}
.cid-v7iWakv65r .nav-link {
  position: relative;
}
.cid-v7iWakv65r .nav-link:hover {
  color: #47b5ed !important;
}
.cid-v7iWakv65r nav.navbar {
  position: fixed;
}
.cid-v7iWakv65r .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-v7iWakv65r .navbar.opened {
  transition: all 0.3s;
}
.cid-v7iWakv65r .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v7iWakv65r .navbar .navbar-logo img {
  width: auto;
}
.cid-v7iWakv65r .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v7iWakv65r .navbar.collapsed {
  justify-content: center;
}
.cid-v7iWakv65r .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v7iWakv65r .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v7iWakv65r .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 7rem);
  }
}
.cid-v7iWakv65r .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v7iWakv65r .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v7iWakv65r .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-v7iWakv65r .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v7iWakv65r .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v7iWakv65r .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v7iWakv65r .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v7iWakv65r .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v7iWakv65r .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v7iWakv65r .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v7iWakv65r .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-v7iWakv65r .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v7iWakv65r .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v7iWakv65r .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v7iWakv65r .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v7iWakv65r .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v7iWakv65r .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v7iWakv65r .navbar.navbar-short {
  min-height: 60px;
}
.cid-v7iWakv65r .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v7iWakv65r .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v7iWakv65r .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-v7iWakv65r .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v7iWakv65r .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v7iWakv65r .dropdown-item:hover,
.cid-v7iWakv65r .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-v7iWakv65r .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v7iWakv65r .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v7iWakv65r .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v7iWakv65r .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v7iWakv65r .dropdown-menu,
.cid-v7iWakv65r .navbar.opened {
  background: #ffffff !important;
}
.cid-v7iWakv65r .nav-item:focus,
.cid-v7iWakv65r .nav-link:focus {
  outline: none;
}
.cid-v7iWakv65r .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v7iWakv65r .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v7iWakv65r .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v7iWakv65r .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v7iWakv65r .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v7iWakv65r .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v7iWakv65r .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-v7iWakv65r .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v7iWakv65r .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v7iWakv65r .dropdown-item.active,
.cid-v7iWakv65r .dropdown-item:active {
  background-color: transparent;
}
.cid-v7iWakv65r .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v7iWakv65r .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v7iWakv65r .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v7iWakv65r .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v7iWakv65r .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v7iWakv65r .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v7iWakv65r ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v7iWakv65r .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v7iWakv65r button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v7iWakv65r button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v7iWakv65r button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v7iWakv65r button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v7iWakv65r button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v7iWakv65r button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v7iWakv65r nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v7iWakv65r nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v7iWakv65r nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v7iWakv65r nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v7iWakv65r .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v7iWakv65r a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v7iWakv65r .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-v7iWakv65r .navbar {
    height: 70px;
  }
  .cid-v7iWakv65r .navbar.opened {
    height: auto;
  }
  .cid-v7iWakv65r .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v7iWal5Rdb {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v7iWal5Rdb .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7iWal5Rdb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7iWalr75x {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v7iWalr75x .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7iWalr75x .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7iWalr75x .mbr-section-head {
  margin-bottom: 32px;
}
.cid-v7iWalr75x .mbr-section-title {
  color: #24262b;
}
.cid-v7iWalr75x .mbr-section-subtitle {
  color: #24262b;
}
.cid-v7iWalr75x .items-row {
  row-gap: 32px;
}
.cid-v7iWalr75x .item-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-v7iWalr75x .item-wrapper img {
  width: 100%;
  aspect-ratio: calc(8 / (1 * 12));
  object-fit: cover;
  transition: all 0.3s;
}
.cid-v7iWalr75x .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-v7iWalr75x .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-v7iWalr75x .item-wrapper:hover img {
  transform: scale(1.05);
}
.cid-v7iWalr75x .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-v7iWalr75x .item-wrapper:hover .img-overlay {
  opacity: 0.3;
}
.cid-v7iWalr75x .mbr-item-subtitle {
  color: #24262b;
}
.cid-v7iWalr75x .carousel-control,
.cid-v7iWalr75x .close {
  background: #1b1b1b;
}
.cid-v7iWalr75x .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-v7iWalr75x .carousel-control-prev span {
  margin-right: 5px;
}
.cid-v7iWalr75x .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-v7iWalr75x .carousel-control-next span {
  margin-left: 5px;
}
.cid-v7iWalr75x .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-v7iWalr75x .close::before {
  content: '\e91a';
}
.cid-v7iWalr75x .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-v7iWalr75x .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-v7iWalr75x .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v7iWalr75x .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v7iWalr75x .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v7iWalr75x .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-v7iWalr75x .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-v7iWalr75x .carousel-indicators li.active,
.cid-v7iWalr75x .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v7iWalr75x .carousel-indicators li::after,
.cid-v7iWalr75x .carousel-indicators li::before {
  content: none;
}
.cid-v7iWalr75x .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v7iWalr75x .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-v7iWalr75x .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-v7iWalr75x .carousel-indicators {
    display: none;
  }
}
.cid-v7iWalr75x .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v7iWalr75x .carousel-inner > .active {
  display: block;
}
.cid-v7iWalr75x .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v7iWalr75x .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v7iWalr75x .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-v7iWalr75x .carousel-control,
  .cid-v7iWalr75x .carousel-indicators,
  .cid-v7iWalr75x .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-v7iWalr75x .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-v7iWalr75x .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-v7iWalr75x .carousel-indicators .active,
.cid-v7iWalr75x .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-v7iWalr75x .carousel-indicators .active {
  background: #fff;
}
.cid-v7iWalr75x .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-v7iWalr75x .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-v7iWalr75x .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-v7iWalr75x .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-v7iWalr75x .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-v7iWalr75x .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-v7iWalr75x .carousel {
  width: 100%;
}
.cid-v7iWalr75x .modal-backdrop.in {
  opacity: 0.8;
}
.cid-v7iWalr75x .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-v7iWalr75x .modal.fade .modal-dialog,
.cid-v7iWalr75x .modal.in .modal-dialog {
  transform: none;
}
.cid-v7iWalr75x .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-v7iWalr75x H6 {
  text-align: center;
}
.cid-v7iWam0RIv {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v7iWam0RIv .mbr-text {
  color: #000000;
}
.cid-v7iWam0RIv .container {
  max-width: 1000px;
}
.cid-v7iWam0RIv h4 {
  text-align: center;
}
.cid-v7iWam0RIv p {
  text-align: center;
}
.cid-v7iWam0RIv .row {
  justify-content: center;
}
.cid-v7iWam0RIv .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-v7iWam0RIv .mbr-iconfont {
  font-size: 1.5rem;
  color: #000000;
  display: block;
}
.cid-v7iWam0RIv .card-title,
.cid-v7iWam0RIv .card-img {
  color: #000000;
}
.cid-v7iWam0RIv .icon-wrap {
  padding-bottom: 7.6rem;
}
.cid-v7iWam0RIv .icon-wrap:before {
  content: '';
  position: absolute;
  background: #000000;
  bottom: 0rem;
  left: 50%;
  width: 2px;
  height: 90px;
}
.cid-v7iWam0RIv img {
  margin-bottom: 5rem;
  width: auto;
  margin-left: auto;
  margin-right: auto;
}
.cid-v7iWam0RIv .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7iWam0RIv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7iWamur6u {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
  overflow: hidden;
}
.cid-v7l6ca0AI8 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v7l6ca0AI8 .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
}
@media (max-width: 992px) {
  .cid-v7l6ca0AI8 .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v7l6ca0AI8 .iconfont-wrapper {
  color: #103178 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v7l6ca0AI8 .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v7l6ca0AI8 .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v7l6ca0AI8 .container {
    padding: 0 1rem;
  }
}
.cid-v7l6ca0AI8 .menu-tite {
  background: #6592e6;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffc800;
}
.cid-v7l6ca0AI8 .nav-link {
  position: relative;
}
.cid-v7l6ca0AI8 .nav-link:hover {
  color: #47b5ed !important;
}
.cid-v7l6ca0AI8 nav.navbar {
  position: fixed;
}
.cid-v7l6ca0AI8 .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-v7l6ca0AI8 .navbar.opened {
  transition: all 0.3s;
}
.cid-v7l6ca0AI8 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v7l6ca0AI8 .navbar .navbar-logo img {
  width: auto;
}
.cid-v7l6ca0AI8 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v7l6ca0AI8 .navbar.collapsed {
  justify-content: center;
}
.cid-v7l6ca0AI8 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v7l6ca0AI8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v7l6ca0AI8 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 7rem);
  }
}
.cid-v7l6ca0AI8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v7l6ca0AI8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v7l6ca0AI8 .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-v7l6ca0AI8 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v7l6ca0AI8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v7l6ca0AI8 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v7l6ca0AI8 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v7l6ca0AI8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v7l6ca0AI8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v7l6ca0AI8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v7l6ca0AI8 .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-v7l6ca0AI8 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v7l6ca0AI8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v7l6ca0AI8 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v7l6ca0AI8 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v7l6ca0AI8 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v7l6ca0AI8 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v7l6ca0AI8 .navbar.navbar-short {
  min-height: 60px;
}
.cid-v7l6ca0AI8 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v7l6ca0AI8 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v7l6ca0AI8 .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-v7l6ca0AI8 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v7l6ca0AI8 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v7l6ca0AI8 .dropdown-item:hover,
.cid-v7l6ca0AI8 .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-v7l6ca0AI8 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v7l6ca0AI8 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v7l6ca0AI8 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v7l6ca0AI8 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v7l6ca0AI8 .dropdown-menu,
.cid-v7l6ca0AI8 .navbar.opened {
  background: #ffffff !important;
}
.cid-v7l6ca0AI8 .nav-item:focus,
.cid-v7l6ca0AI8 .nav-link:focus {
  outline: none;
}
.cid-v7l6ca0AI8 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v7l6ca0AI8 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v7l6ca0AI8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v7l6ca0AI8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v7l6ca0AI8 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v7l6ca0AI8 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v7l6ca0AI8 .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-v7l6ca0AI8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v7l6ca0AI8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v7l6ca0AI8 .dropdown-item.active,
.cid-v7l6ca0AI8 .dropdown-item:active {
  background-color: transparent;
}
.cid-v7l6ca0AI8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v7l6ca0AI8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v7l6ca0AI8 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v7l6ca0AI8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v7l6ca0AI8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v7l6ca0AI8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v7l6ca0AI8 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v7l6ca0AI8 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v7l6ca0AI8 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v7l6ca0AI8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v7l6ca0AI8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v7l6ca0AI8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v7l6ca0AI8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v7l6ca0AI8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v7l6ca0AI8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v7l6ca0AI8 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v7l6ca0AI8 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v7l6ca0AI8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v7l6ca0AI8 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v7l6ca0AI8 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v7l6ca0AI8 .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-v7l6ca0AI8 .navbar {
    height: 70px;
  }
  .cid-v7l6ca0AI8 .navbar.opened {
    height: auto;
  }
  .cid-v7l6ca0AI8 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v7l6caYMU6 {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v7l6caYMU6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7l6caYMU6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7l6cbC4Q8 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v7l6cbC4Q8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7l6cbC4Q8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7l6cbC4Q8 .mbr-section-head {
  margin-bottom: 32px;
}
.cid-v7l6cbC4Q8 .mbr-section-title {
  color: #24262b;
}
.cid-v7l6cbC4Q8 .mbr-section-subtitle {
  color: #24262b;
}
.cid-v7l6cbC4Q8 .items-row {
  row-gap: 32px;
}
.cid-v7l6cbC4Q8 .item-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-v7l6cbC4Q8 .item-wrapper img {
  width: 100%;
  aspect-ratio: calc(8 / (1 * 12));
  object-fit: cover;
  transition: all 0.3s;
}
.cid-v7l6cbC4Q8 .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-v7l6cbC4Q8 .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-v7l6cbC4Q8 .item-wrapper:hover img {
  transform: scale(1.05);
}
.cid-v7l6cbC4Q8 .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-v7l6cbC4Q8 .item-wrapper:hover .img-overlay {
  opacity: 0.3;
}
.cid-v7l6cbC4Q8 .mbr-item-subtitle {
  color: #24262b;
}
.cid-v7l6cbC4Q8 .carousel-control,
.cid-v7l6cbC4Q8 .close {
  background: #1b1b1b;
}
.cid-v7l6cbC4Q8 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-v7l6cbC4Q8 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-v7l6cbC4Q8 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-v7l6cbC4Q8 .carousel-control-next span {
  margin-left: 5px;
}
.cid-v7l6cbC4Q8 .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-v7l6cbC4Q8 .close::before {
  content: '\e91a';
}
.cid-v7l6cbC4Q8 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-v7l6cbC4Q8 .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-v7l6cbC4Q8 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v7l6cbC4Q8 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v7l6cbC4Q8 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v7l6cbC4Q8 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-v7l6cbC4Q8 .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-v7l6cbC4Q8 .carousel-indicators li.active,
.cid-v7l6cbC4Q8 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v7l6cbC4Q8 .carousel-indicators li::after,
.cid-v7l6cbC4Q8 .carousel-indicators li::before {
  content: none;
}
.cid-v7l6cbC4Q8 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v7l6cbC4Q8 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-v7l6cbC4Q8 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-v7l6cbC4Q8 .carousel-indicators {
    display: none;
  }
}
.cid-v7l6cbC4Q8 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v7l6cbC4Q8 .carousel-inner > .active {
  display: block;
}
.cid-v7l6cbC4Q8 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v7l6cbC4Q8 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v7l6cbC4Q8 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-v7l6cbC4Q8 .carousel-control,
  .cid-v7l6cbC4Q8 .carousel-indicators,
  .cid-v7l6cbC4Q8 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-v7l6cbC4Q8 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-v7l6cbC4Q8 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-v7l6cbC4Q8 .carousel-indicators .active,
.cid-v7l6cbC4Q8 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-v7l6cbC4Q8 .carousel-indicators .active {
  background: #fff;
}
.cid-v7l6cbC4Q8 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-v7l6cbC4Q8 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-v7l6cbC4Q8 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-v7l6cbC4Q8 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-v7l6cbC4Q8 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-v7l6cbC4Q8 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-v7l6cbC4Q8 .carousel {
  width: 100%;
}
.cid-v7l6cbC4Q8 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-v7l6cbC4Q8 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-v7l6cbC4Q8 .modal.fade .modal-dialog,
.cid-v7l6cbC4Q8 .modal.in .modal-dialog {
  transform: none;
}
.cid-v7l6cbC4Q8 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-v7l6cbC4Q8 H6 {
  text-align: center;
}
.cid-v7l6ccjhlB {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v7l6ccjhlB .mbr-text {
  color: #000000;
}
.cid-v7l6ccjhlB .container {
  max-width: 1000px;
}
.cid-v7l6ccjhlB h4 {
  text-align: center;
}
.cid-v7l6ccjhlB p {
  text-align: center;
}
.cid-v7l6ccjhlB .row {
  justify-content: center;
}
.cid-v7l6ccjhlB .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-v7l6ccjhlB .mbr-iconfont {
  font-size: 1.5rem;
  color: #000000;
  display: block;
}
.cid-v7l6ccjhlB .card-title,
.cid-v7l6ccjhlB .card-img {
  color: #000000;
}
.cid-v7l6ccjhlB .icon-wrap {
  padding-bottom: 7.6rem;
}
.cid-v7l6ccjhlB .icon-wrap:before {
  content: '';
  position: absolute;
  background: #000000;
  bottom: 0rem;
  left: 50%;
  width: 2px;
  height: 90px;
}
.cid-v7l6ccjhlB img {
  margin-bottom: 5rem;
  width: auto;
  margin-left: auto;
  margin-right: auto;
}
.cid-v7l6ccjhlB .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7l6ccjhlB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7l6ccPTSF {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
  overflow: hidden;
}
.cid-vbrUJ2rEHK {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vbrUJ2rEHK .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
}
@media (max-width: 992px) {
  .cid-vbrUJ2rEHK .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-vbrUJ2rEHK .iconfont-wrapper {
  color: #103178 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-vbrUJ2rEHK .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-vbrUJ2rEHK .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-vbrUJ2rEHK .container {
    padding: 0 1rem;
  }
}
.cid-vbrUJ2rEHK .menu-tite {
  background: #6592e6;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffc800;
}
.cid-vbrUJ2rEHK .nav-link {
  position: relative;
}
.cid-vbrUJ2rEHK .nav-link:hover {
  color: #47b5ed !important;
}
.cid-vbrUJ2rEHK nav.navbar {
  position: fixed;
}
.cid-vbrUJ2rEHK .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-vbrUJ2rEHK .navbar.opened {
  transition: all 0.3s;
}
.cid-vbrUJ2rEHK .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vbrUJ2rEHK .navbar .navbar-logo img {
  width: auto;
}
.cid-vbrUJ2rEHK .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vbrUJ2rEHK .navbar.collapsed {
  justify-content: center;
}
.cid-vbrUJ2rEHK .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vbrUJ2rEHK .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vbrUJ2rEHK .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 7rem);
  }
}
.cid-vbrUJ2rEHK .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vbrUJ2rEHK .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vbrUJ2rEHK .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-vbrUJ2rEHK .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vbrUJ2rEHK .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vbrUJ2rEHK .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vbrUJ2rEHK .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vbrUJ2rEHK .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vbrUJ2rEHK .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vbrUJ2rEHK .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vbrUJ2rEHK .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-vbrUJ2rEHK .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vbrUJ2rEHK .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vbrUJ2rEHK .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vbrUJ2rEHK .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vbrUJ2rEHK .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vbrUJ2rEHK .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vbrUJ2rEHK .navbar.navbar-short {
  min-height: 60px;
}
.cid-vbrUJ2rEHK .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vbrUJ2rEHK .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vbrUJ2rEHK .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-vbrUJ2rEHK .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vbrUJ2rEHK .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vbrUJ2rEHK .dropdown-item:hover,
.cid-vbrUJ2rEHK .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-vbrUJ2rEHK .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vbrUJ2rEHK .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vbrUJ2rEHK .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-vbrUJ2rEHK .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vbrUJ2rEHK .dropdown-menu,
.cid-vbrUJ2rEHK .navbar.opened {
  background: #ffffff !important;
}
.cid-vbrUJ2rEHK .nav-item:focus,
.cid-vbrUJ2rEHK .nav-link:focus {
  outline: none;
}
.cid-vbrUJ2rEHK .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vbrUJ2rEHK .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vbrUJ2rEHK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vbrUJ2rEHK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vbrUJ2rEHK .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vbrUJ2rEHK .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vbrUJ2rEHK .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-vbrUJ2rEHK .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vbrUJ2rEHK .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vbrUJ2rEHK .dropdown-item.active,
.cid-vbrUJ2rEHK .dropdown-item:active {
  background-color: transparent;
}
.cid-vbrUJ2rEHK .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vbrUJ2rEHK .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vbrUJ2rEHK .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vbrUJ2rEHK .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-vbrUJ2rEHK .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vbrUJ2rEHK .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vbrUJ2rEHK ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vbrUJ2rEHK .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vbrUJ2rEHK button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vbrUJ2rEHK button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-vbrUJ2rEHK button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vbrUJ2rEHK button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vbrUJ2rEHK button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vbrUJ2rEHK button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vbrUJ2rEHK nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vbrUJ2rEHK nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vbrUJ2rEHK nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vbrUJ2rEHK nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vbrUJ2rEHK .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vbrUJ2rEHK a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vbrUJ2rEHK .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-vbrUJ2rEHK .navbar {
    height: 70px;
  }
  .cid-vbrUJ2rEHK .navbar.opened {
    height: auto;
  }
  .cid-vbrUJ2rEHK .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vbrUJ2VDRB {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vbrUJ2VDRB .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbrUJ2VDRB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbrUJ3hmIN {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vbrUJ3hmIN .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbrUJ3hmIN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbrUJ3hmIN .mbr-section-head {
  margin-bottom: 32px;
}
.cid-vbrUJ3hmIN .mbr-section-title {
  color: #24262b;
}
.cid-vbrUJ3hmIN .mbr-section-subtitle {
  color: #24262b;
}
.cid-vbrUJ3hmIN .items-row {
  row-gap: 32px;
}
.cid-vbrUJ3hmIN .item-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-vbrUJ3hmIN .item-wrapper img {
  width: 100%;
  aspect-ratio: calc(8 / (1 * 12));
  object-fit: cover;
  transition: all 0.3s;
}
.cid-vbrUJ3hmIN .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-vbrUJ3hmIN .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-vbrUJ3hmIN .item-wrapper:hover img {
  transform: scale(1.05);
}
.cid-vbrUJ3hmIN .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-vbrUJ3hmIN .item-wrapper:hover .img-overlay {
  opacity: 0.3;
}
.cid-vbrUJ3hmIN .mbr-item-subtitle {
  color: #24262b;
}
.cid-vbrUJ3hmIN .carousel-control,
.cid-vbrUJ3hmIN .close {
  background: #1b1b1b;
}
.cid-vbrUJ3hmIN .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-vbrUJ3hmIN .carousel-control-prev span {
  margin-right: 5px;
}
.cid-vbrUJ3hmIN .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-vbrUJ3hmIN .carousel-control-next span {
  margin-left: 5px;
}
.cid-vbrUJ3hmIN .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-vbrUJ3hmIN .close::before {
  content: '\e91a';
}
.cid-vbrUJ3hmIN .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-vbrUJ3hmIN .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-vbrUJ3hmIN .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vbrUJ3hmIN .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-vbrUJ3hmIN .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-vbrUJ3hmIN .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-vbrUJ3hmIN .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-vbrUJ3hmIN .carousel-indicators li.active,
.cid-vbrUJ3hmIN .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-vbrUJ3hmIN .carousel-indicators li::after,
.cid-vbrUJ3hmIN .carousel-indicators li::before {
  content: none;
}
.cid-vbrUJ3hmIN .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-vbrUJ3hmIN .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-vbrUJ3hmIN .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-vbrUJ3hmIN .carousel-indicators {
    display: none;
  }
}
.cid-vbrUJ3hmIN .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-vbrUJ3hmIN .carousel-inner > .active {
  display: block;
}
.cid-vbrUJ3hmIN .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vbrUJ3hmIN .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-vbrUJ3hmIN .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-vbrUJ3hmIN .carousel-control,
  .cid-vbrUJ3hmIN .carousel-indicators,
  .cid-vbrUJ3hmIN .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-vbrUJ3hmIN .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-vbrUJ3hmIN .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-vbrUJ3hmIN .carousel-indicators .active,
.cid-vbrUJ3hmIN .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-vbrUJ3hmIN .carousel-indicators .active {
  background: #fff;
}
.cid-vbrUJ3hmIN .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-vbrUJ3hmIN .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-vbrUJ3hmIN .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-vbrUJ3hmIN .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-vbrUJ3hmIN .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-vbrUJ3hmIN .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-vbrUJ3hmIN .carousel {
  width: 100%;
}
.cid-vbrUJ3hmIN .modal-backdrop.in {
  opacity: 0.8;
}
.cid-vbrUJ3hmIN .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-vbrUJ3hmIN .modal.fade .modal-dialog,
.cid-vbrUJ3hmIN .modal.in .modal-dialog {
  transform: none;
}
.cid-vbrUJ3hmIN .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-vbrUJ3hmIN H6 {
  text-align: center;
}
.cid-vbrUJ3Rk3g {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vbrUJ3Rk3g .mbr-text {
  color: #000000;
}
.cid-vbrUJ3Rk3g .container {
  max-width: 1000px;
}
.cid-vbrUJ3Rk3g h4 {
  text-align: center;
}
.cid-vbrUJ3Rk3g p {
  text-align: center;
}
.cid-vbrUJ3Rk3g .row {
  justify-content: center;
}
.cid-vbrUJ3Rk3g .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-vbrUJ3Rk3g .mbr-iconfont {
  font-size: 1.5rem;
  color: #000000;
  display: block;
}
.cid-vbrUJ3Rk3g .card-title,
.cid-vbrUJ3Rk3g .card-img {
  color: #000000;
}
.cid-vbrUJ3Rk3g .icon-wrap {
  padding-bottom: 7.6rem;
}
.cid-vbrUJ3Rk3g .icon-wrap:before {
  content: '';
  position: absolute;
  background: #000000;
  bottom: 0rem;
  left: 50%;
  width: 2px;
  height: 90px;
}
.cid-vbrUJ3Rk3g img {
  margin-bottom: 5rem;
  width: auto;
  margin-left: auto;
  margin-right: auto;
}
.cid-vbrUJ3Rk3g .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbrUJ3Rk3g .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbrUJ4iSx4 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
  overflow: hidden;
}
.cid-vbs3SxdTnF {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vbs3SxdTnF .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
}
@media (max-width: 992px) {
  .cid-vbs3SxdTnF .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-vbs3SxdTnF .iconfont-wrapper {
  color: #103178 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-vbs3SxdTnF .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-vbs3SxdTnF .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-vbs3SxdTnF .container {
    padding: 0 1rem;
  }
}
.cid-vbs3SxdTnF .menu-tite {
  background: #6592e6;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffc800;
}
.cid-vbs3SxdTnF .nav-link {
  position: relative;
}
.cid-vbs3SxdTnF .nav-link:hover {
  color: #47b5ed !important;
}
.cid-vbs3SxdTnF nav.navbar {
  position: fixed;
}
.cid-vbs3SxdTnF .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-vbs3SxdTnF .navbar.opened {
  transition: all 0.3s;
}
.cid-vbs3SxdTnF .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vbs3SxdTnF .navbar .navbar-logo img {
  width: auto;
}
.cid-vbs3SxdTnF .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vbs3SxdTnF .navbar.collapsed {
  justify-content: center;
}
.cid-vbs3SxdTnF .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vbs3SxdTnF .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vbs3SxdTnF .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 7rem);
  }
}
.cid-vbs3SxdTnF .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vbs3SxdTnF .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vbs3SxdTnF .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-vbs3SxdTnF .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vbs3SxdTnF .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vbs3SxdTnF .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vbs3SxdTnF .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vbs3SxdTnF .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vbs3SxdTnF .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vbs3SxdTnF .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vbs3SxdTnF .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-vbs3SxdTnF .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vbs3SxdTnF .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vbs3SxdTnF .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vbs3SxdTnF .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vbs3SxdTnF .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vbs3SxdTnF .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vbs3SxdTnF .navbar.navbar-short {
  min-height: 60px;
}
.cid-vbs3SxdTnF .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vbs3SxdTnF .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vbs3SxdTnF .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-vbs3SxdTnF .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vbs3SxdTnF .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vbs3SxdTnF .dropdown-item:hover,
.cid-vbs3SxdTnF .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-vbs3SxdTnF .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vbs3SxdTnF .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vbs3SxdTnF .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-vbs3SxdTnF .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vbs3SxdTnF .dropdown-menu,
.cid-vbs3SxdTnF .navbar.opened {
  background: #ffffff !important;
}
.cid-vbs3SxdTnF .nav-item:focus,
.cid-vbs3SxdTnF .nav-link:focus {
  outline: none;
}
.cid-vbs3SxdTnF .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vbs3SxdTnF .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vbs3SxdTnF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vbs3SxdTnF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vbs3SxdTnF .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vbs3SxdTnF .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vbs3SxdTnF .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-vbs3SxdTnF .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vbs3SxdTnF .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vbs3SxdTnF .dropdown-item.active,
.cid-vbs3SxdTnF .dropdown-item:active {
  background-color: transparent;
}
.cid-vbs3SxdTnF .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vbs3SxdTnF .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vbs3SxdTnF .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vbs3SxdTnF .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-vbs3SxdTnF .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vbs3SxdTnF .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vbs3SxdTnF ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vbs3SxdTnF .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vbs3SxdTnF button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vbs3SxdTnF button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-vbs3SxdTnF button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vbs3SxdTnF button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vbs3SxdTnF button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vbs3SxdTnF button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vbs3SxdTnF nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vbs3SxdTnF nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vbs3SxdTnF nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vbs3SxdTnF nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vbs3SxdTnF .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vbs3SxdTnF a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vbs3SxdTnF .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-vbs3SxdTnF .navbar {
    height: 70px;
  }
  .cid-vbs3SxdTnF .navbar.opened {
    height: auto;
  }
  .cid-vbs3SxdTnF .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vbs3SxOve0 {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vbs3SxOve0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbs3SxOve0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbs3Syb3EG {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vbs3Syb3EG .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbs3Syb3EG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbs3Syb3EG .mbr-section-head {
  margin-bottom: 32px;
}
.cid-vbs3Syb3EG .mbr-section-title {
  color: #24262b;
}
.cid-vbs3Syb3EG .mbr-section-subtitle {
  color: #24262b;
}
.cid-vbs3Syb3EG .items-row {
  row-gap: 32px;
}
.cid-vbs3Syb3EG .item-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-vbs3Syb3EG .item-wrapper img {
  width: 100%;
  aspect-ratio: calc(8 / (1 * 11));
  object-fit: cover;
  transition: all 0.3s;
}
.cid-vbs3Syb3EG .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-vbs3Syb3EG .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-vbs3Syb3EG .item-wrapper:hover img {
  transform: scale(1.05);
}
.cid-vbs3Syb3EG .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-vbs3Syb3EG .item-wrapper:hover .img-overlay {
  opacity: 0.3;
}
.cid-vbs3Syb3EG .mbr-item-subtitle {
  color: #24262b;
}
.cid-vbs3Syb3EG .carousel-control,
.cid-vbs3Syb3EG .close {
  background: #1b1b1b;
}
.cid-vbs3Syb3EG .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-vbs3Syb3EG .carousel-control-prev span {
  margin-right: 5px;
}
.cid-vbs3Syb3EG .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-vbs3Syb3EG .carousel-control-next span {
  margin-left: 5px;
}
.cid-vbs3Syb3EG .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-vbs3Syb3EG .close::before {
  content: '\e91a';
}
.cid-vbs3Syb3EG .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-vbs3Syb3EG .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-vbs3Syb3EG .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vbs3Syb3EG .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-vbs3Syb3EG .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-vbs3Syb3EG .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-vbs3Syb3EG .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-vbs3Syb3EG .carousel-indicators li.active,
.cid-vbs3Syb3EG .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-vbs3Syb3EG .carousel-indicators li::after,
.cid-vbs3Syb3EG .carousel-indicators li::before {
  content: none;
}
.cid-vbs3Syb3EG .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-vbs3Syb3EG .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-vbs3Syb3EG .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-vbs3Syb3EG .carousel-indicators {
    display: none;
  }
}
.cid-vbs3Syb3EG .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-vbs3Syb3EG .carousel-inner > .active {
  display: block;
}
.cid-vbs3Syb3EG .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vbs3Syb3EG .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-vbs3Syb3EG .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-vbs3Syb3EG .carousel-control,
  .cid-vbs3Syb3EG .carousel-indicators,
  .cid-vbs3Syb3EG .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-vbs3Syb3EG .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-vbs3Syb3EG .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-vbs3Syb3EG .carousel-indicators .active,
.cid-vbs3Syb3EG .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-vbs3Syb3EG .carousel-indicators .active {
  background: #fff;
}
.cid-vbs3Syb3EG .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-vbs3Syb3EG .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-vbs3Syb3EG .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-vbs3Syb3EG .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-vbs3Syb3EG .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-vbs3Syb3EG .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-vbs3Syb3EG .carousel {
  width: 100%;
}
.cid-vbs3Syb3EG .modal-backdrop.in {
  opacity: 0.8;
}
.cid-vbs3Syb3EG .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-vbs3Syb3EG .modal.fade .modal-dialog,
.cid-vbs3Syb3EG .modal.in .modal-dialog {
  transform: none;
}
.cid-vbs3Syb3EG .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-vbs3Syb3EG H6 {
  text-align: center;
}
.cid-vbs3SyIpVu {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vbs3SyIpVu .mbr-text {
  color: #000000;
}
.cid-vbs3SyIpVu .container {
  max-width: 1000px;
}
.cid-vbs3SyIpVu h4 {
  text-align: center;
}
.cid-vbs3SyIpVu p {
  text-align: center;
}
.cid-vbs3SyIpVu .row {
  justify-content: center;
}
.cid-vbs3SyIpVu .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-vbs3SyIpVu .mbr-iconfont {
  font-size: 1.5rem;
  color: #000000;
  display: block;
}
.cid-vbs3SyIpVu .card-title,
.cid-vbs3SyIpVu .card-img {
  color: #000000;
}
.cid-vbs3SyIpVu .icon-wrap {
  padding-bottom: 7.6rem;
}
.cid-vbs3SyIpVu .icon-wrap:before {
  content: '';
  position: absolute;
  background: #000000;
  bottom: 0rem;
  left: 50%;
  width: 2px;
  height: 90px;
}
.cid-vbs3SyIpVu img {
  margin-bottom: 5rem;
  width: auto;
  margin-left: auto;
  margin-right: auto;
}
.cid-vbs3SyIpVu .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbs3SyIpVu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbs3Szg3st {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
  overflow: hidden;
}
.cid-vcLahbWAD2 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vcLahbWAD2 .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
}
@media (max-width: 992px) {
  .cid-vcLahbWAD2 .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-vcLahbWAD2 .iconfont-wrapper {
  color: #103178 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-vcLahbWAD2 .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-vcLahbWAD2 .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-vcLahbWAD2 .container {
    padding: 0 1rem;
  }
}
.cid-vcLahbWAD2 .menu-tite {
  background: #6592e6;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffc800;
}
.cid-vcLahbWAD2 .nav-link {
  position: relative;
}
.cid-vcLahbWAD2 .nav-link:hover {
  color: #47b5ed !important;
}
.cid-vcLahbWAD2 nav.navbar {
  position: fixed;
}
.cid-vcLahbWAD2 .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-vcLahbWAD2 .navbar.opened {
  transition: all 0.3s;
}
.cid-vcLahbWAD2 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vcLahbWAD2 .navbar .navbar-logo img {
  width: auto;
}
.cid-vcLahbWAD2 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vcLahbWAD2 .navbar.collapsed {
  justify-content: center;
}
.cid-vcLahbWAD2 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vcLahbWAD2 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vcLahbWAD2 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 7rem);
  }
}
.cid-vcLahbWAD2 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vcLahbWAD2 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vcLahbWAD2 .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-vcLahbWAD2 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vcLahbWAD2 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vcLahbWAD2 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vcLahbWAD2 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vcLahbWAD2 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vcLahbWAD2 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vcLahbWAD2 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vcLahbWAD2 .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-vcLahbWAD2 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vcLahbWAD2 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vcLahbWAD2 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vcLahbWAD2 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vcLahbWAD2 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vcLahbWAD2 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vcLahbWAD2 .navbar.navbar-short {
  min-height: 60px;
}
.cid-vcLahbWAD2 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vcLahbWAD2 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vcLahbWAD2 .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-vcLahbWAD2 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vcLahbWAD2 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vcLahbWAD2 .dropdown-item:hover,
.cid-vcLahbWAD2 .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-vcLahbWAD2 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vcLahbWAD2 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vcLahbWAD2 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-vcLahbWAD2 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vcLahbWAD2 .dropdown-menu,
.cid-vcLahbWAD2 .navbar.opened {
  background: #ffffff !important;
}
.cid-vcLahbWAD2 .nav-item:focus,
.cid-vcLahbWAD2 .nav-link:focus {
  outline: none;
}
.cid-vcLahbWAD2 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vcLahbWAD2 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vcLahbWAD2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vcLahbWAD2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vcLahbWAD2 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vcLahbWAD2 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vcLahbWAD2 .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-vcLahbWAD2 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vcLahbWAD2 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vcLahbWAD2 .dropdown-item.active,
.cid-vcLahbWAD2 .dropdown-item:active {
  background-color: transparent;
}
.cid-vcLahbWAD2 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vcLahbWAD2 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vcLahbWAD2 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vcLahbWAD2 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-vcLahbWAD2 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vcLahbWAD2 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vcLahbWAD2 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vcLahbWAD2 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vcLahbWAD2 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vcLahbWAD2 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-vcLahbWAD2 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vcLahbWAD2 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vcLahbWAD2 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vcLahbWAD2 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vcLahbWAD2 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vcLahbWAD2 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vcLahbWAD2 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vcLahbWAD2 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vcLahbWAD2 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vcLahbWAD2 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vcLahbWAD2 .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-vcLahbWAD2 .navbar {
    height: 70px;
  }
  .cid-vcLahbWAD2 .navbar.opened {
    height: auto;
  }
  .cid-vcLahbWAD2 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vcLahcUTMa .modal-body .close {
  background: #1b1b1b;
}
.cid-vcLahcUTMa .modal-body .close span {
  font-style: normal;
}
.cid-vcLahcUTMa .carousel-inner > .active,
.cid-vcLahcUTMa .carousel-inner > .next,
.cid-vcLahcUTMa .carousel-inner > .prev {
  display: flex;
}
.cid-vcLahcUTMa .carousel-control .icon-next,
.cid-vcLahcUTMa .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-vcLahcUTMa .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-vcLahcUTMa .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-vcLahcUTMa .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-vcLahcUTMa .boxed-slider > div {
  position: relative;
}
.cid-vcLahcUTMa .container img {
  width: 100%;
}
.cid-vcLahcUTMa .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-vcLahcUTMa .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-vcLahcUTMa .mbr-table-cell {
  padding: 0;
}
.cid-vcLahcUTMa .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-vcLahcUTMa .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-vcLahcUTMa .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-vcLahcUTMa .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-vcLahcUTMa .carousel-item.active.right,
.cid-vcLahcUTMa .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-vcLahcUTMa .carousel-item.active.left,
.cid-vcLahcUTMa .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-vcLahcUTMa .carousel-item.active,
.cid-vcLahcUTMa .carousel-item.next.left,
.cid-vcLahcUTMa .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-vcLahcUTMa .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-vcLahcUTMa .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vcLahcUTMa .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-vcLahcUTMa .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-vcLahcUTMa .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-vcLahcUTMa .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-vcLahcUTMa .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-vcLahcUTMa .mbr-slider .carousel-indicators li.active,
.cid-vcLahcUTMa .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-vcLahcUTMa .mbr-slider .carousel-indicators li::after,
.cid-vcLahcUTMa .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-vcLahcUTMa .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-vcLahcUTMa .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-vcLahcUTMa .mbr-slider > .container img {
  width: 100%;
}
.cid-vcLahcUTMa .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-vcLahcUTMa .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-vcLahcUTMa .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-vcLahcUTMa .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-vcLahcUTMa .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-vcLahcUTMa .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-vcLahcUTMa .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-vcLahcUTMa .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-vcLahcUTMa .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-vcLahcUTMa .full-screen .carousel-item .container.container-slide {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-vcLahcUTMa .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-vcLahcUTMa .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-vcLahcUTMa .mbr-overlay ~ .container-slide {
  z-index: auto;
}
#custom-html-8z {
  /* Type valid CSS here */
}
#custom-html-8z div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-8z p {
  font-size: 60px;
  color: #777;
}
.cid-vcLahenm7t {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vcLahenm7t .mbr-fallback-image.disabled {
  display: none;
}
.cid-vcLahenm7t .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vcLahfaDIA {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-vcLahfaDIA .item-wrapper {
  position: relative;
  overflow: initial;
}
.cid-vcLahfaDIA .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-vcLahfaDIA .item:hover .item-img:before {
  opacity: 0.3;
}
@media (max-width: 992px) {
  .cid-vcLahfaDIA .col-12 {
    margin-top: 30px;
  }
  .cid-vcLahfaDIA .col-12:first-child {
    margin-top: 0px;
  }
  .cid-vcLahfaDIA .col-12:nth-child(2) {
    margin-top: 0px;
  }
  .cid-vcLahfaDIA .col-12:nth-child(3) {
    margin-top: 0px;
  }
}
@media (max-width: 768px) {
  .cid-vcLahfaDIA .col-12:nth-child(2) {
    margin-top: 30px;
  }
  .cid-vcLahfaDIA .col-12:nth-child(3) {
    margin-top: 30px;
  }
}
.cid-vcLahfS6iH {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-vcLahfS6iH .mbr-fallback-image.disabled {
  display: none;
}
.cid-vcLahfS6iH .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-vcLahfS6iH .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vcLahfS6iH .row {
  flex-direction: row-reverse;
}
.cid-vcLahfS6iH img {
  width: 100%;
}
.cid-vcLahgyrZu {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vcLahgyrZu .mbr-fallback-image.disabled {
  display: none;
}
.cid-vcLahgyrZu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vcLahhguwY {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-vcLahhguwY .item-wrapper {
  position: relative;
  overflow: initial;
}
.cid-vcLahhguwY .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-vcLahhguwY .item:hover .item-img:before {
  opacity: 0.3;
}
@media (max-width: 992px) {
  .cid-vcLahhguwY .col-12 {
    margin-top: 30px;
  }
  .cid-vcLahhguwY .col-12:first-child {
    margin-top: 0px;
  }
  .cid-vcLahhguwY .col-12:nth-child(2) {
    margin-top: 0px;
  }
  .cid-vcLahhguwY .col-12:nth-child(3) {
    margin-top: 0px;
  }
}
@media (max-width: 768px) {
  .cid-vcLahhguwY .col-12:nth-child(2) {
    margin-top: 30px;
  }
  .cid-vcLahhguwY .col-12:nth-child(3) {
    margin-top: 30px;
  }
}
.cid-vcLahhWhTq {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-vcLahhWhTq .item-wrapper {
  position: relative;
  overflow: initial;
}
.cid-vcLahhWhTq .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-vcLahhWhTq .item:hover .item-img:before {
  opacity: 0.3;
}
@media (max-width: 992px) {
  .cid-vcLahhWhTq .col-12 {
    margin-top: 30px;
  }
  .cid-vcLahhWhTq .col-12:first-child {
    margin-top: 0px;
  }
  .cid-vcLahhWhTq .col-12:nth-child(2) {
    margin-top: 0px;
  }
  .cid-vcLahhWhTq .col-12:nth-child(3) {
    margin-top: 0px;
  }
}
@media (max-width: 768px) {
  .cid-vcLahhWhTq .col-12:nth-child(2) {
    margin-top: 30px;
  }
  .cid-vcLahhWhTq .col-12:nth-child(3) {
    margin-top: 30px;
  }
}
.cid-vcLahiCRI7 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-vcLahiCRI7 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-vcLahiCRI7 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vcLahiCRI7 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-vcLahiCRI7 .mbr-gallery-item {
  width: 33.3%;
}
.cid-vcLahiCRI7 .mbr-gallery-item:hover img {
  transform: scale(1.1);
}
@media (max-width: 767px) {
  .cid-vcLahiCRI7 .mbr-gallery-item {
    width: 100%;
  }
}
.cid-vcLahiCRI7 .container {
  padding-right: 6px;
  padding-left: 6px;
}
.cid-vcLahiCRI7 .mbr-gallery-row {
  justify-content: center;
}
.cid-vcLahiCRI7 .mbr-gallery-item > div:hover:before {
  z-index: 5;
}
.cid-vcLahiCRI7 .mbr-gallery-item > div:hover .icon-focus {
  opacity: 0.8 !important;
}
.cid-vcLahiCRI7 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-vcLahiCRI7 .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-vcLahiCRI7 .icon-focus {
  font-family: 'Moririse2' !important;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 50px;
  background: white;
  border-radius: 6px;
}
.cid-vcLahiCRI7 .icon-focus:before {
  content: '\e970';
  font-size: 1.2rem;
  color: black;
}
.cid-vcLahiCRI7 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-vcLahiCRI7 .mbr-gallery-item > div {
  overflow: hidden;
}
.cid-vcLahiCRI7 img {
  transition: all 2s !important;
}
.cid-vcLahiCRI7 .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-vcLahiCRI7 .mbr-gallery-title {
  font-size: 0.9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 5;
}
.cid-vcLahiCRI7 .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-vcLahjkM4X {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vcLahjkM4X .mbr-fallback-image.disabled {
  display: none;
}
.cid-vcLahjkM4X .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vcLahk0PBK {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vcLahk0PBK .mbr-fallback-image.disabled {
  display: none;
}
.cid-vcLahk0PBK .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-vcLahk0PBK .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vcLahk0PBK .row {
  flex-direction: row-reverse;
}
.cid-vcLahk0PBK img {
  width: 100%;
}
.cid-vcLahkGERF {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vcLahkGERF .mbr-fallback-image.disabled {
  display: none;
}
.cid-vcLahkGERF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vcLahkGERF .video-wrapper iframe {
  width: 100%;
}
.cid-vcLahkGERF .mbr-section-title,
.cid-vcLahkGERF .mbr-section-subtitle,
.cid-vcLahkGERF .mbr-text {
  text-align: center;
}
.cid-vcLahkGERF .mbr-text {
  color: #000000;
}
.cid-vcLahlqB0t {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f7f5f0;
}
.cid-vcLahlqB0t .mbr-fallback-image.disabled {
  display: none;
}
.cid-vcLahlqB0t .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vcLahlqB0t .content-wrap {
  margin: 0;
}
.cid-vcLahlqB0t .content-wrap .card {
  padding: 0;
  justify-content: center;
}
.cid-vcLahlqB0t .content-wrapper {
  padding-right: 112px;
}
@media (max-width: 1440px) {
  .cid-vcLahlqB0t .content-wrapper {
    padding-right: 64px;
  }
}
@media (max-width: 1200px) {
  .cid-vcLahlqB0t .content-wrapper {
    padding-right: 32px;
  }
}
@media (max-width: 992px) {
  .cid-vcLahlqB0t .content-wrapper {
    padding: 0;
    margin-bottom: 32px;
  }
}
.cid-vcLahlqB0t .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-vcLahlqB0t .video-wrapper {
  padding-left: 112px;
  border-left: 3px dashed #c10b02;
}
@media (max-width: 1440px) {
  .cid-vcLahlqB0t .video-wrapper {
    padding-left: 64px;
  }
}
@media (max-width: 1200px) {
  .cid-vcLahlqB0t .video-wrapper {
    padding-left: 32px;
  }
}
@media (max-width: 992px) {
  .cid-vcLahlqB0t .video-wrapper {
    padding-left: 0;
    border-left: none;
    border-top: 3px dashed #c10b02;
    padding-top: 22px;
  }
}
.cid-vcLahlqB0t .mbr-section-title {
  color: #c10b02;
  text-align: center;
}
.cid-vcLahlqB0t .mbr-text,
.cid-vcLahlqB0t .text-wrapper {
  color: #4b4949;
  text-align: center;
}
.cid-vcLahm7E7P {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-vcLahmL1kc {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vcLahmL1kc .mbr-fallback-image.disabled {
  display: none;
}
.cid-vcLahmL1kc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vcLahnxbZx {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-vcLahnxbZx .item-wrapper {
  position: relative;
  overflow: initial;
}
.cid-vcLahnxbZx .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-vcLahnxbZx .item:hover .item-img:before {
  opacity: 0.3;
}
@media (max-width: 992px) {
  .cid-vcLahnxbZx .col-12 {
    margin-top: 30px;
  }
  .cid-vcLahnxbZx .col-12:first-child {
    margin-top: 0px;
  }
  .cid-vcLahnxbZx .col-12:nth-child(2) {
    margin-top: 0px;
  }
  .cid-vcLahnxbZx .col-12:nth-child(3) {
    margin-top: 0px;
  }
}
@media (max-width: 768px) {
  .cid-vcLahnxbZx .col-12:nth-child(2) {
    margin-top: 30px;
  }
  .cid-vcLahnxbZx .col-12:nth-child(3) {
    margin-top: 30px;
  }
}
.cid-vcLahohlHD {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-vcLahohlHD .item-wrapper {
  position: relative;
  overflow: initial;
}
.cid-vcLahohlHD .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-vcLahohlHD .item:hover .item-img:before {
  opacity: 0.3;
}
@media (max-width: 992px) {
  .cid-vcLahohlHD .col-12 {
    margin-top: 30px;
  }
  .cid-vcLahohlHD .col-12:first-child {
    margin-top: 0px;
  }
  .cid-vcLahohlHD .col-12:nth-child(2) {
    margin-top: 0px;
  }
  .cid-vcLahohlHD .col-12:nth-child(3) {
    margin-top: 0px;
  }
}
@media (max-width: 768px) {
  .cid-vcLahohlHD .col-12:nth-child(2) {
    margin-top: 30px;
  }
  .cid-vcLahohlHD .col-12:nth-child(3) {
    margin-top: 30px;
  }
}
.cid-vcLahp60Oj {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vcLahp60Oj .item-wrapper {
  position: relative;
  overflow: initial;
}
.cid-vcLahp60Oj .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-vcLahp60Oj .item:hover .item-img:before {
  opacity: 0.3;
}
@media (max-width: 992px) {
  .cid-vcLahp60Oj .col-12 {
    margin-top: 30px;
  }
  .cid-vcLahp60Oj .col-12:first-child {
    margin-top: 0px;
  }
  .cid-vcLahp60Oj .col-12:nth-child(2) {
    margin-top: 0px;
  }
  .cid-vcLahp60Oj .col-12:nth-child(3) {
    margin-top: 0px;
  }
}
@media (max-width: 768px) {
  .cid-vcLahp60Oj .col-12:nth-child(2) {
    margin-top: 30px;
  }
  .cid-vcLahp60Oj .col-12:nth-child(3) {
    margin-top: 30px;
  }
}
.cid-vcLahpVxDB {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-vcLahqI4Xc {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vcLahqI4Xc .mbr-fallback-image.disabled {
  display: none;
}
.cid-vcLahqI4Xc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vcLahrwMum {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vcLahrwMum .item-wrapper {
  position: relative;
  overflow: initial;
}
.cid-vcLahrwMum .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-vcLahrwMum .item:hover .item-img:before {
  opacity: 0.3;
}
@media (max-width: 992px) {
  .cid-vcLahrwMum .col-12 {
    margin-top: 30px;
  }
  .cid-vcLahrwMum .col-12:first-child {
    margin-top: 0px;
  }
  .cid-vcLahrwMum .col-12:nth-child(2) {
    margin-top: 0px;
  }
  .cid-vcLahrwMum .col-12:nth-child(3) {
    margin-top: 0px;
  }
}
@media (max-width: 768px) {
  .cid-vcLahrwMum .col-12:nth-child(2) {
    margin-top: 30px;
  }
  .cid-vcLahrwMum .col-12:nth-child(3) {
    margin-top: 30px;
  }
}
.cid-vcLahsgVIS {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-vcLaht0gl9 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vcLaht0gl9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vcLaht0gl9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vcLahtKYLu {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #fafafa;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-vcLahtKYLu .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-vcLahtKYLu .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vcLahtKYLu .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-vcLahtKYLu .mbr-gallery-item {
  width: 33.3%;
}
.cid-vcLahtKYLu .mbr-gallery-item:hover img {
  transform: scale(1.1);
}
@media (max-width: 767px) {
  .cid-vcLahtKYLu .mbr-gallery-item {
    width: 100%;
  }
}
.cid-vcLahtKYLu .container {
  padding-right: 6px;
  padding-left: 6px;
}
.cid-vcLahtKYLu .mbr-gallery-row {
  justify-content: center;
}
.cid-vcLahtKYLu .mbr-gallery-item > div:hover:before {
  z-index: 5;
}
.cid-vcLahtKYLu .mbr-gallery-item > div:hover .icon-focus {
  opacity: 0.8 !important;
}
.cid-vcLahtKYLu .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-vcLahtKYLu .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-vcLahtKYLu .icon-focus {
  font-family: 'Moririse2' !important;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 50px;
  background: white;
  border-radius: 6px;
}
.cid-vcLahtKYLu .icon-focus:before {
  content: '\e970';
  font-size: 1.2rem;
  color: black;
}
.cid-vcLahtKYLu .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-vcLahtKYLu .mbr-gallery-item > div {
  overflow: hidden;
}
.cid-vcLahtKYLu img {
  transition: all 2s !important;
}
.cid-vcLahtKYLu .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-vcLahtKYLu .mbr-gallery-title {
  font-size: 0.9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 5;
}
.cid-vcLahtKYLu .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-vcLahuxnPv {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vcLahuxnPv .mbr-fallback-image.disabled {
  display: none;
}
.cid-vcLahuxnPv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vcLahviGSV {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-vcLahviGSV h2 {
  letter-spacing: 0.1em;
  -webkit-font-smoothing: antialiased;
  margin-bottom: 2rem;
}
.cid-vcLahviGSV .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-vcLahviGSV .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vcLahviGSV .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-vcLahviGSV .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-vcLahviGSV .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-vcLahviGSV .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-vcLahviGSV .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-vcLahviGSV .mbr-gallery-filter-all > a {
  padding: 30px;
  background-color: transparent !important;
  color: #888888;
}
.cid-vcLahviGSV .mbr-section-title {
  padding-bottom: 2rem;
  margin: 0;
}
.cid-vcLahviGSV .mbr-section-title p {
  margin: 0;
}
.cid-vcLahviGSV .mbr-gallery-filter {
  padding-top: 0;
  padding-bottom: 2rem;
}
.cid-vcLahviGSV .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-vcLahviGSV .mbr-gallery-filter .btn:hover {
  background-color: transparent;
}
.cid-vcLahviGSV .mbr-gallery-filter li.active .btn {
  background-color: transparent;
  color: #000000;
}
.cid-vcLahviGSV .mbr-gallery-title {
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-vcLahviGSV .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-vcLahwb8I1 {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-vcLahwb8I1 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-vcLahwb8I1 .text-content .content-title {
  color: #130947;
  margin-bottom: 30px;
}
.cid-vcLahwb8I1 .text-content .content-title.display-5 {
  font-size: 26px;
  line-height: 1.38;
  letter-spacing: -0.5px;
}
.cid-vcLahwb8I1 .text-content .list-block {
  border-bottom-width: 1px;
  padding-bottom: 30px;
  border-bottom-color: #130947;
  border-bottom-style: dotted;
  margin-bottom: 20px;
}
.cid-vcLahwb8I1 .text-content .list-block .card-img span {
  color: #4f87fb;
  font-size: 2.5rem;
}
.cid-vcLahwb8I1 .text-content .list-block .list-item-title {
  color: #130947;
}
.cid-vcLahwb8I1 .text-content .list-block .list-item-title.display-7 {
  font-size: 20px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.cid-vcLahwb8I1 .text-content .list-block .list-item-text {
  padding-top: 10px;
  line-height: 1.29;
  color: #6d7a8c;
  margin-bottom: 0;
}
.cid-vcLahwb8I1 .text-content .list-block.last {
  border-bottom: none;
  margin-bottom: 20px;
  padding-bottom: 0;
}
.cid-vcLahwb8I1 .text-content .social {
  font-size: 1.2rem;
  padding-left: 4.5rem;
}
.cid-vcLahwb8I1 .text-content .social span {
  margin-right: 11.2px;
  margin-bottom: 8px;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  color: #6d7a8c;
}
.cid-vcLahwb8I1 .text-content .social span:hover {
  color: #4f87fb;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.cid-vcLahwb8I1 .card-img {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 3rem;
  text-align: center;
}
.cid-vcLahwb8I1 .list-block {
  position: relative;
}
.cid-vcLahwb8I1 .list-block h4,
.cid-vcLahwb8I1 .list-block p {
  padding-left: 4.5rem;
}
.cid-vcLahwb8I1 .card-img {
  display: block;
}
.cid-vcLahwb8I1 input,
.cid-vcLahwb8I1 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-vcLahwb8I1 input:focus,
.cid-vcLahwb8I1 textarea:focus {
  border-left: none;
  border-top: none;
  border-right: none;
}
.cid-vcLahwb8I1 .form-control,
.cid-vcLahwb8I1 .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-vcLahwb8I1 .form-control:hover,
.cid-vcLahwb8I1 .field-input:hover,
.cid-vcLahwb8I1 .form-control:focus,
.cid-vcLahwb8I1 .field-input:focus {
  background-color: #ecf1f8;
  border-color: #ffffff !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-vcLahwb8I1 input::-webkit-input-placeholder,
.cid-vcLahwb8I1 textarea::-webkit-input-placeholder {
  color: #28303f;
}
.cid-vcLahwb8I1 input:-moz-placeholder,
.cid-vcLahwb8I1 textarea:-moz-placeholder {
  color: #28303f;
}
.cid-vcLahwb8I1 .jq-selectbox li,
.cid-vcLahwb8I1 .jq-selectbox li {
  background-color: #ecf1f8;
  color: #000000;
}
.cid-vcLahwb8I1 .jq-selectbox li:hover,
.cid-vcLahwb8I1 .jq-selectbox li.selected {
  background-color: #ecf1f8;
  color: #000000;
}
.cid-vcLahwb8I1 .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #ecf1f8;
}
.cid-vcLahwb8I1 .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #ecf1f8;
}
.cid-vcLahwb8I1 .mbr-form {
  max-width: 550px;
}
.cid-vcLahwb8I1 .mbr-form .mbr-subtitle {
  color: #4f87fb;
  font-weight: 800;
}
.cid-vcLahwb8I1 .mbr-form .mbr-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-vcLahwb8I1 .mbr-form .mbr-section-title {
  color: #130947;
  font-weight: 700;
}
.cid-vcLahwb8I1 .mbr-form .mbr-section-title.display-2 {
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-vcLahwb8I1 .mbr-form .mbr-text {
  color: #6d7a8c;
}
.cid-vcLahwb8I1 .mbr-form textarea {
  min-height: 100px;
}
.cid-vcLahwb8I1 .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-vcLahwb8I1 .mbr-form .btn.display-4 {
  font-size: 13px;
  letter-spacing: 1px;
}
.cid-vcLahwb8I1 .mbr-form span.value.form-control {
  min-height: 3.5rem;
  padding: 1rem;
}
@media (max-width: 991px) {
  .cid-vcLahwb8I1 .mbr-form {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
@media (max-width: 768px) {
  .cid-vcLahwb8I1 .mbr-section-title,
  .cid-vcLahwb8I1 .content-title,
  .cid-vcLahwb8I1 .mbr-section-btn {
    text-align: left;
  }
}
.cid-vcLahxf8p2 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-vcLahxf8p2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vcLahxf8p2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vcLahxf8p2 .google-map {
  height: 30rem;
  position: relative;
}
.cid-vcLahxf8p2 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-vcLahxf8p2 .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-vcLahxf8p2 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-vcLahxf8p2 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-vcLahzoCQT {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vcLahzoCQT .mbr-text {
  color: #000000;
}
.cid-vcLahzoCQT .container {
  max-width: 1000px;
}
.cid-vcLahzoCQT h4 {
  text-align: center;
}
.cid-vcLahzoCQT p {
  text-align: center;
}
.cid-vcLahzoCQT .row {
  justify-content: center;
}
.cid-vcLahzoCQT .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-vcLahzoCQT .mbr-iconfont {
  font-size: 1.5rem;
  color: #000000;
  display: block;
}
.cid-vcLahzoCQT .card-title,
.cid-vcLahzoCQT .card-img {
  color: #000000;
}
.cid-vcLahzoCQT .icon-wrap {
  padding-bottom: 7.6rem;
}
.cid-vcLahzoCQT .icon-wrap:before {
  content: '';
  position: absolute;
  background: #000000;
  bottom: 0rem;
  left: 50%;
  width: 2px;
  height: 90px;
}
.cid-vcLahzoCQT img {
  margin-bottom: 5rem;
  width: auto;
  margin-left: auto;
  margin-right: auto;
}
.cid-vcLahzoCQT .mbr-fallback-image.disabled {
  display: none;
}
.cid-vcLahzoCQT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
#custom-html-8v {
  /* Type valid CSS here */
}
#custom-html-8v div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-8v p {
  font-size: 60px;
  color: #777;
}
.cid-vcLahBmbaw {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
  overflow: hidden;
}
.cid-vcLG3MFSnv {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vcLG3MFSnv .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
}
@media (max-width: 992px) {
  .cid-vcLG3MFSnv .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-vcLG3MFSnv .iconfont-wrapper {
  color: #103178 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-vcLG3MFSnv .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-vcLG3MFSnv .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-vcLG3MFSnv .container {
    padding: 0 1rem;
  }
}
.cid-vcLG3MFSnv .menu-tite {
  background: #6592e6;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffc800;
}
.cid-vcLG3MFSnv .nav-link {
  position: relative;
}
.cid-vcLG3MFSnv .nav-link:hover {
  color: #47b5ed !important;
}
.cid-vcLG3MFSnv nav.navbar {
  position: fixed;
}
.cid-vcLG3MFSnv .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-vcLG3MFSnv .navbar.opened {
  transition: all 0.3s;
}
.cid-vcLG3MFSnv .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vcLG3MFSnv .navbar .navbar-logo img {
  width: auto;
}
.cid-vcLG3MFSnv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vcLG3MFSnv .navbar.collapsed {
  justify-content: center;
}
.cid-vcLG3MFSnv .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vcLG3MFSnv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vcLG3MFSnv .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 7rem);
  }
}
.cid-vcLG3MFSnv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vcLG3MFSnv .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vcLG3MFSnv .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-vcLG3MFSnv .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vcLG3MFSnv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vcLG3MFSnv .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vcLG3MFSnv .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vcLG3MFSnv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vcLG3MFSnv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vcLG3MFSnv .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vcLG3MFSnv .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-vcLG3MFSnv .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vcLG3MFSnv .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vcLG3MFSnv .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vcLG3MFSnv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vcLG3MFSnv .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vcLG3MFSnv .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vcLG3MFSnv .navbar.navbar-short {
  min-height: 60px;
}
.cid-vcLG3MFSnv .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vcLG3MFSnv .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vcLG3MFSnv .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-vcLG3MFSnv .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vcLG3MFSnv .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vcLG3MFSnv .dropdown-item:hover,
.cid-vcLG3MFSnv .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-vcLG3MFSnv .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vcLG3MFSnv .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vcLG3MFSnv .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-vcLG3MFSnv .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vcLG3MFSnv .dropdown-menu,
.cid-vcLG3MFSnv .navbar.opened {
  background: #ffffff !important;
}
.cid-vcLG3MFSnv .nav-item:focus,
.cid-vcLG3MFSnv .nav-link:focus {
  outline: none;
}
.cid-vcLG3MFSnv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vcLG3MFSnv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vcLG3MFSnv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vcLG3MFSnv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vcLG3MFSnv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vcLG3MFSnv .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vcLG3MFSnv .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-vcLG3MFSnv .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vcLG3MFSnv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vcLG3MFSnv .dropdown-item.active,
.cid-vcLG3MFSnv .dropdown-item:active {
  background-color: transparent;
}
.cid-vcLG3MFSnv .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vcLG3MFSnv .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vcLG3MFSnv .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vcLG3MFSnv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-vcLG3MFSnv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vcLG3MFSnv .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vcLG3MFSnv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vcLG3MFSnv .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vcLG3MFSnv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vcLG3MFSnv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-vcLG3MFSnv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vcLG3MFSnv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vcLG3MFSnv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vcLG3MFSnv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vcLG3MFSnv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vcLG3MFSnv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vcLG3MFSnv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vcLG3MFSnv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vcLG3MFSnv .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vcLG3MFSnv a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vcLG3MFSnv .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-vcLG3MFSnv .navbar {
    height: 70px;
  }
  .cid-vcLG3MFSnv .navbar.opened {
    height: auto;
  }
  .cid-vcLG3MFSnv .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vcLG3NwHNr .modal-body .close {
  background: #1b1b1b;
}
.cid-vcLG3NwHNr .modal-body .close span {
  font-style: normal;
}
.cid-vcLG3NwHNr .carousel-inner > .active,
.cid-vcLG3NwHNr .carousel-inner > .next,
.cid-vcLG3NwHNr .carousel-inner > .prev {
  display: flex;
}
.cid-vcLG3NwHNr .carousel-control .icon-next,
.cid-vcLG3NwHNr .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-vcLG3NwHNr .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-vcLG3NwHNr .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-vcLG3NwHNr .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-vcLG3NwHNr .boxed-slider > div {
  position: relative;
}
.cid-vcLG3NwHNr .container img {
  width: 100%;
}
.cid-vcLG3NwHNr .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-vcLG3NwHNr .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-vcLG3NwHNr .mbr-table-cell {
  padding: 0;
}
.cid-vcLG3NwHNr .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-vcLG3NwHNr .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-vcLG3NwHNr .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-vcLG3NwHNr .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-vcLG3NwHNr .carousel-item.active.right,
.cid-vcLG3NwHNr .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-vcLG3NwHNr .carousel-item.active.left,
.cid-vcLG3NwHNr .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-vcLG3NwHNr .carousel-item.active,
.cid-vcLG3NwHNr .carousel-item.next.left,
.cid-vcLG3NwHNr .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-vcLG3NwHNr .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-vcLG3NwHNr .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vcLG3NwHNr .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-vcLG3NwHNr .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-vcLG3NwHNr .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-vcLG3NwHNr .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-vcLG3NwHNr .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-vcLG3NwHNr .mbr-slider .carousel-indicators li.active,
.cid-vcLG3NwHNr .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-vcLG3NwHNr .mbr-slider .carousel-indicators li::after,
.cid-vcLG3NwHNr .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-vcLG3NwHNr .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-vcLG3NwHNr .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-vcLG3NwHNr .mbr-slider > .container img {
  width: 100%;
}
.cid-vcLG3NwHNr .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-vcLG3NwHNr .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-vcLG3NwHNr .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-vcLG3NwHNr .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-vcLG3NwHNr .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-vcLG3NwHNr .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-vcLG3NwHNr .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-vcLG3NwHNr .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-vcLG3NwHNr .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-vcLG3NwHNr .full-screen .carousel-item .container.container-slide {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-vcLG3NwHNr .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-vcLG3NwHNr .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-vcLG3NwHNr .mbr-overlay ~ .container-slide {
  z-index: auto;
}
#custom-html-92 {
  /* Type valid CSS here */
}
#custom-html-92 div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-92 p {
  font-size: 60px;
  color: #777;
}
.cid-vcLG3OmKKG {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vcLG3OmKKG .mbr-fallback-image.disabled {
  display: none;
}
.cid-vcLG3OmKKG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vcLG3P3hOl {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-vcLG3P3hOl .item-wrapper {
  position: relative;
  overflow: initial;
}
.cid-vcLG3P3hOl .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-vcLG3P3hOl .item:hover .item-img:before {
  opacity: 0.3;
}
@media (max-width: 992px) {
  .cid-vcLG3P3hOl .col-12 {
    margin-top: 30px;
  }
  .cid-vcLG3P3hOl .col-12:first-child {
    margin-top: 0px;
  }
  .cid-vcLG3P3hOl .col-12:nth-child(2) {
    margin-top: 0px;
  }
  .cid-vcLG3P3hOl .col-12:nth-child(3) {
    margin-top: 0px;
  }
}
@media (max-width: 768px) {
  .cid-vcLG3P3hOl .col-12:nth-child(2) {
    margin-top: 30px;
  }
  .cid-vcLG3P3hOl .col-12:nth-child(3) {
    margin-top: 30px;
  }
}
.cid-vcLG3PEnMG {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-vcLG3PEnMG .mbr-fallback-image.disabled {
  display: none;
}
.cid-vcLG3PEnMG .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-vcLG3PEnMG .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vcLG3PEnMG .row {
  flex-direction: row-reverse;
}
.cid-vcLG3PEnMG img {
  width: 100%;
}
.cid-vcLG3QpYST {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vcLG3QpYST .mbr-fallback-image.disabled {
  display: none;
}
.cid-vcLG3QpYST .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vcLG3Rf1Vz {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-vcLG3Rf1Vz .item-wrapper {
  position: relative;
  overflow: initial;
}
.cid-vcLG3Rf1Vz .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-vcLG3Rf1Vz .item:hover .item-img:before {
  opacity: 0.3;
}
@media (max-width: 992px) {
  .cid-vcLG3Rf1Vz .col-12 {
    margin-top: 30px;
  }
  .cid-vcLG3Rf1Vz .col-12:first-child {
    margin-top: 0px;
  }
  .cid-vcLG3Rf1Vz .col-12:nth-child(2) {
    margin-top: 0px;
  }
  .cid-vcLG3Rf1Vz .col-12:nth-child(3) {
    margin-top: 0px;
  }
}
@media (max-width: 768px) {
  .cid-vcLG3Rf1Vz .col-12:nth-child(2) {
    margin-top: 30px;
  }
  .cid-vcLG3Rf1Vz .col-12:nth-child(3) {
    margin-top: 30px;
  }
}
.cid-vcLG3SadJ3 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-vcLG3SadJ3 .item-wrapper {
  position: relative;
  overflow: initial;
}
.cid-vcLG3SadJ3 .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-vcLG3SadJ3 .item:hover .item-img:before {
  opacity: 0.3;
}
@media (max-width: 992px) {
  .cid-vcLG3SadJ3 .col-12 {
    margin-top: 30px;
  }
  .cid-vcLG3SadJ3 .col-12:first-child {
    margin-top: 0px;
  }
  .cid-vcLG3SadJ3 .col-12:nth-child(2) {
    margin-top: 0px;
  }
  .cid-vcLG3SadJ3 .col-12:nth-child(3) {
    margin-top: 0px;
  }
}
@media (max-width: 768px) {
  .cid-vcLG3SadJ3 .col-12:nth-child(2) {
    margin-top: 30px;
  }
  .cid-vcLG3SadJ3 .col-12:nth-child(3) {
    margin-top: 30px;
  }
}
.cid-vcLG3T7aCm {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-vcLG3T7aCm .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-vcLG3T7aCm .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vcLG3T7aCm .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-vcLG3T7aCm .mbr-gallery-item {
  width: 33.3%;
}
.cid-vcLG3T7aCm .mbr-gallery-item:hover img {
  transform: scale(1.1);
}
@media (max-width: 767px) {
  .cid-vcLG3T7aCm .mbr-gallery-item {
    width: 100%;
  }
}
.cid-vcLG3T7aCm .container {
  padding-right: 6px;
  padding-left: 6px;
}
.cid-vcLG3T7aCm .mbr-gallery-row {
  justify-content: center;
}
.cid-vcLG3T7aCm .mbr-gallery-item > div:hover:before {
  z-index: 5;
}
.cid-vcLG3T7aCm .mbr-gallery-item > div:hover .icon-focus {
  opacity: 0.8 !important;
}
.cid-vcLG3T7aCm .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-vcLG3T7aCm .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-vcLG3T7aCm .icon-focus {
  font-family: 'Moririse2' !important;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 50px;
  background: white;
  border-radius: 6px;
}
.cid-vcLG3T7aCm .icon-focus:before {
  content: '\e970';
  font-size: 1.2rem;
  color: black;
}
.cid-vcLG3T7aCm .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-vcLG3T7aCm .mbr-gallery-item > div {
  overflow: hidden;
}
.cid-vcLG3T7aCm img {
  transition: all 2s !important;
}
.cid-vcLG3T7aCm .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-vcLG3T7aCm .mbr-gallery-title {
  font-size: 0.9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 5;
}
.cid-vcLG3T7aCm .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-vcLG3Ua93M {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vcLG3Ua93M .mbr-fallback-image.disabled {
  display: none;
}
.cid-vcLG3Ua93M .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vcLG3VcC08 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vcLG3VcC08 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vcLG3VcC08 .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-vcLG3VcC08 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vcLG3VcC08 .row {
  flex-direction: row-reverse;
}
.cid-vcLG3VcC08 img {
  width: 100%;
}
.cid-vcLG3WjJwV {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vcLG3WjJwV .mbr-fallback-image.disabled {
  display: none;
}
.cid-vcLG3WjJwV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vcLG3WjJwV .video-wrapper iframe {
  width: 100%;
}
.cid-vcLG3WjJwV .mbr-section-title,
.cid-vcLG3WjJwV .mbr-section-subtitle,
.cid-vcLG3WjJwV .mbr-text {
  text-align: center;
}
.cid-vcLG3WjJwV .mbr-text {
  color: #000000;
}
.cid-vcLG3XFJI4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f7f5f0;
}
.cid-vcLG3XFJI4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vcLG3XFJI4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vcLG3XFJI4 .content-wrap {
  margin: 0;
}
.cid-vcLG3XFJI4 .content-wrap .card {
  padding: 0;
  justify-content: center;
}
.cid-vcLG3XFJI4 .content-wrapper {
  padding-right: 112px;
}
@media (max-width: 1440px) {
  .cid-vcLG3XFJI4 .content-wrapper {
    padding-right: 64px;
  }
}
@media (max-width: 1200px) {
  .cid-vcLG3XFJI4 .content-wrapper {
    padding-right: 32px;
  }
}
@media (max-width: 992px) {
  .cid-vcLG3XFJI4 .content-wrapper {
    padding: 0;
    margin-bottom: 32px;
  }
}
.cid-vcLG3XFJI4 .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-vcLG3XFJI4 .video-wrapper {
  padding-left: 112px;
  border-left: 3px dashed #c10b02;
}
@media (max-width: 1440px) {
  .cid-vcLG3XFJI4 .video-wrapper {
    padding-left: 64px;
  }
}
@media (max-width: 1200px) {
  .cid-vcLG3XFJI4 .video-wrapper {
    padding-left: 32px;
  }
}
@media (max-width: 992px) {
  .cid-vcLG3XFJI4 .video-wrapper {
    padding-left: 0;
    border-left: none;
    border-top: 3px dashed #c10b02;
    padding-top: 22px;
  }
}
.cid-vcLG3XFJI4 .mbr-section-title {
  color: #c10b02;
  text-align: center;
}
.cid-vcLG3XFJI4 .mbr-text,
.cid-vcLG3XFJI4 .text-wrapper {
  color: #4b4949;
  text-align: center;
}
.cid-vcLG3YWIQ0 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-vcLG3ZSlGQ {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vcLG3ZSlGQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-vcLG3ZSlGQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vcLG40CieV {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-vcLG40CieV .item-wrapper {
  position: relative;
  overflow: initial;
}
.cid-vcLG40CieV .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-vcLG40CieV .item:hover .item-img:before {
  opacity: 0.3;
}
@media (max-width: 992px) {
  .cid-vcLG40CieV .col-12 {
    margin-top: 30px;
  }
  .cid-vcLG40CieV .col-12:first-child {
    margin-top: 0px;
  }
  .cid-vcLG40CieV .col-12:nth-child(2) {
    margin-top: 0px;
  }
  .cid-vcLG40CieV .col-12:nth-child(3) {
    margin-top: 0px;
  }
}
@media (max-width: 768px) {
  .cid-vcLG40CieV .col-12:nth-child(2) {
    margin-top: 30px;
  }
  .cid-vcLG40CieV .col-12:nth-child(3) {
    margin-top: 30px;
  }
}
.cid-vcLG41nnr0 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-vcLG41nnr0 .item-wrapper {
  position: relative;
  overflow: initial;
}
.cid-vcLG41nnr0 .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-vcLG41nnr0 .item:hover .item-img:before {
  opacity: 0.3;
}
@media (max-width: 992px) {
  .cid-vcLG41nnr0 .col-12 {
    margin-top: 30px;
  }
  .cid-vcLG41nnr0 .col-12:first-child {
    margin-top: 0px;
  }
  .cid-vcLG41nnr0 .col-12:nth-child(2) {
    margin-top: 0px;
  }
  .cid-vcLG41nnr0 .col-12:nth-child(3) {
    margin-top: 0px;
  }
}
@media (max-width: 768px) {
  .cid-vcLG41nnr0 .col-12:nth-child(2) {
    margin-top: 30px;
  }
  .cid-vcLG41nnr0 .col-12:nth-child(3) {
    margin-top: 30px;
  }
}
.cid-vcLG429cNm {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vcLG429cNm .item-wrapper {
  position: relative;
  overflow: initial;
}
.cid-vcLG429cNm .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-vcLG429cNm .item:hover .item-img:before {
  opacity: 0.3;
}
@media (max-width: 992px) {
  .cid-vcLG429cNm .col-12 {
    margin-top: 30px;
  }
  .cid-vcLG429cNm .col-12:first-child {
    margin-top: 0px;
  }
  .cid-vcLG429cNm .col-12:nth-child(2) {
    margin-top: 0px;
  }
  .cid-vcLG429cNm .col-12:nth-child(3) {
    margin-top: 0px;
  }
}
@media (max-width: 768px) {
  .cid-vcLG429cNm .col-12:nth-child(2) {
    margin-top: 30px;
  }
  .cid-vcLG429cNm .col-12:nth-child(3) {
    margin-top: 30px;
  }
}
.cid-vcLG42RyuG {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-vcLG43ztdA {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vcLG43ztdA .mbr-fallback-image.disabled {
  display: none;
}
.cid-vcLG43ztdA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vcLG44kgmg {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vcLG44kgmg .item-wrapper {
  position: relative;
  overflow: initial;
}
.cid-vcLG44kgmg .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-vcLG44kgmg .item:hover .item-img:before {
  opacity: 0.3;
}
@media (max-width: 992px) {
  .cid-vcLG44kgmg .col-12 {
    margin-top: 30px;
  }
  .cid-vcLG44kgmg .col-12:first-child {
    margin-top: 0px;
  }
  .cid-vcLG44kgmg .col-12:nth-child(2) {
    margin-top: 0px;
  }
  .cid-vcLG44kgmg .col-12:nth-child(3) {
    margin-top: 0px;
  }
}
@media (max-width: 768px) {
  .cid-vcLG44kgmg .col-12:nth-child(2) {
    margin-top: 30px;
  }
  .cid-vcLG44kgmg .col-12:nth-child(3) {
    margin-top: 30px;
  }
}
.cid-vcLG456KKN {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-vcLG45Swtl {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vcLG45Swtl .mbr-fallback-image.disabled {
  display: none;
}
.cid-vcLG45Swtl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vcLG46IBhJ {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #fafafa;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-vcLG46IBhJ .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-vcLG46IBhJ .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vcLG46IBhJ .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-vcLG46IBhJ .mbr-gallery-item {
  width: 33.3%;
}
.cid-vcLG46IBhJ .mbr-gallery-item:hover img {
  transform: scale(1.1);
}
@media (max-width: 767px) {
  .cid-vcLG46IBhJ .mbr-gallery-item {
    width: 100%;
  }
}
.cid-vcLG46IBhJ .container {
  padding-right: 6px;
  padding-left: 6px;
}
.cid-vcLG46IBhJ .mbr-gallery-row {
  justify-content: center;
}
.cid-vcLG46IBhJ .mbr-gallery-item > div:hover:before {
  z-index: 5;
}
.cid-vcLG46IBhJ .mbr-gallery-item > div:hover .icon-focus {
  opacity: 0.8 !important;
}
.cid-vcLG46IBhJ .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-vcLG46IBhJ .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-vcLG46IBhJ .icon-focus {
  font-family: 'Moririse2' !important;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 50px;
  background: white;
  border-radius: 6px;
}
.cid-vcLG46IBhJ .icon-focus:before {
  content: '\e970';
  font-size: 1.2rem;
  color: black;
}
.cid-vcLG46IBhJ .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-vcLG46IBhJ .mbr-gallery-item > div {
  overflow: hidden;
}
.cid-vcLG46IBhJ img {
  transition: all 2s !important;
}
.cid-vcLG46IBhJ .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-vcLG46IBhJ .mbr-gallery-title {
  font-size: 0.9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 5;
}
.cid-vcLG46IBhJ .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-vcLG47Buie {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vcLG47Buie .mbr-fallback-image.disabled {
  display: none;
}
.cid-vcLG47Buie .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vcLG48sTtT {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-vcLG48sTtT h2 {
  letter-spacing: 0.1em;
  -webkit-font-smoothing: antialiased;
  margin-bottom: 2rem;
}
.cid-vcLG48sTtT .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-vcLG48sTtT .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vcLG48sTtT .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-vcLG48sTtT .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-vcLG48sTtT .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-vcLG48sTtT .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-vcLG48sTtT .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-vcLG48sTtT .mbr-gallery-filter-all > a {
  padding: 30px;
  background-color: transparent !important;
  color: #888888;
}
.cid-vcLG48sTtT .mbr-section-title {
  padding-bottom: 2rem;
  margin: 0;
}
.cid-vcLG48sTtT .mbr-section-title p {
  margin: 0;
}
.cid-vcLG48sTtT .mbr-gallery-filter {
  padding-top: 0;
  padding-bottom: 2rem;
}
.cid-vcLG48sTtT .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-vcLG48sTtT .mbr-gallery-filter .btn:hover {
  background-color: transparent;
}
.cid-vcLG48sTtT .mbr-gallery-filter li.active .btn {
  background-color: transparent;
  color: #000000;
}
.cid-vcLG48sTtT .mbr-gallery-title {
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-vcLG48sTtT .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-vcLG49nT5o {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-vcLG49nT5o .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-vcLG49nT5o .text-content .content-title {
  color: #130947;
  margin-bottom: 30px;
}
.cid-vcLG49nT5o .text-content .content-title.display-5 {
  font-size: 26px;
  line-height: 1.38;
  letter-spacing: -0.5px;
}
.cid-vcLG49nT5o .text-content .list-block {
  border-bottom-width: 1px;
  padding-bottom: 30px;
  border-bottom-color: #130947;
  border-bottom-style: dotted;
  margin-bottom: 20px;
}
.cid-vcLG49nT5o .text-content .list-block .card-img span {
  color: #4f87fb;
  font-size: 2.5rem;
}
.cid-vcLG49nT5o .text-content .list-block .list-item-title {
  color: #130947;
}
.cid-vcLG49nT5o .text-content .list-block .list-item-title.display-7 {
  font-size: 20px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.cid-vcLG49nT5o .text-content .list-block .list-item-text {
  padding-top: 10px;
  line-height: 1.29;
  color: #6d7a8c;
  margin-bottom: 0;
}
.cid-vcLG49nT5o .text-content .list-block.last {
  border-bottom: none;
  margin-bottom: 20px;
  padding-bottom: 0;
}
.cid-vcLG49nT5o .text-content .social {
  font-size: 1.2rem;
  padding-left: 4.5rem;
}
.cid-vcLG49nT5o .text-content .social span {
  margin-right: 11.2px;
  margin-bottom: 8px;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  color: #6d7a8c;
}
.cid-vcLG49nT5o .text-content .social span:hover {
  color: #4f87fb;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.cid-vcLG49nT5o .card-img {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 3rem;
  text-align: center;
}
.cid-vcLG49nT5o .list-block {
  position: relative;
}
.cid-vcLG49nT5o .list-block h4,
.cid-vcLG49nT5o .list-block p {
  padding-left: 4.5rem;
}
.cid-vcLG49nT5o .card-img {
  display: block;
}
.cid-vcLG49nT5o input,
.cid-vcLG49nT5o 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-vcLG49nT5o input:focus,
.cid-vcLG49nT5o textarea:focus {
  border-left: none;
  border-top: none;
  border-right: none;
}
.cid-vcLG49nT5o .form-control,
.cid-vcLG49nT5o .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-vcLG49nT5o .form-control:hover,
.cid-vcLG49nT5o .field-input:hover,
.cid-vcLG49nT5o .form-control:focus,
.cid-vcLG49nT5o .field-input:focus {
  background-color: #ecf1f8;
  border-color: #ffffff !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-vcLG49nT5o input::-webkit-input-placeholder,
.cid-vcLG49nT5o textarea::-webkit-input-placeholder {
  color: #28303f;
}
.cid-vcLG49nT5o input:-moz-placeholder,
.cid-vcLG49nT5o textarea:-moz-placeholder {
  color: #28303f;
}
.cid-vcLG49nT5o .jq-selectbox li,
.cid-vcLG49nT5o .jq-selectbox li {
  background-color: #ecf1f8;
  color: #000000;
}
.cid-vcLG49nT5o .jq-selectbox li:hover,
.cid-vcLG49nT5o .jq-selectbox li.selected {
  background-color: #ecf1f8;
  color: #000000;
}
.cid-vcLG49nT5o .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #ecf1f8;
}
.cid-vcLG49nT5o .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #ecf1f8;
}
.cid-vcLG49nT5o .mbr-form {
  max-width: 550px;
}
.cid-vcLG49nT5o .mbr-form .mbr-subtitle {
  color: #4f87fb;
  font-weight: 800;
}
.cid-vcLG49nT5o .mbr-form .mbr-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-vcLG49nT5o .mbr-form .mbr-section-title {
  color: #130947;
  font-weight: 700;
}
.cid-vcLG49nT5o .mbr-form .mbr-section-title.display-2 {
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-vcLG49nT5o .mbr-form .mbr-text {
  color: #6d7a8c;
}
.cid-vcLG49nT5o .mbr-form textarea {
  min-height: 100px;
}
.cid-vcLG49nT5o .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-vcLG49nT5o .mbr-form .btn.display-4 {
  font-size: 13px;
  letter-spacing: 1px;
}
.cid-vcLG49nT5o .mbr-form span.value.form-control {
  min-height: 3.5rem;
  padding: 1rem;
}
@media (max-width: 991px) {
  .cid-vcLG49nT5o .mbr-form {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
@media (max-width: 768px) {
  .cid-vcLG49nT5o .mbr-section-title,
  .cid-vcLG49nT5o .content-title,
  .cid-vcLG49nT5o .mbr-section-btn {
    text-align: left;
  }
}
.cid-vcLG4auaoB {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-vcLG4auaoB .mbr-fallback-image.disabled {
  display: none;
}
.cid-vcLG4auaoB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vcLG4auaoB .google-map {
  height: 30rem;
  position: relative;
}
.cid-vcLG4auaoB .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-vcLG4auaoB .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-vcLG4auaoB .google-map[data-state] {
  background: #e9e5dc;
}
.cid-vcLG4auaoB .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-vcLG4cLJCw {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vcLG4cLJCw .mbr-text {
  color: #000000;
}
.cid-vcLG4cLJCw .container {
  max-width: 1000px;
}
.cid-vcLG4cLJCw h4 {
  text-align: center;
}
.cid-vcLG4cLJCw p {
  text-align: center;
}
.cid-vcLG4cLJCw .row {
  justify-content: center;
}
.cid-vcLG4cLJCw .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-vcLG4cLJCw .mbr-iconfont {
  font-size: 1.5rem;
  color: #000000;
  display: block;
}
.cid-vcLG4cLJCw .card-title,
.cid-vcLG4cLJCw .card-img {
  color: #000000;
}
.cid-vcLG4cLJCw .icon-wrap {
  padding-bottom: 7.6rem;
}
.cid-vcLG4cLJCw .icon-wrap:before {
  content: '';
  position: absolute;
  background: #000000;
  bottom: 0rem;
  left: 50%;
  width: 2px;
  height: 90px;
}
.cid-vcLG4cLJCw img {
  margin-bottom: 5rem;
  width: auto;
  margin-left: auto;
  margin-right: auto;
}
.cid-vcLG4cLJCw .mbr-fallback-image.disabled {
  display: none;
}
.cid-vcLG4cLJCw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vcLG4eFk3V {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
  overflow: hidden;
}
.cid-vcOb7ZzCJD {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vcOb7ZzCJD .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
}
@media (max-width: 992px) {
  .cid-vcOb7ZzCJD .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-vcOb7ZzCJD .iconfont-wrapper {
  color: #103178 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-vcOb7ZzCJD .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-vcOb7ZzCJD .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-vcOb7ZzCJD .container {
    padding: 0 1rem;
  }
}
.cid-vcOb7ZzCJD .menu-tite {
  background: #6592e6;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffc800;
}
.cid-vcOb7ZzCJD .nav-link {
  position: relative;
}
.cid-vcOb7ZzCJD .nav-link:hover {
  color: #47b5ed !important;
}
.cid-vcOb7ZzCJD nav.navbar {
  position: fixed;
}
.cid-vcOb7ZzCJD .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-vcOb7ZzCJD .navbar.opened {
  transition: all 0.3s;
}
.cid-vcOb7ZzCJD .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vcOb7ZzCJD .navbar .navbar-logo img {
  width: auto;
}
.cid-vcOb7ZzCJD .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vcOb7ZzCJD .navbar.collapsed {
  justify-content: center;
}
.cid-vcOb7ZzCJD .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vcOb7ZzCJD .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vcOb7ZzCJD .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 7rem);
  }
}
.cid-vcOb7ZzCJD .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vcOb7ZzCJD .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vcOb7ZzCJD .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-vcOb7ZzCJD .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vcOb7ZzCJD .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vcOb7ZzCJD .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vcOb7ZzCJD .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vcOb7ZzCJD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vcOb7ZzCJD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vcOb7ZzCJD .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vcOb7ZzCJD .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-vcOb7ZzCJD .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vcOb7ZzCJD .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vcOb7ZzCJD .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vcOb7ZzCJD .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vcOb7ZzCJD .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vcOb7ZzCJD .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vcOb7ZzCJD .navbar.navbar-short {
  min-height: 60px;
}
.cid-vcOb7ZzCJD .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vcOb7ZzCJD .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vcOb7ZzCJD .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-vcOb7ZzCJD .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vcOb7ZzCJD .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vcOb7ZzCJD .dropdown-item:hover,
.cid-vcOb7ZzCJD .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-vcOb7ZzCJD .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vcOb7ZzCJD .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vcOb7ZzCJD .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-vcOb7ZzCJD .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vcOb7ZzCJD .dropdown-menu,
.cid-vcOb7ZzCJD .navbar.opened {
  background: #ffffff !important;
}
.cid-vcOb7ZzCJD .nav-item:focus,
.cid-vcOb7ZzCJD .nav-link:focus {
  outline: none;
}
.cid-vcOb7ZzCJD .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vcOb7ZzCJD .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vcOb7ZzCJD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vcOb7ZzCJD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vcOb7ZzCJD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vcOb7ZzCJD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vcOb7ZzCJD .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-vcOb7ZzCJD .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vcOb7ZzCJD .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vcOb7ZzCJD .dropdown-item.active,
.cid-vcOb7ZzCJD .dropdown-item:active {
  background-color: transparent;
}
.cid-vcOb7ZzCJD .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vcOb7ZzCJD .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vcOb7ZzCJD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vcOb7ZzCJD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-vcOb7ZzCJD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vcOb7ZzCJD .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vcOb7ZzCJD ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vcOb7ZzCJD .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vcOb7ZzCJD button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vcOb7ZzCJD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-vcOb7ZzCJD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vcOb7ZzCJD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vcOb7ZzCJD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vcOb7ZzCJD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vcOb7ZzCJD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vcOb7ZzCJD nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vcOb7ZzCJD nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vcOb7ZzCJD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vcOb7ZzCJD .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vcOb7ZzCJD a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vcOb7ZzCJD .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-vcOb7ZzCJD .navbar {
    height: 70px;
  }
  .cid-vcOb7ZzCJD .navbar.opened {
    height: auto;
  }
  .cid-vcOb7ZzCJD .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vcOb82B1h5 .modal-body .close {
  background: #1b1b1b;
}
.cid-vcOb82B1h5 .modal-body .close span {
  font-style: normal;
}
.cid-vcOb82B1h5 .carousel-inner > .active,
.cid-vcOb82B1h5 .carousel-inner > .next,
.cid-vcOb82B1h5 .carousel-inner > .prev {
  display: flex;
}
.cid-vcOb82B1h5 .carousel-control .icon-next,
.cid-vcOb82B1h5 .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-vcOb82B1h5 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-vcOb82B1h5 .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-vcOb82B1h5 .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-vcOb82B1h5 .boxed-slider > div {
  position: relative;
}
.cid-vcOb82B1h5 .container img {
  width: 100%;
}
.cid-vcOb82B1h5 .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-vcOb82B1h5 .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-vcOb82B1h5 .mbr-table-cell {
  padding: 0;
}
.cid-vcOb82B1h5 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-vcOb82B1h5 .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-vcOb82B1h5 .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-vcOb82B1h5 .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-vcOb82B1h5 .carousel-item.active.right,
.cid-vcOb82B1h5 .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-vcOb82B1h5 .carousel-item.active.left,
.cid-vcOb82B1h5 .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-vcOb82B1h5 .carousel-item.active,
.cid-vcOb82B1h5 .carousel-item.next.left,
.cid-vcOb82B1h5 .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-vcOb82B1h5 .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-vcOb82B1h5 .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vcOb82B1h5 .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-vcOb82B1h5 .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-vcOb82B1h5 .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-vcOb82B1h5 .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-vcOb82B1h5 .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-vcOb82B1h5 .mbr-slider .carousel-indicators li.active,
.cid-vcOb82B1h5 .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-vcOb82B1h5 .mbr-slider .carousel-indicators li::after,
.cid-vcOb82B1h5 .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-vcOb82B1h5 .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-vcOb82B1h5 .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-vcOb82B1h5 .mbr-slider > .container img {
  width: 100%;
}
.cid-vcOb82B1h5 .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-vcOb82B1h5 .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-vcOb82B1h5 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-vcOb82B1h5 .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-vcOb82B1h5 .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-vcOb82B1h5 .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-vcOb82B1h5 .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-vcOb82B1h5 .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-vcOb82B1h5 .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-vcOb82B1h5 .full-screen .carousel-item .container.container-slide {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-vcOb82B1h5 .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-vcOb82B1h5 .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-vcOb82B1h5 .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-vcOb86mjVL {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vcOb86mjVL .mbr-fallback-image.disabled {
  display: none;
}
.cid-vcOb86mjVL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vcOb871zCU {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-vcOb871zCU .item-wrapper {
  position: relative;
  overflow: initial;
}
.cid-vcOb871zCU .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-vcOb871zCU .item:hover .item-img:before {
  opacity: 0.3;
}
@media (max-width: 992px) {
  .cid-vcOb871zCU .col-12 {
    margin-top: 30px;
  }
  .cid-vcOb871zCU .col-12:first-child {
    margin-top: 0px;
  }
  .cid-vcOb871zCU .col-12:nth-child(2) {
    margin-top: 0px;
  }
  .cid-vcOb871zCU .col-12:nth-child(3) {
    margin-top: 0px;
  }
}
@media (max-width: 768px) {
  .cid-vcOb871zCU .col-12:nth-child(2) {
    margin-top: 30px;
  }
  .cid-vcOb871zCU .col-12:nth-child(3) {
    margin-top: 30px;
  }
}
.cid-vcOb87ImHe {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-vcOb87ImHe .mbr-fallback-image.disabled {
  display: none;
}
.cid-vcOb87ImHe .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-vcOb87ImHe .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vcOb87ImHe .row {
  flex-direction: row-reverse;
}
.cid-vcOb87ImHe img {
  width: 100%;
}
#custom-html-9y {
  /* Type valid CSS here */
}
#custom-html-9y div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-9y p {
  font-size: 60px;
  color: #777;
}
.cid-vcOb88nPI4 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vcOb88nPI4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vcOb88nPI4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vcOb8948jq {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-vcOb8948jq .item-wrapper {
  position: relative;
  overflow: initial;
}
.cid-vcOb8948jq .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-vcOb8948jq .item:hover .item-img:before {
  opacity: 0.3;
}
@media (max-width: 992px) {
  .cid-vcOb8948jq .col-12 {
    margin-top: 30px;
  }
  .cid-vcOb8948jq .col-12:first-child {
    margin-top: 0px;
  }
  .cid-vcOb8948jq .col-12:nth-child(2) {
    margin-top: 0px;
  }
  .cid-vcOb8948jq .col-12:nth-child(3) {
    margin-top: 0px;
  }
}
@media (max-width: 768px) {
  .cid-vcOb8948jq .col-12:nth-child(2) {
    margin-top: 30px;
  }
  .cid-vcOb8948jq .col-12:nth-child(3) {
    margin-top: 30px;
  }
}
.cid-vcOb89MHNE {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-vcOb89MHNE .item-wrapper {
  position: relative;
  overflow: initial;
}
.cid-vcOb89MHNE .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-vcOb89MHNE .item:hover .item-img:before {
  opacity: 0.3;
}
@media (max-width: 992px) {
  .cid-vcOb89MHNE .col-12 {
    margin-top: 30px;
  }
  .cid-vcOb89MHNE .col-12:first-child {
    margin-top: 0px;
  }
  .cid-vcOb89MHNE .col-12:nth-child(2) {
    margin-top: 0px;
  }
  .cid-vcOb89MHNE .col-12:nth-child(3) {
    margin-top: 0px;
  }
}
@media (max-width: 768px) {
  .cid-vcOb89MHNE .col-12:nth-child(2) {
    margin-top: 30px;
  }
  .cid-vcOb89MHNE .col-12:nth-child(3) {
    margin-top: 30px;
  }
}
.cid-vcOb8asz9h {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-vcOb8asz9h .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-vcOb8asz9h .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vcOb8asz9h .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-vcOb8asz9h .mbr-gallery-item {
  width: 33.3%;
}
.cid-vcOb8asz9h .mbr-gallery-item:hover img {
  transform: scale(1.1);
}
@media (max-width: 767px) {
  .cid-vcOb8asz9h .mbr-gallery-item {
    width: 100%;
  }
}
.cid-vcOb8asz9h .container {
  padding-right: 6px;
  padding-left: 6px;
}
.cid-vcOb8asz9h .mbr-gallery-row {
  justify-content: center;
}
.cid-vcOb8asz9h .mbr-gallery-item > div:hover:before {
  z-index: 5;
}
.cid-vcOb8asz9h .mbr-gallery-item > div:hover .icon-focus {
  opacity: 0.8 !important;
}
.cid-vcOb8asz9h .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-vcOb8asz9h .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-vcOb8asz9h .icon-focus {
  font-family: 'Moririse2' !important;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 50px;
  background: white;
  border-radius: 6px;
}
.cid-vcOb8asz9h .icon-focus:before {
  content: '\e970';
  font-size: 1.2rem;
  color: black;
}
.cid-vcOb8asz9h .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-vcOb8asz9h .mbr-gallery-item > div {
  overflow: hidden;
}
.cid-vcOb8asz9h img {
  transition: all 2s !important;
}
.cid-vcOb8asz9h .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-vcOb8asz9h .mbr-gallery-title {
  font-size: 0.9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 5;
}
.cid-vcOb8asz9h .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-vcOb8bn2zh {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vcOb8bn2zh .mbr-fallback-image.disabled {
  display: none;
}
.cid-vcOb8bn2zh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vcOb8c6BZ3 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vcOb8c6BZ3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vcOb8c6BZ3 .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-vcOb8c6BZ3 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vcOb8c6BZ3 .row {
  flex-direction: row-reverse;
}
.cid-vcOb8c6BZ3 img {
  width: 100%;
}
.cid-vcOb8cONfO {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vcOb8cONfO .mbr-fallback-image.disabled {
  display: none;
}
.cid-vcOb8cONfO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vcOb8cONfO .video-wrapper iframe {
  width: 100%;
}
.cid-vcOb8cONfO .mbr-section-title,
.cid-vcOb8cONfO .mbr-section-subtitle,
.cid-vcOb8cONfO .mbr-text {
  text-align: center;
}
.cid-vcOb8cONfO .mbr-text {
  color: #000000;
}
.cid-vcOb8dDMdL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f7f5f0;
}
.cid-vcOb8dDMdL .mbr-fallback-image.disabled {
  display: none;
}
.cid-vcOb8dDMdL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vcOb8dDMdL .content-wrap {
  margin: 0;
}
.cid-vcOb8dDMdL .content-wrap .card {
  padding: 0;
  justify-content: center;
}
.cid-vcOb8dDMdL .content-wrapper {
  padding-right: 112px;
}
@media (max-width: 1440px) {
  .cid-vcOb8dDMdL .content-wrapper {
    padding-right: 64px;
  }
}
@media (max-width: 1200px) {
  .cid-vcOb8dDMdL .content-wrapper {
    padding-right: 32px;
  }
}
@media (max-width: 992px) {
  .cid-vcOb8dDMdL .content-wrapper {
    padding: 0;
    margin-bottom: 32px;
  }
}
.cid-vcOb8dDMdL .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-vcOb8dDMdL .video-wrapper {
  padding-left: 112px;
  border-left: 3px dashed #c10b02;
}
@media (max-width: 1440px) {
  .cid-vcOb8dDMdL .video-wrapper {
    padding-left: 64px;
  }
}
@media (max-width: 1200px) {
  .cid-vcOb8dDMdL .video-wrapper {
    padding-left: 32px;
  }
}
@media (max-width: 992px) {
  .cid-vcOb8dDMdL .video-wrapper {
    padding-left: 0;
    border-left: none;
    border-top: 3px dashed #c10b02;
    padding-top: 22px;
  }
}
.cid-vcOb8dDMdL .mbr-section-title {
  color: #c10b02;
  text-align: center;
}
.cid-vcOb8dDMdL .mbr-text,
.cid-vcOb8dDMdL .text-wrapper {
  color: #4b4949;
  text-align: center;
}
.cid-vcOb8er6lH {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-vcOb8fbimK {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vcOb8fbimK .mbr-fallback-image.disabled {
  display: none;
}
.cid-vcOb8fbimK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vcOb8g0r8F {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-vcOb8g0r8F .item-wrapper {
  position: relative;
  overflow: initial;
}
.cid-vcOb8g0r8F .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-vcOb8g0r8F .item:hover .item-img:before {
  opacity: 0.3;
}
@media (max-width: 992px) {
  .cid-vcOb8g0r8F .col-12 {
    margin-top: 30px;
  }
  .cid-vcOb8g0r8F .col-12:first-child {
    margin-top: 0px;
  }
  .cid-vcOb8g0r8F .col-12:nth-child(2) {
    margin-top: 0px;
  }
  .cid-vcOb8g0r8F .col-12:nth-child(3) {
    margin-top: 0px;
  }
}
@media (max-width: 768px) {
  .cid-vcOb8g0r8F .col-12:nth-child(2) {
    margin-top: 30px;
  }
  .cid-vcOb8g0r8F .col-12:nth-child(3) {
    margin-top: 30px;
  }
}
.cid-vcOb8gKD4T {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-vcOb8gKD4T .item-wrapper {
  position: relative;
  overflow: initial;
}
.cid-vcOb8gKD4T .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-vcOb8gKD4T .item:hover .item-img:before {
  opacity: 0.3;
}
@media (max-width: 992px) {
  .cid-vcOb8gKD4T .col-12 {
    margin-top: 30px;
  }
  .cid-vcOb8gKD4T .col-12:first-child {
    margin-top: 0px;
  }
  .cid-vcOb8gKD4T .col-12:nth-child(2) {
    margin-top: 0px;
  }
  .cid-vcOb8gKD4T .col-12:nth-child(3) {
    margin-top: 0px;
  }
}
@media (max-width: 768px) {
  .cid-vcOb8gKD4T .col-12:nth-child(2) {
    margin-top: 30px;
  }
  .cid-vcOb8gKD4T .col-12:nth-child(3) {
    margin-top: 30px;
  }
}
.cid-vcOb8hDNvK {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vcOb8hDNvK .item-wrapper {
  position: relative;
  overflow: initial;
}
.cid-vcOb8hDNvK .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-vcOb8hDNvK .item:hover .item-img:before {
  opacity: 0.3;
}
@media (max-width: 992px) {
  .cid-vcOb8hDNvK .col-12 {
    margin-top: 30px;
  }
  .cid-vcOb8hDNvK .col-12:first-child {
    margin-top: 0px;
  }
  .cid-vcOb8hDNvK .col-12:nth-child(2) {
    margin-top: 0px;
  }
  .cid-vcOb8hDNvK .col-12:nth-child(3) {
    margin-top: 0px;
  }
}
@media (max-width: 768px) {
  .cid-vcOb8hDNvK .col-12:nth-child(2) {
    margin-top: 30px;
  }
  .cid-vcOb8hDNvK .col-12:nth-child(3) {
    margin-top: 30px;
  }
}
.cid-vcOb8iryu6 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-vcOb8jcDEn {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vcOb8jcDEn .mbr-fallback-image.disabled {
  display: none;
}
.cid-vcOb8jcDEn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vcOb8k18UW {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vcOb8k18UW .item-wrapper {
  position: relative;
  overflow: initial;
}
.cid-vcOb8k18UW .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-vcOb8k18UW .item:hover .item-img:before {
  opacity: 0.3;
}
@media (max-width: 992px) {
  .cid-vcOb8k18UW .col-12 {
    margin-top: 30px;
  }
  .cid-vcOb8k18UW .col-12:first-child {
    margin-top: 0px;
  }
  .cid-vcOb8k18UW .col-12:nth-child(2) {
    margin-top: 0px;
  }
  .cid-vcOb8k18UW .col-12:nth-child(3) {
    margin-top: 0px;
  }
}
@media (max-width: 768px) {
  .cid-vcOb8k18UW .col-12:nth-child(2) {
    margin-top: 30px;
  }
  .cid-vcOb8k18UW .col-12:nth-child(3) {
    margin-top: 30px;
  }
}
.cid-vcOb8kTrKQ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-vcOb8lKopX {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vcOb8lKopX .mbr-fallback-image.disabled {
  display: none;
}
.cid-vcOb8lKopX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vcOb8mCEVV {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #fafafa;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-vcOb8mCEVV .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-vcOb8mCEVV .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vcOb8mCEVV .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-vcOb8mCEVV .mbr-gallery-item {
  width: 33.3%;
}
.cid-vcOb8mCEVV .mbr-gallery-item:hover img {
  transform: scale(1.1);
}
@media (max-width: 767px) {
  .cid-vcOb8mCEVV .mbr-gallery-item {
    width: 100%;
  }
}
.cid-vcOb8mCEVV .container {
  padding-right: 6px;
  padding-left: 6px;
}
.cid-vcOb8mCEVV .mbr-gallery-row {
  justify-content: center;
}
.cid-vcOb8mCEVV .mbr-gallery-item > div:hover:before {
  z-index: 5;
}
.cid-vcOb8mCEVV .mbr-gallery-item > div:hover .icon-focus {
  opacity: 0.8 !important;
}
.cid-vcOb8mCEVV .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-vcOb8mCEVV .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-vcOb8mCEVV .icon-focus {
  font-family: 'Moririse2' !important;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 50px;
  background: white;
  border-radius: 6px;
}
.cid-vcOb8mCEVV .icon-focus:before {
  content: '\e970';
  font-size: 1.2rem;
  color: black;
}
.cid-vcOb8mCEVV .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-vcOb8mCEVV .mbr-gallery-item > div {
  overflow: hidden;
}
.cid-vcOb8mCEVV img {
  transition: all 2s !important;
}
.cid-vcOb8mCEVV .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-vcOb8mCEVV .mbr-gallery-title {
  font-size: 0.9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 5;
}
.cid-vcOb8mCEVV .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-vcOb8ntTCu {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vcOb8ntTCu .mbr-fallback-image.disabled {
  display: none;
}
.cid-vcOb8ntTCu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vcOb8opQs4 {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-vcOb8opQs4 h2 {
  letter-spacing: 0.1em;
  -webkit-font-smoothing: antialiased;
  margin-bottom: 2rem;
}
.cid-vcOb8opQs4 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-vcOb8opQs4 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vcOb8opQs4 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-vcOb8opQs4 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-vcOb8opQs4 .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-vcOb8opQs4 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-vcOb8opQs4 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-vcOb8opQs4 .mbr-gallery-filter-all > a {
  padding: 30px;
  background-color: transparent !important;
  color: #888888;
}
.cid-vcOb8opQs4 .mbr-section-title {
  padding-bottom: 2rem;
  margin: 0;
}
.cid-vcOb8opQs4 .mbr-section-title p {
  margin: 0;
}
.cid-vcOb8opQs4 .mbr-gallery-filter {
  padding-top: 0;
  padding-bottom: 2rem;
}
.cid-vcOb8opQs4 .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-vcOb8opQs4 .mbr-gallery-filter .btn:hover {
  background-color: transparent;
}
.cid-vcOb8opQs4 .mbr-gallery-filter li.active .btn {
  background-color: transparent;
  color: #000000;
}
.cid-vcOb8opQs4 .mbr-gallery-title {
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-vcOb8opQs4 .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-vcOb8pBWuY {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-vcOb8pBWuY .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-vcOb8pBWuY .text-content .content-title {
  color: #130947;
  margin-bottom: 30px;
}
.cid-vcOb8pBWuY .text-content .content-title.display-5 {
  font-size: 26px;
  line-height: 1.38;
  letter-spacing: -0.5px;
}
.cid-vcOb8pBWuY .text-content .list-block {
  border-bottom-width: 1px;
  padding-bottom: 30px;
  border-bottom-color: #130947;
  border-bottom-style: dotted;
  margin-bottom: 20px;
}
.cid-vcOb8pBWuY .text-content .list-block .card-img span {
  color: #4f87fb;
  font-size: 2.5rem;
}
.cid-vcOb8pBWuY .text-content .list-block .list-item-title {
  color: #130947;
}
.cid-vcOb8pBWuY .text-content .list-block .list-item-title.display-7 {
  font-size: 20px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.cid-vcOb8pBWuY .text-content .list-block .list-item-text {
  padding-top: 10px;
  line-height: 1.29;
  color: #6d7a8c;
  margin-bottom: 0;
}
.cid-vcOb8pBWuY .text-content .list-block.last {
  border-bottom: none;
  margin-bottom: 20px;
  padding-bottom: 0;
}
.cid-vcOb8pBWuY .text-content .social {
  font-size: 1.2rem;
  padding-left: 4.5rem;
}
.cid-vcOb8pBWuY .text-content .social span {
  margin-right: 11.2px;
  margin-bottom: 8px;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  color: #6d7a8c;
}
.cid-vcOb8pBWuY .text-content .social span:hover {
  color: #4f87fb;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.cid-vcOb8pBWuY .card-img {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 3rem;
  text-align: center;
}
.cid-vcOb8pBWuY .list-block {
  position: relative;
}
.cid-vcOb8pBWuY .list-block h4,
.cid-vcOb8pBWuY .list-block p {
  padding-left: 4.5rem;
}
.cid-vcOb8pBWuY .card-img {
  display: block;
}
.cid-vcOb8pBWuY input,
.cid-vcOb8pBWuY 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-vcOb8pBWuY input:focus,
.cid-vcOb8pBWuY textarea:focus {
  border-left: none;
  border-top: none;
  border-right: none;
}
.cid-vcOb8pBWuY .form-control,
.cid-vcOb8pBWuY .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-vcOb8pBWuY .form-control:hover,
.cid-vcOb8pBWuY .field-input:hover,
.cid-vcOb8pBWuY .form-control:focus,
.cid-vcOb8pBWuY .field-input:focus {
  background-color: #ecf1f8;
  border-color: #ffffff !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-vcOb8pBWuY input::-webkit-input-placeholder,
.cid-vcOb8pBWuY textarea::-webkit-input-placeholder {
  color: #28303f;
}
.cid-vcOb8pBWuY input:-moz-placeholder,
.cid-vcOb8pBWuY textarea:-moz-placeholder {
  color: #28303f;
}
.cid-vcOb8pBWuY .jq-selectbox li,
.cid-vcOb8pBWuY .jq-selectbox li {
  background-color: #ecf1f8;
  color: #000000;
}
.cid-vcOb8pBWuY .jq-selectbox li:hover,
.cid-vcOb8pBWuY .jq-selectbox li.selected {
  background-color: #ecf1f8;
  color: #000000;
}
.cid-vcOb8pBWuY .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #ecf1f8;
}
.cid-vcOb8pBWuY .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #ecf1f8;
}
.cid-vcOb8pBWuY .mbr-form {
  max-width: 550px;
}
.cid-vcOb8pBWuY .mbr-form .mbr-subtitle {
  color: #4f87fb;
  font-weight: 800;
}
.cid-vcOb8pBWuY .mbr-form .mbr-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-vcOb8pBWuY .mbr-form .mbr-section-title {
  color: #130947;
  font-weight: 700;
}
.cid-vcOb8pBWuY .mbr-form .mbr-section-title.display-2 {
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-vcOb8pBWuY .mbr-form .mbr-text {
  color: #6d7a8c;
}
.cid-vcOb8pBWuY .mbr-form textarea {
  min-height: 100px;
}
.cid-vcOb8pBWuY .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-vcOb8pBWuY .mbr-form .btn.display-4 {
  font-size: 13px;
  letter-spacing: 1px;
}
.cid-vcOb8pBWuY .mbr-form span.value.form-control {
  min-height: 3.5rem;
  padding: 1rem;
}
@media (max-width: 991px) {
  .cid-vcOb8pBWuY .mbr-form {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
@media (max-width: 768px) {
  .cid-vcOb8pBWuY .mbr-section-title,
  .cid-vcOb8pBWuY .content-title,
  .cid-vcOb8pBWuY .mbr-section-btn {
    text-align: left;
  }
}
.cid-vcOb8qPnVb {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-vcOb8qPnVb .mbr-fallback-image.disabled {
  display: none;
}
.cid-vcOb8qPnVb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vcOb8qPnVb .google-map {
  height: 30rem;
  position: relative;
}
.cid-vcOb8qPnVb .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-vcOb8qPnVb .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-vcOb8qPnVb .google-map[data-state] {
  background: #e9e5dc;
}
.cid-vcOb8qPnVb .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-vcOb8tgkxU {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vcOb8tgkxU .mbr-text {
  color: #000000;
}
.cid-vcOb8tgkxU .container {
  max-width: 1000px;
}
.cid-vcOb8tgkxU h4 {
  text-align: center;
}
.cid-vcOb8tgkxU p {
  text-align: center;
}
.cid-vcOb8tgkxU .row {
  justify-content: center;
}
.cid-vcOb8tgkxU .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-vcOb8tgkxU .mbr-iconfont {
  font-size: 1.5rem;
  color: #000000;
  display: block;
}
.cid-vcOb8tgkxU .card-title,
.cid-vcOb8tgkxU .card-img {
  color: #000000;
}
.cid-vcOb8tgkxU .icon-wrap {
  padding-bottom: 7.6rem;
}
.cid-vcOb8tgkxU .icon-wrap:before {
  content: '';
  position: absolute;
  background: #000000;
  bottom: 0rem;
  left: 50%;
  width: 2px;
  height: 90px;
}
.cid-vcOb8tgkxU img {
  margin-bottom: 5rem;
  width: auto;
  margin-left: auto;
  margin-right: auto;
}
.cid-vcOb8tgkxU .mbr-fallback-image.disabled {
  display: none;
}
.cid-vcOb8tgkxU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vcOb8umajp {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
  overflow: hidden;
}
.cid-veyiqdv5NM {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-veyiqdv5NM .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
}
@media (max-width: 992px) {
  .cid-veyiqdv5NM .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-veyiqdv5NM .iconfont-wrapper {
  color: #103178 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-veyiqdv5NM .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-veyiqdv5NM .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-veyiqdv5NM .container {
    padding: 0 1rem;
  }
}
.cid-veyiqdv5NM .menu-tite {
  background: #6592e6;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffc800;
}
.cid-veyiqdv5NM .nav-link {
  position: relative;
}
.cid-veyiqdv5NM .nav-link:hover {
  color: #47b5ed !important;
}
.cid-veyiqdv5NM nav.navbar {
  position: fixed;
}
.cid-veyiqdv5NM .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-veyiqdv5NM .navbar.opened {
  transition: all 0.3s;
}
.cid-veyiqdv5NM .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-veyiqdv5NM .navbar .navbar-logo img {
  width: auto;
}
.cid-veyiqdv5NM .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-veyiqdv5NM .navbar.collapsed {
  justify-content: center;
}
.cid-veyiqdv5NM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-veyiqdv5NM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-veyiqdv5NM .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 7rem);
  }
}
.cid-veyiqdv5NM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-veyiqdv5NM .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-veyiqdv5NM .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-veyiqdv5NM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-veyiqdv5NM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-veyiqdv5NM .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-veyiqdv5NM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-veyiqdv5NM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-veyiqdv5NM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-veyiqdv5NM .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-veyiqdv5NM .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-veyiqdv5NM .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-veyiqdv5NM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-veyiqdv5NM .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-veyiqdv5NM .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-veyiqdv5NM .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-veyiqdv5NM .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-veyiqdv5NM .navbar.navbar-short {
  min-height: 60px;
}
.cid-veyiqdv5NM .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-veyiqdv5NM .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-veyiqdv5NM .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-veyiqdv5NM .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-veyiqdv5NM .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-veyiqdv5NM .dropdown-item:hover,
.cid-veyiqdv5NM .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-veyiqdv5NM .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-veyiqdv5NM .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-veyiqdv5NM .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-veyiqdv5NM .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-veyiqdv5NM .dropdown-menu,
.cid-veyiqdv5NM .navbar.opened {
  background: #ffffff !important;
}
.cid-veyiqdv5NM .nav-item:focus,
.cid-veyiqdv5NM .nav-link:focus {
  outline: none;
}
.cid-veyiqdv5NM .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-veyiqdv5NM .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-veyiqdv5NM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-veyiqdv5NM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-veyiqdv5NM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-veyiqdv5NM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-veyiqdv5NM .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-veyiqdv5NM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-veyiqdv5NM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-veyiqdv5NM .dropdown-item.active,
.cid-veyiqdv5NM .dropdown-item:active {
  background-color: transparent;
}
.cid-veyiqdv5NM .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-veyiqdv5NM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-veyiqdv5NM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-veyiqdv5NM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-veyiqdv5NM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-veyiqdv5NM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-veyiqdv5NM ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-veyiqdv5NM .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-veyiqdv5NM button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-veyiqdv5NM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-veyiqdv5NM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-veyiqdv5NM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-veyiqdv5NM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-veyiqdv5NM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-veyiqdv5NM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-veyiqdv5NM nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-veyiqdv5NM nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-veyiqdv5NM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-veyiqdv5NM .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-veyiqdv5NM a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-veyiqdv5NM .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-veyiqdv5NM .navbar {
    height: 70px;
  }
  .cid-veyiqdv5NM .navbar.opened {
    height: auto;
  }
  .cid-veyiqdv5NM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-veyiqekeTG {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-veyiqekeTG .mbr-fallback-image.disabled {
  display: none;
}
.cid-veyiqekeTG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-veyiqeTzH3 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-veyiqeTzH3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-veyiqeTzH3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-veyiqeTzH3 .mbr-section-head {
  margin-bottom: 32px;
}
.cid-veyiqeTzH3 .mbr-section-title {
  color: #24262b;
}
.cid-veyiqeTzH3 .mbr-section-subtitle {
  color: #24262b;
}
.cid-veyiqeTzH3 .items-row {
  row-gap: 32px;
}
.cid-veyiqeTzH3 .item-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-veyiqeTzH3 .item-wrapper img {
  width: 100%;
  aspect-ratio: calc(8 / (1 * 11));
  object-fit: cover;
  transition: all 0.3s;
}
.cid-veyiqeTzH3 .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-veyiqeTzH3 .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-veyiqeTzH3 .item-wrapper:hover img {
  transform: scale(1.05);
}
.cid-veyiqeTzH3 .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-veyiqeTzH3 .item-wrapper:hover .img-overlay {
  opacity: 0.3;
}
.cid-veyiqeTzH3 .mbr-item-subtitle {
  color: #24262b;
}
.cid-veyiqeTzH3 .carousel-control,
.cid-veyiqeTzH3 .close {
  background: #1b1b1b;
}
.cid-veyiqeTzH3 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-veyiqeTzH3 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-veyiqeTzH3 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-veyiqeTzH3 .carousel-control-next span {
  margin-left: 5px;
}
.cid-veyiqeTzH3 .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-veyiqeTzH3 .close::before {
  content: '\e91a';
}
.cid-veyiqeTzH3 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-veyiqeTzH3 .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-veyiqeTzH3 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-veyiqeTzH3 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-veyiqeTzH3 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-veyiqeTzH3 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-veyiqeTzH3 .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-veyiqeTzH3 .carousel-indicators li.active,
.cid-veyiqeTzH3 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-veyiqeTzH3 .carousel-indicators li::after,
.cid-veyiqeTzH3 .carousel-indicators li::before {
  content: none;
}
.cid-veyiqeTzH3 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-veyiqeTzH3 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-veyiqeTzH3 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-veyiqeTzH3 .carousel-indicators {
    display: none;
  }
}
.cid-veyiqeTzH3 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-veyiqeTzH3 .carousel-inner > .active {
  display: block;
}
.cid-veyiqeTzH3 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-veyiqeTzH3 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-veyiqeTzH3 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-veyiqeTzH3 .carousel-control,
  .cid-veyiqeTzH3 .carousel-indicators,
  .cid-veyiqeTzH3 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-veyiqeTzH3 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-veyiqeTzH3 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-veyiqeTzH3 .carousel-indicators .active,
.cid-veyiqeTzH3 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-veyiqeTzH3 .carousel-indicators .active {
  background: #fff;
}
.cid-veyiqeTzH3 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-veyiqeTzH3 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-veyiqeTzH3 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-veyiqeTzH3 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-veyiqeTzH3 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-veyiqeTzH3 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-veyiqeTzH3 .carousel {
  width: 100%;
}
.cid-veyiqeTzH3 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-veyiqeTzH3 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-veyiqeTzH3 .modal.fade .modal-dialog,
.cid-veyiqeTzH3 .modal.in .modal-dialog {
  transform: none;
}
.cid-veyiqeTzH3 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-veyiqeTzH3 H6 {
  text-align: center;
}
.cid-veyiqfspBF {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-veyiqfspBF .mbr-text {
  color: #000000;
}
.cid-veyiqfspBF .container {
  max-width: 1000px;
}
.cid-veyiqfspBF h4 {
  text-align: center;
}
.cid-veyiqfspBF p {
  text-align: center;
}
.cid-veyiqfspBF .row {
  justify-content: center;
}
.cid-veyiqfspBF .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-veyiqfspBF .mbr-iconfont {
  font-size: 1.5rem;
  color: #000000;
  display: block;
}
.cid-veyiqfspBF .card-title,
.cid-veyiqfspBF .card-img {
  color: #000000;
}
.cid-veyiqfspBF .icon-wrap {
  padding-bottom: 7.6rem;
}
.cid-veyiqfspBF .icon-wrap:before {
  content: '';
  position: absolute;
  background: #000000;
  bottom: 0rem;
  left: 50%;
  width: 2px;
  height: 90px;
}
.cid-veyiqfspBF img {
  margin-bottom: 5rem;
  width: auto;
  margin-left: auto;
  margin-right: auto;
}
.cid-veyiqfspBF .mbr-fallback-image.disabled {
  display: none;
}
.cid-veyiqfspBF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-veyiqfWAi4 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
  overflow: hidden;
}
.cid-veyzEvyZy9 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-veyzEvyZy9 .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
}
@media (max-width: 992px) {
  .cid-veyzEvyZy9 .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-veyzEvyZy9 .iconfont-wrapper {
  color: #103178 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-veyzEvyZy9 .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-veyzEvyZy9 .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-veyzEvyZy9 .container {
    padding: 0 1rem;
  }
}
.cid-veyzEvyZy9 .menu-tite {
  background: #6592e6;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffc800;
}
.cid-veyzEvyZy9 .nav-link {
  position: relative;
}
.cid-veyzEvyZy9 .nav-link:hover {
  color: #47b5ed !important;
}
.cid-veyzEvyZy9 nav.navbar {
  position: fixed;
}
.cid-veyzEvyZy9 .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-veyzEvyZy9 .navbar.opened {
  transition: all 0.3s;
}
.cid-veyzEvyZy9 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-veyzEvyZy9 .navbar .navbar-logo img {
  width: auto;
}
.cid-veyzEvyZy9 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-veyzEvyZy9 .navbar.collapsed {
  justify-content: center;
}
.cid-veyzEvyZy9 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-veyzEvyZy9 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-veyzEvyZy9 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 7rem);
  }
}
.cid-veyzEvyZy9 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-veyzEvyZy9 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-veyzEvyZy9 .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-veyzEvyZy9 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-veyzEvyZy9 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-veyzEvyZy9 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-veyzEvyZy9 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-veyzEvyZy9 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-veyzEvyZy9 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-veyzEvyZy9 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-veyzEvyZy9 .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-veyzEvyZy9 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-veyzEvyZy9 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-veyzEvyZy9 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-veyzEvyZy9 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-veyzEvyZy9 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-veyzEvyZy9 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-veyzEvyZy9 .navbar.navbar-short {
  min-height: 60px;
}
.cid-veyzEvyZy9 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-veyzEvyZy9 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-veyzEvyZy9 .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-veyzEvyZy9 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-veyzEvyZy9 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-veyzEvyZy9 .dropdown-item:hover,
.cid-veyzEvyZy9 .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-veyzEvyZy9 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-veyzEvyZy9 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-veyzEvyZy9 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-veyzEvyZy9 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-veyzEvyZy9 .dropdown-menu,
.cid-veyzEvyZy9 .navbar.opened {
  background: #ffffff !important;
}
.cid-veyzEvyZy9 .nav-item:focus,
.cid-veyzEvyZy9 .nav-link:focus {
  outline: none;
}
.cid-veyzEvyZy9 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-veyzEvyZy9 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-veyzEvyZy9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-veyzEvyZy9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-veyzEvyZy9 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-veyzEvyZy9 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-veyzEvyZy9 .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-veyzEvyZy9 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-veyzEvyZy9 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-veyzEvyZy9 .dropdown-item.active,
.cid-veyzEvyZy9 .dropdown-item:active {
  background-color: transparent;
}
.cid-veyzEvyZy9 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-veyzEvyZy9 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-veyzEvyZy9 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-veyzEvyZy9 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-veyzEvyZy9 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-veyzEvyZy9 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-veyzEvyZy9 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-veyzEvyZy9 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-veyzEvyZy9 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-veyzEvyZy9 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-veyzEvyZy9 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-veyzEvyZy9 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-veyzEvyZy9 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-veyzEvyZy9 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-veyzEvyZy9 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-veyzEvyZy9 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-veyzEvyZy9 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-veyzEvyZy9 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-veyzEvyZy9 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-veyzEvyZy9 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-veyzEvyZy9 .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-veyzEvyZy9 .navbar {
    height: 70px;
  }
  .cid-veyzEvyZy9 .navbar.opened {
    height: auto;
  }
  .cid-veyzEvyZy9 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-veyzEwlXUF {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-veyzEwlXUF .mbr-fallback-image.disabled {
  display: none;
}
.cid-veyzEwlXUF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-veyzEwIMrR {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-veyzEwIMrR .mbr-fallback-image.disabled {
  display: none;
}
.cid-veyzEwIMrR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-veyzEwIMrR .mbr-section-head {
  margin-bottom: 32px;
}
.cid-veyzEwIMrR .mbr-section-title {
  color: #24262b;
}
.cid-veyzEwIMrR .mbr-section-subtitle {
  color: #24262b;
}
.cid-veyzEwIMrR .items-row {
  row-gap: 32px;
}
.cid-veyzEwIMrR .item-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-veyzEwIMrR .item-wrapper img {
  width: 100%;
  aspect-ratio: calc(8 / (1 * 11));
  object-fit: cover;
  transition: all 0.3s;
}
.cid-veyzEwIMrR .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-veyzEwIMrR .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-veyzEwIMrR .item-wrapper:hover img {
  transform: scale(1.05);
}
.cid-veyzEwIMrR .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-veyzEwIMrR .item-wrapper:hover .img-overlay {
  opacity: 0.3;
}
.cid-veyzEwIMrR .mbr-item-subtitle {
  color: #24262b;
}
.cid-veyzEwIMrR .carousel-control,
.cid-veyzEwIMrR .close {
  background: #1b1b1b;
}
.cid-veyzEwIMrR .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-veyzEwIMrR .carousel-control-prev span {
  margin-right: 5px;
}
.cid-veyzEwIMrR .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-veyzEwIMrR .carousel-control-next span {
  margin-left: 5px;
}
.cid-veyzEwIMrR .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-veyzEwIMrR .close::before {
  content: '\e91a';
}
.cid-veyzEwIMrR .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-veyzEwIMrR .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-veyzEwIMrR .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-veyzEwIMrR .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-veyzEwIMrR .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-veyzEwIMrR .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-veyzEwIMrR .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-veyzEwIMrR .carousel-indicators li.active,
.cid-veyzEwIMrR .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-veyzEwIMrR .carousel-indicators li::after,
.cid-veyzEwIMrR .carousel-indicators li::before {
  content: none;
}
.cid-veyzEwIMrR .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-veyzEwIMrR .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-veyzEwIMrR .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-veyzEwIMrR .carousel-indicators {
    display: none;
  }
}
.cid-veyzEwIMrR .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-veyzEwIMrR .carousel-inner > .active {
  display: block;
}
.cid-veyzEwIMrR .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-veyzEwIMrR .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-veyzEwIMrR .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-veyzEwIMrR .carousel-control,
  .cid-veyzEwIMrR .carousel-indicators,
  .cid-veyzEwIMrR .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-veyzEwIMrR .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-veyzEwIMrR .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-veyzEwIMrR .carousel-indicators .active,
.cid-veyzEwIMrR .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-veyzEwIMrR .carousel-indicators .active {
  background: #fff;
}
.cid-veyzEwIMrR .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-veyzEwIMrR .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-veyzEwIMrR .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-veyzEwIMrR .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-veyzEwIMrR .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-veyzEwIMrR .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-veyzEwIMrR .carousel {
  width: 100%;
}
.cid-veyzEwIMrR .modal-backdrop.in {
  opacity: 0.8;
}
.cid-veyzEwIMrR .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-veyzEwIMrR .modal.fade .modal-dialog,
.cid-veyzEwIMrR .modal.in .modal-dialog {
  transform: none;
}
.cid-veyzEwIMrR .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-veyzEwIMrR H6 {
  text-align: center;
}
.cid-veyzExjwI7 {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-veyzExjwI7 .mbr-text {
  color: #000000;
}
.cid-veyzExjwI7 .container {
  max-width: 1000px;
}
.cid-veyzExjwI7 h4 {
  text-align: center;
}
.cid-veyzExjwI7 p {
  text-align: center;
}
.cid-veyzExjwI7 .row {
  justify-content: center;
}
.cid-veyzExjwI7 .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-veyzExjwI7 .mbr-iconfont {
  font-size: 1.5rem;
  color: #000000;
  display: block;
}
.cid-veyzExjwI7 .card-title,
.cid-veyzExjwI7 .card-img {
  color: #000000;
}
.cid-veyzExjwI7 .icon-wrap {
  padding-bottom: 7.6rem;
}
.cid-veyzExjwI7 .icon-wrap:before {
  content: '';
  position: absolute;
  background: #000000;
  bottom: 0rem;
  left: 50%;
  width: 2px;
  height: 90px;
}
.cid-veyzExjwI7 img {
  margin-bottom: 5rem;
  width: auto;
  margin-left: auto;
  margin-right: auto;
}
.cid-veyzExjwI7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-veyzExjwI7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-veyzExPZ2Q {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
  overflow: hidden;
}
.cid-veyEXjQEJq {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-veyEXjQEJq .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
}
@media (max-width: 992px) {
  .cid-veyEXjQEJq .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-veyEXjQEJq .iconfont-wrapper {
  color: #103178 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-veyEXjQEJq .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-veyEXjQEJq .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-veyEXjQEJq .container {
    padding: 0 1rem;
  }
}
.cid-veyEXjQEJq .menu-tite {
  background: #6592e6;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffc800;
}
.cid-veyEXjQEJq .nav-link {
  position: relative;
}
.cid-veyEXjQEJq .nav-link:hover {
  color: #47b5ed !important;
}
.cid-veyEXjQEJq nav.navbar {
  position: fixed;
}
.cid-veyEXjQEJq .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-veyEXjQEJq .navbar.opened {
  transition: all 0.3s;
}
.cid-veyEXjQEJq .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-veyEXjQEJq .navbar .navbar-logo img {
  width: auto;
}
.cid-veyEXjQEJq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-veyEXjQEJq .navbar.collapsed {
  justify-content: center;
}
.cid-veyEXjQEJq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-veyEXjQEJq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-veyEXjQEJq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 7rem);
  }
}
.cid-veyEXjQEJq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-veyEXjQEJq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-veyEXjQEJq .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-veyEXjQEJq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-veyEXjQEJq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-veyEXjQEJq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-veyEXjQEJq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-veyEXjQEJq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-veyEXjQEJq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-veyEXjQEJq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-veyEXjQEJq .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-veyEXjQEJq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-veyEXjQEJq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-veyEXjQEJq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-veyEXjQEJq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-veyEXjQEJq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-veyEXjQEJq .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-veyEXjQEJq .navbar.navbar-short {
  min-height: 60px;
}
.cid-veyEXjQEJq .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-veyEXjQEJq .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-veyEXjQEJq .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-veyEXjQEJq .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-veyEXjQEJq .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-veyEXjQEJq .dropdown-item:hover,
.cid-veyEXjQEJq .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-veyEXjQEJq .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-veyEXjQEJq .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-veyEXjQEJq .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-veyEXjQEJq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-veyEXjQEJq .dropdown-menu,
.cid-veyEXjQEJq .navbar.opened {
  background: #ffffff !important;
}
.cid-veyEXjQEJq .nav-item:focus,
.cid-veyEXjQEJq .nav-link:focus {
  outline: none;
}
.cid-veyEXjQEJq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-veyEXjQEJq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-veyEXjQEJq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-veyEXjQEJq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-veyEXjQEJq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-veyEXjQEJq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-veyEXjQEJq .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-veyEXjQEJq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-veyEXjQEJq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-veyEXjQEJq .dropdown-item.active,
.cid-veyEXjQEJq .dropdown-item:active {
  background-color: transparent;
}
.cid-veyEXjQEJq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-veyEXjQEJq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-veyEXjQEJq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-veyEXjQEJq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-veyEXjQEJq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-veyEXjQEJq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-veyEXjQEJq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-veyEXjQEJq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-veyEXjQEJq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-veyEXjQEJq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-veyEXjQEJq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-veyEXjQEJq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-veyEXjQEJq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-veyEXjQEJq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-veyEXjQEJq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-veyEXjQEJq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-veyEXjQEJq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-veyEXjQEJq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-veyEXjQEJq .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-veyEXjQEJq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-veyEXjQEJq .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-veyEXjQEJq .navbar {
    height: 70px;
  }
  .cid-veyEXjQEJq .navbar.opened {
    height: auto;
  }
  .cid-veyEXjQEJq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-veyEXkrUc4 {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-veyEXkrUc4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-veyEXkrUc4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-veyEXkQ0NB {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-veyEXkQ0NB .mbr-fallback-image.disabled {
  display: none;
}
.cid-veyEXkQ0NB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-veyEXkQ0NB .mbr-section-head {
  margin-bottom: 32px;
}
.cid-veyEXkQ0NB .mbr-section-title {
  color: #24262b;
}
.cid-veyEXkQ0NB .mbr-section-subtitle {
  color: #24262b;
}
.cid-veyEXkQ0NB .items-row {
  row-gap: 32px;
}
.cid-veyEXkQ0NB .item-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-veyEXkQ0NB .item-wrapper img {
  width: 100%;
  aspect-ratio: calc(8 / (1 * 12));
  object-fit: cover;
  transition: all 0.3s;
}
.cid-veyEXkQ0NB .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-veyEXkQ0NB .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-veyEXkQ0NB .item-wrapper:hover img {
  transform: scale(1.05);
}
.cid-veyEXkQ0NB .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-veyEXkQ0NB .item-wrapper:hover .img-overlay {
  opacity: 0.3;
}
.cid-veyEXkQ0NB .mbr-item-subtitle {
  color: #24262b;
}
.cid-veyEXkQ0NB .carousel-control,
.cid-veyEXkQ0NB .close {
  background: #1b1b1b;
}
.cid-veyEXkQ0NB .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-veyEXkQ0NB .carousel-control-prev span {
  margin-right: 5px;
}
.cid-veyEXkQ0NB .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-veyEXkQ0NB .carousel-control-next span {
  margin-left: 5px;
}
.cid-veyEXkQ0NB .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-veyEXkQ0NB .close::before {
  content: '\e91a';
}
.cid-veyEXkQ0NB .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-veyEXkQ0NB .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-veyEXkQ0NB .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-veyEXkQ0NB .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-veyEXkQ0NB .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-veyEXkQ0NB .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-veyEXkQ0NB .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-veyEXkQ0NB .carousel-indicators li.active,
.cid-veyEXkQ0NB .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-veyEXkQ0NB .carousel-indicators li::after,
.cid-veyEXkQ0NB .carousel-indicators li::before {
  content: none;
}
.cid-veyEXkQ0NB .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-veyEXkQ0NB .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-veyEXkQ0NB .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-veyEXkQ0NB .carousel-indicators {
    display: none;
  }
}
.cid-veyEXkQ0NB .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-veyEXkQ0NB .carousel-inner > .active {
  display: block;
}
.cid-veyEXkQ0NB .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-veyEXkQ0NB .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-veyEXkQ0NB .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-veyEXkQ0NB .carousel-control,
  .cid-veyEXkQ0NB .carousel-indicators,
  .cid-veyEXkQ0NB .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-veyEXkQ0NB .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-veyEXkQ0NB .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-veyEXkQ0NB .carousel-indicators .active,
.cid-veyEXkQ0NB .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-veyEXkQ0NB .carousel-indicators .active {
  background: #fff;
}
.cid-veyEXkQ0NB .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-veyEXkQ0NB .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-veyEXkQ0NB .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-veyEXkQ0NB .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-veyEXkQ0NB .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-veyEXkQ0NB .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-veyEXkQ0NB .carousel {
  width: 100%;
}
.cid-veyEXkQ0NB .modal-backdrop.in {
  opacity: 0.8;
}
.cid-veyEXkQ0NB .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-veyEXkQ0NB .modal.fade .modal-dialog,
.cid-veyEXkQ0NB .modal.in .modal-dialog {
  transform: none;
}
.cid-veyEXkQ0NB .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-veyEXkQ0NB H6 {
  text-align: center;
}
.cid-veyEXlvJIS {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-veyEXlvJIS .mbr-text {
  color: #000000;
}
.cid-veyEXlvJIS .container {
  max-width: 1000px;
}
.cid-veyEXlvJIS h4 {
  text-align: center;
}
.cid-veyEXlvJIS p {
  text-align: center;
}
.cid-veyEXlvJIS .row {
  justify-content: center;
}
.cid-veyEXlvJIS .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-veyEXlvJIS .mbr-iconfont {
  font-size: 1.5rem;
  color: #000000;
  display: block;
}
.cid-veyEXlvJIS .card-title,
.cid-veyEXlvJIS .card-img {
  color: #000000;
}
.cid-veyEXlvJIS .icon-wrap {
  padding-bottom: 7.6rem;
}
.cid-veyEXlvJIS .icon-wrap:before {
  content: '';
  position: absolute;
  background: #000000;
  bottom: 0rem;
  left: 50%;
  width: 2px;
  height: 90px;
}
.cid-veyEXlvJIS img {
  margin-bottom: 5rem;
  width: auto;
  margin-left: auto;
  margin-right: auto;
}
.cid-veyEXlvJIS .mbr-fallback-image.disabled {
  display: none;
}
.cid-veyEXlvJIS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-veyEXm0Ea7 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
  overflow: hidden;
}
.cid-veyGxD8K5t {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-veyGxD8K5t .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
}
@media (max-width: 992px) {
  .cid-veyGxD8K5t .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-veyGxD8K5t .iconfont-wrapper {
  color: #103178 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-veyGxD8K5t .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-veyGxD8K5t .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-veyGxD8K5t .container {
    padding: 0 1rem;
  }
}
.cid-veyGxD8K5t .menu-tite {
  background: #6592e6;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffc800;
}
.cid-veyGxD8K5t .nav-link {
  position: relative;
}
.cid-veyGxD8K5t .nav-link:hover {
  color: #47b5ed !important;
}
.cid-veyGxD8K5t nav.navbar {
  position: fixed;
}
.cid-veyGxD8K5t .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-veyGxD8K5t .navbar.opened {
  transition: all 0.3s;
}
.cid-veyGxD8K5t .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-veyGxD8K5t .navbar .navbar-logo img {
  width: auto;
}
.cid-veyGxD8K5t .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-veyGxD8K5t .navbar.collapsed {
  justify-content: center;
}
.cid-veyGxD8K5t .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-veyGxD8K5t .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-veyGxD8K5t .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 7rem);
  }
}
.cid-veyGxD8K5t .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-veyGxD8K5t .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-veyGxD8K5t .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-veyGxD8K5t .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-veyGxD8K5t .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-veyGxD8K5t .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-veyGxD8K5t .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-veyGxD8K5t .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-veyGxD8K5t .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-veyGxD8K5t .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-veyGxD8K5t .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-veyGxD8K5t .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-veyGxD8K5t .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-veyGxD8K5t .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-veyGxD8K5t .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-veyGxD8K5t .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-veyGxD8K5t .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-veyGxD8K5t .navbar.navbar-short {
  min-height: 60px;
}
.cid-veyGxD8K5t .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-veyGxD8K5t .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-veyGxD8K5t .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-veyGxD8K5t .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-veyGxD8K5t .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-veyGxD8K5t .dropdown-item:hover,
.cid-veyGxD8K5t .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-veyGxD8K5t .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-veyGxD8K5t .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-veyGxD8K5t .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-veyGxD8K5t .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-veyGxD8K5t .dropdown-menu,
.cid-veyGxD8K5t .navbar.opened {
  background: #ffffff !important;
}
.cid-veyGxD8K5t .nav-item:focus,
.cid-veyGxD8K5t .nav-link:focus {
  outline: none;
}
.cid-veyGxD8K5t .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-veyGxD8K5t .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-veyGxD8K5t .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-veyGxD8K5t .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-veyGxD8K5t .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-veyGxD8K5t .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-veyGxD8K5t .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-veyGxD8K5t .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-veyGxD8K5t .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-veyGxD8K5t .dropdown-item.active,
.cid-veyGxD8K5t .dropdown-item:active {
  background-color: transparent;
}
.cid-veyGxD8K5t .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-veyGxD8K5t .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-veyGxD8K5t .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-veyGxD8K5t .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-veyGxD8K5t .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-veyGxD8K5t .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-veyGxD8K5t ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-veyGxD8K5t .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-veyGxD8K5t button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-veyGxD8K5t button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-veyGxD8K5t button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-veyGxD8K5t button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-veyGxD8K5t button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-veyGxD8K5t button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-veyGxD8K5t nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-veyGxD8K5t nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-veyGxD8K5t nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-veyGxD8K5t nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-veyGxD8K5t .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-veyGxD8K5t a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-veyGxD8K5t .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-veyGxD8K5t .navbar {
    height: 70px;
  }
  .cid-veyGxD8K5t .navbar.opened {
    height: auto;
  }
  .cid-veyGxD8K5t .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-veyGxDLAuE {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-veyGxDLAuE .mbr-fallback-image.disabled {
  display: none;
}
.cid-veyGxDLAuE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-veyGxEfODa {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-veyGxEfODa .mbr-fallback-image.disabled {
  display: none;
}
.cid-veyGxEfODa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-veyGxEfODa .mbr-section-head {
  margin-bottom: 32px;
}
.cid-veyGxEfODa .mbr-section-title {
  color: #24262b;
}
.cid-veyGxEfODa .mbr-section-subtitle {
  color: #24262b;
}
.cid-veyGxEfODa .items-row {
  row-gap: 32px;
}
.cid-veyGxEfODa .item-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-veyGxEfODa .item-wrapper img {
  width: 100%;
  aspect-ratio: calc(8 / (1 * 12));
  object-fit: cover;
  transition: all 0.3s;
}
.cid-veyGxEfODa .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-veyGxEfODa .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-veyGxEfODa .item-wrapper:hover img {
  transform: scale(1.05);
}
.cid-veyGxEfODa .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-veyGxEfODa .item-wrapper:hover .img-overlay {
  opacity: 0.3;
}
.cid-veyGxEfODa .mbr-item-subtitle {
  color: #24262b;
}
.cid-veyGxEfODa .carousel-control,
.cid-veyGxEfODa .close {
  background: #1b1b1b;
}
.cid-veyGxEfODa .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-veyGxEfODa .carousel-control-prev span {
  margin-right: 5px;
}
.cid-veyGxEfODa .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-veyGxEfODa .carousel-control-next span {
  margin-left: 5px;
}
.cid-veyGxEfODa .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-veyGxEfODa .close::before {
  content: '\e91a';
}
.cid-veyGxEfODa .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-veyGxEfODa .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-veyGxEfODa .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-veyGxEfODa .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-veyGxEfODa .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-veyGxEfODa .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-veyGxEfODa .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-veyGxEfODa .carousel-indicators li.active,
.cid-veyGxEfODa .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-veyGxEfODa .carousel-indicators li::after,
.cid-veyGxEfODa .carousel-indicators li::before {
  content: none;
}
.cid-veyGxEfODa .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-veyGxEfODa .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-veyGxEfODa .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-veyGxEfODa .carousel-indicators {
    display: none;
  }
}
.cid-veyGxEfODa .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-veyGxEfODa .carousel-inner > .active {
  display: block;
}
.cid-veyGxEfODa .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-veyGxEfODa .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-veyGxEfODa .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-veyGxEfODa .carousel-control,
  .cid-veyGxEfODa .carousel-indicators,
  .cid-veyGxEfODa .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-veyGxEfODa .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-veyGxEfODa .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-veyGxEfODa .carousel-indicators .active,
.cid-veyGxEfODa .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-veyGxEfODa .carousel-indicators .active {
  background: #fff;
}
.cid-veyGxEfODa .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-veyGxEfODa .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-veyGxEfODa .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-veyGxEfODa .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-veyGxEfODa .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-veyGxEfODa .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-veyGxEfODa .carousel {
  width: 100%;
}
.cid-veyGxEfODa .modal-backdrop.in {
  opacity: 0.8;
}
.cid-veyGxEfODa .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-veyGxEfODa .modal.fade .modal-dialog,
.cid-veyGxEfODa .modal.in .modal-dialog {
  transform: none;
}
.cid-veyGxEfODa .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-veyGxEfODa H6 {
  text-align: center;
}
.cid-veyGxES0dB {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-veyGxES0dB .mbr-text {
  color: #000000;
}
.cid-veyGxES0dB .container {
  max-width: 1000px;
}
.cid-veyGxES0dB h4 {
  text-align: center;
}
.cid-veyGxES0dB p {
  text-align: center;
}
.cid-veyGxES0dB .row {
  justify-content: center;
}
.cid-veyGxES0dB .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-veyGxES0dB .mbr-iconfont {
  font-size: 1.5rem;
  color: #000000;
  display: block;
}
.cid-veyGxES0dB .card-title,
.cid-veyGxES0dB .card-img {
  color: #000000;
}
.cid-veyGxES0dB .icon-wrap {
  padding-bottom: 7.6rem;
}
.cid-veyGxES0dB .icon-wrap:before {
  content: '';
  position: absolute;
  background: #000000;
  bottom: 0rem;
  left: 50%;
  width: 2px;
  height: 90px;
}
.cid-veyGxES0dB img {
  margin-bottom: 5rem;
  width: auto;
  margin-left: auto;
  margin-right: auto;
}
.cid-veyGxES0dB .mbr-fallback-image.disabled {
  display: none;
}
.cid-veyGxES0dB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-veyGxFm5hS {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
  overflow: hidden;
}
