body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #6592e6 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #6592e6;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #2260d2 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #6592e6 !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #205ac5 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #6592e6;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #6592e6;
  border-color: #6592e6;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #6592e6;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #6592e6 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #6592e6;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #6592e6;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #6592e6;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #6592e6;
  border-bottom-color: #6592e6;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #6592e6 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ff6666 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%236592e6' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-uAM1b1NZsY {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uAM1b1NZsY .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-uAM1b1NZsY .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uAM1b1NZsY .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uAM1b1NZsY .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 8px !important;
}
.cid-uAM1b1NZsY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uAM1b1NZsY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uAM1b1NZsY .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
  margin-right: 0;
}
.cid-uAM1b1NZsY .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-uAM1b1NZsY .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
  border-radius: 4px !important;
}
.cid-uAM1b1NZsY .navbar-nav .nav-item .nav-link:hover {
  background-color: transparent;
}
.cid-uAM1b1NZsY .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uAM1b1NZsY .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uAM1b1NZsY .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
  border-radius: 4px !important;
}
.cid-uAM1b1NZsY .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uAM1b1NZsY .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-uAM1b1NZsY .nav-link {
  width: fit-content;
  position: relative;
}
.cid-uAM1b1NZsY .nav-link:hover {
  color: #ed463f !important;
}
.cid-uAM1b1NZsY .navbar-logo {
  padding-right: 0;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uAM1b1NZsY .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-uAM1b1NZsY .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
  font-weight: 400;
}
.cid-uAM1b1NZsY .navbar-caption:hover,
.cid-uAM1b1NZsY .navbar-caption:focus {
  color: #ed463f !important;
}
@media (max-width: 767px) {
  .cid-uAM1b1NZsY .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uAM1b1NZsY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-uAM1b1NZsY .menu-container {
  width: 100%;
  display: flex;
  min-height: 90px;
  padding: 10px;
  flex-wrap: nowrap;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 16px;
  margin: 1rem 1rem 0;
  background-color: #254071;
  box-shadow: none;
  position: relative;
  border-radius: 0 !important;
}
.cid-uAM1b1NZsY .iconfont-wrapper {
  color: #404349 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
  transition: all 0.3s ease-in-out;
}
.cid-uAM1b1NZsY .iconfont-wrapper:hover,
.cid-uAM1b1NZsY .iconfont-wrapper:focus {
  color: #ed463f !important;
}
.cid-uAM1b1NZsY .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #254071;
  border-radius: 4px !important;
}
.cid-uAM1b1NZsY .nav-item:focus,
.cid-uAM1b1NZsY .nav-link:focus {
  outline: none;
}
.cid-uAM1b1NZsY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uAM1b1NZsY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uAM1b1NZsY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uAM1b1NZsY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uAM1b1NZsY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uAM1b1NZsY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uAM1b1NZsY .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uAM1b1NZsY .navbar.opened {
  transition: all 0.3s;
}
.cid-uAM1b1NZsY .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uAM1b1NZsY .navbar .navbar-logo img {
  width: auto;
}
.cid-uAM1b1NZsY .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-uAM1b1NZsY .navbar .navbar-collapse {
    position: absolute;
  }
}
.cid-uAM1b1NZsY .navbar.collapsed {
  justify-content: center;
}
.cid-uAM1b1NZsY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uAM1b1NZsY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uAM1b1NZsY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.5rem);
  }
}
.cid-uAM1b1NZsY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uAM1b1NZsY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uAM1b1NZsY .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-uAM1b1NZsY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uAM1b1NZsY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uAM1b1NZsY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uAM1b1NZsY .navbar {
    min-height: 72px;
  }
  .cid-uAM1b1NZsY .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uAM1b1NZsY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uAM1b1NZsY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uAM1b1NZsY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uAM1b1NZsY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uAM1b1NZsY .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-uAM1b1NZsY .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uAM1b1NZsY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uAM1b1NZsY .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uAM1b1NZsY .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uAM1b1NZsY .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uAM1b1NZsY .dropdown-item.active,
