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: 2.2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.75rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.875rem;
}
/* ---- 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.76rem;
    font-size: calc( 1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* 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: #174495 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #174495 !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #174495 !important;
  border-color: #174495 !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: #0b224a !important;
  border-color: #0b224a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #0b224a !important;
  border-color: #0b224a !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: #174495 !important;
  border-color: #174495 !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: #0b224a !important;
  border-color: #0b224a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #0b224a !important;
  border-color: #0b224a !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: #174495;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #0b224a !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: #174495 !important;
  border-color: #174495 !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: #174495;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #0b224a !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: #174495 !important;
  border-color: #174495 !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: #174495 !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #174495 !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: #091c3d !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: #091c3d !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: #174495;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #174495;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #174495;
  border-color: #174495;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #174495;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #4980e3;
}
.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: #4980e3;
}
.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: #174495 !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: #174495;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #174495;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #174495;
}
.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: #174495;
  border-bottom-color: #174495;
}
.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: #174495 !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='%23174495' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-tFJIhKOWAi {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tFJIhKOWAi nav.navbar {
  position: fixed;
}
.cid-tFJIhKOWAi .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-tFJIhKOWAi .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tFJIhKOWAi .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tFJIhKOWAi .dropdown-item:hover,
.cid-tFJIhKOWAi .dropdown-item:focus {
  background: #174495 !important;
  color: white !important;
}
.cid-tFJIhKOWAi .dropdown-item:hover span {
  color: white;
}
.cid-tFJIhKOWAi .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tFJIhKOWAi .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tFJIhKOWAi .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tFJIhKOWAi .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tFJIhKOWAi .nav-link {
  position: relative;
}
.cid-tFJIhKOWAi .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tFJIhKOWAi .container {
    flex-wrap: nowrap;
  }
}
.cid-tFJIhKOWAi .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tFJIhKOWAi .dropdown-menu,
.cid-tFJIhKOWAi .navbar.opened {
  background: #ffffff !important;
}
.cid-tFJIhKOWAi .nav-item:focus,
.cid-tFJIhKOWAi .nav-link:focus {
  outline: none;
}
.cid-tFJIhKOWAi .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tFJIhKOWAi .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tFJIhKOWAi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tFJIhKOWAi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tFJIhKOWAi .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tFJIhKOWAi .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tFJIhKOWAi .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tFJIhKOWAi .navbar.opened {
  transition: all 0.3s;
}
.cid-tFJIhKOWAi .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tFJIhKOWAi .navbar .navbar-logo img {
  width: auto;
}
.cid-tFJIhKOWAi .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tFJIhKOWAi .navbar.collapsed {
  justify-content: center;
}
.cid-tFJIhKOWAi .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tFJIhKOWAi .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tFJIhKOWAi .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tFJIhKOWAi .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tFJIhKOWAi .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tFJIhKOWAi .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-tFJIhKOWAi .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tFJIhKOWAi .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tFJIhKOWAi .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tFJIhKOWAi .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tFJIhKOWAi .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tFJIhKOWAi .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tFJIhKOWAi .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tFJIhKOWAi .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-tFJIhKOWAi .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tFJIhKOWAi .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tFJIhKOWAi .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tFJIhKOWAi .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tFJIhKOWAi .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tFJIhKOWAi .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tFJIhKOWAi .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tFJIhKOWAi .navbar.navbar-short {
  min-height: 60px;
}
.cid-tFJIhKOWAi .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tFJIhKOWAi .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tFJIhKOWAi .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tFJIhKOWAi .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tFJIhKOWAi .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tFJIhKOWAi .dropdown-item.active,
.cid-tFJIhKOWAi .dropdown-item:active {
  background-color: transparent;
}
.cid-tFJIhKOWAi .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tFJIhKOWAi .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tFJIhKOWAi .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tFJIhKOWAi .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tFJIhKOWAi .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tFJIhKOWAi .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tFJIhKOWAi ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tFJIhKOWAi .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tFJIhKOWAi button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tFJIhKOWAi button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tFJIhKOWAi button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tFJIhKOWAi button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tFJIhKOWAi button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tFJIhKOWAi button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tFJIhKOWAi nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tFJIhKOWAi nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tFJIhKOWAi nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tFJIhKOWAi nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tFJIhKOWAi .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tFJIhKOWAi a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tFJIhKOWAi .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-tFJIhKOWAi .navbar {
    height: 70px;
  }
  .cid-tFJIhKOWAi .navbar.opened {
    height: auto;
  }
  .cid-tFJIhKOWAi .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tNPsbwvERT {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #174495;
}
.cid-tNPsbwvERT .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNPsbwvERT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFJKZBkkTi {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tFJKZBkkTi .row {
  position: relative;
}
.cid-tFJKZBkkTi .row .blur-circle {
  position: absolute;
  top: 0;
  left: 10%;
  width: 30%;
  height: 100%;
  border-radius: 100%;
  background-image: linear-gradient(90deg, #ffffff 70%, #ffffff);
  backdrop-filter: blur(10px);
  filter: blur(64px) blur(64px);
  z-index: 1;
}
@media (max-width: 768px) {
  .cid-tFJKZBkkTi .row .blur-circle {
    display: none;
  }
}
.cid-tFJKZBkkTi .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFJKZBkkTi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFJKZBkkTi .row {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-tFJKZBkkTi .row {
    padding: 0 35px;
  }
}
@media (max-width: 425px) {
  .cid-tFJKZBkkTi .row {
    padding: 0 24px;
  }
}
.cid-tFJKZBkkTi .title {
  display: flex;
  align-items: justify;
}
.cid-tFJKZBkkTi .title-wrapper {
  position: relative;
  z-index: 2;
}
@media (max-width: 992px) {
  .cid-tFJKZBkkTi .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-tFJKZBkkTi .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-tFJKZBkkTi .title-wrapper .mbr-section-title span {
  position: relative;
  z-index: 1;
}
.cid-tFJKZBkkTi .title-wrapper .mbr-section-title span::before {
  content: '';
  position: absolute;
  bottom: 22%;
  left: 0;
  width: 100%;
  height: 18px;
  background-color: #ffb639;
  z-index: -1;
}
.cid-tFJKZBkkTi .title-wrapper .mbr-text {
  margin: 0;
}
.cid-tFJKZBkkTi .image-wrapper {
  position: relative;
  z-index: 2;
}
@media (max-width: 992px) {
  .cid-tFJKZBkkTi .image-wrapper {
    margin-bottom: 32px;
  }
}
.cid-tFJKZBkkTi .image-wrapper img {
  max-height: 1000px;
  width: 100%;
  object-fit: cover;
  margin: 0 auto;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .cid-tFJKZBkkTi .image-wrapper img {
    width: 100%;
  }
}
.cid-tFJKZBkkTi .mbr-section-title {
  color: #174495;
}
.cid-tFJKZBkkTi .mbr-text {
  color: #174495;
  text-align: justify;
}
.cid-tyF0cst0Fg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #174495;
}
.cid-tyF0cst0Fg .mbr-fallback-image.disabled {
  display: none;
}
.cid-tyF0cst0Fg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-tyF0cst0Fg .container {
    max-width: 1400px;
  }
}
.cid-tyF0cst0Fg .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-tyF0cst0Fg .card-wrapper {
  margin-top: 3rem;
}
.cid-tyF0cst0Fg .row {
  justify-content: center;
}
.cid-tyF0cst0Fg .mbr-section-title {
  color: #ffffff;
}
.cid-tyF0cst0Fg .card-title,
.cid-tyF0cst0Fg .iconfont-wrapper {
  color: #ffffff;
}
.cid-tyF0cst0Fg .card-text {
  text-align: justify;
  color: #ffffff;
}
.cid-tFJkBq83et {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tFJkBq83et .mbr-text {
  color: #174495;
  text-align: justify;
}
.cid-tFJkBq83et .mbr-section-subtitle {
  color: #174495;
}
.cid-tFJjzhdkKP {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tFJjzhdkKP .mbr-text {
  color: #174495;
  text-align: justify;
}
.cid-tFJjzhdkKP .mbr-section-subtitle {
  color: #174495;
}
.cid-tFJkPl1mEu {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tFJkPl1mEu .mbr-text {
  color: #174495;
  text-align: justify;
}
.cid-tFJkPl1mEu .mbr-section-subtitle {
  color: #174495;
}
.cid-tNQ26hHukq {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #174495;
}
.cid-tNQ26hHukq .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNQ26hHukq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNQ26hHukq .mbr-section-title {
  color: #f5fbfb;
}
.cid-upKSPlvJct {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-upKSPlvJct .row {
  flex-direction: row-reverse;
}
.cid-upKSPlvJct .mbr-section-title {
  color: #05386b;
}
.cid-upKSPlvJct .mbr-text,
.cid-upKSPlvJct .mbr-section-btn {
  color: #05386b;
  text-align: justify;
}
.cid-upKSPlvJct .mbr-section-subtitle {
  color: #8364e2;
}
.cid-upKSPlvJct img {
  border-radius: 2rem;
}
@media (min-width: 992px) {
  .cid-upKSPlvJct .image-wrapper {
    padding-right: 4rem;
  }
}
.cid-upKSPlvJct .mbr-fallback-image.disabled {
  display: none;
}
.cid-upKSPlvJct .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRRM3SJBbi {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uRRM3SJBbi .row {
  flex-direction: row-reverse;
}
.cid-uRRM3SJBbi .mbr-section-title {
  color: #05386b;
}
.cid-uRRM3SJBbi .mbr-text,
.cid-uRRM3SJBbi .mbr-section-btn {
  color: #05386b;
  text-align: justify;
}
.cid-uRRM3SJBbi .mbr-section-subtitle {
  color: #8364e2;
}
.cid-uRRM3SJBbi img {
  border-radius: 2rem;
}
@media (min-width: 992px) {
  .cid-uRRM3SJBbi .image-wrapper {
    padding-right: 4rem;
  }
}
.cid-uRRM3SJBbi .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRRM3SJBbi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNQ3WV9bgw {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tNQ3WV9bgw .row {
  flex-direction: row-reverse;
}
.cid-tNQ3WV9bgw .mbr-section-title {
  color: #05386b;
}
.cid-tNQ3WV9bgw .mbr-text,
.cid-tNQ3WV9bgw .mbr-section-btn {
  color: #05386b;
  text-align: justify;
}
.cid-tNQ3WV9bgw .mbr-section-subtitle {
  color: #8364e2;
}
.cid-tNQ3WV9bgw img {
  border-radius: 2rem;
}
@media (min-width: 992px) {
  .cid-tNQ3WV9bgw .image-wrapper {
    padding-right: 4rem;
  }
}
.cid-tNQ3WV9bgw .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNQ3WV9bgw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNQ2mjOVeE {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tNQ2mjOVeE .row {
  flex-direction: row-reverse;
}
.cid-tNQ2mjOVeE .mbr-section-title {
  color: #05386b;
}
.cid-tNQ2mjOVeE .mbr-text,
.cid-tNQ2mjOVeE .mbr-section-btn {
  color: #05386b;
  text-align: justify;
}
.cid-tNQ2mjOVeE .mbr-section-subtitle {
  color: #8364e2;
}
.cid-tNQ2mjOVeE img {
  border-radius: 2rem;
}
@media (min-width: 992px) {
  .cid-tNQ2mjOVeE .image-wrapper {
    padding-right: 4rem;
  }
}
.cid-tNQ2mjOVeE .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNQ2mjOVeE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFE2FwJ90q {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tFE2FwJ90q [class^='socicon-']:before,
.cid-tFE2FwJ90q [class*=' socicon-']:before {
  line-height: 44px;
}
.cid-tFE2FwJ90q .social-list {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.cid-tFE2FwJ90q .btn-social,
.cid-tFE2FwJ90q .mbr-section-title {
  color: #57468b;
}
.cid-tFE2FwJ90q .soc-item {
  width: 20px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 10px;
}
.cid-tFE2FwJ90q .soc-item span {
  font-size: 20px;
  color: #ffffff !important;
  transition: all 0.3s;
}
.cid-tFE2FwJ90q .soc-item:hover span {
  color: #7ce0d3 !important;
}
@media (max-width: 992px) {
  .cid-tFE2FwJ90q .align-left,
  .cid-tFE2FwJ90q .align-right {
    text-align: center;
  }
  .cid-tFE2FwJ90q .social-list {
    justify-content: center;
  }
  .cid-tFE2FwJ90q .mb-0 {
    padding-bottom: 1rem;
  }
}
.cid-tFE2FwJ90q .mbr-text {
  color: #349fc4;
}
.cid-tFJIhKOWAi {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tFJIhKOWAi nav.navbar {
  position: fixed;
}
.cid-tFJIhKOWAi .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-tFJIhKOWAi .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tFJIhKOWAi .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tFJIhKOWAi .dropdown-item:hover,
.cid-tFJIhKOWAi .dropdown-item:focus {
  background: #174495 !important;
  color: white !important;
}
.cid-tFJIhKOWAi .dropdown-item:hover span {
  color: white;
}
.cid-tFJIhKOWAi .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tFJIhKOWAi .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tFJIhKOWAi .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tFJIhKOWAi .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tFJIhKOWAi .nav-link {
  position: relative;
}
.cid-tFJIhKOWAi .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tFJIhKOWAi .container {
    flex-wrap: nowrap;
  }
}
.cid-tFJIhKOWAi .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tFJIhKOWAi .dropdown-menu,
.cid-tFJIhKOWAi .navbar.opened {
  background: #ffffff !important;
}
.cid-tFJIhKOWAi .nav-item:focus,
.cid-tFJIhKOWAi .nav-link:focus {
  outline: none;
}
.cid-tFJIhKOWAi .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tFJIhKOWAi .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tFJIhKOWAi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tFJIhKOWAi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tFJIhKOWAi .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tFJIhKOWAi .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tFJIhKOWAi .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tFJIhKOWAi .navbar.opened {
  transition: all 0.3s;
}
.cid-tFJIhKOWAi .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tFJIhKOWAi .navbar .navbar-logo img {
  width: auto;
}
.cid-tFJIhKOWAi .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tFJIhKOWAi .navbar.collapsed {
  justify-content: center;
}
.cid-tFJIhKOWAi .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tFJIhKOWAi .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tFJIhKOWAi .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tFJIhKOWAi .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tFJIhKOWAi .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tFJIhKOWAi .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-tFJIhKOWAi .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tFJIhKOWAi .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tFJIhKOWAi .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tFJIhKOWAi .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tFJIhKOWAi .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tFJIhKOWAi .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tFJIhKOWAi .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tFJIhKOWAi .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-tFJIhKOWAi .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tFJIhKOWAi .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tFJIhKOWAi .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tFJIhKOWAi .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tFJIhKOWAi .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tFJIhKOWAi .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tFJIhKOWAi .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tFJIhKOWAi .navbar.navbar-short {
  min-height: 60px;
}
.cid-tFJIhKOWAi .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tFJIhKOWAi .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tFJIhKOWAi .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tFJIhKOWAi .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tFJIhKOWAi .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tFJIhKOWAi .dropdown-item.active,
.cid-tFJIhKOWAi .dropdown-item:active {
  background-color: transparent;
}
.cid-tFJIhKOWAi .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tFJIhKOWAi .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tFJIhKOWAi .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tFJIhKOWAi .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tFJIhKOWAi .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tFJIhKOWAi .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tFJIhKOWAi ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tFJIhKOWAi .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tFJIhKOWAi button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tFJIhKOWAi button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tFJIhKOWAi button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tFJIhKOWAi button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tFJIhKOWAi button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tFJIhKOWAi button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tFJIhKOWAi nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tFJIhKOWAi nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tFJIhKOWAi nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tFJIhKOWAi nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tFJIhKOWAi .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tFJIhKOWAi a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tFJIhKOWAi .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-tFJIhKOWAi .navbar {
    height: 70px;
  }
  .cid-tFJIhKOWAi .navbar.opened {
    height: auto;
  }
  .cid-tFJIhKOWAi .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tNPycshKeb {
  padding-top: 9rem;
  padding-bottom: 14rem;
  background-color: #174495;
}
.cid-tNPycshKeb .row {
  flex-direction: row-reverse;
}
.cid-tNPycshKeb .mbr-section-title {
  color: #ffffff;
}
.cid-tNPycshKeb .mbr-section-subtitle {
  color: #0196e3;
}
.cid-tNPycshKeb .mbr-text {
  color: #ffffff;
}
.cid-tNPycshKeb .text-col {
  align-items: center;
  display: flex;
}
.cid-tNPycshKeb .mbr-section-subtitle,
.cid-tNPycshKeb .title-col {
  width: 100%;
  color: #ffffff;
}
.cid-tNQeaXbLWE {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tNQeaXbLWE .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNQeaXbLWE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNQeaXbLWE .row {
  margin: 0 !important;
  row-gap: 30px;
}
.cid-tNQeaXbLWE .item-img {
  display: flex;
  justify-content: flex-start;
  width: 50%;
  padding: 50px !important;
}
.cid-tNQeaXbLWE .item-img img {
  max-width: 580px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-tNQeaXbLWE .item-img {
    width: 100%;
  }
}
.cid-tNQeaXbLWE .item-text {
  width: 50%;
  padding: 40px !important;
}
@media (max-width: 1500px) {
  .cid-tNQeaXbLWE .item-text {
    padding-left: 40px !important;
  }
}
@media (max-width: 1199px) {
  .cid-tNQeaXbLWE .item-text {
    padding-left: 25px !important;
  }
}
@media (max-width: 991px) {
  .cid-tNQeaXbLWE .item-text {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-tNQeaXbLWE .card-title {
  color: #131313;
}
.cid-tNQeaXbLWE .content-box {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
  margin-top: 60px;
}
@media (max-width: 1399px) {
  .cid-tNQeaXbLWE .content-box {
    margin-top: 40px;
  }
}
@media (max-width: 991px) {
  .cid-tNQeaXbLWE .content-box {
    margin-top: 20px;
  }
}
.cid-tNQeaXbLWE .content-item {
  width: 100%;
}
.cid-tNQeaXbLWE .card-subtitle {
  color: #ff9966;
}
.cid-tNQeaXbLWE .card-subtitle a {
  pointer-events: none;
}
.cid-tNQeaXbLWE .card-text {
  margin-top: 20px;
  color: #174495;
  text-align: justify;
}
@media (max-width: 767px) {
  .cid-tNQeaXbLWE .card-text {
    margin-top: 15px;
  }
}
.cid-tNQeaXbLWE .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 1399px) {
  .cid-tNQeaXbLWE .mbr-section-btn {
    margin-top: 15px;
  }
}
.cid-tNQj8r9anr {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tNQj8r9anr .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNQj8r9anr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNQj8r9anr .text-container {
  background-color: #174495;
  border-radius: 100px;
  padding: 16px;
  min-height: 67px;
  margin: 0 20%;
}
@media (max-width: 768px) {
  .cid-tNQj8r9anr .text-container {
    margin: 0 5%;
  }
}
.cid-tNQj8r9anr .text-container .text-wrapper {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 5px 0;
}
.cid-tNQj8r9anr .text-container .text-wrapper .mbr-text {
  margin: 0 16px 0 0;
}
.cid-tNQj8r9anr .text-container .text-wrapper .mbr-desc {
  margin: 0;
}
.cid-tNQj8r9anr .text-container .text-wrapper .mbr-desc .mbr-iconfont {
  font-size: 20px;
}
.cid-tNQj8r9anr .mbr-text {
  color: #e8e8e8;
}
.cid-tNQj8r9anr .mbr-desc,
.cid-tNQj8r9anr .mbr-iconfont {
  color: #e8e8e8;
}
.cid-tNQj8r9anr .mbr-text,
.cid-tNQj8r9anr .text-container {
  text-align: center;
  color: #ffffff;
}
.cid-tNPGHoyfGl {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tNPGHoyfGl .mbr-iconfont {
  color: #8d97ad;
}
.cid-tNPGHoyfGl .mbr-iconfont:hover {
  color: #188ef4 !important;
}
.cid-tNPGHoyfGl .mbr-text {
  margin: 1.5rem 0;
  color: #174495;
  text-align: justify;
}
.cid-tNPGHoyfGl .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-tNPGHoyfGl .card-title {
  margin-bottom: 0.3rem;
  color: #2e6b75;
  text-align: center;
}
.cid-tNPGHoyfGl .card-img {
  margin: 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-tNPGHoyfGl .img-icon {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tNPGHoyfGl .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-tNPGHoyfGl H2 {
  color: #174495;
}
.cid-tFKaWZz3Ry {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tFKaWZz3Ry .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFKaWZz3Ry .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFKaWZz3Ry .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tFKaWZz3Ry .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-tFKaWZz3Ry .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tFKaWZz3Ry .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tFKaWZz3Ry .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tFKaWZz3Ry .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tFKaWZz3Ry .carousel-control,
.cid-tFKaWZz3Ry .close {
  background: #1b1b1b;
}
.cid-tFKaWZz3Ry .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tFKaWZz3Ry .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tFKaWZz3Ry .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tFKaWZz3Ry .carousel-control-next span {
  margin-left: 5px;
}
.cid-tFKaWZz3Ry .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-tFKaWZz3Ry .close::before {
  content: '\e91a';
}
.cid-tFKaWZz3Ry .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tFKaWZz3Ry .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-tFKaWZz3Ry .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFKaWZz3Ry .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tFKaWZz3Ry .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tFKaWZz3Ry .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tFKaWZz3Ry .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-tFKaWZz3Ry .carousel-indicators li.active,
.cid-tFKaWZz3Ry .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tFKaWZz3Ry .carousel-indicators li::after,
.cid-tFKaWZz3Ry .carousel-indicators li::before {
  content: none;
}
.cid-tFKaWZz3Ry .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tFKaWZz3Ry .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tFKaWZz3Ry .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tFKaWZz3Ry .carousel-indicators {
    display: none;
  }
}
.cid-tFKaWZz3Ry .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tFKaWZz3Ry .carousel-inner > .active {
  display: block;
}
.cid-tFKaWZz3Ry .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFKaWZz3Ry .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tFKaWZz3Ry .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tFKaWZz3Ry .carousel-control,
  .cid-tFKaWZz3Ry .carousel-indicators,
  .cid-tFKaWZz3Ry .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tFKaWZz3Ry .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tFKaWZz3Ry .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tFKaWZz3Ry .carousel-indicators .active,
.cid-tFKaWZz3Ry .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tFKaWZz3Ry .carousel-indicators .active {
  background: #fff;
}
.cid-tFKaWZz3Ry .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tFKaWZz3Ry .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tFKaWZz3Ry .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tFKaWZz3Ry .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tFKaWZz3Ry .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tFKaWZz3Ry .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tFKaWZz3Ry .carousel {
  width: 100%;
}
.cid-tFKaWZz3Ry .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tFKaWZz3Ry .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tFKaWZz3Ry .modal.fade .modal-dialog,
.cid-tFKaWZz3Ry .modal.in .modal-dialog {
  transform: none;
}
.cid-tFKaWZz3Ry .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tFKaWZz3Ry H6 {
  text-align: center;
}
.cid-tFKaWZz3Ry H3 {
  color: #174495;
}
.cid-tFKboYeUyw {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tFKboYeUyw .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFKboYeUyw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFKboYeUyw .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tFKboYeUyw .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-tFKboYeUyw .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tFKboYeUyw .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tFKboYeUyw .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tFKboYeUyw .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tFKboYeUyw .carousel-control,
.cid-tFKboYeUyw .close {
  background: #1b1b1b;
}
.cid-tFKboYeUyw .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tFKboYeUyw .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tFKboYeUyw .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tFKboYeUyw .carousel-control-next span {
  margin-left: 5px;
}
.cid-tFKboYeUyw .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-tFKboYeUyw .close::before {
  content: '\e91a';
}
.cid-tFKboYeUyw .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tFKboYeUyw .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-tFKboYeUyw .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFKboYeUyw .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tFKboYeUyw .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tFKboYeUyw .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tFKboYeUyw .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-tFKboYeUyw .carousel-indicators li.active,
.cid-tFKboYeUyw .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tFKboYeUyw .carousel-indicators li::after,
.cid-tFKboYeUyw .carousel-indicators li::before {
  content: none;
}
.cid-tFKboYeUyw .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tFKboYeUyw .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tFKboYeUyw .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tFKboYeUyw .carousel-indicators {
    display: none;
  }
}
.cid-tFKboYeUyw .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tFKboYeUyw .carousel-inner > .active {
  display: block;
}
.cid-tFKboYeUyw .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFKboYeUyw .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tFKboYeUyw .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tFKboYeUyw .carousel-control,
  .cid-tFKboYeUyw .carousel-indicators,
  .cid-tFKboYeUyw .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tFKboYeUyw .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tFKboYeUyw .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tFKboYeUyw .carousel-indicators .active,
.cid-tFKboYeUyw .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tFKboYeUyw .carousel-indicators .active {
  background: #fff;
}
.cid-tFKboYeUyw .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tFKboYeUyw .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tFKboYeUyw .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tFKboYeUyw .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tFKboYeUyw .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tFKboYeUyw .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tFKboYeUyw .carousel {
  width: 100%;
}
.cid-tFKboYeUyw .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tFKboYeUyw .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tFKboYeUyw .modal.fade .modal-dialog,
.cid-tFKboYeUyw .modal.in .modal-dialog {
  transform: none;
}
.cid-tFKboYeUyw .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tFKboYeUyw H6 {
  text-align: center;
}
.cid-tFKbBSX6Nh {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tFKbBSX6Nh .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFKbBSX6Nh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFKbBSX6Nh .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tFKbBSX6Nh .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-tFKbBSX6Nh .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tFKbBSX6Nh .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tFKbBSX6Nh .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tFKbBSX6Nh .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tFKbBSX6Nh .carousel-control,
.cid-tFKbBSX6Nh .close {
  background: #1b1b1b;
}
.cid-tFKbBSX6Nh .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tFKbBSX6Nh .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tFKbBSX6Nh .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tFKbBSX6Nh .carousel-control-next span {
  margin-left: 5px;
}
.cid-tFKbBSX6Nh .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-tFKbBSX6Nh .close::before {
  content: '\e91a';
}
.cid-tFKbBSX6Nh .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tFKbBSX6Nh .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-tFKbBSX6Nh .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFKbBSX6Nh .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tFKbBSX6Nh .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tFKbBSX6Nh .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tFKbBSX6Nh .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-tFKbBSX6Nh .carousel-indicators li.active,
.cid-tFKbBSX6Nh .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tFKbBSX6Nh .carousel-indicators li::after,
.cid-tFKbBSX6Nh .carousel-indicators li::before {
  content: none;
}
.cid-tFKbBSX6Nh .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tFKbBSX6Nh .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tFKbBSX6Nh .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tFKbBSX6Nh .carousel-indicators {
    display: none;
  }
}
.cid-tFKbBSX6Nh .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tFKbBSX6Nh .carousel-inner > .active {
  display: block;
}
.cid-tFKbBSX6Nh .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFKbBSX6Nh .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tFKbBSX6Nh .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tFKbBSX6Nh .carousel-control,
  .cid-tFKbBSX6Nh .carousel-indicators,
  .cid-tFKbBSX6Nh .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tFKbBSX6Nh .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tFKbBSX6Nh .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tFKbBSX6Nh .carousel-indicators .active,
.cid-tFKbBSX6Nh .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tFKbBSX6Nh .carousel-indicators .active {
  background: #fff;
}
.cid-tFKbBSX6Nh .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tFKbBSX6Nh .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tFKbBSX6Nh .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tFKbBSX6Nh .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tFKbBSX6Nh .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tFKbBSX6Nh .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tFKbBSX6Nh .carousel {
  width: 100%;
}
.cid-tFKbBSX6Nh .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tFKbBSX6Nh .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tFKbBSX6Nh .modal.fade .modal-dialog,
.cid-tFKbBSX6Nh .modal.in .modal-dialog {
  transform: none;
}
.cid-tFKbBSX6Nh .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tFKbBSX6Nh H6 {
  text-align: center;
}
.cid-tNPElnzck9 {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tNPElnzck9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNPElnzck9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNPElnzck9 .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tNPElnzck9 .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-tNPElnzck9 .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tNPElnzck9 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tNPElnzck9 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tNPElnzck9 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tNPElnzck9 .carousel-control,
.cid-tNPElnzck9 .close {
  background: #1b1b1b;
}
.cid-tNPElnzck9 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tNPElnzck9 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tNPElnzck9 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tNPElnzck9 .carousel-control-next span {
  margin-left: 5px;
}
.cid-tNPElnzck9 .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-tNPElnzck9 .close::before {
  content: '\e91a';
}
.cid-tNPElnzck9 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tNPElnzck9 .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-tNPElnzck9 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tNPElnzck9 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tNPElnzck9 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tNPElnzck9 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tNPElnzck9 .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-tNPElnzck9 .carousel-indicators li.active,
.cid-tNPElnzck9 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tNPElnzck9 .carousel-indicators li::after,
.cid-tNPElnzck9 .carousel-indicators li::before {
  content: none;
}
.cid-tNPElnzck9 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tNPElnzck9 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tNPElnzck9 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tNPElnzck9 .carousel-indicators {
    display: none;
  }
}
.cid-tNPElnzck9 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tNPElnzck9 .carousel-inner > .active {
  display: block;
}
.cid-tNPElnzck9 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tNPElnzck9 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tNPElnzck9 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tNPElnzck9 .carousel-control,
  .cid-tNPElnzck9 .carousel-indicators,
  .cid-tNPElnzck9 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tNPElnzck9 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tNPElnzck9 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tNPElnzck9 .carousel-indicators .active,
.cid-tNPElnzck9 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tNPElnzck9 .carousel-indicators .active {
  background: #fff;
}
.cid-tNPElnzck9 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tNPElnzck9 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tNPElnzck9 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tNPElnzck9 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tNPElnzck9 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tNPElnzck9 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tNPElnzck9 .carousel {
  width: 100%;
}
.cid-tNPElnzck9 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tNPElnzck9 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tNPElnzck9 .modal.fade .modal-dialog,
.cid-tNPElnzck9 .modal.in .modal-dialog {
  transform: none;
}
.cid-tNPElnzck9 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tNPElnzck9 H6 {
  text-align: center;
}
.cid-tNPITFSLNA {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #174495;
}
.cid-tNPITFSLNA .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNPITFSLNA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNPITFSLNA .mbr-section-title {
  color: #f5fbfb;
}
.cid-tNPP5AD2M2 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tNPP5AD2M2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNPP5AD2M2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNPP5AD2M2 .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tNPP5AD2M2 .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-tNPP5AD2M2 .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tNPP5AD2M2 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tNPP5AD2M2 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tNPP5AD2M2 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tNPP5AD2M2 .carousel-control,
.cid-tNPP5AD2M2 .close {
  background: #1b1b1b;
}
.cid-tNPP5AD2M2 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tNPP5AD2M2 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tNPP5AD2M2 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tNPP5AD2M2 .carousel-control-next span {
  margin-left: 5px;
}
.cid-tNPP5AD2M2 .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-tNPP5AD2M2 .close::before {
  content: '\e91a';
}
.cid-tNPP5AD2M2 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tNPP5AD2M2 .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-tNPP5AD2M2 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tNPP5AD2M2 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tNPP5AD2M2 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tNPP5AD2M2 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tNPP5AD2M2 .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-tNPP5AD2M2 .carousel-indicators li.active,
.cid-tNPP5AD2M2 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tNPP5AD2M2 .carousel-indicators li::after,
.cid-tNPP5AD2M2 .carousel-indicators li::before {
  content: none;
}
.cid-tNPP5AD2M2 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tNPP5AD2M2 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tNPP5AD2M2 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tNPP5AD2M2 .carousel-indicators {
    display: none;
  }
}
.cid-tNPP5AD2M2 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tNPP5AD2M2 .carousel-inner > .active {
  display: block;
}
.cid-tNPP5AD2M2 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tNPP5AD2M2 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tNPP5AD2M2 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tNPP5AD2M2 .carousel-control,
  .cid-tNPP5AD2M2 .carousel-indicators,
  .cid-tNPP5AD2M2 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tNPP5AD2M2 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tNPP5AD2M2 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tNPP5AD2M2 .carousel-indicators .active,
.cid-tNPP5AD2M2 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tNPP5AD2M2 .carousel-indicators .active {
  background: #fff;
}
.cid-tNPP5AD2M2 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tNPP5AD2M2 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tNPP5AD2M2 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tNPP5AD2M2 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tNPP5AD2M2 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tNPP5AD2M2 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tNPP5AD2M2 .carousel {
  width: 100%;
}
.cid-tNPP5AD2M2 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tNPP5AD2M2 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tNPP5AD2M2 .modal.fade .modal-dialog,
.cid-tNPP5AD2M2 .modal.in .modal-dialog {
  transform: none;
}
.cid-tNPP5AD2M2 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tNPP5AD2M2 H6 {
  text-align: center;
}
.cid-tNPP6uaBRr {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tNPP6uaBRr .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNPP6uaBRr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNPP6uaBRr .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tNPP6uaBRr .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-tNPP6uaBRr .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tNPP6uaBRr .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tNPP6uaBRr .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tNPP6uaBRr .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tNPP6uaBRr .carousel-control,
.cid-tNPP6uaBRr .close {
  background: #1b1b1b;
}
.cid-tNPP6uaBRr .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tNPP6uaBRr .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tNPP6uaBRr .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tNPP6uaBRr .carousel-control-next span {
  margin-left: 5px;
}
.cid-tNPP6uaBRr .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-tNPP6uaBRr .close::before {
  content: '\e91a';
}
.cid-tNPP6uaBRr .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tNPP6uaBRr .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-tNPP6uaBRr .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tNPP6uaBRr .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tNPP6uaBRr .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tNPP6uaBRr .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tNPP6uaBRr .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-tNPP6uaBRr .carousel-indicators li.active,
.cid-tNPP6uaBRr .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tNPP6uaBRr .carousel-indicators li::after,
.cid-tNPP6uaBRr .carousel-indicators li::before {
  content: none;
}
.cid-tNPP6uaBRr .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tNPP6uaBRr .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tNPP6uaBRr .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tNPP6uaBRr .carousel-indicators {
    display: none;
  }
}
.cid-tNPP6uaBRr .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tNPP6uaBRr .carousel-inner > .active {
  display: block;
}
.cid-tNPP6uaBRr .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tNPP6uaBRr .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tNPP6uaBRr .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tNPP6uaBRr .carousel-control,
  .cid-tNPP6uaBRr .carousel-indicators,
  .cid-tNPP6uaBRr .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tNPP6uaBRr .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tNPP6uaBRr .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tNPP6uaBRr .carousel-indicators .active,
.cid-tNPP6uaBRr .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tNPP6uaBRr .carousel-indicators .active {
  background: #fff;
}
.cid-tNPP6uaBRr .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tNPP6uaBRr .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tNPP6uaBRr .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tNPP6uaBRr .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tNPP6uaBRr .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tNPP6uaBRr .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tNPP6uaBRr .carousel {
  width: 100%;
}
.cid-tNPP6uaBRr .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tNPP6uaBRr .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tNPP6uaBRr .modal.fade .modal-dialog,
.cid-tNPP6uaBRr .modal.in .modal-dialog {
  transform: none;
}
.cid-tNPP6uaBRr .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tNPP6uaBRr H6 {
  text-align: center;
}
.cid-tNQ718edbD {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #174495;
}
.cid-tNQ718edbD .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNQ718edbD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNQ718edbD .mbr-section-title {
  color: #f5fbfb;
}
.cid-tNQjHsrqep {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tNQjHsrqep .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNQjHsrqep .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNQjHsrqep .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tNQjHsrqep .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-tNQjHsrqep .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tNQjHsrqep .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tNQjHsrqep .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tNQjHsrqep .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tNQjHsrqep .carousel-control,
.cid-tNQjHsrqep .close {
  background: #1b1b1b;
}
.cid-tNQjHsrqep .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tNQjHsrqep .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tNQjHsrqep .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tNQjHsrqep .carousel-control-next span {
  margin-left: 5px;
}
.cid-tNQjHsrqep .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-tNQjHsrqep .close::before {
  content: '\e91a';
}
.cid-tNQjHsrqep .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tNQjHsrqep .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-tNQjHsrqep .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tNQjHsrqep .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tNQjHsrqep .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tNQjHsrqep .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tNQjHsrqep .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-tNQjHsrqep .carousel-indicators li.active,
.cid-tNQjHsrqep .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tNQjHsrqep .carousel-indicators li::after,
.cid-tNQjHsrqep .carousel-indicators li::before {
  content: none;
}
.cid-tNQjHsrqep .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tNQjHsrqep .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tNQjHsrqep .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tNQjHsrqep .carousel-indicators {
    display: none;
  }
}
.cid-tNQjHsrqep .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tNQjHsrqep .carousel-inner > .active {
  display: block;
}
.cid-tNQjHsrqep .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tNQjHsrqep .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tNQjHsrqep .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tNQjHsrqep .carousel-control,
  .cid-tNQjHsrqep .carousel-indicators,
  .cid-tNQjHsrqep .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tNQjHsrqep .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tNQjHsrqep .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tNQjHsrqep .carousel-indicators .active,
.cid-tNQjHsrqep .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tNQjHsrqep .carousel-indicators .active {
  background: #fff;
}
.cid-tNQjHsrqep .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tNQjHsrqep .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tNQjHsrqep .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tNQjHsrqep .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tNQjHsrqep .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tNQjHsrqep .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tNQjHsrqep .carousel {
  width: 100%;
}
.cid-tNQjHsrqep .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tNQjHsrqep .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tNQjHsrqep .modal.fade .modal-dialog,
.cid-tNQjHsrqep .modal.in .modal-dialog {
  transform: none;
}
.cid-tNQjHsrqep .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tNQjHsrqep H6 {
  text-align: center;
}
.cid-tNQjIkKXan {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tNQjIkKXan .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNQjIkKXan .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNQjIkKXan .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tNQjIkKXan .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-tNQjIkKXan .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tNQjIkKXan .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tNQjIkKXan .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tNQjIkKXan .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tNQjIkKXan .carousel-control,
.cid-tNQjIkKXan .close {
  background: #1b1b1b;
}
.cid-tNQjIkKXan .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tNQjIkKXan .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tNQjIkKXan .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tNQjIkKXan .carousel-control-next span {
  margin-left: 5px;
}
.cid-tNQjIkKXan .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-tNQjIkKXan .close::before {
  content: '\e91a';
}
.cid-tNQjIkKXan .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tNQjIkKXan .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-tNQjIkKXan .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tNQjIkKXan .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tNQjIkKXan .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tNQjIkKXan .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tNQjIkKXan .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-tNQjIkKXan .carousel-indicators li.active,
.cid-tNQjIkKXan .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tNQjIkKXan .carousel-indicators li::after,
.cid-tNQjIkKXan .carousel-indicators li::before {
  content: none;
}
.cid-tNQjIkKXan .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tNQjIkKXan .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tNQjIkKXan .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tNQjIkKXan .carousel-indicators {
    display: none;
  }
}
.cid-tNQjIkKXan .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tNQjIkKXan .carousel-inner > .active {
  display: block;
}
.cid-tNQjIkKXan .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tNQjIkKXan .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tNQjIkKXan .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tNQjIkKXan .carousel-control,
  .cid-tNQjIkKXan .carousel-indicators,
  .cid-tNQjIkKXan .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tNQjIkKXan .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tNQjIkKXan .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tNQjIkKXan .carousel-indicators .active,
.cid-tNQjIkKXan .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tNQjIkKXan .carousel-indicators .active {
  background: #fff;
}
.cid-tNQjIkKXan .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tNQjIkKXan .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tNQjIkKXan .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tNQjIkKXan .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tNQjIkKXan .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tNQjIkKXan .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tNQjIkKXan .carousel {
  width: 100%;
}
.cid-tNQjIkKXan .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tNQjIkKXan .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tNQjIkKXan .modal.fade .modal-dialog,
.cid-tNQjIkKXan .modal.in .modal-dialog {
  transform: none;
}
.cid-tNQjIkKXan .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tNQjIkKXan H6 {
  text-align: center;
}
.cid-tFDIrskBVn {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tFDIrskBVn .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFDIrskBVn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFDIrskBVn .video-wrapper iframe {
  width: 100%;
}
.cid-tFDIrskBVn .mbr-section-title,
.cid-tFDIrskBVn .mbr-section-subtitle,
.cid-tFDIrskBVn .mbr-text {
  text-align: center;
}
.cid-tFDIrskBVn .mbr-section-title {
  color: #174495;
}
.cid-tyKlrT1V0u {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #174495;
}
.cid-tyKlrT1V0u .mbr-fallback-image.disabled {
  display: none;
}
.cid-tyKlrT1V0u .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-tyKlrT1V0u .container {
    max-width: 1400px;
  }
}
.cid-tyKlrT1V0u .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-tyKlrT1V0u .card-wrapper {
  margin-top: 3rem;
}
.cid-tyKlrT1V0u .row {
  justify-content: justify;
}
.cid-tyKlrT1V0u .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tyKlrT1V0u .card-title,
.cid-tyKlrT1V0u .iconfont-wrapper {
  color: #ffffff;
  text-align: justify;
}
.cid-tyKlrT1V0u .card-text {
  text-align: justify;
  color: #ffffff;
}
.cid-ubqCbAkJlL {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ubqCbAkJlL .mbr-text {
  color: #174495;
  text-align: justify;
}
.cid-ubqCbAkJlL .mbr-section-subtitle {
  color: #174495;
}
.cid-tFJlTWKehc {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tFJlTWKehc .mbr-text {
  color: #174495;
  text-align: justify;
}
.cid-tFJlTWKehc .mbr-section-subtitle {
  color: #174495;
}
.cid-tFJlY1QnTn {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tFJlY1QnTn .mbr-text {
  color: #174495;
  text-align: justify;
}
.cid-tFJlY1QnTn .mbr-section-subtitle {
  color: #174495;
}
.cid-tFJlYzGS9d {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tFJlYzGS9d .mbr-text {
  color: #174495;
  text-align: justify;
}
.cid-tFJlYzGS9d .mbr-section-subtitle {
  color: #174495;
}
.cid-tFJlZttFPu {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tFJlZttFPu .mbr-text {
  color: #174495;
  text-align: justify;
}
.cid-tFJlZttFPu .mbr-section-subtitle {
  color: #174495;
}
.cid-tFE2FwJ90q {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tFE2FwJ90q [class^='socicon-']:before,
.cid-tFE2FwJ90q [class*=' socicon-']:before {
  line-height: 44px;
}
.cid-tFE2FwJ90q .social-list {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.cid-tFE2FwJ90q .btn-social,
.cid-tFE2FwJ90q .mbr-section-title {
  color: #57468b;
}
.cid-tFE2FwJ90q .soc-item {
  width: 20px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 10px;
}
.cid-tFE2FwJ90q .soc-item span {
  font-size: 20px;
  color: #ffffff !important;
  transition: all 0.3s;
}
.cid-tFE2FwJ90q .soc-item:hover span {
  color: #7ce0d3 !important;
}
@media (max-width: 992px) {
  .cid-tFE2FwJ90q .align-left,
  .cid-tFE2FwJ90q .align-right {
    text-align: center;
  }
  .cid-tFE2FwJ90q .social-list {
    justify-content: center;
  }
  .cid-tFE2FwJ90q .mb-0 {
    padding-bottom: 1rem;
  }
}
.cid-tFE2FwJ90q .mbr-text {
  color: #349fc4;
}
.cid-tFJIhKOWAi {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tFJIhKOWAi nav.navbar {
  position: fixed;
}
.cid-tFJIhKOWAi .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-tFJIhKOWAi .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tFJIhKOWAi .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tFJIhKOWAi .dropdown-item:hover,
.cid-tFJIhKOWAi .dropdown-item:focus {
  background: #174495 !important;
  color: white !important;
}
.cid-tFJIhKOWAi .dropdown-item:hover span {
  color: white;
}
.cid-tFJIhKOWAi .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tFJIhKOWAi .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tFJIhKOWAi .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tFJIhKOWAi .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tFJIhKOWAi .nav-link {
  position: relative;
}
.cid-tFJIhKOWAi .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tFJIhKOWAi .container {
    flex-wrap: nowrap;
  }
}
.cid-tFJIhKOWAi .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tFJIhKOWAi .dropdown-menu,
.cid-tFJIhKOWAi .navbar.opened {
  background: #ffffff !important;
}
.cid-tFJIhKOWAi .nav-item:focus,
.cid-tFJIhKOWAi .nav-link:focus {
  outline: none;
}
.cid-tFJIhKOWAi .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tFJIhKOWAi .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tFJIhKOWAi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tFJIhKOWAi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tFJIhKOWAi .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tFJIhKOWAi .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tFJIhKOWAi .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tFJIhKOWAi .navbar.opened {
  transition: all 0.3s;
}
.cid-tFJIhKOWAi .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tFJIhKOWAi .navbar .navbar-logo img {
  width: auto;
}
.cid-tFJIhKOWAi .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tFJIhKOWAi .navbar.collapsed {
  justify-content: center;
}
.cid-tFJIhKOWAi .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tFJIhKOWAi .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tFJIhKOWAi .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tFJIhKOWAi .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tFJIhKOWAi .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tFJIhKOWAi .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-tFJIhKOWAi .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tFJIhKOWAi .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tFJIhKOWAi .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tFJIhKOWAi .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tFJIhKOWAi .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tFJIhKOWAi .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tFJIhKOWAi .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tFJIhKOWAi .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-tFJIhKOWAi .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tFJIhKOWAi .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tFJIhKOWAi .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tFJIhKOWAi .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tFJIhKOWAi .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tFJIhKOWAi .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tFJIhKOWAi .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tFJIhKOWAi .navbar.navbar-short {
  min-height: 60px;
}
.cid-tFJIhKOWAi .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tFJIhKOWAi .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tFJIhKOWAi .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tFJIhKOWAi .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tFJIhKOWAi .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tFJIhKOWAi .dropdown-item.active,
.cid-tFJIhKOWAi .dropdown-item:active {
  background-color: transparent;
}
.cid-tFJIhKOWAi .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tFJIhKOWAi .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tFJIhKOWAi .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tFJIhKOWAi .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tFJIhKOWAi .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tFJIhKOWAi .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tFJIhKOWAi ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tFJIhKOWAi .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tFJIhKOWAi button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tFJIhKOWAi button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tFJIhKOWAi button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tFJIhKOWAi button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tFJIhKOWAi button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tFJIhKOWAi button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tFJIhKOWAi nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tFJIhKOWAi nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tFJIhKOWAi nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tFJIhKOWAi nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tFJIhKOWAi .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tFJIhKOWAi a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tFJIhKOWAi .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-tFJIhKOWAi .navbar {
    height: 70px;
  }
  .cid-tFJIhKOWAi .navbar.opened {
    height: auto;
  }
  .cid-tFJIhKOWAi .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tNQ6ugxfgA {
  padding-top: 8rem;
  padding-bottom: 7rem;
  background-color: #349fc4;
}
.cid-tNQ6ugxfgA .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNQ6ugxfgA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNQ6ugxfgA .mbr-section-title {
  color: #ffffff;
}
.cid-u0nMRazzwa {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u0nMRazzwa .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0nMRazzwa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u0nMRazzwa .row {
  margin: 0 !important;
  row-gap: 30px;
}
.cid-u0nMRazzwa .item-img {
  display: flex;
  justify-content: flex-start;
  width: 50%;
  padding: 50px !important;
}
.cid-u0nMRazzwa .item-img img {
  max-width: 580px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-u0nMRazzwa .item-img {
    width: 100%;
  }
}
.cid-u0nMRazzwa .item-text {
  width: 50%;
  padding: 40px !important;
}
@media (max-width: 1500px) {
  .cid-u0nMRazzwa .item-text {
    padding-left: 40px !important;
  }
}
@media (max-width: 1199px) {
  .cid-u0nMRazzwa .item-text {
    padding-left: 25px !important;
  }
}
@media (max-width: 991px) {
  .cid-u0nMRazzwa .item-text {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-u0nMRazzwa .card-title {
  color: #131313;
}
.cid-u0nMRazzwa .content-box {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
  margin-top: 60px;
}
@media (max-width: 1399px) {
  .cid-u0nMRazzwa .content-box {
    margin-top: 40px;
  }
}
@media (max-width: 991px) {
  .cid-u0nMRazzwa .content-box {
    margin-top: 20px;
  }
}
.cid-u0nMRazzwa .content-item {
  width: 100%;
}
.cid-u0nMRazzwa .card-subtitle {
  color: #349fc4;
}
.cid-u0nMRazzwa .card-subtitle a {
  pointer-events: none;
}
.cid-u0nMRazzwa .card-text {
  margin-top: 20px;
  color: #353535;
  text-align: justify;
}
@media (max-width: 767px) {
  .cid-u0nMRazzwa .card-text {
    margin-top: 15px;
  }
}
.cid-u0nMRazzwa .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 1399px) {
  .cid-u0nMRazzwa .mbr-section-btn {
    margin-top: 15px;
  }
}
.cid-u0o5EfzZd0 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #349fc4;
}
.cid-u0o5EfzZd0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0o5EfzZd0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-u0o5EfzZd0 .container {
    padding: 0 30px;
  }
}
.cid-u0o5EfzZd0 .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-u0o5EfzZd0 .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-u0o5EfzZd0 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-u0o5EfzZd0 .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-u2L88u7o9e {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-u2L88u7o9e .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2L88u7o9e .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2L88u7o9e .container-fluid {
  padding: 0 120px;
}
@media (max-width: 768px) {
  .cid-u2L88u7o9e .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-u2L88u7o9e .container {
    padding: 0 26px;
  }
}
.cid-u2L88u7o9e .title-wrapper .mbr-section-subtitle {
  margin-bottom: 18px;
}
.cid-u2L88u7o9e .title-wrapper .mbr-section-title {
  margin-bottom: 18px;
}
.cid-u2L88u7o9e .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-u2L88u7o9e .mbr-section-title {
  color: #349fc4;
}
.cid-u2L88u7o9e .mbr-section-subtitle {
  color: #49858f;
  text-align: center;
}
.cid-u2L88u7o9e .mbr-text {
  color: #353535;
  text-align: justify;
}
.cid-u2L7YrRPDu {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u2L7YrRPDu .item {
  padding-bottom: 2rem;
}
.cid-u2L7YrRPDu .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-u2L7YrRPDu .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-u2L7YrRPDu .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-u2L7YrRPDu .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-u2L7YrRPDu .carousel-control,
.cid-u2L7YrRPDu .close {
  background: #1b1b1b;
}
.cid-u2L7YrRPDu .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-u2L7YrRPDu .carousel-control-prev span {
  margin-right: 5px;
}
.cid-u2L7YrRPDu .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-u2L7YrRPDu .carousel-control-next span {
  margin-left: 5px;
}
.cid-u2L7YrRPDu .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-u2L7YrRPDu .close::before {
  content: '\e91a';
}
.cid-u2L7YrRPDu .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-u2L7YrRPDu .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-u2L7YrRPDu .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u2L7YrRPDu .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u2L7YrRPDu .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-u2L7YrRPDu .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-u2L7YrRPDu .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-u2L7YrRPDu .carousel-indicators li.active,
.cid-u2L7YrRPDu .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-u2L7YrRPDu .carousel-indicators li::after,
.cid-u2L7YrRPDu .carousel-indicators li::before {
  content: none;
}
.cid-u2L7YrRPDu .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-u2L7YrRPDu .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-u2L7YrRPDu .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-u2L7YrRPDu .carousel-indicators {
    display: none;
  }
}
.cid-u2L7YrRPDu .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-u2L7YrRPDu .carousel-inner > .active {
  display: block;
}
.cid-u2L7YrRPDu .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u2L7YrRPDu .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u2L7YrRPDu .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-u2L7YrRPDu .carousel-control,
  .cid-u2L7YrRPDu .carousel-indicators,
  .cid-u2L7YrRPDu .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-u2L7YrRPDu .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-u2L7YrRPDu .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-u2L7YrRPDu .carousel-indicators .active,
.cid-u2L7YrRPDu .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-u2L7YrRPDu .carousel-indicators .active {
  background: #fff;
}
.cid-u2L7YrRPDu .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-u2L7YrRPDu .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-u2L7YrRPDu .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-u2L7YrRPDu .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-u2L7YrRPDu .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-u2L7YrRPDu .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-u2L7YrRPDu .carousel {
  width: 100%;
}
.cid-u2L7YrRPDu .modal-backdrop.in {
  opacity: 0.8;
}
.cid-u2L7YrRPDu .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-u2L7YrRPDu .modal.fade .modal-dialog,
.cid-u2L7YrRPDu .modal.in .modal-dialog {
  transform: none;
}
.cid-u2L7YrRPDu .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-u2L7YrRPDu H6 {
  text-align: center;
}
.cid-u2L7YrRPDu .mbr-section-title {
  color: #2e6b75;
}
.cid-u2L7YrRPDu .mbr-section-subtitle {
  color: #6c7577;
}
.cid-u2L7YrRPDu .mbr-item-subtitle {
  color: #6c7577;
}
.cid-u2L7YrRPDu .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2L7YrRPDu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ubqhsaTUnw {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-ubqhsaTUnw .mbr-fallback-image.disabled {
  display: none;
}
.cid-ubqhsaTUnw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  overflow: hidden;
}
.cid-ubqhsaTUnw img {
  object-fit: cover;
  max-width: 100%;
  height: auto;
}
.cid-ubqhsaTUnw .mbr-text,
.cid-ubqhsaTUnw .mbr-section-btn {
  color: #444444;
  text-align: justify;
}
.cid-ubqhsaTUnw .mbr-section-subtitle {
  color: #349fc4;
}
.cid-ubqiDWek3m {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ubqiDWek3m .item {
  padding-bottom: 2rem;
}
.cid-ubqiDWek3m .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-ubqiDWek3m .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-ubqiDWek3m .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-ubqiDWek3m .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-ubqiDWek3m .carousel-control,
.cid-ubqiDWek3m .close {
  background: #1b1b1b;
}
.cid-ubqiDWek3m .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-ubqiDWek3m .carousel-control-prev span {
  margin-right: 5px;
}
.cid-ubqiDWek3m .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-ubqiDWek3m .carousel-control-next span {
  margin-left: 5px;
}
.cid-ubqiDWek3m .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-ubqiDWek3m .close::before {
  content: '\e91a';
}
.cid-ubqiDWek3m .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-ubqiDWek3m .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-ubqiDWek3m .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ubqiDWek3m .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ubqiDWek3m .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-ubqiDWek3m .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-ubqiDWek3m .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-ubqiDWek3m .carousel-indicators li.active,
.cid-ubqiDWek3m .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-ubqiDWek3m .carousel-indicators li::after,
.cid-ubqiDWek3m .carousel-indicators li::before {
  content: none;
}
.cid-ubqiDWek3m .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-ubqiDWek3m .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-ubqiDWek3m .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-ubqiDWek3m .carousel-indicators {
    display: none;
  }
}
.cid-ubqiDWek3m .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-ubqiDWek3m .carousel-inner > .active {
  display: block;
}
.cid-ubqiDWek3m .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ubqiDWek3m .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-ubqiDWek3m .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-ubqiDWek3m .carousel-control,
  .cid-ubqiDWek3m .carousel-indicators,
  .cid-ubqiDWek3m .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-ubqiDWek3m .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-ubqiDWek3m .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-ubqiDWek3m .carousel-indicators .active,
.cid-ubqiDWek3m .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-ubqiDWek3m .carousel-indicators .active {
  background: #fff;
}
.cid-ubqiDWek3m .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-ubqiDWek3m .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-ubqiDWek3m .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-ubqiDWek3m .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-ubqiDWek3m .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-ubqiDWek3m .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-ubqiDWek3m .carousel {
  width: 100%;
}
.cid-ubqiDWek3m .modal-backdrop.in {
  opacity: 0.8;
}
.cid-ubqiDWek3m .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-ubqiDWek3m .modal.fade .modal-dialog,
.cid-ubqiDWek3m .modal.in .modal-dialog {
  transform: none;
}
.cid-ubqiDWek3m .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-ubqiDWek3m H6 {
  text-align: center;
}
.cid-ubqiDWek3m .mbr-section-title {
  color: #2e6b75;
}
.cid-ubqiDWek3m .mbr-section-subtitle {
  color: #6c7577;
}
.cid-ubqiDWek3m .mbr-item-subtitle {
  color: #6c7577;
}
.cid-ubqiDWek3m .mbr-fallback-image.disabled {
  display: none;
}
.cid-ubqiDWek3m .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ubqkkk01u2 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-ubqkkk01u2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ubqkkk01u2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  overflow: hidden;
}
.cid-ubqkkk01u2 img {
  object-fit: cover;
  max-width: 100%;
  height: auto;
}
.cid-ubqkkk01u2 .mbr-text,
.cid-ubqkkk01u2 .mbr-section-btn {
  color: #444444;
  text-align: justify;
}
.cid-ubqkkk01u2 .mbr-section-subtitle {
  color: #349fc4;
}
.cid-ubqmWSSnBX {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ubqmWSSnBX .item {
  padding-bottom: 2rem;
}
.cid-ubqmWSSnBX .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-ubqmWSSnBX .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-ubqmWSSnBX .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-ubqmWSSnBX .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-ubqmWSSnBX .carousel-control,
.cid-ubqmWSSnBX .close {
  background: #1b1b1b;
}
.cid-ubqmWSSnBX .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-ubqmWSSnBX .carousel-control-prev span {
  margin-right: 5px;
}
.cid-ubqmWSSnBX .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-ubqmWSSnBX .carousel-control-next span {
  margin-left: 5px;
}
.cid-ubqmWSSnBX .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-ubqmWSSnBX .close::before {
  content: '\e91a';
}
.cid-ubqmWSSnBX .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-ubqmWSSnBX .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-ubqmWSSnBX .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ubqmWSSnBX .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ubqmWSSnBX .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-ubqmWSSnBX .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-ubqmWSSnBX .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-ubqmWSSnBX .carousel-indicators li.active,
.cid-ubqmWSSnBX .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-ubqmWSSnBX .carousel-indicators li::after,
.cid-ubqmWSSnBX .carousel-indicators li::before {
  content: none;
}
.cid-ubqmWSSnBX .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-ubqmWSSnBX .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-ubqmWSSnBX .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-ubqmWSSnBX .carousel-indicators {
    display: none;
  }
}
.cid-ubqmWSSnBX .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-ubqmWSSnBX .carousel-inner > .active {
  display: block;
}
.cid-ubqmWSSnBX .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ubqmWSSnBX .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-ubqmWSSnBX .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-ubqmWSSnBX .carousel-control,
  .cid-ubqmWSSnBX .carousel-indicators,
  .cid-ubqmWSSnBX .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-ubqmWSSnBX .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-ubqmWSSnBX .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-ubqmWSSnBX .carousel-indicators .active,
.cid-ubqmWSSnBX .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-ubqmWSSnBX .carousel-indicators .active {
  background: #fff;
}
.cid-ubqmWSSnBX .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-ubqmWSSnBX .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-ubqmWSSnBX .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-ubqmWSSnBX .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-ubqmWSSnBX .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-ubqmWSSnBX .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-ubqmWSSnBX .carousel {
  width: 100%;
}
.cid-ubqmWSSnBX .modal-backdrop.in {
  opacity: 0.8;
}
.cid-ubqmWSSnBX .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-ubqmWSSnBX .modal.fade .modal-dialog,
.cid-ubqmWSSnBX .modal.in .modal-dialog {
  transform: none;
}
.cid-ubqmWSSnBX .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-ubqmWSSnBX H6 {
  text-align: center;
}
.cid-ubqmWSSnBX .mbr-section-title {
  color: #2e6b75;
}
.cid-ubqmWSSnBX .mbr-section-subtitle {
  color: #6c7577;
}
.cid-ubqmWSSnBX .mbr-item-subtitle {
  color: #6c7577;
}
.cid-ubqmWSSnBX .mbr-fallback-image.disabled {
  display: none;
}
.cid-ubqmWSSnBX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ubqq7e7IVb {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-ubqq7e7IVb .mbr-fallback-image.disabled {
  display: none;
}
.cid-ubqq7e7IVb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  overflow: hidden;
}
.cid-ubqq7e7IVb img {
  object-fit: cover;
  max-width: 100%;
  height: auto;
}
.cid-ubqq7e7IVb .mbr-text,
.cid-ubqq7e7IVb .mbr-section-btn {
  color: #444444;
  text-align: justify;
}
.cid-ubqq7e7IVb .mbr-section-subtitle {
  color: #349fc4;
}
.cid-ubqr8RD0Zd {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ubqr8RD0Zd .item {
  padding-bottom: 2rem;
}
.cid-ubqr8RD0Zd .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-ubqr8RD0Zd .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-ubqr8RD0Zd .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-ubqr8RD0Zd .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-ubqr8RD0Zd .carousel-control,
.cid-ubqr8RD0Zd .close {
  background: #1b1b1b;
}
.cid-ubqr8RD0Zd .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-ubqr8RD0Zd .carousel-control-prev span {
  margin-right: 5px;
}
.cid-ubqr8RD0Zd .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-ubqr8RD0Zd .carousel-control-next span {
  margin-left: 5px;
}
.cid-ubqr8RD0Zd .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-ubqr8RD0Zd .close::before {
  content: '\e91a';
}
.cid-ubqr8RD0Zd .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-ubqr8RD0Zd .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-ubqr8RD0Zd .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ubqr8RD0Zd .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ubqr8RD0Zd .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-ubqr8RD0Zd .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-ubqr8RD0Zd .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-ubqr8RD0Zd .carousel-indicators li.active,
.cid-ubqr8RD0Zd .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-ubqr8RD0Zd .carousel-indicators li::after,
.cid-ubqr8RD0Zd .carousel-indicators li::before {
  content: none;
}
.cid-ubqr8RD0Zd .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-ubqr8RD0Zd .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-ubqr8RD0Zd .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-ubqr8RD0Zd .carousel-indicators {
    display: none;
  }
}
.cid-ubqr8RD0Zd .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-ubqr8RD0Zd .carousel-inner > .active {
  display: block;
}
.cid-ubqr8RD0Zd .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ubqr8RD0Zd .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-ubqr8RD0Zd .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-ubqr8RD0Zd .carousel-control,
  .cid-ubqr8RD0Zd .carousel-indicators,
  .cid-ubqr8RD0Zd .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-ubqr8RD0Zd .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-ubqr8RD0Zd .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-ubqr8RD0Zd .carousel-indicators .active,
.cid-ubqr8RD0Zd .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-ubqr8RD0Zd .carousel-indicators .active {
  background: #fff;
}
.cid-ubqr8RD0Zd .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-ubqr8RD0Zd .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-ubqr8RD0Zd .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-ubqr8RD0Zd .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-ubqr8RD0Zd .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-ubqr8RD0Zd .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-ubqr8RD0Zd .carousel {
  width: 100%;
}
.cid-ubqr8RD0Zd .modal-backdrop.in {
  opacity: 0.8;
}
.cid-ubqr8RD0Zd .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-ubqr8RD0Zd .modal.fade .modal-dialog,
.cid-ubqr8RD0Zd .modal.in .modal-dialog {
  transform: none;
}
.cid-ubqr8RD0Zd .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-ubqr8RD0Zd H6 {
  text-align: center;
}
.cid-ubqr8RD0Zd .mbr-section-title {
  color: #2e6b75;
}
.cid-ubqr8RD0Zd .mbr-section-subtitle {
  color: #6c7577;
}
.cid-ubqr8RD0Zd .mbr-item-subtitle {
  color: #6c7577;
}
.cid-ubqr8RD0Zd .mbr-fallback-image.disabled {
  display: none;
}
.cid-ubqr8RD0Zd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ubqsu7SbJV {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ubqsu7SbJV .mbr-fallback-image.disabled {
  display: none;
}
.cid-ubqsu7SbJV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ubqsu7SbJV .container-fluid {
  padding: 0 22px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-ubqsu7SbJV .container-fluid {
    padding: 0 16px;
  }
}
.cid-ubqsu7SbJV .container-fluid .row {
  padding: 0;
}
.cid-ubqsu7SbJV .container {
  overflow: hidden;
}
.cid-ubqsu7SbJV .row {
  justify-content: center;
}
.cid-ubqsu7SbJV .title-wrapper {
  margin-bottom: 80px;
}
.cid-ubqsu7SbJV .title-wrapper .mbr-section-title {
  padding-top: 22px;
  margin-bottom: 0;
}
.cid-ubqsu7SbJV .video-block {
  width: 62%;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .cid-ubqsu7SbJV .video-block {
    width: 80%;
  }
}
@media (max-width: 768px) {
  .cid-ubqsu7SbJV .video-block {
    width: 100%;
  }
}
.cid-ubqsu7SbJV .video-block .video-wrapper .app-video-wrapper img {
  height: 450px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-ubqsu7SbJV .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-ubqsu7SbJV .app-video-wrapper::before {
  color: #495dff;
  text-shadow: none;
}
.cid-ubqsu7SbJV .mbr-section-title {
  color: #349fc4;
  text-align: center;
}
.cid-ubqtunGRLR {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ubqtunGRLR .mbr-fallback-image.disabled {
  display: none;
}
.cid-ubqtunGRLR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ubqtunGRLR .container-fluid {
  padding: 0 120px;
}
@media (max-width: 768px) {
  .cid-ubqtunGRLR .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-ubqtunGRLR .container {
    padding: 0 26px;
  }
}
.cid-ubqtunGRLR .title-wrapper .mbr-section-subtitle {
  margin-bottom: 18px;
}
.cid-ubqtunGRLR .title-wrapper .mbr-section-title {
  margin-bottom: 18px;
}
.cid-ubqtunGRLR .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ubqtunGRLR .mbr-section-title {
  color: #444444;
}
.cid-ubqtunGRLR .mbr-section-subtitle {
  color: #349fc4;
  text-align: center;
}
.cid-ubqtunGRLR .mbr-text {
  color: #444444;
  text-align: justify;
}
.cid-ubqCYhT4kY {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ubqCYhT4kY .mbr-text {
  color: #444444;
  text-align: justify;
}
.cid-ubqCYhT4kY .mbr-section-subtitle {
  color: #349fc4;
}
.cid-ubqsUrAyrS {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ubqsUrAyrS .mbr-text {
  color: #444444;
  text-align: justify;
}
.cid-ubqsUrAyrS .mbr-section-subtitle {
  color: #349fc4;
}
.cid-ubqt33o9ll {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ubqt33o9ll .mbr-text {
  color: #444444;
  text-align: justify;
}
.cid-ubqt33o9ll .mbr-section-subtitle {
  color: #349fc4;
}
.cid-ubqt3LlUG0 {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ubqt3LlUG0 .mbr-text {
  color: #444444;
  text-align: justify;
}
.cid-ubqt3LlUG0 .mbr-section-subtitle {
  color: #349fc4;
}
.cid-ubqt4fzNns {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ubqt4fzNns .mbr-text {
  color: #444444;
  text-align: justify;
}
.cid-ubqt4fzNns .mbr-section-subtitle {
  color: #349fc4;
}
.cid-tFE2FwJ90q {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tFE2FwJ90q [class^='socicon-']:before,
.cid-tFE2FwJ90q [class*=' socicon-']:before {
  line-height: 44px;
}
.cid-tFE2FwJ90q .social-list {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.cid-tFE2FwJ90q .btn-social,
.cid-tFE2FwJ90q .mbr-section-title {
  color: #57468b;
}
.cid-tFE2FwJ90q .soc-item {
  width: 20px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 10px;
}
.cid-tFE2FwJ90q .soc-item span {
  font-size: 20px;
  color: #ffffff !important;
  transition: all 0.3s;
}
.cid-tFE2FwJ90q .soc-item:hover span {
  color: #7ce0d3 !important;
}
@media (max-width: 992px) {
  .cid-tFE2FwJ90q .align-left,
  .cid-tFE2FwJ90q .align-right {
    text-align: center;
  }
  .cid-tFE2FwJ90q .social-list {
    justify-content: center;
  }
  .cid-tFE2FwJ90q .mb-0 {
    padding-bottom: 1rem;
  }
}
.cid-tFE2FwJ90q .mbr-text {
  color: #349fc4;
}
.cid-tFJIhKOWAi {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tFJIhKOWAi nav.navbar {
  position: fixed;
}
.cid-tFJIhKOWAi .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-tFJIhKOWAi .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tFJIhKOWAi .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tFJIhKOWAi .dropdown-item:hover,
.cid-tFJIhKOWAi .dropdown-item:focus {
  background: #174495 !important;
  color: white !important;
}
.cid-tFJIhKOWAi .dropdown-item:hover span {
  color: white;
}
.cid-tFJIhKOWAi .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tFJIhKOWAi .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tFJIhKOWAi .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tFJIhKOWAi .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tFJIhKOWAi .nav-link {
  position: relative;
}
.cid-tFJIhKOWAi .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tFJIhKOWAi .container {
    flex-wrap: nowrap;
  }
}
.cid-tFJIhKOWAi .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tFJIhKOWAi .dropdown-menu,
.cid-tFJIhKOWAi .navbar.opened {
  background: #ffffff !important;
}
.cid-tFJIhKOWAi .nav-item:focus,
.cid-tFJIhKOWAi .nav-link:focus {
  outline: none;
}
.cid-tFJIhKOWAi .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tFJIhKOWAi .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tFJIhKOWAi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tFJIhKOWAi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tFJIhKOWAi .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tFJIhKOWAi .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tFJIhKOWAi .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tFJIhKOWAi .navbar.opened {
  transition: all 0.3s;
}
.cid-tFJIhKOWAi .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tFJIhKOWAi .navbar .navbar-logo img {
  width: auto;
}
.cid-tFJIhKOWAi .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tFJIhKOWAi .navbar.collapsed {
  justify-content: center;
}
.cid-tFJIhKOWAi .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tFJIhKOWAi .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tFJIhKOWAi .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tFJIhKOWAi .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tFJIhKOWAi .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tFJIhKOWAi .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-tFJIhKOWAi .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tFJIhKOWAi .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tFJIhKOWAi .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tFJIhKOWAi .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tFJIhKOWAi .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tFJIhKOWAi .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tFJIhKOWAi .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tFJIhKOWAi .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-tFJIhKOWAi .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tFJIhKOWAi .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tFJIhKOWAi .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tFJIhKOWAi .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tFJIhKOWAi .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tFJIhKOWAi .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tFJIhKOWAi .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tFJIhKOWAi .navbar.navbar-short {
  min-height: 60px;
}
.cid-tFJIhKOWAi .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tFJIhKOWAi .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tFJIhKOWAi .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tFJIhKOWAi .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tFJIhKOWAi .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tFJIhKOWAi .dropdown-item.active,
.cid-tFJIhKOWAi .dropdown-item:active {
  background-color: transparent;
}
.cid-tFJIhKOWAi .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tFJIhKOWAi .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tFJIhKOWAi .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tFJIhKOWAi .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tFJIhKOWAi .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tFJIhKOWAi .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tFJIhKOWAi ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tFJIhKOWAi .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tFJIhKOWAi button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tFJIhKOWAi button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tFJIhKOWAi button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tFJIhKOWAi button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tFJIhKOWAi button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tFJIhKOWAi button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tFJIhKOWAi nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tFJIhKOWAi nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tFJIhKOWAi nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tFJIhKOWAi nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tFJIhKOWAi .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tFJIhKOWAi a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tFJIhKOWAi .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-tFJIhKOWAi .navbar {
    height: 70px;
  }
  .cid-tFJIhKOWAi .navbar.opened {
    height: auto;
  }
  .cid-tFJIhKOWAi .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tNQ5nhFMaK {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #174495;
}
.cid-tNQ5nhFMaK .google-map {
  height: 25rem;
  position: relative;
}
.cid-tNQ5nhFMaK .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tNQ5nhFMaK .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  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-tNQ5nhFMaK .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tNQ5nhFMaK .google-map[data-state='loading'] [data-state-details] {
  display: none;
}
.cid-tNQ5nhFMaK .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tNQ5nhFMaK .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNQ5nhFMaK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNQ5rsvj8F {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #174495;
}
.cid-tNQ5rsvj8F .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNQ5rsvj8F .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNQ5rsvj8F .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-tNQ5rsvj8F .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-tNQ5rsvj8F .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tNQ5rsvj8F .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-tNQ5rsvj8F .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #174495;
}
.cid-tNQ5rsvj8F P {
  color: #174495;
}
.cid-tNQ5rsvj8F .card-title {
  color: #174495;
}
.cid-tFE2FwJ90q {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tFE2FwJ90q [class^='socicon-']:before,
.cid-tFE2FwJ90q [class*=' socicon-']:before {
  line-height: 44px;
}
.cid-tFE2FwJ90q .social-list {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.cid-tFE2FwJ90q .btn-social,
.cid-tFE2FwJ90q .mbr-section-title {
  color: #57468b;
}
.cid-tFE2FwJ90q .soc-item {
  width: 20px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 10px;
}
.cid-tFE2FwJ90q .soc-item span {
  font-size: 20px;
  color: #ffffff !important;
  transition: all 0.3s;
}
.cid-tFE2FwJ90q .soc-item:hover span {
  color: #7ce0d3 !important;
}
@media (max-width: 992px) {
  .cid-tFE2FwJ90q .align-left,
  .cid-tFE2FwJ90q .align-right {
    text-align: center;
  }
  .cid-tFE2FwJ90q .social-list {
    justify-content: center;
  }
  .cid-tFE2FwJ90q .mb-0 {
    padding-bottom: 1rem;
  }
}
.cid-tFE2FwJ90q .mbr-text {
  color: #349fc4;
}
.cid-tFJIhKOWAi {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tFJIhKOWAi nav.navbar {
  position: fixed;
}
.cid-tFJIhKOWAi .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-tFJIhKOWAi .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tFJIhKOWAi .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tFJIhKOWAi .dropdown-item:hover,
.cid-tFJIhKOWAi .dropdown-item:focus {
  background: #174495 !important;
  color: white !important;
}
.cid-tFJIhKOWAi .dropdown-item:hover span {
  color: white;
}
.cid-tFJIhKOWAi .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tFJIhKOWAi .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tFJIhKOWAi .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tFJIhKOWAi .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tFJIhKOWAi .nav-link {
  position: relative;
}
.cid-tFJIhKOWAi .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tFJIhKOWAi .container {
    flex-wrap: nowrap;
  }
}
.cid-tFJIhKOWAi .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tFJIhKOWAi .dropdown-menu,
.cid-tFJIhKOWAi .navbar.opened {
  background: #ffffff !important;
}
.cid-tFJIhKOWAi .nav-item:focus,
.cid-tFJIhKOWAi .nav-link:focus {
  outline: none;
}
.cid-tFJIhKOWAi .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tFJIhKOWAi .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tFJIhKOWAi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tFJIhKOWAi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tFJIhKOWAi .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tFJIhKOWAi .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tFJIhKOWAi .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tFJIhKOWAi .navbar.opened {
  transition: all 0.3s;
}
.cid-tFJIhKOWAi .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tFJIhKOWAi .navbar .navbar-logo img {
  width: auto;
}
.cid-tFJIhKOWAi .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tFJIhKOWAi .navbar.collapsed {
  justify-content: center;
}
.cid-tFJIhKOWAi .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tFJIhKOWAi .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tFJIhKOWAi .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tFJIhKOWAi .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tFJIhKOWAi .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tFJIhKOWAi .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-tFJIhKOWAi .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tFJIhKOWAi .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tFJIhKOWAi .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tFJIhKOWAi .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tFJIhKOWAi .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tFJIhKOWAi .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tFJIhKOWAi .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tFJIhKOWAi .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-tFJIhKOWAi .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tFJIhKOWAi .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tFJIhKOWAi .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tFJIhKOWAi .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tFJIhKOWAi .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tFJIhKOWAi .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tFJIhKOWAi .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tFJIhKOWAi .navbar.navbar-short {
  min-height: 60px;
}
.cid-tFJIhKOWAi .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tFJIhKOWAi .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tFJIhKOWAi .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tFJIhKOWAi .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tFJIhKOWAi .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tFJIhKOWAi .dropdown-item.active,
.cid-tFJIhKOWAi .dropdown-item:active {
  background-color: transparent;
}
.cid-tFJIhKOWAi .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tFJIhKOWAi .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tFJIhKOWAi .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tFJIhKOWAi .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tFJIhKOWAi .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tFJIhKOWAi .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tFJIhKOWAi ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tFJIhKOWAi .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tFJIhKOWAi button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tFJIhKOWAi button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tFJIhKOWAi button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tFJIhKOWAi button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tFJIhKOWAi button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tFJIhKOWAi button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tFJIhKOWAi nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tFJIhKOWAi nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tFJIhKOWAi nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tFJIhKOWAi nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tFJIhKOWAi .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tFJIhKOWAi a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tFJIhKOWAi .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-tFJIhKOWAi .navbar {
    height: 70px;
  }
  .cid-tFJIhKOWAi .navbar.opened {
    height: auto;
  }
  .cid-tFJIhKOWAi .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-upKUVyWc4B {
  padding-top: 8rem;
  padding-bottom: 7rem;
  background-image: url("../../../assets/images/mbr-1920x1920.webp");
}
.cid-upKUVyWc4B .mbr-fallback-image.disabled {
  display: none;
}
.cid-upKUVyWc4B .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upKUVyWc4B .mbr-section-title {
  color: #232323;
}
.cid-upKVtWXTJH {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-upKVtWXTJH .mbr-fallback-image.disabled {
  display: none;
}
.cid-upKVtWXTJH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upKVtWXTJH .row {
  margin: 0 !important;
  row-gap: 30px;
}
.cid-upKVtWXTJH .item-img {
  display: flex;
  justify-content: flex-start;
  width: 50%;
  padding: 50px !important;
}
.cid-upKVtWXTJH .item-img img {
  max-width: 580px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-upKVtWXTJH .item-img {
    width: 100%;
  }
}
.cid-upKVtWXTJH .item-text {
  width: 50%;
  padding: 40px !important;
}
@media (max-width: 1500px) {
  .cid-upKVtWXTJH .item-text {
    padding-left: 40px !important;
  }
}
@media (max-width: 1199px) {
  .cid-upKVtWXTJH .item-text {
    padding-left: 25px !important;
  }
}
@media (max-width: 991px) {
  .cid-upKVtWXTJH .item-text {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-upKVtWXTJH .card-title {
  color: #131313;
}
.cid-upKVtWXTJH .content-box {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
  margin-top: 60px;
}
@media (max-width: 1399px) {
  .cid-upKVtWXTJH .content-box {
    margin-top: 40px;
  }
}
@media (max-width: 991px) {
  .cid-upKVtWXTJH .content-box {
    margin-top: 20px;
  }
}
.cid-upKVtWXTJH .content-item {
  width: 100%;
}
.cid-upKVtWXTJH .card-subtitle {
  color: #444444;
}
.cid-upKVtWXTJH .card-subtitle a {
  pointer-events: none;
}
.cid-upKVtWXTJH .card-text {
  margin-top: 20px;
  color: #353535;
  text-align: justify;
}
@media (max-width: 767px) {
  .cid-upKVtWXTJH .card-text {
    margin-top: 15px;
  }
}
.cid-upKVtWXTJH .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 1399px) {
  .cid-upKVtWXTJH .mbr-section-btn {
    margin-top: 15px;
  }
}
.cid-upKXvWHIcW {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-upKXvWHIcW .mbr-fallback-image.disabled {
  display: none;
}
.cid-upKXvWHIcW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upKXvWHIcW .text-container {
  background-color: #444444;
  border-radius: 100px;
  padding: 16px;
  min-height: 67px;
  margin: 0 20%;
}
@media (max-width: 768px) {
  .cid-upKXvWHIcW .text-container {
    margin: 0 5%;
  }
}
.cid-upKXvWHIcW .text-container .text-wrapper {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 5px 0;
}
.cid-upKXvWHIcW .text-container .text-wrapper .mbr-text {
  margin: 0 16px 0 0;
}
.cid-upKXvWHIcW .text-container .text-wrapper .mbr-desc {
  margin: 0;
}
.cid-upKXvWHIcW .text-container .text-wrapper .mbr-desc .mbr-iconfont {
  font-size: 20px;
}
.cid-upKXvWHIcW .mbr-text {
  color: #e8e8e8;
}
.cid-upKXvWHIcW .mbr-desc,
.cid-upKXvWHIcW .mbr-iconfont {
  color: #e8e8e8;
}
.cid-upKXvWHIcW .mbr-text,
.cid-upKXvWHIcW .text-container {
  text-align: center;
  color: #ffffff;
}
.cid-upKXBw3OzK {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-upKXBw3OzK .mbr-fallback-image.disabled {
  display: none;
}
.cid-upKXBw3OzK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upKXBw3OzK .row {
  flex-direction: row-reverse;
}
.cid-upKXBw3OzK .row {
  align-items: center;
}
.cid-upKXBw3OzK img {
  border-radius: 2rem;
}
@media (min-width: 992px) {
  .cid-upKXBw3OzK .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-upKXBw3OzK .mbr-section-title {
  color: #444444;
}
.cid-upKXBw3OzK .mbr-text,
.cid-upKXBw3OzK .mbr-section-btn {
  color: #444444;
  text-align: justify;
}
.cid-uRRFWH3oUj {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uRRFWH3oUj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRRFWH3oUj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRRFWH3oUj .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-uRRFWH3oUj .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-uRRFWH3oUj .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uRRFWH3oUj .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uRRFWH3oUj .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uRRFWH3oUj .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uRRFWH3oUj .carousel-control,
.cid-uRRFWH3oUj .close {
  background: #1b1b1b;
}
.cid-uRRFWH3oUj .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uRRFWH3oUj .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uRRFWH3oUj .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uRRFWH3oUj .carousel-control-next span {
  margin-left: 5px;
}
.cid-uRRFWH3oUj .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-uRRFWH3oUj .close::before {
  content: '\e91a';
}
.cid-uRRFWH3oUj .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uRRFWH3oUj .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-uRRFWH3oUj .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uRRFWH3oUj .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uRRFWH3oUj .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uRRFWH3oUj .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uRRFWH3oUj .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-uRRFWH3oUj .carousel-indicators li.active,
.cid-uRRFWH3oUj .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uRRFWH3oUj .carousel-indicators li::after,
.cid-uRRFWH3oUj .carousel-indicators li::before {
  content: none;
}
.cid-uRRFWH3oUj .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uRRFWH3oUj .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uRRFWH3oUj .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uRRFWH3oUj .carousel-indicators {
    display: none;
  }
}
.cid-uRRFWH3oUj .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uRRFWH3oUj .carousel-inner > .active {
  display: block;
}
.cid-uRRFWH3oUj .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uRRFWH3oUj .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uRRFWH3oUj .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uRRFWH3oUj .carousel-control,
  .cid-uRRFWH3oUj .carousel-indicators,
  .cid-uRRFWH3oUj .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uRRFWH3oUj .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uRRFWH3oUj .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uRRFWH3oUj .carousel-indicators .active,
.cid-uRRFWH3oUj .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uRRFWH3oUj .carousel-indicators .active {
  background: #fff;
}
.cid-uRRFWH3oUj .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uRRFWH3oUj .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uRRFWH3oUj .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uRRFWH3oUj .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uRRFWH3oUj .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uRRFWH3oUj .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uRRFWH3oUj .carousel {
  width: 100%;
}
.cid-uRRFWH3oUj .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uRRFWH3oUj .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uRRFWH3oUj .modal.fade .modal-dialog,
.cid-uRRFWH3oUj .modal.in .modal-dialog {
  transform: none;
}
.cid-uRRFWH3oUj .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uRRFWH3oUj H6 {
  text-align: center;
}
.cid-uRS15ustrO {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uRS15ustrO .mbr-text {
  color: #444444;
  text-align: justify;
}
.cid-uRS15ustrO .mbr-section-subtitle {
  color: #349fc4;
  text-align: center;
}
.cid-uRRHPmApDW {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uRRHPmApDW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRRHPmApDW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  overflow: hidden;
}
.cid-uRRHPmApDW img {
  object-fit: cover;
  max-width: 100%;
  height: auto;
}
.cid-uRRHPmApDW .mbr-text,
.cid-uRRHPmApDW .mbr-section-btn {
  color: #444444;
  text-align: justify;
}
.cid-uRRHPmApDW .mbr-section-subtitle {
  color: #349fc4;
}
.cid-uRRKUiTQyc {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uRRKUiTQyc .item {
  padding-bottom: 2rem;
}
.cid-uRRKUiTQyc .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uRRKUiTQyc .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uRRKUiTQyc .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uRRKUiTQyc .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uRRKUiTQyc .carousel-control,
.cid-uRRKUiTQyc .close {
  background: #1b1b1b;
}
.cid-uRRKUiTQyc .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uRRKUiTQyc .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uRRKUiTQyc .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uRRKUiTQyc .carousel-control-next span {
  margin-left: 5px;
}
.cid-uRRKUiTQyc .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-uRRKUiTQyc .close::before {
  content: '\e91a';
}
.cid-uRRKUiTQyc .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uRRKUiTQyc .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-uRRKUiTQyc .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uRRKUiTQyc .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uRRKUiTQyc .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uRRKUiTQyc .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uRRKUiTQyc .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-uRRKUiTQyc .carousel-indicators li.active,
.cid-uRRKUiTQyc .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uRRKUiTQyc .carousel-indicators li::after,
.cid-uRRKUiTQyc .carousel-indicators li::before {
  content: none;
}
.cid-uRRKUiTQyc .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uRRKUiTQyc .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uRRKUiTQyc .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uRRKUiTQyc .carousel-indicators {
    display: none;
  }
}
.cid-uRRKUiTQyc .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uRRKUiTQyc .carousel-inner > .active {
  display: block;
}
.cid-uRRKUiTQyc .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uRRKUiTQyc .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uRRKUiTQyc .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uRRKUiTQyc .carousel-control,
  .cid-uRRKUiTQyc .carousel-indicators,
  .cid-uRRKUiTQyc .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uRRKUiTQyc .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uRRKUiTQyc .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uRRKUiTQyc .carousel-indicators .active,
.cid-uRRKUiTQyc .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uRRKUiTQyc .carousel-indicators .active {
  background: #fff;
}
.cid-uRRKUiTQyc .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uRRKUiTQyc .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uRRKUiTQyc .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uRRKUiTQyc .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uRRKUiTQyc .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uRRKUiTQyc .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uRRKUiTQyc .carousel {
  width: 100%;
}
.cid-uRRKUiTQyc .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uRRKUiTQyc .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uRRKUiTQyc .modal.fade .modal-dialog,
.cid-uRRKUiTQyc .modal.in .modal-dialog {
  transform: none;
}
.cid-uRRKUiTQyc .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uRRKUiTQyc H6 {
  text-align: center;
}
.cid-uRRKUiTQyc .mbr-section-title {
  color: #2e6b75;
}
.cid-uRRKUiTQyc .mbr-section-subtitle {
  color: #6c7577;
}
.cid-uRRKUiTQyc .mbr-item-subtitle {
  color: #6c7577;
}
.cid-uRRKUiTQyc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRRKUiTQyc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRS2oiQ2zs {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uRS2oiQ2zs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRS2oiQ2zs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  overflow: hidden;
}
.cid-uRS2oiQ2zs img {
  object-fit: cover;
  max-width: 100%;
  height: auto;
}
.cid-uRS2oiQ2zs .mbr-text,
.cid-uRS2oiQ2zs .mbr-section-btn {
  color: #444444;
  text-align: justify;
}
.cid-uRS2oiQ2zs .mbr-section-subtitle {
  color: #349fc4;
}
.cid-uRS2t2aCbh {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uRS2t2aCbh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRS2t2aCbh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRS2t2aCbh .item {
  padding-bottom: 2rem;
}
.cid-uRS2t2aCbh .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uRS2t2aCbh .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uRS2t2aCbh .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uRS2t2aCbh .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uRS2t2aCbh .carousel-control,
.cid-uRS2t2aCbh .close {
  background: #1b1b1b;
}
.cid-uRS2t2aCbh .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uRS2t2aCbh .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uRS2t2aCbh .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uRS2t2aCbh .carousel-control-next span {
  margin-left: 5px;
}
.cid-uRS2t2aCbh .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-uRS2t2aCbh .close::before {
  content: '\e91a';
}
.cid-uRS2t2aCbh .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uRS2t2aCbh .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-uRS2t2aCbh .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uRS2t2aCbh .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uRS2t2aCbh .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uRS2t2aCbh .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uRS2t2aCbh .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-uRS2t2aCbh .carousel-indicators li.active,
.cid-uRS2t2aCbh .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uRS2t2aCbh .carousel-indicators li::after,
.cid-uRS2t2aCbh .carousel-indicators li::before {
  content: none;
}
.cid-uRS2t2aCbh .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uRS2t2aCbh .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uRS2t2aCbh .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uRS2t2aCbh .carousel-indicators {
    display: none;
  }
}
.cid-uRS2t2aCbh .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uRS2t2aCbh .carousel-inner > .active {
  display: block;
}
.cid-uRS2t2aCbh .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uRS2t2aCbh .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uRS2t2aCbh .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uRS2t2aCbh .carousel-control,
  .cid-uRS2t2aCbh .carousel-indicators,
  .cid-uRS2t2aCbh .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uRS2t2aCbh .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uRS2t2aCbh .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uRS2t2aCbh .carousel-indicators .active,
.cid-uRS2t2aCbh .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uRS2t2aCbh .carousel-indicators .active {
  background: #fff;
}
.cid-uRS2t2aCbh .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uRS2t2aCbh .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uRS2t2aCbh .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uRS2t2aCbh .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uRS2t2aCbh .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uRS2t2aCbh .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uRS2t2aCbh .carousel {
  width: 100%;
}
.cid-uRS2t2aCbh .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uRS2t2aCbh .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uRS2t2aCbh .modal.fade .modal-dialog,
.cid-uRS2t2aCbh .modal.in .modal-dialog {
  transform: none;
}
.cid-uRS2t2aCbh .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uRS2t2aCbh H6 {
  text-align: center;
}
.cid-uRS2t2aCbh .mbr-section-title {
  color: #2e6b75;
}
.cid-uRS2t2aCbh .mbr-section-subtitle {
  color: #6c7577;
}
.cid-uRS2t2aCbh .mbr-item-subtitle {
  color: #6c7577;
}
.cid-uRW5aFyliL {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uRW5aFyliL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRW5aFyliL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  overflow: hidden;
}
.cid-uRW5aFyliL img {
  object-fit: cover;
  max-width: 100%;
  height: auto;
}
.cid-uRW5aFyliL .mbr-text,
.cid-uRW5aFyliL .mbr-section-btn {
  color: #444444;
  text-align: justify;
}
.cid-uRW5aFyliL .mbr-section-subtitle {
  color: #349fc4;
}
.cid-uRW4AET3xV {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uRW4AET3xV .item {
  padding-bottom: 2rem;
}
.cid-uRW4AET3xV .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uRW4AET3xV .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uRW4AET3xV .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uRW4AET3xV .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uRW4AET3xV .carousel-control,
.cid-uRW4AET3xV .close {
  background: #1b1b1b;
}
.cid-uRW4AET3xV .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uRW4AET3xV .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uRW4AET3xV .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uRW4AET3xV .carousel-control-next span {
  margin-left: 5px;
}
.cid-uRW4AET3xV .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-uRW4AET3xV .close::before {
  content: '\e91a';
}
.cid-uRW4AET3xV .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uRW4AET3xV .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-uRW4AET3xV .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uRW4AET3xV .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uRW4AET3xV .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uRW4AET3xV .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uRW4AET3xV .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-uRW4AET3xV .carousel-indicators li.active,
.cid-uRW4AET3xV .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uRW4AET3xV .carousel-indicators li::after,
.cid-uRW4AET3xV .carousel-indicators li::before {
  content: none;
}
.cid-uRW4AET3xV .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uRW4AET3xV .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uRW4AET3xV .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uRW4AET3xV .carousel-indicators {
    display: none;
  }
}
.cid-uRW4AET3xV .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uRW4AET3xV .carousel-inner > .active {
  display: block;
}
.cid-uRW4AET3xV .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uRW4AET3xV .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uRW4AET3xV .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uRW4AET3xV .carousel-control,
  .cid-uRW4AET3xV .carousel-indicators,
  .cid-uRW4AET3xV .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uRW4AET3xV .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uRW4AET3xV .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uRW4AET3xV .carousel-indicators .active,
.cid-uRW4AET3xV .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uRW4AET3xV .carousel-indicators .active {
  background: #fff;
}
.cid-uRW4AET3xV .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uRW4AET3xV .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uRW4AET3xV .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uRW4AET3xV .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uRW4AET3xV .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uRW4AET3xV .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uRW4AET3xV .carousel {
  width: 100%;
}
.cid-uRW4AET3xV .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uRW4AET3xV .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uRW4AET3xV .modal.fade .modal-dialog,
.cid-uRW4AET3xV .modal.in .modal-dialog {
  transform: none;
}
.cid-uRW4AET3xV .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uRW4AET3xV H6 {
  text-align: center;
}
.cid-uRW4AET3xV .mbr-section-title {
  color: #2e6b75;
}
.cid-uRW4AET3xV .mbr-section-subtitle {
  color: #6c7577;
}
.cid-uRW4AET3xV .mbr-item-subtitle {
  color: #6c7577;
}
.cid-uRW4AET3xV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRW4AET3xV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRW5kMAl4Q {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uRW5kMAl4Q .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRW5kMAl4Q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  overflow: hidden;
}
.cid-uRW5kMAl4Q img {
  object-fit: cover;
  max-width: 100%;
  height: auto;
}
.cid-uRW5kMAl4Q .mbr-text,
.cid-uRW5kMAl4Q .mbr-section-btn {
  color: #444444;
  text-align: justify;
}
.cid-uRW5kMAl4Q .mbr-section-subtitle {
  color: #349fc4;
}
.cid-uRW4tjDBIq {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uRW4tjDBIq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRW4tjDBIq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRW4tjDBIq .item {
  padding-bottom: 2rem;
}
.cid-uRW4tjDBIq .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uRW4tjDBIq .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uRW4tjDBIq .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uRW4tjDBIq .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uRW4tjDBIq .carousel-control,
.cid-uRW4tjDBIq .close {
  background: #1b1b1b;
}
.cid-uRW4tjDBIq .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uRW4tjDBIq .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uRW4tjDBIq .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uRW4tjDBIq .carousel-control-next span {
  margin-left: 5px;
}
.cid-uRW4tjDBIq .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-uRW4tjDBIq .close::before {
  content: '\e91a';
}
.cid-uRW4tjDBIq .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uRW4tjDBIq .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-uRW4tjDBIq .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uRW4tjDBIq .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uRW4tjDBIq .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uRW4tjDBIq .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uRW4tjDBIq .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-uRW4tjDBIq .carousel-indicators li.active,
.cid-uRW4tjDBIq .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uRW4tjDBIq .carousel-indicators li::after,
.cid-uRW4tjDBIq .carousel-indicators li::before {
  content: none;
}
.cid-uRW4tjDBIq .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uRW4tjDBIq .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uRW4tjDBIq .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uRW4tjDBIq .carousel-indicators {
    display: none;
  }
}
.cid-uRW4tjDBIq .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uRW4tjDBIq .carousel-inner > .active {
  display: block;
}
.cid-uRW4tjDBIq .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uRW4tjDBIq .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uRW4tjDBIq .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uRW4tjDBIq .carousel-control,
  .cid-uRW4tjDBIq .carousel-indicators,
  .cid-uRW4tjDBIq .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uRW4tjDBIq .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uRW4tjDBIq .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uRW4tjDBIq .carousel-indicators .active,
.cid-uRW4tjDBIq .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uRW4tjDBIq .carousel-indicators .active {
  background: #fff;
}
.cid-uRW4tjDBIq .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uRW4tjDBIq .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uRW4tjDBIq .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uRW4tjDBIq .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uRW4tjDBIq .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uRW4tjDBIq .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uRW4tjDBIq .carousel {
  width: 100%;
}
.cid-uRW4tjDBIq .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uRW4tjDBIq .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uRW4tjDBIq .modal.fade .modal-dialog,
.cid-uRW4tjDBIq .modal.in .modal-dialog {
  transform: none;
}
.cid-uRW4tjDBIq .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uRW4tjDBIq H6 {
  text-align: center;
}
.cid-uRW4tjDBIq .mbr-section-title {
  color: #2e6b75;
}
.cid-uRW4tjDBIq .mbr-section-subtitle {
  color: #6c7577;
}
.cid-uRW4tjDBIq .mbr-item-subtitle {
  color: #6c7577;
}
.cid-uSk5AZp6tZ {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uSk5AZp6tZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSk5AZp6tZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSk5AZp6tZ .container-fluid {
  padding: 0 22px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-uSk5AZp6tZ .container-fluid {
    padding: 0 16px;
  }
}
.cid-uSk5AZp6tZ .container-fluid .row {
  padding: 0;
}
.cid-uSk5AZp6tZ .container {
  overflow: hidden;
}
.cid-uSk5AZp6tZ .row {
  justify-content: center;
}
.cid-uSk5AZp6tZ .title-wrapper {
  margin-bottom: 80px;
}
.cid-uSk5AZp6tZ .title-wrapper .mbr-section-title {
  padding-top: 22px;
  margin-bottom: 0;
}
.cid-uSk5AZp6tZ .video-block {
  width: 62%;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .cid-uSk5AZp6tZ .video-block {
    width: 80%;
  }
}
@media (max-width: 768px) {
  .cid-uSk5AZp6tZ .video-block {
    width: 100%;
  }
}
.cid-uSk5AZp6tZ .video-block .video-wrapper .app-video-wrapper img {
  height: 450px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uSk5AZp6tZ .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-uSk5AZp6tZ .app-video-wrapper::before {
  color: #495dff;
  text-shadow: none;
}
.cid-uSk5AZp6tZ .mbr-section-title {
  color: #349fc4;
  text-align: center;
}
.cid-tFE2FwJ90q {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tFE2FwJ90q [class^='socicon-']:before,
.cid-tFE2FwJ90q [class*=' socicon-']:before {
  line-height: 44px;
}
.cid-tFE2FwJ90q .social-list {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.cid-tFE2FwJ90q .btn-social,
.cid-tFE2FwJ90q .mbr-section-title {
  color: #57468b;
}
.cid-tFE2FwJ90q .soc-item {
  width: 20px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 10px;
}
.cid-tFE2FwJ90q .soc-item span {
  font-size: 20px;
  color: #ffffff !important;
  transition: all 0.3s;
}
.cid-tFE2FwJ90q .soc-item:hover span {
  color: #7ce0d3 !important;
}
@media (max-width: 992px) {
  .cid-tFE2FwJ90q .align-left,
  .cid-tFE2FwJ90q .align-right {
    text-align: center;
  }
  .cid-tFE2FwJ90q .social-list {
    justify-content: center;
  }
  .cid-tFE2FwJ90q .mb-0 {
    padding-bottom: 1rem;
  }
}
.cid-tFE2FwJ90q .mbr-text {
  color: #349fc4;
}
.cid-uRWsuai55l {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uRWsuai55l .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRWsuai55l .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRWsuai55l .mbr-section-title {
  color: #349fc4;
}
.cid-uRWq66pFWs {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uRWq66pFWs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRWq66pFWs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRWq66pFWs .item-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-uRWq66pFWs .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uRWq66pFWs .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uRWq66pFWs .card {
    margin-bottom: 2rem;
  }
  .cid-uRWq66pFWs .card-wrapper {
    margin-bottom: 2rem;
  }
  .cid-uRWq66pFWs .item-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uUSlNqa1To {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uUSlNqa1To nav.navbar {
  position: fixed;
}
.cid-uUSlNqa1To .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-uUSlNqa1To .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uUSlNqa1To .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uUSlNqa1To .dropdown-item:hover,
.cid-uUSlNqa1To .dropdown-item:focus {
  background: #174495 !important;
  color: white !important;
}
.cid-uUSlNqa1To .dropdown-item:hover span {
  color: white;
}
.cid-uUSlNqa1To .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uUSlNqa1To .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uUSlNqa1To .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uUSlNqa1To .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uUSlNqa1To .nav-link {
  position: relative;
}
.cid-uUSlNqa1To .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uUSlNqa1To .container {
    flex-wrap: nowrap;
  }
}
.cid-uUSlNqa1To .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uUSlNqa1To .dropdown-menu,
.cid-uUSlNqa1To .navbar.opened {
  background: #ffffff !important;
}
.cid-uUSlNqa1To .nav-item:focus,
.cid-uUSlNqa1To .nav-link:focus {
  outline: none;
}
.cid-uUSlNqa1To .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uUSlNqa1To .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uUSlNqa1To .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uUSlNqa1To .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uUSlNqa1To .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uUSlNqa1To .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uUSlNqa1To .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uUSlNqa1To .navbar.opened {
  transition: all 0.3s;
}
.cid-uUSlNqa1To .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uUSlNqa1To .navbar .navbar-logo img {
  width: auto;
}
.cid-uUSlNqa1To .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uUSlNqa1To .navbar.collapsed {
  justify-content: center;
}
.cid-uUSlNqa1To .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uUSlNqa1To .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uUSlNqa1To .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uUSlNqa1To .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uUSlNqa1To .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uUSlNqa1To .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-uUSlNqa1To .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uUSlNqa1To .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uUSlNqa1To .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uUSlNqa1To .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uUSlNqa1To .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uUSlNqa1To .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uUSlNqa1To .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uUSlNqa1To .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-uUSlNqa1To .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uUSlNqa1To .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uUSlNqa1To .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uUSlNqa1To .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uUSlNqa1To .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uUSlNqa1To .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uUSlNqa1To .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uUSlNqa1To .navbar.navbar-short {
  min-height: 60px;
}
.cid-uUSlNqa1To .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uUSlNqa1To .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uUSlNqa1To .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uUSlNqa1To .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uUSlNqa1To .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uUSlNqa1To .dropdown-item.active,
.cid-uUSlNqa1To .dropdown-item:active {
  background-color: transparent;
}
.cid-uUSlNqa1To .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uUSlNqa1To .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uUSlNqa1To .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uUSlNqa1To .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uUSlNqa1To .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uUSlNqa1To .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uUSlNqa1To ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uUSlNqa1To .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uUSlNqa1To button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uUSlNqa1To button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uUSlNqa1To button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uUSlNqa1To button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uUSlNqa1To button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uUSlNqa1To button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uUSlNqa1To nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uUSlNqa1To nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uUSlNqa1To nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uUSlNqa1To nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uUSlNqa1To .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uUSlNqa1To a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uUSlNqa1To .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-uUSlNqa1To .navbar {
    height: 70px;
  }
  .cid-uUSlNqa1To .navbar.opened {
    height: auto;
  }
  .cid-uUSlNqa1To .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uUSlNqxH9F {
  padding-top: 8rem;
  padding-bottom: 7rem;
  background-image: url("../../../assets/images/mbr-1920x1920.webp");
}
.cid-uUSlNqxH9F .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUSlNqxH9F .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uUSlNqxH9F .mbr-section-title {
  color: #232323;
}
.cid-uUSlNqDBnp {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uUSlNqDBnp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUSlNqDBnp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uUSlNqDBnp .row {
  margin: 0 !important;
  row-gap: 30px;
}
.cid-uUSlNqDBnp .item-img {
  display: flex;
  justify-content: flex-start;
  width: 50%;
  padding: 50px !important;
}
.cid-uUSlNqDBnp .item-img img {
  max-width: 580px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-uUSlNqDBnp .item-img {
    width: 100%;
  }
}
.cid-uUSlNqDBnp .item-text {
  width: 50%;
  padding: 40px !important;
}
@media (max-width: 1500px) {
  .cid-uUSlNqDBnp .item-text {
    padding-left: 40px !important;
  }
}
@media (max-width: 1199px) {
  .cid-uUSlNqDBnp .item-text {
    padding-left: 25px !important;
  }
}
@media (max-width: 991px) {
  .cid-uUSlNqDBnp .item-text {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-uUSlNqDBnp .card-title {
  color: #131313;
}
.cid-uUSlNqDBnp .content-box {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
  margin-top: 60px;
}
@media (max-width: 1399px) {
  .cid-uUSlNqDBnp .content-box {
    margin-top: 40px;
  }
}
@media (max-width: 991px) {
  .cid-uUSlNqDBnp .content-box {
    margin-top: 20px;
  }
}
.cid-uUSlNqDBnp .content-item {
  width: 100%;
}
.cid-uUSlNqDBnp .card-subtitle {
  color: #444444;
}
.cid-uUSlNqDBnp .card-subtitle a {
  pointer-events: none;
}
.cid-uUSlNqDBnp .card-text {
  margin-top: 20px;
  color: #353535;
  text-align: justify;
}
@media (max-width: 767px) {
  .cid-uUSlNqDBnp .card-text {
    margin-top: 15px;
  }
}
.cid-uUSlNqDBnp .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 1399px) {
  .cid-uUSlNqDBnp .mbr-section-btn {
    margin-top: 15px;
  }
}
.cid-uUSlNqKDx7 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uUSlNqKDx7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUSlNqKDx7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uUSlNqKDx7 .text-container {
  background-color: #444444;
  border-radius: 100px;
  padding: 16px;
  min-height: 67px;
  margin: 0 20%;
}
@media (max-width: 768px) {
  .cid-uUSlNqKDx7 .text-container {
    margin: 0 5%;
  }
}
.cid-uUSlNqKDx7 .text-container .text-wrapper {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 5px 0;
}
.cid-uUSlNqKDx7 .text-container .text-wrapper .mbr-text {
  margin: 0 16px 0 0;
}
.cid-uUSlNqKDx7 .text-container .text-wrapper .mbr-desc {
  margin: 0;
}
.cid-uUSlNqKDx7 .text-container .text-wrapper .mbr-desc .mbr-iconfont {
  font-size: 20px;
}
.cid-uUSlNqKDx7 .mbr-text {
  color: #e8e8e8;
}
.cid-uUSlNqKDx7 .mbr-desc,
.cid-uUSlNqKDx7 .mbr-iconfont {
  color: #e8e8e8;
}
.cid-uUSlNqKDx7 .mbr-text,
.cid-uUSlNqKDx7 .text-container {
  text-align: center;
  color: #ffffff;
}
.cid-uUSlNtDxqP {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-uUSlNtDxqP [class^='socicon-']:before,
.cid-uUSlNtDxqP [class*=' socicon-']:before {
  line-height: 44px;
}
.cid-uUSlNtDxqP .social-list {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.cid-uUSlNtDxqP .btn-social,
.cid-uUSlNtDxqP .mbr-section-title {
  color: #57468b;
}
.cid-uUSlNtDxqP .soc-item {
  width: 20px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 10px;
}
.cid-uUSlNtDxqP .soc-item span {
  font-size: 20px;
  color: #ffffff !important;
  transition: all 0.3s;
}
.cid-uUSlNtDxqP .soc-item:hover span {
  color: #7ce0d3 !important;
}
@media (max-width: 992px) {
  .cid-uUSlNtDxqP .align-left,
  .cid-uUSlNtDxqP .align-right {
    text-align: center;
  }
  .cid-uUSlNtDxqP .social-list {
    justify-content: center;
  }
  .cid-uUSlNtDxqP .mb-0 {
    padding-bottom: 1rem;
  }
}
.cid-uUSlNtDxqP .mbr-text {
  color: #349fc4;
}
