body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Rubik', sans-serif;
  font-size: 5.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 7rem;
}
.display-2 {
  font-family: 'Rubik', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Comfortaa', display;
  font-size: 0.8rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1rem;
}
.display-5 {
  font-family: 'Rubik', sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 1.75rem;
}
.display-7 {
  font-family: 'Comfortaa', display;
  font-size: 1rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.25rem;
}
/* ---- 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: 4.48rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.92rem;
    font-size: calc( 2.61rem + (5.6 - 2.61) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.61rem + (5.6 - 2.61) * ((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.64rem;
    font-size: calc( 0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #6592e6 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #6592e6 !important;
}
.bg-warning {
  background-color: #ffcf00 !important;
}
.bg-danger {
  background-color: #142061 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #6592e6 !important;
  border-color: #6592e6 !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: #2260d2 !important;
  border-color: #2260d2 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !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: #ffcf00 !important;
  border-color: #ffcf00 !important;
  color: #000000 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #a88900 !important;
  border-color: #a88900 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #000000 !important;
  background-color: #a88900 !important;
  border-color: #a88900 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #142061 !important;
  border-color: #142061 !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: #050819 !important;
  border-color: #050819 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #050819 !important;
  border-color: #050819 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #6592e6;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #2260d2 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #6592e6;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #2260d2 !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: #6592e6 !important;
  border-color: #6592e6 !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: #ffcf00;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #a88900 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #000000 !important;
  background-color: #ffcf00 !important;
  border-color: #ffcf00 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #142061;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #050819 !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: #142061 !important;
  border-color: #142061 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #6592e6 !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #6592e6 !important;
}
.text-warning {
  color: #ffcf00 !important;
}
.text-danger {
  color: #142061 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #205ac5 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #205ac5 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #997c00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #03040c !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #6592e6;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #6592e6;
}
.alert-warning {
  background-color: #ffcf00;
}
.alert-danger {
  background-color: #142061;
}
.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: #6592e6;
  border-color: #6592e6;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #6592e6;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #fff5cc;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #2a43cb;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Comfortaa', display;
  font-size: 0.8rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #6592e6 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Comfortaa', display;
  font-size: 0.8rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1rem;
}
blockquote {
  border-color: #6592e6;
}
/* 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: #6592e6;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #6592e6;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #6592e6;
  border-bottom-color: #6592e6;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #6592e6 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ff6666 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%236592e6' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
*:focus-visible {
  outline: red solid 2px !important;
  outline-offset: 2px !important;
  transition: outline 0.2s ease-in-out;
}
.cid-uYULRbCDSo {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uYULRbCDSo nav.navbar {
  position: fixed;
}
.cid-uYULRbCDSo .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-uYULRbCDSo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uYULRbCDSo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uYULRbCDSo .dropdown-item:hover,
.cid-uYULRbCDSo .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uYULRbCDSo .dropdown-item:hover span {
  color: white;
}
.cid-uYULRbCDSo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uYULRbCDSo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uYULRbCDSo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uYULRbCDSo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uYULRbCDSo .nav-link {
  position: relative;
}
.cid-uYULRbCDSo .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uYULRbCDSo .container {
    flex-wrap: wrap;
  }
}
.cid-uYULRbCDSo .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uYULRbCDSo .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uYULRbCDSo .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uYULRbCDSo .dropdown-menu,
.cid-uYULRbCDSo .navbar.opened {
  background: #142061 !important;
}
.cid-uYULRbCDSo .nav-item:focus,
.cid-uYULRbCDSo .nav-link:focus {
  outline: none;
}
.cid-uYULRbCDSo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uYULRbCDSo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uYULRbCDSo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uYULRbCDSo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uYULRbCDSo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uYULRbCDSo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uYULRbCDSo .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: #142061;
}
.cid-uYULRbCDSo .navbar.opened {
  transition: all 0.3s;
}
.cid-uYULRbCDSo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uYULRbCDSo .navbar .navbar-logo img {
  width: auto;
}
.cid-uYULRbCDSo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uYULRbCDSo .navbar.collapsed {
  justify-content: center;
}
.cid-uYULRbCDSo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uYULRbCDSo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uYULRbCDSo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uYULRbCDSo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uYULRbCDSo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uYULRbCDSo .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-uYULRbCDSo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uYULRbCDSo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uYULRbCDSo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uYULRbCDSo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uYULRbCDSo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uYULRbCDSo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uYULRbCDSo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uYULRbCDSo .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-uYULRbCDSo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uYULRbCDSo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uYULRbCDSo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uYULRbCDSo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uYULRbCDSo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uYULRbCDSo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uYULRbCDSo .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uYULRbCDSo .navbar.navbar-short {
  min-height: 60px;
}
.cid-uYULRbCDSo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uYULRbCDSo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uYULRbCDSo .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-uYULRbCDSo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uYULRbCDSo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uYULRbCDSo .dropdown-item.active,
.cid-uYULRbCDSo .dropdown-item:active {
  background-color: transparent;
}
.cid-uYULRbCDSo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uYULRbCDSo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uYULRbCDSo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uYULRbCDSo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #142061;
}
.cid-uYULRbCDSo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uYULRbCDSo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uYULRbCDSo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uYULRbCDSo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uYULRbCDSo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uYULRbCDSo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uYULRbCDSo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uYULRbCDSo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uYULRbCDSo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uYULRbCDSo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uYULRbCDSo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uYULRbCDSo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uYULRbCDSo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uYULRbCDSo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uYULRbCDSo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uYULRbCDSo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uYULRbCDSo .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-uYULRbCDSo .navbar {
    height: 70px;
  }
  .cid-uYULRbCDSo .navbar.opened {
    height: auto;
  }
  .cid-uYULRbCDSo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uYQKvVZ77E {
  background-image: url("../../../assets/images/untitled-design-4.png");
}
.cid-uYQKvVZ77E .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYQKvVZ77E .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYQKvVZ77E .mbr-text,
.cid-uYQKvVZ77E .mbr-section-btn {
  color: #fafafa;
}
.cid-uYQKvVZ77E .mbr-section-title {
  color: #ffffff;
}
.cid-uYQL1ZzX1r {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #f7f7f7;
}
.cid-uYQL1ZzX1r img,
.cid-uYQL1ZzX1r .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uYQL1ZzX1r .item:focus,
.cid-uYQL1ZzX1r span:focus {
  outline: none;
}
.cid-uYQL1ZzX1r .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uYQL1ZzX1r .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uYQL1ZzX1r .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uYQL1ZzX1r .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uYQL1ZzX1r .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uYQL1ZzX1r .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uYQL1ZzX1r .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uYQL1ZzX1r .mbr-section-title {
  color: #142061;
}
.cid-uYQL1ZzX1r .mbr-text,
.cid-uYQL1ZzX1r .mbr-section-btn {
  text-align: left;
}
.cid-uYQL1ZzX1r .item-title {
  text-align: left;
  color: #142061;
}
.cid-uYQL1ZzX1r .item-subtitle {
  text-align: left;
}
.cid-uYQL1ZzX1r .mbr-section-subtitle {
  color: #6592e6;
}
.cid-uZ5TYHJ1AR {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #f7f7f7;
}
.cid-uZ5TYHJ1AR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ5TYHJ1AR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZ5TYHJ1AR .item {
  padding-bottom: 2rem;
}
.cid-uZ5TYHJ1AR .item-wrapper {
  height: 300px;
  position: relative;
}
.cid-uZ5TYHJ1AR .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uZ5TYHJ1AR .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-uZ5TYHJ1AR .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uZ5TYHJ1AR .carousel-control,
.cid-uZ5TYHJ1AR .close {
  background: #1b1b1b;
}
.cid-uZ5TYHJ1AR .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uZ5TYHJ1AR .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uZ5TYHJ1AR .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uZ5TYHJ1AR .carousel-control-next span {
  margin-left: 5px;
}
.cid-uZ5TYHJ1AR .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-uZ5TYHJ1AR .close::before {
  content: '\e91a';
}
.cid-uZ5TYHJ1AR .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uZ5TYHJ1AR .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-uZ5TYHJ1AR .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uZ5TYHJ1AR .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uZ5TYHJ1AR .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uZ5TYHJ1AR .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uZ5TYHJ1AR .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-uZ5TYHJ1AR .carousel-indicators li.active,
.cid-uZ5TYHJ1AR .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uZ5TYHJ1AR .carousel-indicators li::after,
.cid-uZ5TYHJ1AR .carousel-indicators li::before {
  content: none;
}
.cid-uZ5TYHJ1AR .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uZ5TYHJ1AR .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uZ5TYHJ1AR .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uZ5TYHJ1AR .carousel-indicators {
    display: none;
  }
}
.cid-uZ5TYHJ1AR .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uZ5TYHJ1AR .carousel-inner > .active {
  display: block;
}
.cid-uZ5TYHJ1AR .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uZ5TYHJ1AR .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uZ5TYHJ1AR .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uZ5TYHJ1AR .carousel-control,
  .cid-uZ5TYHJ1AR .carousel-indicators,
  .cid-uZ5TYHJ1AR .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uZ5TYHJ1AR .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uZ5TYHJ1AR .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uZ5TYHJ1AR .carousel-indicators .active,
.cid-uZ5TYHJ1AR .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uZ5TYHJ1AR .carousel-indicators .active {
  background: #fff;
}
.cid-uZ5TYHJ1AR .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uZ5TYHJ1AR .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uZ5TYHJ1AR .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uZ5TYHJ1AR .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uZ5TYHJ1AR .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uZ5TYHJ1AR .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uZ5TYHJ1AR .carousel {
  width: 100%;
}
.cid-uZ5TYHJ1AR .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uZ5TYHJ1AR .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uZ5TYHJ1AR .modal.fade .modal-dialog,
.cid-uZ5TYHJ1AR .modal.in .modal-dialog {
  transform: none;
}
.cid-uZ5TYHJ1AR .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uZ5TYHJ1AR H6 {
  text-align: center;
}
.cid-uZ5TYHJ1AR H3 {
  color: #142061;
}
.cid-uZ5TYHJ1AR H4 {
  color: #6592e6;
}
.cid-uZ5TZF8YfO {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f7f7f7;
}
.cid-uZ5TZF8YfO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ5TZF8YfO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZ5TZF8YfO .item {
  padding-bottom: 2rem;
}
.cid-uZ5TZF8YfO .item-wrapper {
  height: 300px;
  position: relative;
}
.cid-uZ5TZF8YfO .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uZ5TZF8YfO .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-uZ5TZF8YfO .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uZ5TZF8YfO .carousel-control,
.cid-uZ5TZF8YfO .close {
  background: #1b1b1b;
}
.cid-uZ5TZF8YfO .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uZ5TZF8YfO .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uZ5TZF8YfO .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uZ5TZF8YfO .carousel-control-next span {
  margin-left: 5px;
}
.cid-uZ5TZF8YfO .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-uZ5TZF8YfO .close::before {
  content: '\e91a';
}
.cid-uZ5TZF8YfO .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uZ5TZF8YfO .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-uZ5TZF8YfO .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uZ5TZF8YfO .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uZ5TZF8YfO .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uZ5TZF8YfO .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uZ5TZF8YfO .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-uZ5TZF8YfO .carousel-indicators li.active,
.cid-uZ5TZF8YfO .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uZ5TZF8YfO .carousel-indicators li::after,
.cid-uZ5TZF8YfO .carousel-indicators li::before {
  content: none;
}
.cid-uZ5TZF8YfO .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uZ5TZF8YfO .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uZ5TZF8YfO .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uZ5TZF8YfO .carousel-indicators {
    display: none;
  }
}
.cid-uZ5TZF8YfO .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uZ5TZF8YfO .carousel-inner > .active {
  display: block;
}
.cid-uZ5TZF8YfO .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uZ5TZF8YfO .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uZ5TZF8YfO .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uZ5TZF8YfO .carousel-control,
  .cid-uZ5TZF8YfO .carousel-indicators,
  .cid-uZ5TZF8YfO .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uZ5TZF8YfO .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uZ5TZF8YfO .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uZ5TZF8YfO .carousel-indicators .active,
.cid-uZ5TZF8YfO .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uZ5TZF8YfO .carousel-indicators .active {
  background: #fff;
}
.cid-uZ5TZF8YfO .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uZ5TZF8YfO .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uZ5TZF8YfO .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uZ5TZF8YfO .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uZ5TZF8YfO .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uZ5TZF8YfO .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uZ5TZF8YfO .carousel {
  width: 100%;
}
.cid-uZ5TZF8YfO .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uZ5TZF8YfO .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uZ5TZF8YfO .modal.fade .modal-dialog,
.cid-uZ5TZF8YfO .modal.in .modal-dialog {
  transform: none;
}
.cid-uZ5TZF8YfO .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uZ5TZF8YfO H6 {
  text-align: center;
}
.cid-uZ5U0rHfvX {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f7f7f7;
}
.cid-uZ5U0rHfvX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ5U0rHfvX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZ5U0rHfvX .item {
  padding-bottom: 2rem;
}
.cid-uZ5U0rHfvX .item-wrapper {
  height: 300px;
  position: relative;
}
.cid-uZ5U0rHfvX .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uZ5U0rHfvX .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-uZ5U0rHfvX .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uZ5U0rHfvX .carousel-control,
.cid-uZ5U0rHfvX .close {
  background: #1b1b1b;
}
.cid-uZ5U0rHfvX .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uZ5U0rHfvX .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uZ5U0rHfvX .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uZ5U0rHfvX .carousel-control-next span {
  margin-left: 5px;
}
.cid-uZ5U0rHfvX .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-uZ5U0rHfvX .close::before {
  content: '\e91a';
}
.cid-uZ5U0rHfvX .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uZ5U0rHfvX .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-uZ5U0rHfvX .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uZ5U0rHfvX .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uZ5U0rHfvX .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uZ5U0rHfvX .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uZ5U0rHfvX .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-uZ5U0rHfvX .carousel-indicators li.active,
.cid-uZ5U0rHfvX .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uZ5U0rHfvX .carousel-indicators li::after,
.cid-uZ5U0rHfvX .carousel-indicators li::before {
  content: none;
}
.cid-uZ5U0rHfvX .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uZ5U0rHfvX .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uZ5U0rHfvX .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uZ5U0rHfvX .carousel-indicators {
    display: none;
  }
}
.cid-uZ5U0rHfvX .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uZ5U0rHfvX .carousel-inner > .active {
  display: block;
}
.cid-uZ5U0rHfvX .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uZ5U0rHfvX .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uZ5U0rHfvX .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uZ5U0rHfvX .carousel-control,
  .cid-uZ5U0rHfvX .carousel-indicators,
  .cid-uZ5U0rHfvX .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uZ5U0rHfvX .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uZ5U0rHfvX .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uZ5U0rHfvX .carousel-indicators .active,
.cid-uZ5U0rHfvX .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uZ5U0rHfvX .carousel-indicators .active {
  background: #fff;
}
.cid-uZ5U0rHfvX .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uZ5U0rHfvX .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uZ5U0rHfvX .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uZ5U0rHfvX .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uZ5U0rHfvX .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uZ5U0rHfvX .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uZ5U0rHfvX .carousel {
  width: 100%;
}
.cid-uZ5U0rHfvX .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uZ5U0rHfvX .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uZ5U0rHfvX .modal.fade .modal-dialog,
.cid-uZ5U0rHfvX .modal.in .modal-dialog {
  transform: none;
}
.cid-uZ5U0rHfvX .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uZ5U0rHfvX H6 {
  text-align: center;
  color: #142061;
}
.cid-uYRoHUR9VL {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #f7f7f7;
}
.cid-uYRoHUR9VL .line {
  background-color: #4479d9;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uYRoHUR9VL .mbr-text {
  color: #142061;
}
.cid-uYRf1ZhRV7 {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/untitled-design-6.png");
}
.cid-uYRf1ZhRV7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYRf1ZhRV7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYRf1ZhRV7 .mbr-iconfont {
  display: block;
  font-size: 4rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-uYRf1ZhRV7 .item-wrapper {
  min-height: 220px;
  transition: all 0.3s;
  border-radius: 4px;
  padding: 1rem;
  background: #f7f7f7;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uYRf1ZhRV7 .card-title,
.cid-uYRf1ZhRV7 .card-box {
  color: #142061;
  text-align: center;
}
.cid-uZ5TVsqkQE {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #f7f7f7;
}
.cid-uZ5TVsqkQE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ5TVsqkQE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZ5TVsqkQE .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-uZ5TVsqkQE .currentcost {
  color: #232323;
}
.cid-uZ5TVsqkQE .card-wrapper {
  border-radius: 4px;
  background: #f7f7f7;
}
@media (min-width: 992px) {
  .cid-uZ5TVsqkQE .text-box {
    padding: 2rem;
    padding-right: 4rem;
    padding-left: 4rem;
    padding-right: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uZ5TVsqkQE .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uZ5TVsqkQE .text-box {
    padding: 1rem;
  }
}
.cid-uZ5TVsqkQE .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uZ5TVsqkQE H5 {
  color: #142061;
}
.cid-uZ5TVsqkQE .mbr-text,
.cid-uZ5TVsqkQE .cost,
.cid-uZ5TVsqkQE .mbr-section-btn {
  color: #142061;
}
.cid-uZ5TW0T3wE {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #f7f7f7;
}
.cid-uZ5TW0T3wE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ5TW0T3wE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZ5TW0T3wE .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #6592e6;
  margin-left: 1rem;
}
.cid-uZ5TW0T3wE .panel-group {
  border: none;
}
.cid-uZ5TW0T3wE .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uZ5TW0T3wE .panel-body,
.cid-uZ5TW0T3wE .card-header {
  padding: 1rem 0;
}
.cid-uZ5TW0T3wE .panel-title-edit {
  color: #142061;
}
.cid-uZ5TW0T3wE .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uZ5TW0T3wE H3 {
  color: #142061;
}
.cid-uZ5TW0T3wE .panel-text {
  color: #232323;
}
.cid-uZ5TWT00xy {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f7f7f7;
}
.cid-uZ5TWT00xy .mbr-text,
.cid-uZ5TWT00xy .mbr-section-btn {
  color: #232323;
}
@media (max-width: 991px) {
  .cid-uZ5TWT00xy .mbr-text,
  .cid-uZ5TWT00xy .mbr-section-title {
    text-align: center;
  }
}
.cid-uZ5TWT00xy a.btn {
  height: 100%;
  margin: 0;
}
.cid-uZ5TWT00xy .mbr-section-btn {
  display: flex;
  margin-bottom: 1.2rem;
  width: 100%;
}
.cid-uZ5TWT00xy .mbr-section-btn .btn {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uZ5TWT00xy .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-uZ5TWT00xy .content-wrapper {
    flex-direction: column-reverse;
  }
}
.cid-uZ5TWT00xy .justify-content-center {
  align-items: center;
}
.cid-uZ5TWT00xy .mbr-section-title {
  color: #142061;
}
.cid-uYR3y6yAjP {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #142061;
}
.cid-uYR3y6yAjP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYR3y6yAjP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYR3y6yAjP .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uYR3y6yAjP .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uYR3y6yAjP .row {
    text-align: center;
  }
  .cid-uYR3y6yAjP .row > div {
    margin: auto;
  }
  .cid-uYR3y6yAjP .social-row {
    justify-content: center;
  }
}
.cid-uYR3y6yAjP .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uYR3y6yAjP .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uYR3y6yAjP .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uYR3y6yAjP .list {
    margin-bottom: 0rem;
  }
}
.cid-uYR3y6yAjP .mbr-text {
  color: #bbbbbb;
}
.cid-uYR3y6yAjP .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uYR3y6yAjP .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uYR3y6yAjP div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uYULRbCDSo {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uYULRbCDSo nav.navbar {
  position: fixed;
}
.cid-uYULRbCDSo .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-uYULRbCDSo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uYULRbCDSo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uYULRbCDSo .dropdown-item:hover,
.cid-uYULRbCDSo .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uYULRbCDSo .dropdown-item:hover span {
  color: white;
}
.cid-uYULRbCDSo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uYULRbCDSo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uYULRbCDSo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uYULRbCDSo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uYULRbCDSo .nav-link {
  position: relative;
}
.cid-uYULRbCDSo .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uYULRbCDSo .container {
    flex-wrap: wrap;
  }
}
.cid-uYULRbCDSo .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uYULRbCDSo .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uYULRbCDSo .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uYULRbCDSo .dropdown-menu,
.cid-uYULRbCDSo .navbar.opened {
  background: #142061 !important;
}
.cid-uYULRbCDSo .nav-item:focus,
.cid-uYULRbCDSo .nav-link:focus {
  outline: none;
}
.cid-uYULRbCDSo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uYULRbCDSo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uYULRbCDSo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uYULRbCDSo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uYULRbCDSo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uYULRbCDSo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uYULRbCDSo .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: #142061;
}
.cid-uYULRbCDSo .navbar.opened {
  transition: all 0.3s;
}
.cid-uYULRbCDSo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uYULRbCDSo .navbar .navbar-logo img {
  width: auto;
}
.cid-uYULRbCDSo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uYULRbCDSo .navbar.collapsed {
  justify-content: center;
}
.cid-uYULRbCDSo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uYULRbCDSo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uYULRbCDSo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uYULRbCDSo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uYULRbCDSo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uYULRbCDSo .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-uYULRbCDSo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uYULRbCDSo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uYULRbCDSo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uYULRbCDSo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uYULRbCDSo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uYULRbCDSo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uYULRbCDSo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uYULRbCDSo .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-uYULRbCDSo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uYULRbCDSo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uYULRbCDSo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uYULRbCDSo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uYULRbCDSo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uYULRbCDSo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uYULRbCDSo .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uYULRbCDSo .navbar.navbar-short {
  min-height: 60px;
}
.cid-uYULRbCDSo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uYULRbCDSo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uYULRbCDSo .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-uYULRbCDSo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uYULRbCDSo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uYULRbCDSo .dropdown-item.active,
.cid-uYULRbCDSo .dropdown-item:active {
  background-color: transparent;
}
.cid-uYULRbCDSo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uYULRbCDSo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uYULRbCDSo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uYULRbCDSo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #142061;
}
.cid-uYULRbCDSo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uYULRbCDSo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uYULRbCDSo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uYULRbCDSo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uYULRbCDSo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uYULRbCDSo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uYULRbCDSo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uYULRbCDSo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uYULRbCDSo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uYULRbCDSo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uYULRbCDSo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uYULRbCDSo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uYULRbCDSo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uYULRbCDSo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uYULRbCDSo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uYULRbCDSo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uYULRbCDSo .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-uYULRbCDSo .navbar {
    height: 70px;
  }
  .cid-uYULRbCDSo .navbar.opened {
    height: auto;
  }
  .cid-uYULRbCDSo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uYULKEylan {
  background-image: url("../../../assets/images/untitled-design-4.png");
}
.cid-uYULKEylan .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYULKEylan .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYULKEylan .mbr-text,
.cid-uYULKEylan .mbr-section-btn {
  color: #fafafa;
}
.cid-uYULKEylan .mbr-section-title {
  color: #ffffff;
}
.cid-uYURk5OE7h {
  background-image: url("../../../assets/images/untitled20design2013-1920x1080.png");
}
.cid-uYURk5OE7h .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYURk5OE7h .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYURk5OE7h .mbr-section-title {
  color: #f7f7f7;
}
.cid-uYURk5OE7h .mbr-section-subtitle {
  color: #f7f7f7;
}
.cid-uYVTHkJJna {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #f7f7f7;
}
.cid-uYVTHkJJna .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYVTHkJJna .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYVTHkJJna .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYVTHkJJna .row {
  flex-direction: row-reverse;
}
.cid-uYVTHkJJna img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uYVTHkJJna .text-wrapper {
    padding: 2rem;
  }
}
.cid-uYVTHkJJna .mbr-section-title {
  color: #142061;
}
.cid-uYVTGFQLYU {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #f7f7f7;
}
.cid-uYVTGFQLYU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYVTGFQLYU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYVTGFQLYU .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYVTGFQLYU img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uYVTGFQLYU .text-wrapper {
    padding: 2rem;
  }
}
.cid-uYVTGFQLYU .mbr-section-title {
  color: #142061;
}
.cid-uZ0DMN10AC {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #f7f7f7;
}
.cid-uZ0DMN10AC img,
.cid-uZ0DMN10AC .item-img {
  width: 100%;
}
.cid-uZ0DMN10AC .item:focus,
.cid-uZ0DMN10AC span:focus {
  outline: none;
}
.cid-uZ0DMN10AC .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uZ0DMN10AC .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uZ0DMN10AC .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uZ0DMN10AC .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uZ0DMN10AC .item-wrapper {
  background: transparent;
}
.cid-uZ0DMN10AC .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uZ0DMN10AC .mbr-section-title {
  color: #142061;
}
.cid-uZ0DMN10AC .mbr-text,
.cid-uZ0DMN10AC .mbr-section-btn {
  text-align: left;
}
.cid-uZ0DMN10AC .item-title {
  text-align: left;
  color: #142061;
}
.cid-uZ0DMN10AC .item-subtitle {
  text-align: center;
}
.cid-uYULKFrMXm {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #142061;
}
.cid-uYULKFrMXm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYULKFrMXm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYULKFrMXm .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uYULKFrMXm .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uYULKFrMXm .row {
    text-align: center;
  }
  .cid-uYULKFrMXm .row > div {
    margin: auto;
  }
  .cid-uYULKFrMXm .social-row {
    justify-content: center;
  }
}
.cid-uYULKFrMXm .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uYULKFrMXm .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uYULKFrMXm .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uYULKFrMXm .list {
    margin-bottom: 0rem;
  }
}
.cid-uYULKFrMXm .mbr-text {
  color: #bbbbbb;
}
.cid-uYULKFrMXm .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uYULKFrMXm .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uYULKFrMXm div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uYUWsu2G5P {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uYUWsu2G5P nav.navbar {
  position: fixed;
}
.cid-uYUWsu2G5P .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-uYUWsu2G5P .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uYUWsu2G5P .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uYUWsu2G5P .dropdown-item:hover,
.cid-uYUWsu2G5P .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uYUWsu2G5P .dropdown-item:hover span {
  color: white;
}
.cid-uYUWsu2G5P .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uYUWsu2G5P .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uYUWsu2G5P .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uYUWsu2G5P .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uYUWsu2G5P .nav-link {
  position: relative;
}
.cid-uYUWsu2G5P .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uYUWsu2G5P .container {
    flex-wrap: wrap;
  }
}
.cid-uYUWsu2G5P .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uYUWsu2G5P .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uYUWsu2G5P .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uYUWsu2G5P .dropdown-menu,
.cid-uYUWsu2G5P .navbar.opened {
  background: #142061 !important;
}
.cid-uYUWsu2G5P .nav-item:focus,
.cid-uYUWsu2G5P .nav-link:focus {
  outline: none;
}
.cid-uYUWsu2G5P .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uYUWsu2G5P .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uYUWsu2G5P .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uYUWsu2G5P .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uYUWsu2G5P .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uYUWsu2G5P .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uYUWsu2G5P .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: #142061;
}
.cid-uYUWsu2G5P .navbar.opened {
  transition: all 0.3s;
}
.cid-uYUWsu2G5P .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uYUWsu2G5P .navbar .navbar-logo img {
  width: auto;
}
.cid-uYUWsu2G5P .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uYUWsu2G5P .navbar.collapsed {
  justify-content: center;
}
.cid-uYUWsu2G5P .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uYUWsu2G5P .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uYUWsu2G5P .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uYUWsu2G5P .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uYUWsu2G5P .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uYUWsu2G5P .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-uYUWsu2G5P .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uYUWsu2G5P .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uYUWsu2G5P .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uYUWsu2G5P .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uYUWsu2G5P .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uYUWsu2G5P .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uYUWsu2G5P .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uYUWsu2G5P .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-uYUWsu2G5P .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uYUWsu2G5P .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uYUWsu2G5P .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uYUWsu2G5P .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uYUWsu2G5P .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uYUWsu2G5P .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uYUWsu2G5P .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uYUWsu2G5P .navbar.navbar-short {
  min-height: 60px;
}
.cid-uYUWsu2G5P .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uYUWsu2G5P .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uYUWsu2G5P .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-uYUWsu2G5P .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uYUWsu2G5P .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uYUWsu2G5P .dropdown-item.active,
.cid-uYUWsu2G5P .dropdown-item:active {
  background-color: transparent;
}
.cid-uYUWsu2G5P .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uYUWsu2G5P .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uYUWsu2G5P .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uYUWsu2G5P .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #142061;
}
.cid-uYUWsu2G5P .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uYUWsu2G5P .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uYUWsu2G5P ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uYUWsu2G5P .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uYUWsu2G5P button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uYUWsu2G5P button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uYUWsu2G5P button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uYUWsu2G5P button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uYUWsu2G5P button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uYUWsu2G5P button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uYUWsu2G5P nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uYUWsu2G5P nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uYUWsu2G5P nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uYUWsu2G5P nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uYUWsu2G5P .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uYUWsu2G5P a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uYUWsu2G5P .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-uYUWsu2G5P .navbar {
    height: 70px;
  }
  .cid-uYUWsu2G5P .navbar.opened {
    height: auto;
  }
  .cid-uYUWsu2G5P .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uYUWsujCBP {
  background-image: url("../../../assets/images/untitled-design-4.png");
}
.cid-uYUWsujCBP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYUWsujCBP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYUWsujCBP .mbr-text,
.cid-uYUWsujCBP .mbr-section-btn {
  color: #fafafa;
}
.cid-uYUWsujCBP .mbr-section-title {
  color: #ffffff;
}
.cid-uZ1mmGqsMY {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #f7f7f7;
}
.cid-uZ1mmGqsMY blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #ffffff;
}
.cid-uZ1mmGqsMY .mbr-section-title {
  color: #142061;
}
.cid-uZ1ok2ws99 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f7f7f7;
}
.cid-uZ1ok2ws99 blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #ffffff;
}
.cid-uZ1ok2ws99 .mbr-section-title {
  color: #142061;
}
.cid-uZ1mU3ikZ8 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f7f7f7;
}
.cid-uZ1mU3ikZ8 blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #ffffff;
}
.cid-uZ1mU3ikZ8 .mbr-section-title {
  color: #142061;
}
.cid-uZ1okrBLpS {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f7f7f7;
}
.cid-uZ1okrBLpS blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #ffffff;
}
.cid-uZ1okrBLpS .mbr-section-title {
  color: #142061;
}
.cid-uZ1mUstzbX {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f7f7f7;
}
.cid-uZ1mUstzbX blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #ffffff;
}
.cid-uZ1mUstzbX .mbr-section-title {
  color: #142061;
}
.cid-uZ1ojudiT2 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f7f7f7;
}
.cid-uZ1ojudiT2 blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #ffffff;
}
.cid-uZ1ojudiT2 .mbr-section-title {
  color: #142061;
}
.cid-uZ1mTy7SH1 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f7f7f7;
}
.cid-uZ1mTy7SH1 blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #ffffff;
}
.cid-uZ1mTy7SH1 .mbr-section-title {
  color: #142061;
}
.cid-uZ1mUT2f6q {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f7f7f7;
}
.cid-uZ1mUT2f6q blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #ffffff;
}
.cid-uZ1mUT2f6q .mbr-section-title {
  color: #142061;
}
.cid-uZ1okRhm36 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f7f7f7;
}
.cid-uZ1okRhm36 blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #ffffff;
}
.cid-uZ1okRhm36 .mbr-section-title {
  color: #142061;
}
.cid-uYUWsvfrho {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #142061;
}
.cid-uYUWsvfrho .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYUWsvfrho .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYUWsvfrho .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uYUWsvfrho .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uYUWsvfrho .row {
    text-align: center;
  }
  .cid-uYUWsvfrho .row > div {
    margin: auto;
  }
  .cid-uYUWsvfrho .social-row {
    justify-content: center;
  }
}
.cid-uYUWsvfrho .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uYUWsvfrho .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uYUWsvfrho .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uYUWsvfrho .list {
    margin-bottom: 0rem;
  }
}
.cid-uYUWsvfrho .mbr-text {
  color: #bbbbbb;
}
.cid-uYUWsvfrho .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uYUWsvfrho .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uYUWsvfrho div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uZ1dA9zBp4 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uZ1dA9zBp4 nav.navbar {
  position: fixed;
}
.cid-uZ1dA9zBp4 .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-uZ1dA9zBp4 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uZ1dA9zBp4 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uZ1dA9zBp4 .dropdown-item:hover,
.cid-uZ1dA9zBp4 .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uZ1dA9zBp4 .dropdown-item:hover span {
  color: white;
}
.cid-uZ1dA9zBp4 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uZ1dA9zBp4 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uZ1dA9zBp4 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uZ1dA9zBp4 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uZ1dA9zBp4 .nav-link {
  position: relative;
}
.cid-uZ1dA9zBp4 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uZ1dA9zBp4 .container {
    flex-wrap: wrap;
  }
}
.cid-uZ1dA9zBp4 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uZ1dA9zBp4 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uZ1dA9zBp4 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uZ1dA9zBp4 .dropdown-menu,
.cid-uZ1dA9zBp4 .navbar.opened {
  background: #142061 !important;
}
.cid-uZ1dA9zBp4 .nav-item:focus,
.cid-uZ1dA9zBp4 .nav-link:focus {
  outline: none;
}
.cid-uZ1dA9zBp4 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uZ1dA9zBp4 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uZ1dA9zBp4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uZ1dA9zBp4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uZ1dA9zBp4 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uZ1dA9zBp4 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uZ1dA9zBp4 .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: #142061;
}
.cid-uZ1dA9zBp4 .navbar.opened {
  transition: all 0.3s;
}
.cid-uZ1dA9zBp4 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uZ1dA9zBp4 .navbar .navbar-logo img {
  width: auto;
}
.cid-uZ1dA9zBp4 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uZ1dA9zBp4 .navbar.collapsed {
  justify-content: center;
}
.cid-uZ1dA9zBp4 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uZ1dA9zBp4 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uZ1dA9zBp4 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uZ1dA9zBp4 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uZ1dA9zBp4 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uZ1dA9zBp4 .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-uZ1dA9zBp4 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uZ1dA9zBp4 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uZ1dA9zBp4 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uZ1dA9zBp4 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uZ1dA9zBp4 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uZ1dA9zBp4 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uZ1dA9zBp4 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uZ1dA9zBp4 .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-uZ1dA9zBp4 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uZ1dA9zBp4 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uZ1dA9zBp4 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uZ1dA9zBp4 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uZ1dA9zBp4 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uZ1dA9zBp4 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uZ1dA9zBp4 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uZ1dA9zBp4 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uZ1dA9zBp4 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uZ1dA9zBp4 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uZ1dA9zBp4 .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-uZ1dA9zBp4 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uZ1dA9zBp4 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uZ1dA9zBp4 .dropdown-item.active,
.cid-uZ1dA9zBp4 .dropdown-item:active {
  background-color: transparent;
}
.cid-uZ1dA9zBp4 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uZ1dA9zBp4 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uZ1dA9zBp4 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uZ1dA9zBp4 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #142061;
}
.cid-uZ1dA9zBp4 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uZ1dA9zBp4 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uZ1dA9zBp4 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uZ1dA9zBp4 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uZ1dA9zBp4 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uZ1dA9zBp4 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uZ1dA9zBp4 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uZ1dA9zBp4 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uZ1dA9zBp4 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uZ1dA9zBp4 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uZ1dA9zBp4 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uZ1dA9zBp4 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uZ1dA9zBp4 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uZ1dA9zBp4 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uZ1dA9zBp4 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uZ1dA9zBp4 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uZ1dA9zBp4 .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-uZ1dA9zBp4 .navbar {
    height: 70px;
  }
  .cid-uZ1dA9zBp4 .navbar.opened {
    height: auto;
  }
  .cid-uZ1dA9zBp4 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uZ1dA9LkvD {
  background-image: url("../../../assets/images/untitled-design-4.png");
}
.cid-uZ1dA9LkvD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ1dA9LkvD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZ1dA9LkvD .mbr-text,
.cid-uZ1dA9LkvD .mbr-section-btn {
  color: #fafafa;
}
.cid-uZ1dA9LkvD .mbr-section-title {
  color: #ffffff;
}
.cid-uZ1dA9VUSb {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #f7f7f7;
}
.cid-uZ1dA9VUSb img,
.cid-uZ1dA9VUSb .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uZ1dA9VUSb .item:focus,
.cid-uZ1dA9VUSb span:focus {
  outline: none;
}
.cid-uZ1dA9VUSb .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uZ1dA9VUSb .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uZ1dA9VUSb .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uZ1dA9VUSb .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uZ1dA9VUSb .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uZ1dA9VUSb .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uZ1dA9VUSb .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uZ1dA9VUSb .mbr-section-title {
  color: #142061;
}
.cid-uZ1dA9VUSb .mbr-text,
.cid-uZ1dA9VUSb .mbr-section-btn {
  text-align: left;
}
.cid-uZ1dA9VUSb .item-title {
  text-align: left;
  color: #142061;
}
.cid-uZ1dA9VUSb .item-subtitle {
  text-align: left;
}
.cid-uZ1dAa6FEY {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f7f7f7;
}
.cid-uZ1dAa6FEY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ1dAa6FEY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZ1dAa6FEY .item {
  padding-bottom: 2rem;
}
.cid-uZ1dAa6FEY .item-wrapper {
  height: 300px;
  position: relative;
}
.cid-uZ1dAa6FEY .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uZ1dAa6FEY .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-uZ1dAa6FEY .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uZ1dAa6FEY .carousel-control,
.cid-uZ1dAa6FEY .close {
  background: #1b1b1b;
}
.cid-uZ1dAa6FEY .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uZ1dAa6FEY .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uZ1dAa6FEY .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uZ1dAa6FEY .carousel-control-next span {
  margin-left: 5px;
}
.cid-uZ1dAa6FEY .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-uZ1dAa6FEY .close::before {
  content: '\e91a';
}
.cid-uZ1dAa6FEY .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uZ1dAa6FEY .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-uZ1dAa6FEY .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uZ1dAa6FEY .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uZ1dAa6FEY .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uZ1dAa6FEY .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uZ1dAa6FEY .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-uZ1dAa6FEY .carousel-indicators li.active,
.cid-uZ1dAa6FEY .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uZ1dAa6FEY .carousel-indicators li::after,
.cid-uZ1dAa6FEY .carousel-indicators li::before {
  content: none;
}
.cid-uZ1dAa6FEY .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uZ1dAa6FEY .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uZ1dAa6FEY .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uZ1dAa6FEY .carousel-indicators {
    display: none;
  }
}
.cid-uZ1dAa6FEY .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uZ1dAa6FEY .carousel-inner > .active {
  display: block;
}
.cid-uZ1dAa6FEY .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uZ1dAa6FEY .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uZ1dAa6FEY .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uZ1dAa6FEY .carousel-control,
  .cid-uZ1dAa6FEY .carousel-indicators,
  .cid-uZ1dAa6FEY .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uZ1dAa6FEY .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uZ1dAa6FEY .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uZ1dAa6FEY .carousel-indicators .active,
.cid-uZ1dAa6FEY .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uZ1dAa6FEY .carousel-indicators .active {
  background: #fff;
}
.cid-uZ1dAa6FEY .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uZ1dAa6FEY .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uZ1dAa6FEY .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uZ1dAa6FEY .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uZ1dAa6FEY .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uZ1dAa6FEY .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uZ1dAa6FEY .carousel {
  width: 100%;
}
.cid-uZ1dAa6FEY .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uZ1dAa6FEY .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uZ1dAa6FEY .modal.fade .modal-dialog,
.cid-uZ1dAa6FEY .modal.in .modal-dialog {
  transform: none;
}
.cid-uZ1dAa6FEY .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uZ1dAa6FEY H6 {
  text-align: center;
  color: #142061;
}
.cid-uZ1dAao6ui {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f7f7f7;
}
.cid-uZ1dAao6ui .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ1dAao6ui .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZ1dAao6ui .item {
  padding-bottom: 2rem;
}
.cid-uZ1dAao6ui .item-wrapper {
  height: 300px;
  position: relative;
}
.cid-uZ1dAao6ui .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uZ1dAao6ui .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-uZ1dAao6ui .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uZ1dAao6ui .carousel-control,
.cid-uZ1dAao6ui .close {
  background: #1b1b1b;
}
.cid-uZ1dAao6ui .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uZ1dAao6ui .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uZ1dAao6ui .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uZ1dAao6ui .carousel-control-next span {
  margin-left: 5px;
}
.cid-uZ1dAao6ui .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-uZ1dAao6ui .close::before {
  content: '\e91a';
}
.cid-uZ1dAao6ui .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uZ1dAao6ui .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-uZ1dAao6ui .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uZ1dAao6ui .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uZ1dAao6ui .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uZ1dAao6ui .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uZ1dAao6ui .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-uZ1dAao6ui .carousel-indicators li.active,
.cid-uZ1dAao6ui .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uZ1dAao6ui .carousel-indicators li::after,
.cid-uZ1dAao6ui .carousel-indicators li::before {
  content: none;
}
.cid-uZ1dAao6ui .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uZ1dAao6ui .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uZ1dAao6ui .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uZ1dAao6ui .carousel-indicators {
    display: none;
  }
}
.cid-uZ1dAao6ui .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uZ1dAao6ui .carousel-inner > .active {
  display: block;
}
.cid-uZ1dAao6ui .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uZ1dAao6ui .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uZ1dAao6ui .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uZ1dAao6ui .carousel-control,
  .cid-uZ1dAao6ui .carousel-indicators,
  .cid-uZ1dAao6ui .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uZ1dAao6ui .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uZ1dAao6ui .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uZ1dAao6ui .carousel-indicators .active,
.cid-uZ1dAao6ui .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uZ1dAao6ui .carousel-indicators .active {
  background: #fff;
}
.cid-uZ1dAao6ui .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uZ1dAao6ui .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uZ1dAao6ui .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uZ1dAao6ui .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uZ1dAao6ui .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uZ1dAao6ui .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uZ1dAao6ui .carousel {
  width: 100%;
}
.cid-uZ1dAao6ui .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uZ1dAao6ui .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uZ1dAao6ui .modal.fade .modal-dialog,
.cid-uZ1dAao6ui .modal.in .modal-dialog {
  transform: none;
}
.cid-uZ1dAao6ui .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uZ1dAao6ui H6 {
  text-align: center;
}
.cid-uZ1dAbddTh {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #142061;
}
.cid-uZ1dAbddTh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ1dAbddTh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZ1dAbddTh .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uZ1dAbddTh .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uZ1dAbddTh .row {
    text-align: center;
  }
  .cid-uZ1dAbddTh .row > div {
    margin: auto;
  }
  .cid-uZ1dAbddTh .social-row {
    justify-content: center;
  }
}
.cid-uZ1dAbddTh .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uZ1dAbddTh .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uZ1dAbddTh .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uZ1dAbddTh .list {
    margin-bottom: 0rem;
  }
}
.cid-uZ1dAbddTh .mbr-text {
  color: #bbbbbb;
}
.cid-uZ1dAbddTh .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uZ1dAbddTh .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uZ1dAbddTh div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uZ14LJiYyO {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uZ14LJiYyO nav.navbar {
  position: fixed;
}
.cid-uZ14LJiYyO .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-uZ14LJiYyO .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uZ14LJiYyO .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uZ14LJiYyO .dropdown-item:hover,
.cid-uZ14LJiYyO .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uZ14LJiYyO .dropdown-item:hover span {
  color: white;
}
.cid-uZ14LJiYyO .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uZ14LJiYyO .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uZ14LJiYyO .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uZ14LJiYyO .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uZ14LJiYyO .nav-link {
  position: relative;
}
.cid-uZ14LJiYyO .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uZ14LJiYyO .container {
    flex-wrap: wrap;
  }
}
.cid-uZ14LJiYyO .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uZ14LJiYyO .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uZ14LJiYyO .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uZ14LJiYyO .dropdown-menu,
.cid-uZ14LJiYyO .navbar.opened {
  background: #142061 !important;
}
.cid-uZ14LJiYyO .nav-item:focus,
.cid-uZ14LJiYyO .nav-link:focus {
  outline: none;
}
.cid-uZ14LJiYyO .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uZ14LJiYyO .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uZ14LJiYyO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uZ14LJiYyO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uZ14LJiYyO .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uZ14LJiYyO .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uZ14LJiYyO .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: #142061;
}
.cid-uZ14LJiYyO .navbar.opened {
  transition: all 0.3s;
}
.cid-uZ14LJiYyO .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uZ14LJiYyO .navbar .navbar-logo img {
  width: auto;
}
.cid-uZ14LJiYyO .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uZ14LJiYyO .navbar.collapsed {
  justify-content: center;
}
.cid-uZ14LJiYyO .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uZ14LJiYyO .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uZ14LJiYyO .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uZ14LJiYyO .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uZ14LJiYyO .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uZ14LJiYyO .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-uZ14LJiYyO .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uZ14LJiYyO .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uZ14LJiYyO .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uZ14LJiYyO .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uZ14LJiYyO .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uZ14LJiYyO .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uZ14LJiYyO .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uZ14LJiYyO .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-uZ14LJiYyO .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uZ14LJiYyO .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uZ14LJiYyO .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uZ14LJiYyO .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uZ14LJiYyO .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uZ14LJiYyO .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uZ14LJiYyO .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uZ14LJiYyO .navbar.navbar-short {
  min-height: 60px;
}
.cid-uZ14LJiYyO .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uZ14LJiYyO .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uZ14LJiYyO .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-uZ14LJiYyO .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uZ14LJiYyO .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uZ14LJiYyO .dropdown-item.active,
.cid-uZ14LJiYyO .dropdown-item:active {
  background-color: transparent;
}
.cid-uZ14LJiYyO .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uZ14LJiYyO .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uZ14LJiYyO .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uZ14LJiYyO .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #142061;
}
.cid-uZ14LJiYyO .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uZ14LJiYyO .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uZ14LJiYyO ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uZ14LJiYyO .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uZ14LJiYyO button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uZ14LJiYyO button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uZ14LJiYyO button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uZ14LJiYyO button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uZ14LJiYyO button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uZ14LJiYyO button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uZ14LJiYyO nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uZ14LJiYyO nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uZ14LJiYyO nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uZ14LJiYyO nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uZ14LJiYyO .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uZ14LJiYyO a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uZ14LJiYyO .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-uZ14LJiYyO .navbar {
    height: 70px;
  }
  .cid-uZ14LJiYyO .navbar.opened {
    height: auto;
  }
  .cid-uZ14LJiYyO .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uZ14LJESDv {
  background-image: url("../../../assets/images/untitled-design-4.png");
}
.cid-uZ14LJESDv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ14LJESDv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZ14LJESDv .mbr-text,
.cid-uZ14LJESDv .mbr-section-btn {
  color: #fafafa;
}
.cid-uZ14LJESDv .mbr-section-title {
  color: #ffffff;
}
.cid-uZ14LJQpAo {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #f7f7f7;
}
.cid-uZ14LJQpAo img,
.cid-uZ14LJQpAo .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uZ14LJQpAo .item:focus,
.cid-uZ14LJQpAo span:focus {
  outline: none;
}
.cid-uZ14LJQpAo .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uZ14LJQpAo .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uZ14LJQpAo .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uZ14LJQpAo .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uZ14LJQpAo .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uZ14LJQpAo .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uZ14LJQpAo .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uZ14LJQpAo .mbr-section-title {
  color: #142061;
}
.cid-uZ14LJQpAo .mbr-text,
.cid-uZ14LJQpAo .mbr-section-btn {
  text-align: left;
}
.cid-uZ14LJQpAo .item-title {
  text-align: left;
  color: #142061;
}
.cid-uZ14LJQpAo .item-subtitle {
  text-align: left;
}
.cid-uZ14LK7Stb {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f7f7f7;
}
.cid-uZ14LK7Stb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ14LK7Stb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZ14LK7Stb .item {
  padding-bottom: 2rem;
}
.cid-uZ14LK7Stb .item-wrapper {
  height: 300px;
  position: relative;
}
.cid-uZ14LK7Stb .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uZ14LK7Stb .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-uZ14LK7Stb .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uZ14LK7Stb .carousel-control,
.cid-uZ14LK7Stb .close {
  background: #1b1b1b;
}
.cid-uZ14LK7Stb .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uZ14LK7Stb .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uZ14LK7Stb .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uZ14LK7Stb .carousel-control-next span {
  margin-left: 5px;
}
.cid-uZ14LK7Stb .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-uZ14LK7Stb .close::before {
  content: '\e91a';
}
.cid-uZ14LK7Stb .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uZ14LK7Stb .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-uZ14LK7Stb .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uZ14LK7Stb .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uZ14LK7Stb .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uZ14LK7Stb .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uZ14LK7Stb .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-uZ14LK7Stb .carousel-indicators li.active,
.cid-uZ14LK7Stb .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uZ14LK7Stb .carousel-indicators li::after,
.cid-uZ14LK7Stb .carousel-indicators li::before {
  content: none;
}
.cid-uZ14LK7Stb .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uZ14LK7Stb .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uZ14LK7Stb .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uZ14LK7Stb .carousel-indicators {
    display: none;
  }
}
.cid-uZ14LK7Stb .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uZ14LK7Stb .carousel-inner > .active {
  display: block;
}
.cid-uZ14LK7Stb .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uZ14LK7Stb .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uZ14LK7Stb .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uZ14LK7Stb .carousel-control,
  .cid-uZ14LK7Stb .carousel-indicators,
  .cid-uZ14LK7Stb .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uZ14LK7Stb .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uZ14LK7Stb .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uZ14LK7Stb .carousel-indicators .active,
.cid-uZ14LK7Stb .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uZ14LK7Stb .carousel-indicators .active {
  background: #fff;
}
.cid-uZ14LK7Stb .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uZ14LK7Stb .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uZ14LK7Stb .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uZ14LK7Stb .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uZ14LK7Stb .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uZ14LK7Stb .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uZ14LK7Stb .carousel {
  width: 100%;
}
.cid-uZ14LK7Stb .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uZ14LK7Stb .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uZ14LK7Stb .modal.fade .modal-dialog,
.cid-uZ14LK7Stb .modal.in .modal-dialog {
  transform: none;
}
.cid-uZ14LK7Stb .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uZ14LK7Stb H6 {
  text-align: center;
  color: #142061;
}
.cid-uZ14LKsJJR {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f7f7f7;
}
.cid-uZ14LKsJJR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ14LKsJJR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZ14LKsJJR .item {
  padding-bottom: 2rem;
}
.cid-uZ14LKsJJR .item-wrapper {
  height: 300px;
  position: relative;
}
.cid-uZ14LKsJJR .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uZ14LKsJJR .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-uZ14LKsJJR .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uZ14LKsJJR .carousel-control,
.cid-uZ14LKsJJR .close {
  background: #1b1b1b;
}
.cid-uZ14LKsJJR .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uZ14LKsJJR .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uZ14LKsJJR .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uZ14LKsJJR .carousel-control-next span {
  margin-left: 5px;
}
.cid-uZ14LKsJJR .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-uZ14LKsJJR .close::before {
  content: '\e91a';
}
.cid-uZ14LKsJJR .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uZ14LKsJJR .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-uZ14LKsJJR .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uZ14LKsJJR .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uZ14LKsJJR .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uZ14LKsJJR .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uZ14LKsJJR .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-uZ14LKsJJR .carousel-indicators li.active,
.cid-uZ14LKsJJR .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uZ14LKsJJR .carousel-indicators li::after,
.cid-uZ14LKsJJR .carousel-indicators li::before {
  content: none;
}
.cid-uZ14LKsJJR .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uZ14LKsJJR .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uZ14LKsJJR .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uZ14LKsJJR .carousel-indicators {
    display: none;
  }
}
.cid-uZ14LKsJJR .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uZ14LKsJJR .carousel-inner > .active {
  display: block;
}
.cid-uZ14LKsJJR .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uZ14LKsJJR .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uZ14LKsJJR .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uZ14LKsJJR .carousel-control,
  .cid-uZ14LKsJJR .carousel-indicators,
  .cid-uZ14LKsJJR .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uZ14LKsJJR .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uZ14LKsJJR .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uZ14LKsJJR .carousel-indicators .active,
.cid-uZ14LKsJJR .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uZ14LKsJJR .carousel-indicators .active {
  background: #fff;
}
.cid-uZ14LKsJJR .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uZ14LKsJJR .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uZ14LKsJJR .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uZ14LKsJJR .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uZ14LKsJJR .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uZ14LKsJJR .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uZ14LKsJJR .carousel {
  width: 100%;
}
.cid-uZ14LKsJJR .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uZ14LKsJJR .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uZ14LKsJJR .modal.fade .modal-dialog,
.cid-uZ14LKsJJR .modal.in .modal-dialog {
  transform: none;
}
.cid-uZ14LKsJJR .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uZ14LKsJJR H6 {
  text-align: center;
}
.cid-uZ17VhQwXe {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f7f7f7;
}
.cid-uZ17VhQwXe .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ17VhQwXe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZ17VhQwXe .item {
  padding-bottom: 2rem;
}
.cid-uZ17VhQwXe .item-wrapper {
  height: 300px;
  position: relative;
}
.cid-uZ17VhQwXe .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uZ17VhQwXe .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-uZ17VhQwXe .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uZ17VhQwXe .carousel-control,
.cid-uZ17VhQwXe .close {
  background: #1b1b1b;
}
.cid-uZ17VhQwXe .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uZ17VhQwXe .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uZ17VhQwXe .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uZ17VhQwXe .carousel-control-next span {
  margin-left: 5px;
}
.cid-uZ17VhQwXe .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-uZ17VhQwXe .close::before {
  content: '\e91a';
}
.cid-uZ17VhQwXe .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uZ17VhQwXe .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-uZ17VhQwXe .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uZ17VhQwXe .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uZ17VhQwXe .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uZ17VhQwXe .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uZ17VhQwXe .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-uZ17VhQwXe .carousel-indicators li.active,
.cid-uZ17VhQwXe .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uZ17VhQwXe .carousel-indicators li::after,
.cid-uZ17VhQwXe .carousel-indicators li::before {
  content: none;
}
.cid-uZ17VhQwXe .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uZ17VhQwXe .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uZ17VhQwXe .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uZ17VhQwXe .carousel-indicators {
    display: none;
  }
}
.cid-uZ17VhQwXe .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uZ17VhQwXe .carousel-inner > .active {
  display: block;
}
.cid-uZ17VhQwXe .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uZ17VhQwXe .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uZ17VhQwXe .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uZ17VhQwXe .carousel-control,
  .cid-uZ17VhQwXe .carousel-indicators,
  .cid-uZ17VhQwXe .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uZ17VhQwXe .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uZ17VhQwXe .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uZ17VhQwXe .carousel-indicators .active,
.cid-uZ17VhQwXe .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uZ17VhQwXe .carousel-indicators .active {
  background: #fff;
}
.cid-uZ17VhQwXe .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uZ17VhQwXe .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uZ17VhQwXe .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uZ17VhQwXe .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uZ17VhQwXe .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uZ17VhQwXe .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uZ17VhQwXe .carousel {
  width: 100%;
}
.cid-uZ17VhQwXe .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uZ17VhQwXe .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uZ17VhQwXe .modal.fade .modal-dialog,
.cid-uZ17VhQwXe .modal.in .modal-dialog {
  transform: none;
}
.cid-uZ17VhQwXe .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uZ17VhQwXe H6 {
  text-align: center;
}
.cid-uZ19lfwSiL {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #f7f7f7;
}
.cid-uZ19lfwSiL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ19lfwSiL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZ19lfwSiL .item {
  padding-bottom: 2rem;
}
.cid-uZ19lfwSiL .item-wrapper {
  height: 300px;
  position: relative;
}
.cid-uZ19lfwSiL .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uZ19lfwSiL .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-uZ19lfwSiL .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uZ19lfwSiL .carousel-control,
.cid-uZ19lfwSiL .close {
  background: #1b1b1b;
}
.cid-uZ19lfwSiL .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uZ19lfwSiL .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uZ19lfwSiL .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uZ19lfwSiL .carousel-control-next span {
  margin-left: 5px;
}
.cid-uZ19lfwSiL .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-uZ19lfwSiL .close::before {
  content: '\e91a';
}
.cid-uZ19lfwSiL .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uZ19lfwSiL .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-uZ19lfwSiL .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uZ19lfwSiL .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uZ19lfwSiL .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uZ19lfwSiL .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uZ19lfwSiL .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-uZ19lfwSiL .carousel-indicators li.active,
.cid-uZ19lfwSiL .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uZ19lfwSiL .carousel-indicators li::after,
.cid-uZ19lfwSiL .carousel-indicators li::before {
  content: none;
}
.cid-uZ19lfwSiL .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uZ19lfwSiL .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uZ19lfwSiL .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uZ19lfwSiL .carousel-indicators {
    display: none;
  }
}
.cid-uZ19lfwSiL .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uZ19lfwSiL .carousel-inner > .active {
  display: block;
}
.cid-uZ19lfwSiL .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uZ19lfwSiL .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uZ19lfwSiL .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uZ19lfwSiL .carousel-control,
  .cid-uZ19lfwSiL .carousel-indicators,
  .cid-uZ19lfwSiL .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uZ19lfwSiL .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uZ19lfwSiL .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uZ19lfwSiL .carousel-indicators .active,
.cid-uZ19lfwSiL .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uZ19lfwSiL .carousel-indicators .active {
  background: #fff;
}
.cid-uZ19lfwSiL .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uZ19lfwSiL .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uZ19lfwSiL .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uZ19lfwSiL .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uZ19lfwSiL .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uZ19lfwSiL .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uZ19lfwSiL .carousel {
  width: 100%;
}
.cid-uZ19lfwSiL .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uZ19lfwSiL .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uZ19lfwSiL .modal.fade .modal-dialog,
.cid-uZ19lfwSiL .modal.in .modal-dialog {
  transform: none;
}
.cid-uZ19lfwSiL .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uZ19lfwSiL H6 {
  text-align: center;
}
.cid-uZ14LKMN6Z {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #142061;
}
.cid-uZ14LKMN6Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ14LKMN6Z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZ14LKMN6Z .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uZ14LKMN6Z .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uZ14LKMN6Z .row {
    text-align: center;
  }
  .cid-uZ14LKMN6Z .row > div {
    margin: auto;
  }
  .cid-uZ14LKMN6Z .social-row {
    justify-content: center;
  }
}
.cid-uZ14LKMN6Z .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uZ14LKMN6Z .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uZ14LKMN6Z .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uZ14LKMN6Z .list {
    margin-bottom: 0rem;
  }
}
.cid-uZ14LKMN6Z .mbr-text {
  color: #bbbbbb;
}
.cid-uZ14LKMN6Z .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uZ14LKMN6Z .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uZ14LKMN6Z div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uZ110woY5E {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uZ110woY5E nav.navbar {
  position: fixed;
}
.cid-uZ110woY5E .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-uZ110woY5E .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uZ110woY5E .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uZ110woY5E .dropdown-item:hover,
.cid-uZ110woY5E .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uZ110woY5E .dropdown-item:hover span {
  color: white;
}
.cid-uZ110woY5E .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uZ110woY5E .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uZ110woY5E .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uZ110woY5E .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uZ110woY5E .nav-link {
  position: relative;
}
.cid-uZ110woY5E .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uZ110woY5E .container {
    flex-wrap: wrap;
  }
}
.cid-uZ110woY5E .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uZ110woY5E .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uZ110woY5E .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uZ110woY5E .dropdown-menu,
.cid-uZ110woY5E .navbar.opened {
  background: #142061 !important;
}
.cid-uZ110woY5E .nav-item:focus,
.cid-uZ110woY5E .nav-link:focus {
  outline: none;
}
.cid-uZ110woY5E .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uZ110woY5E .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uZ110woY5E .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uZ110woY5E .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uZ110woY5E .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uZ110woY5E .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uZ110woY5E .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: #142061;
}
.cid-uZ110woY5E .navbar.opened {
  transition: all 0.3s;
}
.cid-uZ110woY5E .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uZ110woY5E .navbar .navbar-logo img {
  width: auto;
}
.cid-uZ110woY5E .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uZ110woY5E .navbar.collapsed {
  justify-content: center;
}
.cid-uZ110woY5E .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uZ110woY5E .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uZ110woY5E .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uZ110woY5E .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uZ110woY5E .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uZ110woY5E .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-uZ110woY5E .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uZ110woY5E .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uZ110woY5E .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uZ110woY5E .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uZ110woY5E .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uZ110woY5E .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uZ110woY5E .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uZ110woY5E .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-uZ110woY5E .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uZ110woY5E .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uZ110woY5E .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uZ110woY5E .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uZ110woY5E .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uZ110woY5E .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uZ110woY5E .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uZ110woY5E .navbar.navbar-short {
  min-height: 60px;
}
.cid-uZ110woY5E .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uZ110woY5E .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uZ110woY5E .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-uZ110woY5E .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uZ110woY5E .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uZ110woY5E .dropdown-item.active,
.cid-uZ110woY5E .dropdown-item:active {
  background-color: transparent;
}
.cid-uZ110woY5E .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uZ110woY5E .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uZ110woY5E .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uZ110woY5E .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #142061;
}
.cid-uZ110woY5E .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uZ110woY5E .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uZ110woY5E ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uZ110woY5E .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uZ110woY5E button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uZ110woY5E button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uZ110woY5E button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uZ110woY5E button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uZ110woY5E button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uZ110woY5E button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uZ110woY5E nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uZ110woY5E nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uZ110woY5E nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uZ110woY5E nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uZ110woY5E .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uZ110woY5E a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uZ110woY5E .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-uZ110woY5E .navbar {
    height: 70px;
  }
  .cid-uZ110woY5E .navbar.opened {
    height: auto;
  }
  .cid-uZ110woY5E .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uZ110wR5vJ {
  background-image: url("../../../assets/images/untitled-design-4.png");
}
.cid-uZ110wR5vJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ110wR5vJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZ110wR5vJ .mbr-text,
.cid-uZ110wR5vJ .mbr-section-btn {
  color: #fafafa;
}
.cid-uZ110wR5vJ .mbr-section-title {
  color: #ffffff;
}
.cid-uZ110x72ee {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #f7f7f7;
}
.cid-uZ110x72ee img,
.cid-uZ110x72ee .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uZ110x72ee .item:focus,
.cid-uZ110x72ee span:focus {
  outline: none;
}
.cid-uZ110x72ee .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uZ110x72ee .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uZ110x72ee .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uZ110x72ee .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uZ110x72ee .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uZ110x72ee .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uZ110x72ee .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uZ110x72ee .mbr-section-title {
  color: #142061;
}
.cid-uZ110x72ee .mbr-text,
.cid-uZ110x72ee .mbr-section-btn {
  text-align: left;
}
.cid-uZ110x72ee .item-title {
  text-align: left;
  color: #142061;
}
.cid-uZ110x72ee .item-subtitle {
  text-align: left;
}
.cid-uZ110xwhLF {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f7f7f7;
}
.cid-uZ110xwhLF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ110xwhLF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZ110xwhLF .item {
  padding-bottom: 2rem;
}
.cid-uZ110xwhLF .item-wrapper {
  position: relative;
}
.cid-uZ110xwhLF .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-uZ110xwhLF .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uZ110xwhLF .carousel-control,
.cid-uZ110xwhLF .close {
  background: #1b1b1b;
}
.cid-uZ110xwhLF .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uZ110xwhLF .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uZ110xwhLF .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uZ110xwhLF .carousel-control-next span {
  margin-left: 5px;
}
.cid-uZ110xwhLF .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-uZ110xwhLF .close::before {
  content: '\e91a';
}
.cid-uZ110xwhLF .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uZ110xwhLF .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-uZ110xwhLF .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uZ110xwhLF .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uZ110xwhLF .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uZ110xwhLF .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uZ110xwhLF .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-uZ110xwhLF .carousel-indicators li.active,
.cid-uZ110xwhLF .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uZ110xwhLF .carousel-indicators li::after,
.cid-uZ110xwhLF .carousel-indicators li::before {
  content: none;
}
.cid-uZ110xwhLF .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uZ110xwhLF .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uZ110xwhLF .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uZ110xwhLF .carousel-indicators {
    display: none;
  }
}
.cid-uZ110xwhLF .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uZ110xwhLF .carousel-inner > .active {
  display: block;
}
.cid-uZ110xwhLF .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uZ110xwhLF .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uZ110xwhLF .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uZ110xwhLF .carousel-control,
  .cid-uZ110xwhLF .carousel-indicators,
  .cid-uZ110xwhLF .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uZ110xwhLF .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uZ110xwhLF .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uZ110xwhLF .carousel-indicators .active,
.cid-uZ110xwhLF .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uZ110xwhLF .carousel-indicators .active {
  background: #fff;
}
.cid-uZ110xwhLF .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uZ110xwhLF .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uZ110xwhLF .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uZ110xwhLF .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uZ110xwhLF .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uZ110xwhLF .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uZ110xwhLF .carousel {
  width: 100%;
}
.cid-uZ110xwhLF .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uZ110xwhLF .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uZ110xwhLF .modal.fade .modal-dialog,
.cid-uZ110xwhLF .modal.in .modal-dialog {
  transform: none;
}
.cid-uZ110xwhLF .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uZ110xwhLF H6 {
  text-align: center;
  color: #142061;
}
.cid-uZ110y9svL {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #f7f7f7;
}
.cid-uZ110y9svL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ110y9svL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZ110y9svL .item {
  padding-bottom: 2rem;
}
.cid-uZ110y9svL .item-wrapper {
  position: relative;
}
.cid-uZ110y9svL .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-uZ110y9svL .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uZ110y9svL .carousel-control,
.cid-uZ110y9svL .close {
  background: #1b1b1b;
}
.cid-uZ110y9svL .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uZ110y9svL .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uZ110y9svL .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uZ110y9svL .carousel-control-next span {
  margin-left: 5px;
}
.cid-uZ110y9svL .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-uZ110y9svL .close::before {
  content: '\e91a';
}
.cid-uZ110y9svL .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uZ110y9svL .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-uZ110y9svL .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uZ110y9svL .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uZ110y9svL .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uZ110y9svL .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uZ110y9svL .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-uZ110y9svL .carousel-indicators li.active,
.cid-uZ110y9svL .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uZ110y9svL .carousel-indicators li::after,
.cid-uZ110y9svL .carousel-indicators li::before {
  content: none;
}
.cid-uZ110y9svL .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uZ110y9svL .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uZ110y9svL .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uZ110y9svL .carousel-indicators {
    display: none;
  }
}
.cid-uZ110y9svL .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uZ110y9svL .carousel-inner > .active {
  display: block;
}
.cid-uZ110y9svL .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uZ110y9svL .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uZ110y9svL .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uZ110y9svL .carousel-control,
  .cid-uZ110y9svL .carousel-indicators,
  .cid-uZ110y9svL .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uZ110y9svL .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uZ110y9svL .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uZ110y9svL .carousel-indicators .active,
.cid-uZ110y9svL .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uZ110y9svL .carousel-indicators .active {
  background: #fff;
}
.cid-uZ110y9svL .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uZ110y9svL .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uZ110y9svL .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uZ110y9svL .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uZ110y9svL .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uZ110y9svL .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uZ110y9svL .carousel {
  width: 100%;
}
.cid-uZ110y9svL .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uZ110y9svL .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uZ110y9svL .modal.fade .modal-dialog,
.cid-uZ110y9svL .modal.in .modal-dialog {
  transform: none;
}
.cid-uZ110y9svL .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uZ110y9svL H6 {
  text-align: center;
}
.cid-uZ110yHgLU {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #142061;
}
.cid-uZ110yHgLU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ110yHgLU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZ110yHgLU .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uZ110yHgLU .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uZ110yHgLU .row {
    text-align: center;
  }
  .cid-uZ110yHgLU .row > div {
    margin: auto;
  }
  .cid-uZ110yHgLU .social-row {
    justify-content: center;
  }
}
.cid-uZ110yHgLU .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uZ110yHgLU .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uZ110yHgLU .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uZ110yHgLU .list {
    margin-bottom: 0rem;
  }
}
.cid-uZ110yHgLU .mbr-text {
  color: #bbbbbb;
}
.cid-uZ110yHgLU .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uZ110yHgLU .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uZ110yHgLU div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uYUWrxjmnt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uYUWrxjmnt nav.navbar {
  position: fixed;
}
.cid-uYUWrxjmnt .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-uYUWrxjmnt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uYUWrxjmnt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uYUWrxjmnt .dropdown-item:hover,
.cid-uYUWrxjmnt .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uYUWrxjmnt .dropdown-item:hover span {
  color: white;
}
.cid-uYUWrxjmnt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uYUWrxjmnt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uYUWrxjmnt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uYUWrxjmnt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uYUWrxjmnt .nav-link {
  position: relative;
}
.cid-uYUWrxjmnt .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uYUWrxjmnt .container {
    flex-wrap: wrap;
  }
}
.cid-uYUWrxjmnt .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uYUWrxjmnt .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uYUWrxjmnt .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uYUWrxjmnt .dropdown-menu,
.cid-uYUWrxjmnt .navbar.opened {
  background: #142061 !important;
}
.cid-uYUWrxjmnt .nav-item:focus,
.cid-uYUWrxjmnt .nav-link:focus {
  outline: none;
}
.cid-uYUWrxjmnt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uYUWrxjmnt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uYUWrxjmnt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uYUWrxjmnt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uYUWrxjmnt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uYUWrxjmnt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uYUWrxjmnt .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: #142061;
}
.cid-uYUWrxjmnt .navbar.opened {
  transition: all 0.3s;
}
.cid-uYUWrxjmnt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uYUWrxjmnt .navbar .navbar-logo img {
  width: auto;
}
.cid-uYUWrxjmnt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uYUWrxjmnt .navbar.collapsed {
  justify-content: center;
}
.cid-uYUWrxjmnt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uYUWrxjmnt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uYUWrxjmnt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uYUWrxjmnt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uYUWrxjmnt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uYUWrxjmnt .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-uYUWrxjmnt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uYUWrxjmnt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uYUWrxjmnt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uYUWrxjmnt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uYUWrxjmnt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uYUWrxjmnt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uYUWrxjmnt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uYUWrxjmnt .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-uYUWrxjmnt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uYUWrxjmnt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uYUWrxjmnt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uYUWrxjmnt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uYUWrxjmnt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uYUWrxjmnt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uYUWrxjmnt .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uYUWrxjmnt .navbar.navbar-short {
  min-height: 60px;
}
.cid-uYUWrxjmnt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uYUWrxjmnt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uYUWrxjmnt .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-uYUWrxjmnt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uYUWrxjmnt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uYUWrxjmnt .dropdown-item.active,
.cid-uYUWrxjmnt .dropdown-item:active {
  background-color: transparent;
}
.cid-uYUWrxjmnt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uYUWrxjmnt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uYUWrxjmnt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uYUWrxjmnt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #142061;
}
.cid-uYUWrxjmnt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uYUWrxjmnt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uYUWrxjmnt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uYUWrxjmnt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uYUWrxjmnt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uYUWrxjmnt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uYUWrxjmnt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uYUWrxjmnt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uYUWrxjmnt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uYUWrxjmnt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uYUWrxjmnt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uYUWrxjmnt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uYUWrxjmnt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uYUWrxjmnt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uYUWrxjmnt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uYUWrxjmnt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uYUWrxjmnt .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-uYUWrxjmnt .navbar {
    height: 70px;
  }
  .cid-uYUWrxjmnt .navbar.opened {
    height: auto;
  }
  .cid-uYUWrxjmnt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uYUWrxATLX {
  background-image: url("../../../assets/images/untitled-design-4.png");
}
.cid-uYUWrxATLX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYUWrxATLX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYUWrxATLX .mbr-text,
.cid-uYUWrxATLX .mbr-section-btn {
  color: #fafafa;
}
.cid-uYUWrxATLX .mbr-section-title {
  color: #ffffff;
}
.cid-uYUWrxXZ9u {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #f7f7f7;
}
.cid-uYUWrxXZ9u img,
.cid-uYUWrxXZ9u .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uYUWrxXZ9u .item:focus,
.cid-uYUWrxXZ9u span:focus {
  outline: none;
}
.cid-uYUWrxXZ9u .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uYUWrxXZ9u .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uYUWrxXZ9u .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uYUWrxXZ9u .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uYUWrxXZ9u .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uYUWrxXZ9u .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uYUWrxXZ9u .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uYUWrxXZ9u .mbr-section-title {
  color: #142061;
}
.cid-uYUWrxXZ9u .mbr-text,
.cid-uYUWrxXZ9u .mbr-section-btn {
  text-align: left;
}
.cid-uYUWrxXZ9u .item-title {
  text-align: left;
  color: #142061;
}
.cid-uYUWrxXZ9u .item-subtitle {
  text-align: left;
}
.cid-uZ0PQIsFNm {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f7f7f7;
}
.cid-uZ0PQIsFNm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ0PQIsFNm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZ0PQIsFNm .item {
  padding-bottom: 2rem;
}
.cid-uZ0PQIsFNm .item-wrapper {
  position: relative;
}
.cid-uZ0PQIsFNm .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-uZ0PQIsFNm .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uZ0PQIsFNm .carousel-control,
.cid-uZ0PQIsFNm .close {
  background: #1b1b1b;
}
.cid-uZ0PQIsFNm .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uZ0PQIsFNm .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uZ0PQIsFNm .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uZ0PQIsFNm .carousel-control-next span {
  margin-left: 5px;
}
.cid-uZ0PQIsFNm .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-uZ0PQIsFNm .close::before {
  content: '\e91a';
}
.cid-uZ0PQIsFNm .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uZ0PQIsFNm .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-uZ0PQIsFNm .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uZ0PQIsFNm .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uZ0PQIsFNm .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uZ0PQIsFNm .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uZ0PQIsFNm .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-uZ0PQIsFNm .carousel-indicators li.active,
.cid-uZ0PQIsFNm .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uZ0PQIsFNm .carousel-indicators li::after,
.cid-uZ0PQIsFNm .carousel-indicators li::before {
  content: none;
}
.cid-uZ0PQIsFNm .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uZ0PQIsFNm .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uZ0PQIsFNm .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uZ0PQIsFNm .carousel-indicators {
    display: none;
  }
}
.cid-uZ0PQIsFNm .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uZ0PQIsFNm .carousel-inner > .active {
  display: block;
}
.cid-uZ0PQIsFNm .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uZ0PQIsFNm .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uZ0PQIsFNm .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uZ0PQIsFNm .carousel-control,
  .cid-uZ0PQIsFNm .carousel-indicators,
  .cid-uZ0PQIsFNm .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uZ0PQIsFNm .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uZ0PQIsFNm .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uZ0PQIsFNm .carousel-indicators .active,
.cid-uZ0PQIsFNm .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uZ0PQIsFNm .carousel-indicators .active {
  background: #fff;
}
.cid-uZ0PQIsFNm .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uZ0PQIsFNm .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uZ0PQIsFNm .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uZ0PQIsFNm .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uZ0PQIsFNm .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uZ0PQIsFNm .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uZ0PQIsFNm .carousel {
  width: 100%;
}
.cid-uZ0PQIsFNm .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uZ0PQIsFNm .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uZ0PQIsFNm .modal.fade .modal-dialog,
.cid-uZ0PQIsFNm .modal.in .modal-dialog {
  transform: none;
}
.cid-uZ0PQIsFNm .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uZ0PQIsFNm H6 {
  text-align: center;
  color: #142061;
}
.cid-uZ0PRnlbrq {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #f7f7f7;
}
.cid-uZ0PRnlbrq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ0PRnlbrq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZ0PRnlbrq .item {
  padding-bottom: 2rem;
}
.cid-uZ0PRnlbrq .item-wrapper {
  position: relative;
}
.cid-uZ0PRnlbrq .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-uZ0PRnlbrq .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uZ0PRnlbrq .carousel-control,
.cid-uZ0PRnlbrq .close {
  background: #1b1b1b;
}
.cid-uZ0PRnlbrq .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uZ0PRnlbrq .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uZ0PRnlbrq .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uZ0PRnlbrq .carousel-control-next span {
  margin-left: 5px;
}
.cid-uZ0PRnlbrq .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-uZ0PRnlbrq .close::before {
  content: '\e91a';
}
.cid-uZ0PRnlbrq .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uZ0PRnlbrq .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-uZ0PRnlbrq .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uZ0PRnlbrq .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uZ0PRnlbrq .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uZ0PRnlbrq .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uZ0PRnlbrq .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-uZ0PRnlbrq .carousel-indicators li.active,
.cid-uZ0PRnlbrq .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uZ0PRnlbrq .carousel-indicators li::after,
.cid-uZ0PRnlbrq .carousel-indicators li::before {
  content: none;
}
.cid-uZ0PRnlbrq .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uZ0PRnlbrq .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uZ0PRnlbrq .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uZ0PRnlbrq .carousel-indicators {
    display: none;
  }
}
.cid-uZ0PRnlbrq .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uZ0PRnlbrq .carousel-inner > .active {
  display: block;
}
.cid-uZ0PRnlbrq .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uZ0PRnlbrq .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uZ0PRnlbrq .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uZ0PRnlbrq .carousel-control,
  .cid-uZ0PRnlbrq .carousel-indicators,
  .cid-uZ0PRnlbrq .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uZ0PRnlbrq .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uZ0PRnlbrq .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uZ0PRnlbrq .carousel-indicators .active,
.cid-uZ0PRnlbrq .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uZ0PRnlbrq .carousel-indicators .active {
  background: #fff;
}
.cid-uZ0PRnlbrq .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uZ0PRnlbrq .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uZ0PRnlbrq .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uZ0PRnlbrq .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uZ0PRnlbrq .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uZ0PRnlbrq .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uZ0PRnlbrq .carousel {
  width: 100%;
}
.cid-uZ0PRnlbrq .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uZ0PRnlbrq .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uZ0PRnlbrq .modal.fade .modal-dialog,
.cid-uZ0PRnlbrq .modal.in .modal-dialog {
  transform: none;
}
.cid-uZ0PRnlbrq .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uZ0PRnlbrq H6 {
  text-align: center;
}
.cid-uYUWryxhXO {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #142061;
}
.cid-uYUWryxhXO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYUWryxhXO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYUWryxhXO .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uYUWryxhXO .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uYUWryxhXO .row {
    text-align: center;
  }
  .cid-uYUWryxhXO .row > div {
    margin: auto;
  }
  .cid-uYUWryxhXO .social-row {
    justify-content: center;
  }
}
.cid-uYUWryxhXO .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uYUWryxhXO .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uYUWryxhXO .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uYUWryxhXO .list {
    margin-bottom: 0rem;
  }
}
.cid-uYUWryxhXO .mbr-text {
  color: #bbbbbb;
}
.cid-uYUWryxhXO .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uYUWryxhXO .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uYUWryxhXO div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uYUWt6OBwE {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uYUWt6OBwE nav.navbar {
  position: fixed;
}
.cid-uYUWt6OBwE .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-uYUWt6OBwE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uYUWt6OBwE .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uYUWt6OBwE .dropdown-item:hover,
.cid-uYUWt6OBwE .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uYUWt6OBwE .dropdown-item:hover span {
  color: white;
}
.cid-uYUWt6OBwE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uYUWt6OBwE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uYUWt6OBwE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uYUWt6OBwE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uYUWt6OBwE .nav-link {
  position: relative;
}
.cid-uYUWt6OBwE .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uYUWt6OBwE .container {
    flex-wrap: wrap;
  }
}
.cid-uYUWt6OBwE .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uYUWt6OBwE .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uYUWt6OBwE .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uYUWt6OBwE .dropdown-menu,
.cid-uYUWt6OBwE .navbar.opened {
  background: #142061 !important;
}
.cid-uYUWt6OBwE .nav-item:focus,
.cid-uYUWt6OBwE .nav-link:focus {
  outline: none;
}
.cid-uYUWt6OBwE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uYUWt6OBwE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uYUWt6OBwE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uYUWt6OBwE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uYUWt6OBwE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uYUWt6OBwE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uYUWt6OBwE .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: #142061;
}
.cid-uYUWt6OBwE .navbar.opened {
  transition: all 0.3s;
}
.cid-uYUWt6OBwE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uYUWt6OBwE .navbar .navbar-logo img {
  width: auto;
}
.cid-uYUWt6OBwE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uYUWt6OBwE .navbar.collapsed {
  justify-content: center;
}
.cid-uYUWt6OBwE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uYUWt6OBwE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uYUWt6OBwE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uYUWt6OBwE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uYUWt6OBwE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uYUWt6OBwE .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-uYUWt6OBwE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uYUWt6OBwE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uYUWt6OBwE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uYUWt6OBwE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uYUWt6OBwE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uYUWt6OBwE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uYUWt6OBwE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uYUWt6OBwE .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-uYUWt6OBwE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uYUWt6OBwE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uYUWt6OBwE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uYUWt6OBwE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uYUWt6OBwE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uYUWt6OBwE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uYUWt6OBwE .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uYUWt6OBwE .navbar.navbar-short {
  min-height: 60px;
}
.cid-uYUWt6OBwE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uYUWt6OBwE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uYUWt6OBwE .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-uYUWt6OBwE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uYUWt6OBwE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uYUWt6OBwE .dropdown-item.active,
.cid-uYUWt6OBwE .dropdown-item:active {
  background-color: transparent;
}
.cid-uYUWt6OBwE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uYUWt6OBwE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uYUWt6OBwE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uYUWt6OBwE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #142061;
}
.cid-uYUWt6OBwE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uYUWt6OBwE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uYUWt6OBwE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uYUWt6OBwE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uYUWt6OBwE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uYUWt6OBwE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uYUWt6OBwE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uYUWt6OBwE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uYUWt6OBwE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uYUWt6OBwE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uYUWt6OBwE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uYUWt6OBwE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uYUWt6OBwE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uYUWt6OBwE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uYUWt6OBwE .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uYUWt6OBwE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uYUWt6OBwE .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-uYUWt6OBwE .navbar {
    height: 70px;
  }
  .cid-uYUWt6OBwE .navbar.opened {
    height: auto;
  }
  .cid-uYUWt6OBwE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uYUWt73ZVj {
  background-image: url("../../../assets/images/untitled-design-4.png");
}
.cid-uYUWt73ZVj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYUWt73ZVj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYUWt73ZVj .mbr-text,
.cid-uYUWt73ZVj .mbr-section-btn {
  color: #fafafa;
}
.cid-uYUWt73ZVj .mbr-section-title {
  color: #ffffff;
}
.cid-uZ1rjLgbOw {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #f7f7f7;
}
.cid-uZ1rjLgbOw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ1rjLgbOw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZ1rjLgbOw .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #6592e6;
  margin-left: 1rem;
}
.cid-uZ1rjLgbOw .panel-group {
  border: none;
}
.cid-uZ1rjLgbOw .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uZ1rjLgbOw .panel-body,
.cid-uZ1rjLgbOw .card-header {
  padding: 1rem 0;
}
.cid-uZ1rjLgbOw .panel-title-edit {
  color: #142061;
}
.cid-uZ1rjLgbOw .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uZ1rjLgbOw H3 {
  color: #142061;
}
.cid-uZ1rjLgbOw .panel-text {
  color: #232323;
}
.cid-uZ1qZgGGkn {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f7f7f7;
}
.cid-uZ1qZgGGkn .mbr-text,
.cid-uZ1qZgGGkn .mbr-section-btn {
  color: #232323;
}
@media (max-width: 991px) {
  .cid-uZ1qZgGGkn .mbr-text,
  .cid-uZ1qZgGGkn .mbr-section-title {
    text-align: center;
  }
}
.cid-uZ1qZgGGkn a.btn {
  height: 100%;
  margin: 0;
}
.cid-uZ1qZgGGkn .mbr-section-btn {
  display: flex;
  margin-bottom: 1.2rem;
  width: 100%;
}
.cid-uZ1qZgGGkn .mbr-section-btn .btn {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uZ1qZgGGkn .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-uZ1qZgGGkn .content-wrapper {
    flex-direction: column-reverse;
  }
}
.cid-uZ1qZgGGkn .justify-content-center {
  align-items: center;
}
.cid-uZ1qZgGGkn .mbr-section-title {
  color: #142061;
}
.cid-uYUWt7ZgQ6 {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #142061;
}
.cid-uYUWt7ZgQ6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYUWt7ZgQ6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYUWt7ZgQ6 .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uYUWt7ZgQ6 .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uYUWt7ZgQ6 .row {
    text-align: center;
  }
  .cid-uYUWt7ZgQ6 .row > div {
    margin: auto;
  }
  .cid-uYUWt7ZgQ6 .social-row {
    justify-content: center;
  }
}
.cid-uYUWt7ZgQ6 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uYUWt7ZgQ6 .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uYUWt7ZgQ6 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uYUWt7ZgQ6 .list {
    margin-bottom: 0rem;
  }
}
.cid-uYUWt7ZgQ6 .mbr-text {
  color: #bbbbbb;
}
.cid-uYUWt7ZgQ6 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uYUWt7ZgQ6 .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uYUWt7ZgQ6 div > *:last-child {
    margin-top: 0 !important;
  }
}