.cid-uAM1b1NZsY .dropdown-item:active {
  background-color: transparent;
}
.cid-uAM1b1NZsY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uAM1b1NZsY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uAM1b1NZsY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uAM1b1NZsY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #254071;
}
.cid-uAM1b1NZsY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-uAM1b1NZsY .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uAM1b1NZsY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uAM1b1NZsY .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uAM1b1NZsY .navbar-buttons {
    text-align: left;
  }
}
.cid-uAM1b1NZsY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uAM1b1NZsY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #404349;
}
.cid-uAM1b1NZsY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uAM1b1NZsY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uAM1b1NZsY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uAM1b1NZsY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uAM1b1NZsY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uAM1b1NZsY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uAM1b1NZsY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uAM1b1NZsY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uAM1b1NZsY .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uAM1b1NZsY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uAM1b1NZsY .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 0;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uAM1b1NZsY .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uAM1b1NZsY .navbar {
    height: 70px;
  }
  .cid-uAM1b1NZsY .navbar.opened {
    height: auto;
  }
  .cid-uAM1b1NZsY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uAM1b1NZsY .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uAM1b1NZsY .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uAM1b1NZsY .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uAM1b1NZsY .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-uAM1b1NZsY .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uAM1b1NZsY .mbr-section-btn {
  margin: -0.6rem -0.6rem;
  width: auto;
  padding-left: 1rem;
}
@media (max-width: 992px) {
  .cid-uAM1b1NZsY .mbr-section-btn {
    padding-left: 0;
  }
}
.cid-uAM1b1NZsY .mbr-section-btn .btn {
  justify-content: center;
  width: auto !important;
  padding: 25px 15px;
  min-width: 180px;
}
.cid-uAM1b1NZsY .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uAM1b1NZsY .navbar-brand {
    margin-right: auto;
  }
  .cid-uAM1b1NZsY .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #254071;
    border-radius: 4px !important;
  }
  .cid-uAM1b1NZsY .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uAM1b1NZsY .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uAM1b1NZsY .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uAM1b1NZsY .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uAM1b1NZsY .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uAM1b1NZsY .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-uAM1b1NZsY .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uAM1b1NZsY .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uAM1b1NZsY .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-uAM1b1NZsY .navbar-collapse {
    padding: 1rem;
  }
}
.cid-uAM1b1NZsY .navbar-brand,
.cid-uAM1b1NZsY .navbar-toggler,
.cid-uAM1b1NZsY .navbar-collapse {
  position: relative;
  z-index: 1;
}
.cid-uAM1UiCyOM {
  padding-top: 12rem;
  padding-bottom: 9rem;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background-image: url("../../../assets/images/mbr.jpg");
}
.cid-uAM1UiCyOM .decor-wrap {
  position: absolute;
  right: 0;
  width: 60%;
  height: 150%;
  border-radius: 100% 0 0 100%;
  background-color: #ffffff;
  pointer-events: none;
}
@media (max-width: 992px) {
  .cid-uAM1UiCyOM .decor-wrap {
    width: 100%;
  }
}
.cid-uAM1UiCyOM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAM1UiCyOM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAM1UiCyOM .row {
  position: relative;
  z-index: 1;
}
.cid-uAM1UiCyOM .content-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
.cid-uAM1UiCyOM .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-uAM1UiCyOM .mbr-section-title {
  color: #212529;
}
.cid-uAM1UiCyOM .mbr-text {
  color: #51565c;
}
.cid-uAM22tC4NT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f4f4f6;
}
.cid-uAM22tC4NT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAM22tC4NT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAM22tC4NT .container-fluid {
  padding: 0 56px;
}
@media (max-width: 992px) {
  .cid-uAM22tC4NT .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 992px) {
  .cid-uAM22tC4NT .container {
    padding: 0 26px;
  }
}
.cid-uAM22tC4NT .row {
  justify-content: center;
}
.cid-uAM22tC4NT .content-wrapper {
  display: flex;
  align-items: center;
  padding: 200px 100px 200px 60px;
  background-color: #ffffff;
  border-radius: 20px;
}
@media (max-width: 1440px) {
  .cid-uAM22tC4NT .content-wrapper {
    padding: 100px 60px;
  }
}
@media (max-width: 992px) {
  .cid-uAM22tC4NT .content-wrapper {
    padding: 100px 20px;
    display: block;
  }
}
.cid-uAM22tC4NT .content-wrapper .title-wrapper {
  width: 50%;
  padding-right: 45px;
}
@media (max-width: 992px) {
  .cid-uAM22tC4NT .content-wrapper .title-wrapper {
    width: 100%;
    padding-right: 0;
    margin-bottom: 40px;
  }
}
.cid-uAM22tC4NT .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-uAM22tC4NT .content-wrapper .title-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-uAM22tC4NT .content-wrapper .text-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uAM22tC4NT .content-wrapper .text-wrapper {
    width: 100%;
  }
}
.cid-uAM22tC4NT .content-wrapper .text-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-uAM22tC4NT .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-uAM22tC4NT .content-wrapper .text-wrapper .link-wrapper:hover .mbr-link,
.cid-uAM22tC4NT .content-wrapper .text-wrapper .link-wrapper:focus .mbr-link {
  color: #000000;
}
.cid-uAM22tC4NT .content-wrapper .text-wrapper .link-wrapper .mbr-link {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.cid-uAM22tC4NT .mbr-section-title {
  color: #000000;
}
.cid-uAM22tC4NT .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uAM22tC4NT .mbr-desc {
  color: #ffffff;
}
.cid-uAM22tC4NT .mbr-text {
  color: #000000;
}
.cid-uAM22tC4NT .mbr-link {
  color: #ffffff;
}
.cid-uAM5Z4lg6y {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-image: url("../../../assets/images/mbr-1.jpg");
}
.cid-uAM5Z4lg6y::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 25%;
  background-image: linear-gradient(transparent, #254071 50%);
  z-index: 1;
}
.cid-uAM5Z4lg6y .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAM5Z4lg6y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uAM5Z4lg6y .container {
    padding: 0 22px;
  }
}
.cid-uAM5Z4lg6y .row {
  justify-content: center;
}
.cid-uAM5Z4lg6y .content-wrapper {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}
@media (max-width: 992px) {
  .cid-uAM5Z4lg6y .content-wrapper {
    padding: 0;
  }
}
.cid-uAM5Z4lg6y .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uAM5Z4lg6y .content-wrapper .mbr-desc {
  margin-bottom: 10px;
}
.cid-uAM5Z4lg6y .mbr-section-title {
  color: #ffffff;
}
.cid-uAM5Z4lg6y .mbr-desc {
  color: #ffffff;
  text-align: center;
}
.cid-uAM5Z4lg6y .mbr-section-title,
.cid-uAM5Z4lg6y .mbr-section-btn {
  text-align: center;
}
.cid-uAM2mncRF8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #f4f4f6;
}
.cid-uAM2mncRF8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAM2mncRF8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAM2mncRF8 .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uAM2mncRF8 .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uAM2mncRF8 .container {
    padding: 0 24px;
  }
}
.cid-uAM2mncRF8 .row .card {
  padding: 0 12px;
  border-radius: 0 !important;
}
.cid-uAM2mncRF8 .image-wrapper {
  height: 100%;
}
.cid-uAM2mncRF8 .image-wrapper img {
  height: 100%;
  object-fit: cover;
  border-radius: .75rem !important;
}
@media (max-width: 992px) {
  .cid-uAM2mncRF8 .image-wrapper img {
    height: 350px;
  }
}
.cid-uAM2mncRF8 .content-wrapper {
  display: flex;
  align-items: center;
  background-color: #ffffff;
  border-radius: .75rem;
  padding: 48px;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uAM2mncRF8 .content-wrapper {
    padding: 24px;
  }
}
.cid-uAM2mncRF8 .content-wrapper .content-wrap {
  width: 100%;
}
.cid-uAM2mncRF8 .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uAM2mncRF8 .content-wrapper .content-wrap .mbr-text {
  margin-bottom: 16px;
}
.cid-uAM2mncRF8 .content-wrapper .content-wrap .mbr-section-btn .btn::before {
  background-image: linear-gradient(90deg, #fb8fc9 0%, transparent 100%);
}
.cid-uAM2mncRF8 .content-wrapper .content-wrap .mbr-section-btn .btn:hover,
.cid-uAM2mncRF8 .content-wrapper .content-wrap .mbr-section-btn .btn:focus {
  box-shadow: inset 250px 10px 5px #7f89e9 !important;
  border-color: #7f89e9 !important;
}
.cid-uAM2mncRF8 .mbr-section-title {
  color: #141414;
}
.cid-uAM2mncRF8 .mbr-text {
  color: #141414;
}
.cid-uAM2BjSJ1w {
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uAM2BjSJ1w .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAM2BjSJ1w .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAM2BjSJ1w .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uAM2BjSJ1w .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uAM2BjSJ1w .container {
    padding: 0 24px;
  }
}
.cid-uAM2BjSJ1w .row {
  justify-content: center;
}
.cid-uAM2BjSJ1w .content-wrapper {
  position: relative;
  z-index: 1;
}
.cid-uAM2BjSJ1w .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uAM2BjSJ1w .content-wrapper .text-wrapper .mbr-text {
  display: inline-flex;
  width: 40%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uAM2BjSJ1w .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uAM2BjSJ1w .content-wrapper .mbr-section-btn {
  margin-top: 22px;
}
.cid-uAM2BjSJ1w .content-wrapper .mbr-section-btn .btn::before {
  background-image: linear-gradient(90deg, #fb8fc9 0%, transparent 100%);
}
.cid-uAM2BjSJ1w .content-wrapper .mbr-section-btn .btn:hover,
.cid-uAM2BjSJ1w .content-wrapper .mbr-section-btn .btn:focus {
  box-shadow: inset 250px 10px 5px #7f89e9 !important;
  border-color: #7f89e9 !important;
}
.cid-uAM2BjSJ1w .decor-wrapper {
  position: absolute;
  top: -65%;
  left: 0;
  display: flex;
  justify-content: center;
  width: 100%;
}
.cid-uAM2BjSJ1w .decor-wrapper .decor-wrap {
  width: 400px;
  height: 400px;
  border-radius: 100%;
  filter: blur(80px);
}
.cid-uAM2BjSJ1w .decor-wrapper .decor_1 {
  background-color: #f8e885;
}
.cid-uAM2BjSJ1w .decor-wrapper .decor_2 {
  background-color: #fb8fc9;
}
.cid-uAM2BjSJ1w .decor-wrapper .decor_3 {
  background-color: #7f89e9;
}
.cid-uAM2BjSJ1w .decor-wrapper .decor_4 {
  background-color: #82ebff;
}
.cid-uAM2BjSJ1w .image-wrapper {
  position: absolute;
  bottom: -46%;
  right: -2rem;
  width: 60%;
  height: 500px;
}
@media (max-width: 992px) {
  .cid-uAM2BjSJ1w .image-wrapper {
    position: static;
    width: 100%;
    height: 350px;
    margin-top: 32px;
  }
}
.cid-uAM2BjSJ1w .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: .75rem !important;
}
.cid-uAM2BjSJ1w .image-wrapper::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  opacity: .8;
  border-radius: .75rem;
  pointer-events: none;
}
.cid-uAM2BjSJ1w .mbr-section-title {
  color: #141414;
}
.cid-uAM2BjSJ1w .mbr-text {
  color: #141414;
}
.cid-uAMnvI3nB4 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uAMnvI3nB4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAMnvI3nB4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAMnvI3nB4 .video-wrapper iframe {
  width: 100%;
}
.cid-uAMnvI3nB4 .mbr-section-title,
.cid-uAMnvI3nB4 .mbr-section-subtitle,
.cid-uAMnvI3nB4 .mbr-text {
  text-align: center;
}
.cid-uAM3Q8SBRb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uAM3Q8SBRb .container {
    padding: 0 25px;
  }
}
.cid-uAM3Q8SBRb .title-wrapper {
  margin: 25px 0;
}
.cid-uAM3Q8SBRb .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uAM3Q8SBRb .title-wrapper .mbr-section-title {
    margin-bottom: 25px;
  }
}
.cid-uAM3Q8SBRb .text-wrapper .mbr-section-subtitle {
  margin: 25px 0;
}
.cid-uAM3Q8SBRb .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uAM3Q8SBRb .mbr-section-title {
  color: #000000;
}
.cid-uAM3Q8SBRb .mbr-section-subtitle {
  color: #000000;
}
.cid-uAM3Q8SBRb .mbr-text {
  color: #000000;
}
.cid-uAM6A55C1t {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #254071;
}
.cid-uAM6A55C1t .card-box {
  max-width: 505px;
  margin: 0 auto;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uAM6A55C1t .card-box {
    max-width: 100%;
    margin-bottom: 70px;
  }
}
.cid-uAM6A55C1t .card-title {
  color: #ffffff;
}
.cid-uAM6A55C1t .mbr-text {
  color: #45494E;
  margin-top: 32px;
}
@media (max-width: 991px) {
  .cid-uAM6A55C1t .mbr-text {
    margin-top: 24px;
  }
}
.cid-uAM6A55C1t .mbr-section-btn {
  margin-top: 30px;
}
.cid-uAM6A55C1t .map-wrap {
  position: relative;
  padding-bottom: 110%;
  width: 100%;
}
.cid-uAM6A55C1t .map-position-container {
  position: absolute;
  width: 100%;
  height: 100%;
}
.cid-uAM6A55C1t .google-map {
  height: 100%;
  width: 100%;
  position: relative;
}
.cid-uAM6A55C1t .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uAM6A55C1t .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uAM6A55C1t .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uAM6A55C1t .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uAM6A55C1t .mbr-text,
.cid-uAM6A55C1t .mbr-section-btn {
  color: #ffffff;
}
.cid-uAMezBrSVj {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #254071;
  overflow: hidden;
}
.cid-uAMkaXbKCW {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uAMkaXbKCW .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-uAMkaXbKCW .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uAMkaXbKCW .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uAMkaXbKCW .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 8px !important;
}
.cid-uAMkaXbKCW .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uAMkaXbKCW .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uAMkaXbKCW .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
  margin-right: 0;
}
.cid-uAMkaXbKCW .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-uAMkaXbKCW .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
  border-radius: 4px !important;
}
.cid-uAMkaXbKCW .navbar-nav .nav-item .nav-link:hover {
  background-color: transparent;
}
.cid-uAMkaXbKCW .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uAMkaXbKCW .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uAMkaXbKCW .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
  border-radius: 4px !important;
}
.cid-uAMkaXbKCW .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uAMkaXbKCW .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-uAMkaXbKCW .nav-link {
  width: fit-content;
  position: relative;
}
.cid-uAMkaXbKCW .nav-link:hover {
  color: #ed463f !important;
}
.cid-uAMkaXbKCW .navbar-logo {
  padding-right: 0;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uAMkaXbKCW .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-uAMkaXbKCW .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
  font-weight: 400;
}
.cid-uAMkaXbKCW .navbar-caption:hover,
.cid-uAMkaXbKCW .navbar-caption:focus {
  color: #ed463f !important;
}
@media (max-width: 767px) {
  .cid-uAMkaXbKCW .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uAMkaXbKCW .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-uAMkaXbKCW .menu-container {
  width: 100%;
  display: flex;
  min-height: 90px;
  padding: 10px;
  flex-wrap: nowrap;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 16px;
  margin: 1rem 1rem 0;
  background-color: #254071;
  box-shadow: none;
  position: relative;
  border-radius: 0 !important;
}
.cid-uAMkaXbKCW .iconfont-wrapper {
  color: #404349 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
  transition: all 0.3s ease-in-out;
}
.cid-uAMkaXbKCW .iconfont-wrapper:hover,
.cid-uAMkaXbKCW .iconfont-wrapper:focus {
  color: #ed463f !important;
}
.cid-uAMkaXbKCW .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #254071;
  border-radius: 4px !important;
}
.cid-uAMkaXbKCW .nav-item:focus,
.cid-uAMkaXbKCW .nav-link:focus {
  outline: none;
}
.cid-uAMkaXbKCW .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uAMkaXbKCW .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uAMkaXbKCW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uAMkaXbKCW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uAMkaXbKCW .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uAMkaXbKCW .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uAMkaXbKCW .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uAMkaXbKCW .navbar.opened {
  transition: all 0.3s;
}
.cid-uAMkaXbKCW .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uAMkaXbKCW .navbar .navbar-logo img {
  width: auto;
}
.cid-uAMkaXbKCW .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-uAMkaXbKCW .navbar .navbar-collapse {
    position: absolute;
  }
}
.cid-uAMkaXbKCW .navbar.collapsed {
  justify-content: center;
}
.cid-uAMkaXbKCW .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uAMkaXbKCW .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uAMkaXbKCW .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.5rem);
  }
}
.cid-uAMkaXbKCW .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uAMkaXbKCW .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uAMkaXbKCW .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-uAMkaXbKCW .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uAMkaXbKCW .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uAMkaXbKCW .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uAMkaXbKCW .navbar {
    min-height: 72px;
  }
  .cid-uAMkaXbKCW .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uAMkaXbKCW .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uAMkaXbKCW .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uAMkaXbKCW .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uAMkaXbKCW .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uAMkaXbKCW .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-uAMkaXbKCW .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uAMkaXbKCW .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uAMkaXbKCW .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uAMkaXbKCW .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uAMkaXbKCW .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uAMkaXbKCW .dropdown-item.active,
.cid-uAMkaXbKCW .dropdown-item:active {
  background-color: transparent;
}
.cid-uAMkaXbKCW .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uAMkaXbKCW .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uAMkaXbKCW .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uAMkaXbKCW .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #254071;
}
.cid-uAMkaXbKCW .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-uAMkaXbKCW .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uAMkaXbKCW ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uAMkaXbKCW .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uAMkaXbKCW .navbar-buttons {
    text-align: left;
  }
}
.cid-uAMkaXbKCW button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uAMkaXbKCW button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #404349;
}
.cid-uAMkaXbKCW button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uAMkaXbKCW button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uAMkaXbKCW button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uAMkaXbKCW button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uAMkaXbKCW nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uAMkaXbKCW nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uAMkaXbKCW nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uAMkaXbKCW nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uAMkaXbKCW .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uAMkaXbKCW a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uAMkaXbKCW .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 0;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uAMkaXbKCW .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uAMkaXbKCW .navbar {
    height: 70px;
  }
  .cid-uAMkaXbKCW .navbar.opened {
    height: auto;
  }
  .cid-uAMkaXbKCW .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uAMkaXbKCW .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uAMkaXbKCW .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uAMkaXbKCW .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uAMkaXbKCW .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-uAMkaXbKCW .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uAMkaXbKCW .mbr-section-btn {
  margin: -0.6rem -0.6rem;
  width: auto;
  padding-left: 1rem;
}
@media (max-width: 992px) {
  .cid-uAMkaXbKCW .mbr-section-btn {
    padding-left: 0;
  }
}
.cid-uAMkaXbKCW .mbr-section-btn .btn {
  justify-content: center;
  width: auto !important;
  padding: 25px 15px;
  min-width: 180px;
}
.cid-uAMkaXbKCW .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uAMkaXbKCW .navbar-brand {
    margin-right: auto;
  }
  .cid-uAMkaXbKCW .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #254071;
    border-radius: 4px !important;
  }
  .cid-uAMkaXbKCW .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uAMkaXbKCW .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uAMkaXbKCW .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uAMkaXbKCW .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uAMkaXbKCW .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uAMkaXbKCW .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-uAMkaXbKCW .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uAMkaXbKCW .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uAMkaXbKCW .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-uAMkaXbKCW .navbar-collapse {
    padding: 1rem;
  }
}
.cid-uAMkaXbKCW .navbar-brand,
.cid-uAMkaXbKCW .navbar-toggler,
.cid-uAMkaXbKCW .navbar-collapse {
  position: relative;
  z-index: 1;
}
.cid-uAMkaXBDgk {
  padding-top: 12rem;
  padding-bottom: 9rem;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background-image: url("../../../assets/images/mbr-9.jpg");
}
.cid-uAMkaXBDgk .decor-wrap {
  position: absolute;
  right: 0;
  width: 60%;
  height: 150%;
  border-radius: 100% 0 0 100%;
  background-color: #ffffff;
  pointer-events: none;
}
@media (max-width: 992px) {
  .cid-uAMkaXBDgk .decor-wrap {
    width: 100%;
  }
}
.cid-uAMkaXBDgk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAMkaXBDgk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAMkaXBDgk .row {
  position: relative;
  z-index: 1;
}
.cid-uAMkaXBDgk .content-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
.cid-uAMkaXBDgk .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-uAMkaXBDgk .mbr-section-title {
  color: #212529;
}
.cid-uAMkaXBDgk .mbr-text {
  color: #51565c;
}
.cid-uAMkaXOyIn {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uAMkaXVbd5 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uAMkaXVbd5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAMkaXVbd5 .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-uAMkaXVbd5 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uAMkaXVbd5 .row {
  flex-direction: row-reverse;
}
.cid-uAMkaXVbd5 img {
  width: 100%;
}
.cid-uAMkaY7fYM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uAMkaY7fYM::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 25%;
  background-image: linear-gradient(transparent, #254071 50%);
  z-index: 1;
}
.cid-uAMkaY7fYM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAMkaY7fYM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uAMkaY7fYM .container {
    padding: 0 22px;
  }
}
.cid-uAMkaY7fYM .row {
  justify-content: center;
}
.cid-uAMkaY7fYM .content-wrapper {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}
@media (max-width: 992px) {
  .cid-uAMkaY7fYM .content-wrapper {
    padding: 0;
  }
}
.cid-uAMkaY7fYM .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uAMkaY7fYM .content-wrapper .mbr-desc {
  margin-bottom: 10px;
}
.cid-uAMkaY7fYM .mbr-section-title {
  color: #ffffff;
}
.cid-uAMkaY7fYM .mbr-desc {
  color: #000000;
  text-align: left;
}
.cid-uAMkaY7fYM .mbr-section-title,
.cid-uAMkaY7fYM .mbr-section-btn {
  text-align: center;
}
.cid-uAMkaYiEWk {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #254071;
}
.cid-uAMkaYiEWk .card-box {
  max-width: 505px;
  margin: 0 auto;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uAMkaYiEWk .card-box {
    max-width: 100%;
    margin-bottom: 70px;
  }
}
.cid-uAMkaYiEWk .card-title {
  color: #ffffff;
}
.cid-uAMkaYiEWk .mbr-text {
  color: #45494E;
  margin-top: 32px;
}
@media (max-width: 991px) {
  .cid-uAMkaYiEWk .mbr-text {
    margin-top: 24px;
  }
}
.cid-uAMkaYiEWk .mbr-section-btn {
  margin-top: 30px;
}
.cid-uAMkaYiEWk .map-wrap {
  position: relative;
  padding-bottom: 110%;
  width: 100%;
}
.cid-uAMkaYiEWk .map-position-container {
  position: absolute;
  width: 100%;
  height: 100%;
}
.cid-uAMkaYiEWk .google-map {
  height: 100%;
  width: 100%;
  position: relative;
}
.cid-uAMkaYiEWk .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uAMkaYiEWk .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uAMkaYiEWk .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uAMkaYiEWk .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uAMkaYiEWk .mbr-text,
.cid-uAMkaYiEWk .mbr-section-btn {
  color: #ffffff;
}
.cid-uAMkaYPdkv {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #254071;
  overflow: hidden;
}
.cid-uAMfN7fwWh {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uAMfN7fwWh .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-uAMfN7fwWh .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uAMfN7fwWh .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uAMfN7fwWh .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 8px !important;
}
.cid-uAMfN7fwWh .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uAMfN7fwWh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uAMfN7fwWh .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
  margin-right: 0;
}
.cid-uAMfN7fwWh .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-uAMfN7fwWh .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
  border-radius: 4px !important;
}
.cid-uAMfN7fwWh .navbar-nav .nav-item .nav-link:hover {
  background-color: transparent;
}
.cid-uAMfN7fwWh .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uAMfN7fwWh .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uAMfN7fwWh .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
  border-radius: 4px !important;
}
.cid-uAMfN7fwWh .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uAMfN7fwWh .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-uAMfN7fwWh .nav-link {
  width: fit-content;
  position: relative;
}
.cid-uAMfN7fwWh .nav-link:hover {
  color: #ed463f !important;
}
.cid-uAMfN7fwWh .navbar-logo {
  padding-right: 0;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uAMfN7fwWh .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-uAMfN7fwWh .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
  font-weight: 400;
}
.cid-uAMfN7fwWh .navbar-caption:hover,
.cid-uAMfN7fwWh .navbar-caption:focus {
  color: #ed463f !important;
}
@media (max-width: 767px) {
  .cid-uAMfN7fwWh .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uAMfN7fwWh .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-uAMfN7fwWh .menu-container {
  width: 100%;
  display: flex;
  min-height: 90px;
  padding: 10px;
  flex-wrap: nowrap;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 16px;
  margin: 1rem 1rem 0;
  background-color: #254071;
  box-shadow: none;
  position: relative;
  border-radius: 0 !important;
}
.cid-uAMfN7fwWh .iconfont-wrapper {
  color: #404349 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
  transition: all 0.3s ease-in-out;
}
.cid-uAMfN7fwWh .iconfont-wrapper:hover,
.cid-uAMfN7fwWh .iconfont-wrapper:focus {
  color: #ed463f !important;
}
.cid-uAMfN7fwWh .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #254071;
  border-radius: 4px !important;
}
.cid-uAMfN7fwWh .nav-item:focus,
.cid-uAMfN7fwWh .nav-link:focus {
  outline: none;
}
.cid-uAMfN7fwWh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uAMfN7fwWh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uAMfN7fwWh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uAMfN7fwWh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uAMfN7fwWh .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uAMfN7fwWh .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uAMfN7fwWh .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uAMfN7fwWh .navbar.opened {
  transition: all 0.3s;
}
.cid-uAMfN7fwWh .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uAMfN7fwWh .navbar .navbar-logo img {
  width: auto;
}
.cid-uAMfN7fwWh .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-uAMfN7fwWh .navbar .navbar-collapse {
    position: absolute;
  }
}
.cid-uAMfN7fwWh .navbar.collapsed {
  justify-content: center;
}
.cid-uAMfN7fwWh .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uAMfN7fwWh .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uAMfN7fwWh .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.5rem);
  }
}
.cid-uAMfN7fwWh .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uAMfN7fwWh .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uAMfN7fwWh .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-uAMfN7fwWh .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uAMfN7fwWh .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uAMfN7fwWh .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uAMfN7fwWh .navbar {
    min-height: 72px;
  }
  .cid-uAMfN7fwWh .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uAMfN7fwWh .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uAMfN7fwWh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uAMfN7fwWh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uAMfN7fwWh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uAMfN7fwWh .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-uAMfN7fwWh .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uAMfN7fwWh .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uAMfN7fwWh .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uAMfN7fwWh .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uAMfN7fwWh .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uAMfN7fwWh .dropdown-item.active,
.cid-uAMfN7fwWh .dropdown-item:active {
  background-color: transparent;
}
.cid-uAMfN7fwWh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uAMfN7fwWh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uAMfN7fwWh .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uAMfN7fwWh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #254071;
}
.cid-uAMfN7fwWh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-uAMfN7fwWh .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uAMfN7fwWh ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uAMfN7fwWh .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uAMfN7fwWh .navbar-buttons {
    text-align: left;
  }
}
.cid-uAMfN7fwWh button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uAMfN7fwWh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #404349;
}
.cid-uAMfN7fwWh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uAMfN7fwWh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uAMfN7fwWh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uAMfN7fwWh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uAMfN7fwWh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uAMfN7fwWh nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uAMfN7fwWh nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uAMfN7fwWh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uAMfN7fwWh .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uAMfN7fwWh a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uAMfN7fwWh .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 0;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uAMfN7fwWh .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uAMfN7fwWh .navbar {
    height: 70px;
  }
  .cid-uAMfN7fwWh .navbar.opened {
    height: auto;
  }
  .cid-uAMfN7fwWh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uAMfN7fwWh .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uAMfN7fwWh .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uAMfN7fwWh .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uAMfN7fwWh .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-uAMfN7fwWh .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uAMfN7fwWh .mbr-section-btn {
  margin: -0.6rem -0.6rem;
  width: auto;
  padding-left: 1rem;
}
@media (max-width: 992px) {
  .cid-uAMfN7fwWh .mbr-section-btn {
    padding-left: 0;
  }
}
.cid-uAMfN7fwWh .mbr-section-btn .btn {
  justify-content: center;
  width: auto !important;
  padding: 25px 15px;
  min-width: 180px;
}
.cid-uAMfN7fwWh .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uAMfN7fwWh .navbar-brand {
    margin-right: auto;
  }
  .cid-uAMfN7fwWh .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #254071;
    border-radius: 4px !important;
  }
  .cid-uAMfN7fwWh .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uAMfN7fwWh .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uAMfN7fwWh .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uAMfN7fwWh .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uAMfN7fwWh .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uAMfN7fwWh .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-uAMfN7fwWh .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uAMfN7fwWh .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uAMfN7fwWh .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-uAMfN7fwWh .navbar-collapse {
    padding: 1rem;
  }
}
.cid-uAMfN7fwWh .navbar-brand,
.cid-uAMfN7fwWh .navbar-toggler,
.cid-uAMfN7fwWh .navbar-collapse {
  position: relative;
  z-index: 1;
}
.cid-uAMfN81w9a {
  padding-top: 12rem;
  padding-bottom: 9rem;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background-image: url("../../../assets/images/mbr-4.jpg");
}
.cid-uAMfN81w9a .decor-wrap {
  position: absolute;
  right: 0;
  width: 60%;
  height: 150%;
  border-radius: 100% 0 0 100%;
  background-color: #ffffff;
  pointer-events: none;
}
@media (max-width: 992px) {
  .cid-uAMfN81w9a .decor-wrap {
    width: 100%;
  }
}
.cid-uAMfN81w9a .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAMfN81w9a .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAMfN81w9a .row {
  position: relative;
  z-index: 1;
}
.cid-uAMfN81w9a .content-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
.cid-uAMfN81w9a .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-uAMfN81w9a .mbr-section-title {
  color: #212529;
}
.cid-uAMfN81w9a .mbr-text {
  color: #51565c;
}
.cid-uAMg6FyI0O {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uAMgzKgQrq {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uAMgzKgQrq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAMgzKgQrq .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-uAMgzKgQrq .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uAMgzKgQrq .row {
  flex-direction: row-reverse;
}
.cid-uAMgzKgQrq img {
  width: 100%;
}
.cid-uAMfN8paB3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uAMfN8paB3::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 25%;
  background-image: linear-gradient(transparent, #254071 50%);
  z-index: 1;
}
.cid-uAMfN8paB3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAMfN8paB3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uAMfN8paB3 .container {
    padding: 0 22px;
  }
}
.cid-uAMfN8paB3 .row {
  justify-content: center;
}
.cid-uAMfN8paB3 .content-wrapper {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}
@media (max-width: 992px) {
  .cid-uAMfN8paB3 .content-wrapper {
    padding: 0;
  }
}
.cid-uAMfN8paB3 .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uAMfN8paB3 .content-wrapper .mbr-desc {
  margin-bottom: 10px;
}
.cid-uAMfN8paB3 .mbr-section-title {
  color: #ffffff;
}
.cid-uAMfN8paB3 .mbr-desc {
  color: #000000;
  text-align: left;
}
.cid-uAMfN8paB3 .mbr-section-title,
.cid-uAMfN8paB3 .mbr-section-btn {
  text-align: center;
}
.cid-uAMfN9gIXf {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #254071;
}
.cid-uAMfN9gIXf .card-box {
  max-width: 505px;
  margin: 0 auto;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uAMfN9gIXf .card-box {
    max-width: 100%;
    margin-bottom: 70px;
  }
}
.cid-uAMfN9gIXf .card-title {
  color: #ffffff;
}
.cid-uAMfN9gIXf .mbr-text {
  color: #45494E;
  margin-top: 32px;
}
@media (max-width: 991px) {
  .cid-uAMfN9gIXf .mbr-text {
    margin-top: 24px;
  }
}
.cid-uAMfN9gIXf .mbr-section-btn {
  margin-top: 30px;
}
.cid-uAMfN9gIXf .map-wrap {
  position: relative;
  padding-bottom: 110%;
  width: 100%;
}
.cid-uAMfN9gIXf .map-position-container {
  position: absolute;
  width: 100%;
  height: 100%;
}
.cid-uAMfN9gIXf .google-map {
  height: 100%;
  width: 100%;
  position: relative;
}
.cid-uAMfN9gIXf .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uAMfN9gIXf .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uAMfN9gIXf .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uAMfN9gIXf .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uAMfN9gIXf .mbr-text,
.cid-uAMfN9gIXf .mbr-section-btn {
  color: #ffffff;
}
.cid-uAMfN9DbAq {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #254071;
  overflow: hidden;
}
.cid-uAMkGGWWYN {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uAMkGGWWYN .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-uAMkGGWWYN .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uAMkGGWWYN .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uAMkGGWWYN .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 8px !important;
}
.cid-uAMkGGWWYN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uAMkGGWWYN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uAMkGGWWYN .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
  margin-right: 0;
}
.cid-uAMkGGWWYN .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-uAMkGGWWYN .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
  border-radius: 4px !important;
}
.cid-uAMkGGWWYN .navbar-nav .nav-item .nav-link:hover {
  background-color: transparent;
}
.cid-uAMkGGWWYN .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uAMkGGWWYN .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uAMkGGWWYN .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
  border-radius: 4px !important;
}
.cid-uAMkGGWWYN .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uAMkGGWWYN .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-uAMkGGWWYN .nav-link {
  width: fit-content;
  position: relative;
}
.cid-uAMkGGWWYN .nav-link:hover {
  color: #ed463f !important;
}
.cid-uAMkGGWWYN .navbar-logo {
  padding-right: 0;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uAMkGGWWYN .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-uAMkGGWWYN .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
  font-weight: 400;
}
.cid-uAMkGGWWYN .navbar-caption:hover,
.cid-uAMkGGWWYN .navbar-caption:focus {
  color: #ed463f !important;
}
@media (max-width: 767px) {
  .cid-uAMkGGWWYN .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uAMkGGWWYN .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-uAMkGGWWYN .menu-container {
  width: 100%;
  display: flex;
  min-height: 90px;
  padding: 10px;
  flex-wrap: nowrap;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 16px;
  margin: 1rem 1rem 0;
  background-color: #254071;
  box-shadow: none;
  position: relative;
  border-radius: 0 !important;
}
.cid-uAMkGGWWYN .iconfont-wrapper {
  color: #404349 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
  transition: all 0.3s ease-in-out;
}
.cid-uAMkGGWWYN .iconfont-wrapper:hover,
.cid-uAMkGGWWYN .iconfont-wrapper:focus {
  color: #ed463f !important;
}
.cid-uAMkGGWWYN .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #254071;
  border-radius: 4px !important;
}
.cid-uAMkGGWWYN .nav-item:focus,
.cid-uAMkGGWWYN .nav-link:focus {
  outline: none;
}
.cid-uAMkGGWWYN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uAMkGGWWYN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uAMkGGWWYN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uAMkGGWWYN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uAMkGGWWYN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uAMkGGWWYN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uAMkGGWWYN .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uAMkGGWWYN .navbar.opened {
  transition: all 0.3s;
}
.cid-uAMkGGWWYN .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uAMkGGWWYN .navbar .navbar-logo img {
  width: auto;
}
.cid-uAMkGGWWYN .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-uAMkGGWWYN .navbar .navbar-collapse {
    position: absolute;
  }
}
.cid-uAMkGGWWYN .navbar.collapsed {
  justify-content: center;
}
.cid-uAMkGGWWYN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uAMkGGWWYN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uAMkGGWWYN .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.5rem);
  }
}
.cid-uAMkGGWWYN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uAMkGGWWYN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uAMkGGWWYN .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-uAMkGGWWYN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uAMkGGWWYN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uAMkGGWWYN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uAMkGGWWYN .navbar {
    min-height: 72px;
  }
  .cid-uAMkGGWWYN .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uAMkGGWWYN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uAMkGGWWYN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uAMkGGWWYN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uAMkGGWWYN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uAMkGGWWYN .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-uAMkGGWWYN .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uAMkGGWWYN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uAMkGGWWYN .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uAMkGGWWYN .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uAMkGGWWYN .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uAMkGGWWYN .dropdown-item.active,
.cid-uAMkGGWWYN .dropdown-item:active {
  background-color: transparent;
}
.cid-uAMkGGWWYN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uAMkGGWWYN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uAMkGGWWYN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uAMkGGWWYN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #254071;
}
.cid-uAMkGGWWYN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-uAMkGGWWYN .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uAMkGGWWYN ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uAMkGGWWYN .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uAMkGGWWYN .navbar-buttons {
    text-align: left;
  }
}
.cid-uAMkGGWWYN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uAMkGGWWYN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #404349;
}
.cid-uAMkGGWWYN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uAMkGGWWYN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uAMkGGWWYN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uAMkGGWWYN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uAMkGGWWYN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uAMkGGWWYN nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uAMkGGWWYN nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uAMkGGWWYN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uAMkGGWWYN .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uAMkGGWWYN a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uAMkGGWWYN .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 0;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uAMkGGWWYN .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uAMkGGWWYN .navbar {
    height: 70px;
  }
  .cid-uAMkGGWWYN .navbar.opened {
    height: auto;
  }
  .cid-uAMkGGWWYN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uAMkGGWWYN .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uAMkGGWWYN .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uAMkGGWWYN .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uAMkGGWWYN .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-uAMkGGWWYN .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uAMkGGWWYN .mbr-section-btn {
  margin: -0.6rem -0.6rem;
  width: auto;
  padding-left: 1rem;
}
@media (max-width: 992px) {
  .cid-uAMkGGWWYN .mbr-section-btn {
    padding-left: 0;
  }
}
.cid-uAMkGGWWYN .mbr-section-btn .btn {
  justify-content: center;
  width: auto !important;
  padding: 25px 15px;
  min-width: 180px;
}
.cid-uAMkGGWWYN .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uAMkGGWWYN .navbar-brand {
    margin-right: auto;
  }
  .cid-uAMkGGWWYN .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #254071;
    border-radius: 4px !important;
  }
  .cid-uAMkGGWWYN .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uAMkGGWWYN .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uAMkGGWWYN .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uAMkGGWWYN .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uAMkGGWWYN .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uAMkGGWWYN .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-uAMkGGWWYN .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uAMkGGWWYN .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uAMkGGWWYN .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-uAMkGGWWYN .navbar-collapse {
    padding: 1rem;
  }
}
.cid-uAMkGGWWYN .navbar-brand,
.cid-uAMkGGWWYN .navbar-toggler,
.cid-uAMkGGWWYN .navbar-collapse {
  position: relative;
  z-index: 1;
}
.cid-uAMkGHk22W {
  padding-top: 12rem;
  padding-bottom: 9rem;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background-image: url("../../../assets/images/mbr-6.jpg");
}
.cid-uAMkGHk22W .decor-wrap {
  position: absolute;
  right: 0;
  width: 60%;
  height: 150%;
  border-radius: 100% 0 0 100%;
  background-color: #ffffff;
  pointer-events: none;
}
@media (max-width: 992px) {
  .cid-uAMkGHk22W .decor-wrap {
    width: 100%;
  }
}
.cid-uAMkGHk22W .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAMkGHk22W .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAMkGHk22W .row {
  position: relative;
  z-index: 1;
}
.cid-uAMkGHk22W .content-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
.cid-uAMkGHk22W .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-uAMkGHk22W .mbr-section-title {
  color: #212529;
}
.cid-uAMkGHk22W .mbr-text {
  color: #51565c;
}
.cid-uAMkGHxIT4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uAMnoE64r3 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uAMnoE64r3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAMnoE64r3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAMnoE64r3 .video-wrapper iframe {
  width: 100%;
}
.cid-uAMnoE64r3 .mbr-section-title,
.cid-uAMnoE64r3 .mbr-section-subtitle,
.cid-uAMnoE64r3 .mbr-text {
  text-align: center;
}
.cid-uAMkGHS6ma {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uAMkGHS6ma::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 25%;
  background-image: linear-gradient(transparent, #254071 50%);
  z-index: 1;
}
.cid-uAMkGHS6ma .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAMkGHS6ma .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uAMkGHS6ma .container {
    padding: 0 22px;
  }
}
.cid-uAMkGHS6ma .row {
  justify-content: center;
}
.cid-uAMkGHS6ma .content-wrapper {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}
@media (max-width: 992px) {
  .cid-uAMkGHS6ma .content-wrapper {
    padding: 0;
  }
}
.cid-uAMkGHS6ma .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uAMkGHS6ma .content-wrapper .mbr-desc {
  margin-bottom: 10px;
}
.cid-uAMkGHS6ma .mbr-section-title {
  color: #ffffff;
}
.cid-uAMkGHS6ma .mbr-desc {
  color: #000000;
  text-align: left;
}
.cid-uAMkGHS6ma .mbr-section-title,
.cid-uAMkGHS6ma .mbr-section-btn {
  text-align: center;
}
.cid-uAMkGI5UMq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #254071;
}
.cid-uAMkGI5UMq .card-box {
  max-width: 505px;
  margin: 0 auto;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uAMkGI5UMq .card-box {
    max-width: 100%;
    margin-bottom: 70px;
  }
}
.cid-uAMkGI5UMq .card-title {
  color: #ffffff;
}
.cid-uAMkGI5UMq .mbr-text {
  color: #45494E;
  margin-top: 32px;
}
@media (max-width: 991px) {
  .cid-uAMkGI5UMq .mbr-text {
    margin-top: 24px;
  }
}
.cid-uAMkGI5UMq .mbr-section-btn {
  margin-top: 30px;
}
.cid-uAMkGI5UMq .map-wrap {
  position: relative;
  padding-bottom: 110%;
  width: 100%;
}
.cid-uAMkGI5UMq .map-position-container {
  position: absolute;
  width: 100%;
  height: 100%;
}
.cid-uAMkGI5UMq .google-map {
  height: 100%;
  width: 100%;
  position: relative;
}
.cid-uAMkGI5UMq .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uAMkGI5UMq .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uAMkGI5UMq .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uAMkGI5UMq .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uAMkGI5UMq .mbr-text,
.cid-uAMkGI5UMq .mbr-section-btn {
  color: #ffffff;
}
.cid-uAMkGIptc3 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #254071;
  overflow: hidden;
}
