body {
  font-family: Inter;
}
.display-1 {
  font-family: 'Inter', sans-serif;
  font-size: 5rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 8rem;
}
.display-2 {
  font-family: 'Inter', sans-serif;
  font-size: 3.8rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 6.08rem;
}
.display-4 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}
.display-4 > .mbr-iconfont {
  font-size: 1.6rem;
}
.display-5 {
  font-family: 'Inter', sans-serif;
  font-size: 2.2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 3.52rem;
}
.display-7 {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  line-height: 1.6;
}
.display-7 > .mbr-iconfont {
  font-size: 1.92rem;
}
/* ---- 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: 4rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.5rem;
    font-size: calc( 2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 3.04rem;
    font-size: calc( 1.98rem + (3.8 - 1.98) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.98rem + (3.8 - 1.98) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.76rem;
    font-size: calc( 1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 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.625rem 0.874rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 2rem;
  border-radius: 6px;
}
.btn-lg {
  padding: 1.3125rem 2.5rem;
  border-radius: 6px;
}
.bg-primary {
  background-color: #1654b7 !important;
}
.bg-success {
  background-color: #2bb3f9 !important;
}
.bg-info {
  background-color: #ffffff !important;
}
.bg-warning {
  background-color: #78dbf9 !important;
}
.bg-danger {
  background-color: #f355d6 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #1654b7 !important;
  border-color: #1654b7 !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: #113f89 !important;
  border-color: #113f89 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #113f89 !important;
  border-color: #113f89 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #7241da !important;
  border-color: #7241da !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: #5826c2 !important;
  border-color: #5826c2 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #5826c2 !important;
  border-color: #5826c2 !important;
}
.btn-info,
.btn-info:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !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: #666666 !important;
  background-color: #e6e6e6 !important;
  border-color: #e6e6e6 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #808080 !important;
  background-color: #e6e6e6 !important;
  border-color: #e6e6e6 !important;
}
.btn-success,
.btn-success:active {
  background-color: #2bb3f9 !important;
  border-color: #2bb3f9 !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: #079dea !important;
  border-color: #079dea !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #079dea !important;
  border-color: #079dea !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #78dbf9 !important;
  border-color: #78dbf9 !important;
  color: #05556d !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #47cef7 !important;
  border-color: #47cef7 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #05556d !important;
  background-color: #47cef7 !important;
  border-color: #47cef7 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #f355d6 !important;
  border-color: #f355d6 !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: #f025cb !important;
  border-color: #f025cb !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #f025cb !important;
  border-color: #f025cb !important;
}
.btn-white {
  color: #333333 !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: #616161 !important;
  background-color: #e1e1e1 !important;
  border-color: #e1e1e1 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #e1e1e1 !important;
  border-color: #e1e1e1 !important;
}
.btn-white:hover {
  color: #fafafa !important;
}
.btn-white:hover,
.btn-white:hover:active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover:hover,
.btn-white:hover:focus,
.btn-white:hover.focus,
.btn-white:hover.active {
  color: #ffffff !important;
  background-color: #1a1a1a !important;
  border-color: #1a1a1a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover.disabled,
.btn-white:hover:disabled {
  color: #ffffff !important;
  background-color: #1a1a1a !important;
  border-color: #1a1a1a !important;
}
.btn-black {
  color: #fafafa !important;
}
.btn-black,
.btn-black:active {
  background-color: #333333 !important;
  border-color: #333333 !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: #1a1a1a !important;
  border-color: #1a1a1a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #1a1a1a !important;
  border-color: #1a1a1a !important;
}
.btn-black:hover {
  color: #333333 !important;
}
.btn-black:hover,
.btn-black:hover: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-black:hover:hover,
.btn-black:hover:focus,
.btn-black:hover.focus,
.btn-black:hover.active {
  color: #616161 !important;
  background-color: #e1e1e1 !important;
  border-color: #e1e1e1 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover.disabled,
.btn-black:hover:disabled {
  color: #7a7a7a !important;
  background-color: #e1e1e1 !important;
  border-color: #e1e1e1 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #1654b7;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #113f89 !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: #1654b7 !important;
  border-color: #1654b7 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #7241da;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #5826c2 !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: #7241da !important;
  border-color: #7241da !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffffff;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #e6e6e6 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #2bb3f9;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #079dea !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: #2bb3f9 !important;
  border-color: #2bb3f9 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #78dbf9;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #47cef7 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #05556d !important;
  background-color: #78dbf9 !important;
  border-color: #78dbf9 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #f355d6;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #f025cb !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: #f355d6 !important;
  border-color: #f355d6 !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background-color: transparent;
  border-color: transparent;
  color: #333333;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #fafafa;
  background-color: transparent;
  border-color: transparent;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background-color: transparent;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: transparent;
  border-color: transparent;
}
.text-primary {
  color: #1654b7 !important;
}
.text-secondary {
  color: #7241da !important;
}
.text-success {
  color: #2bb3f9 !important;
}
.text-info {
  color: #ffffff !important;
}
.text-warning {
  color: #78dbf9 !important;
}
.text-danger {
  color: #f355d6 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #333333 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #113f89 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #5826c2 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #079dea !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #e6e6e6 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #47cef7 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #f025cb !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #e1e1e1 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #ffffff;
}
.alert-warning {
  background-color: #78dbf9;
}
.alert-danger {
  background-color: #f355d6;
}
.mbr-gallery-filter li.active .btn {
  background-color: #1654b7;
  border-color: #1654b7;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #1654b7;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #6196ec;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #f1faff;
}
.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: 'Inter', sans-serif;
  font-size: 1.2rem;
  line-height: 1.6;
}
.form-control > .mbr-iconfont {
  font-size: 1.92rem;
}
blockquote {
  border-color: #1654b7;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #1654b7;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: gray !important;
  border-bottom-color: gray !important;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #1654b7;
  border-bottom-color: #1654b7;
}
.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: #1654b7 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #7241da !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='%231654b7' %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-tV42s89qya {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-tV42s89qya .btn {
  padding: 0.6rem 2rem;
  border: none !important;
  font-weight: 400;
  box-shadow: none;
}
.cid-tV42s89qya nav.navbar {
  position: fixed;
}
.cid-tV42s89qya .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tV42s89qya .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tV42s89qya .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tV42s89qya .dropdown-item:hover,
.cid-tV42s89qya .dropdown-item:focus {
  background: #1654b7 !important;
  color: white !important;
}
.cid-tV42s89qya .dropdown-item:hover span {
  color: white;
}
.cid-tV42s89qya .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tV42s89qya .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tV42s89qya .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tV42s89qya .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tV42s89qya .nav-link {
  position: relative;
}
.cid-tV42s89qya .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tV42s89qya .container {
    flex-wrap: nowrap;
  }
}
.cid-tV42s89qya .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tV42s89qya .dropdown-menu,
.cid-tV42s89qya .navbar.opened {
  background: #ffffff !important;
}
.cid-tV42s89qya .nav-item:focus,
.cid-tV42s89qya .nav-link:focus {
  outline: none;
}
.cid-tV42s89qya .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tV42s89qya .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tV42s89qya .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tV42s89qya .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tV42s89qya .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tV42s89qya .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tV42s89qya .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tV42s89qya .navbar.opened {
  transition: all 0.3s;
}
.cid-tV42s89qya .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tV42s89qya .navbar .navbar-logo img {
  width: auto;
}
.cid-tV42s89qya .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tV42s89qya .navbar.collapsed {
  justify-content: center;
}
.cid-tV42s89qya .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tV42s89qya .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tV42s89qya .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-tV42s89qya .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tV42s89qya .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tV42s89qya .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-tV42s89qya .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tV42s89qya .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tV42s89qya .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tV42s89qya .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tV42s89qya .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tV42s89qya .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tV42s89qya .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tV42s89qya .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-tV42s89qya .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tV42s89qya .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tV42s89qya .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tV42s89qya .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tV42s89qya .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tV42s89qya .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tV42s89qya .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tV42s89qya .navbar.navbar-short {
  min-height: 80px;
}
.cid-tV42s89qya .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tV42s89qya .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tV42s89qya .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tV42s89qya .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tV42s89qya .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tV42s89qya .dropdown-item.active,
.cid-tV42s89qya .dropdown-item:active {
  background-color: transparent;
}
.cid-tV42s89qya .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tV42s89qya .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tV42s89qya .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tV42s89qya .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tV42s89qya .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tV42s89qya .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tV42s89qya ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tV42s89qya .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tV42s89qya button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tV42s89qya button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tV42s89qya button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tV42s89qya button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tV42s89qya button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tV42s89qya button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tV42s89qya nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tV42s89qya nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tV42s89qya nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tV42s89qya nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tV42s89qya .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tV42s89qya a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tV42s89qya .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tV42s89qya .navbar {
    height: 70px;
  }
  .cid-tV42s89qya .navbar.opened {
    height: auto;
  }
  .cid-tV42s89qya .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uizfkeFmzc {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #e2e7f8;
}
.cid-uizfkeFmzc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uizfkeFmzc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uizfkeFmzc .container-fluid {
  padding: 10px 8px;
}
@media (max-width: 992px) {
  .cid-uizfkeFmzc .container {
    padding: 10px 8px;
  }
}
.cid-uizfkeFmzc .row {
  border-radius: 25px;
  background-color: #7241da;
  padding: 40px;
  margin: 0;
  overflow: hidden;
}
@media (max-width: 768px) {
  .cid-uizfkeFmzc .row {
    padding: 40px 10px;
  }
}
.cid-uizfkeFmzc .row .card {
  padding: 0;
  justify-content: center;
}
.cid-uizfkeFmzc .content-wrapper {
  padding-right: 50px;
}
@media (max-width: 992px) {
  .cid-uizfkeFmzc .content-wrapper {
    padding: 0;
  }
}
.cid-uizfkeFmzc .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uizfkeFmzc .content-wrapper .mbr-section-title span {
  opacity: .8;
}
.cid-uizfkeFmzc .content-wrapper .mbr-text {
  margin-bottom: 32px;
}
.cid-uizfkeFmzc .content-wrapper .cards-wrap {
  margin-top: 60px;
}
@media (max-width: 992px) {
  .cid-uizfkeFmzc .content-wrapper .cards-wrap {
    margin: 32px 0 32px;
  }
}
.cid-uizfkeFmzc .content-wrapper .cards-wrap .card-wrap {
  display: inline-flex;
  width: 250px;
  border-radius: 25px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  margin-bottom: 16px;
  cursor: pointer;
}
@media (max-width: 1500px) {
  .cid-uizfkeFmzc .content-wrapper .cards-wrap .card-wrap {
    width: 200px;
  }
}
@media (max-width: 1280px) {
  .cid-uizfkeFmzc .content-wrapper .cards-wrap .card-wrap {
    width: 150px;
  }
}
@media (max-width: 992px) {
  .cid-uizfkeFmzc .content-wrapper .cards-wrap .card-wrap {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .cid-uizfkeFmzc .content-wrapper .cards-wrap .card-wrap {
    border-radius: 17px;
  }
}
.cid-uizfkeFmzc .content-wrapper .cards-wrap .card-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #2bb3f9;
  opacity: .8;
}
.cid-uizfkeFmzc .content-wrapper .cards-wrap .card-wrap .item-wrapper {
  position: relative;
  width: 100%;
}
.cid-uizfkeFmzc .content-wrapper .cards-wrap .card-wrap .item-wrapper .item-img {
  display: flex;
  justify-content: flex-end;
}
.cid-uizfkeFmzc .content-wrapper .cards-wrap .card-wrap .item-wrapper .item-img img {
  display: inline-flex;
  width: 70px;
  height: 70px;
  border-radius: 100% !important;
  margin: -4px -4px 0 0;
  object-fit: cover;
}
.cid-uizfkeFmzc .content-wrapper .cards-wrap .card-wrap .item-wrapper .item-content {
  padding: 30px;
}
@media (max-width: 768px) {
  .cid-uizfkeFmzc .content-wrapper .cards-wrap .card-wrap .item-wrapper .item-content {
    padding: 15px;
  }
}
.cid-uizfkeFmzc .content-wrapper .cards-wrap .card-wrap .item-wrapper .item-content .card-text {
  margin-bottom: 0;
}
.cid-uizfkeFmzc .image-wrapper .icon-wrapper {
  display: flex;
  justify-content: space-between;
}
.cid-uizfkeFmzc .image-wrapper .icon-wrapper .mbr-iconfont {
  width: 100px;
  height: 100px;
  font-size: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 25px;
  color: #ffffff;
  background-color: #1654b7;
  transform: rotate(-5deg);
  margin-top: 100px;
}
.cid-uizfkeFmzc .image-wrapper .icon-wrapper .mbr-iconfont:nth-child(2) {
  background-color: #f355d6;
  margin-top: 0;
}
.cid-uizfkeFmzc .image-wrapper .icon-wrapper .mbr-iconfont:nth-child(3) {
  background-color: #2bb3f9;
  transform: rotate(5deg);
}
@media (max-width: 768px) {
  .cid-uizfkeFmzc .image-wrapper .icon-wrapper .mbr-iconfont {
    width: 50px;
    height: 50px;
    margin-top: 30px;
    font-size: 25px;
  }
}
.cid-uizfkeFmzc .image-wrapper .image-wrap {
  display: flex;
  justify-content: center;
  margin-top: -8rem;
}
.cid-uizfkeFmzc .image-wrapper .image-wrap img {
  height: 650px;
  width: 650px;
  object-fit: cover;
  border-radius: 100% !important;
}
@media (max-width: 1199px) {
  .cid-uizfkeFmzc .image-wrapper .image-wrap img {
    height: 450px;
    width: 450px;
    min-width: 450px;
  }
}
.cid-uizfkeFmzc .image-wrapper .cards-wrapper {
  display: flex;
  justify-content: space-between;
  margin-top: -8rem;
}
@media (max-width: 992px) {
  .cid-uizfkeFmzc .image-wrapper .cards-wrapper {
    flex-direction: column;
  }
}
.cid-uizfkeFmzc .image-wrapper .cards-wrapper .card-wrapper {
  display: inline-flex;
  max-width: 250px;
  border-radius: 25px;
  position: relative;
  overflow: hidden;
  padding: 30px;
  backdrop-filter: blur(12px);
  height: fit-content;
}
@media (max-width: 1500px) {
  .cid-uizfkeFmzc .image-wrapper .cards-wrapper .card-wrapper {
    max-width: 200px;
  }
}
@media (max-width: 1280px) {
  .cid-uizfkeFmzc .image-wrapper .cards-wrapper .card-wrapper {
    max-width: 150px;
  }
}
@media (max-width: 992px) {
  .cid-uizfkeFmzc .image-wrapper .cards-wrapper .card-wrapper {
    display: block;
    max-width: 100%;
    width: 100%;
    margin-bottom: 16px;
  }
  .cid-uizfkeFmzc .image-wrapper .cards-wrapper .card-wrapper:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 768px) {
  .cid-uizfkeFmzc .image-wrapper .cards-wrapper .card-wrapper {
    padding: 15px;
    border-radius: 17px;
  }
}
.cid-uizfkeFmzc .image-wrapper .cards-wrapper .card-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #2bb3f9;
  opacity: .8;
}
.cid-uizfkeFmzc .image-wrapper .cards-wrapper .card-wrapper:nth-child(2n) {
  margin-top: 60px;
}
@media (max-width: 992px) {
  .cid-uizfkeFmzc .image-wrapper .cards-wrapper .card-wrapper:nth-child(2n) {
    margin-top: 0;
  }
}
.cid-uizfkeFmzc .image-wrapper .cards-wrapper .card-wrapper .item-wrapper {
  position: relative;
  width: 100%;
}
.cid-uizfkeFmzc .image-wrapper .cards-wrapper .card-wrapper .item-wrapper .card-box .dot-wrapper {
  margin-bottom: 40px;
}
.cid-uizfkeFmzc .image-wrapper .cards-wrapper .card-wrapper .item-wrapper .card-box .dot-wrapper .dot-wrap {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ffffff;
}
.cid-uizfkeFmzc .image-wrapper .cards-wrapper .card-wrapper .item-wrapper .card-box .card-text {
  margin-bottom: 0;
}
.cid-uizfkeFmzc .mbr-section-title {
  color: #ffffff;
}
.cid-uizfkeFmzc .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uizfkeFmzc .card-text {
  color: #ffffff;
}
.cid-uizfkeFmzc .mbr-section-title,
.cid-uizfkeFmzc .mbr-section-btn,
.cid-uizfkeFmzc .cards-wrap {
  color: #fafafa;
}
.cid-u6nAEdwBbB {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-u6nAEdwBbB .mbr-fallback-image.disabled {
  display: none;
}
.cid-u6nAEdwBbB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u6nAEdwBbB .mbr-section-title {
  color: #000000;
}
.cid-u6nAGsFyfK {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-u6nAGsFyfK .mbr-text {
  color: #000000;
}
.cid-ucHrHrtKZc {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #1654b7;
}
.cid-ucHrHrtKZc .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucHrHrtKZc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucHrHrtKZc .mbr-section-title {
  color: #ffffff;
}
.cid-uiba2G5VLW {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uiba2G5VLW .mbr-text {
  color: #000000;
}
.cid-ucHrKRejxl {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #1654b7;
}
.cid-ucHrKRejxl .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucHrKRejxl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucHrKRejxl .mbr-section-title {
  color: #ffffff;
}
.cid-ucHpsSXUbe {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ucHpsSXUbe .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucHpsSXUbe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucHpvYxOy7 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-ucHpvYxOy7 .mbr-text {
  color: #000000;
}
.cid-uouYvhTpZv {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #7241da;
}
.cid-uouYvhTpZv .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.6;
}
.cid-uouYvhTpZv input,
.cid-uouYvhTpZv textarea {
  padding: 0.4rem 1.4rem!important;
  border-radius: 10px;
}
.cid-uouYvhTpZv img {
  width: 90%;
  border-radius: 8px;
}
.cid-uouYvhTpZv .title {
  margin-bottom: 1rem;
}
.cid-uouYvhTpZv p {
  line-height: 1.6;
}
.cid-uouYvhTpZv .btn {
  border-radius: 30px;
  padding: 0.6rem 3rem!important;
}
.cid-uouYvhTpZv textarea {
  min-height: 160px;
}
.cid-uouYvhTpZv .form-control,
.cid-uouYvhTpZv .field-input {
  padding: 0.5rem;
  background-color: #f2f6ff;
  border-color: #ffffff;
  color: #232323;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-uouYvhTpZv .form-control:hover,
.cid-uouYvhTpZv .field-input:hover,
.cid-uouYvhTpZv .form-control:focus,
.cid-uouYvhTpZv .field-input:focus {
  background-color: #f2f6ff;
  border-color: #ffffff;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-uouYvhTpZv input::-webkit-input-placeholder,
.cid-uouYvhTpZv textarea::-webkit-input-placeholder {
  color: #7241da;
}
.cid-uouYvhTpZv input:-moz-placeholder,
.cid-uouYvhTpZv textarea:-moz-placeholder {
  color: #7241da;
}
.cid-uouYvhTpZv .jq-selectbox li,
.cid-uouYvhTpZv .jq-selectbox li {
  background-color: #f2f6ff;
  color: #000000;
}
.cid-uouYvhTpZv .jq-selectbox li:hover,
.cid-uouYvhTpZv .jq-selectbox li.selected {
  background-color: #f2f6ff;
  color: #000000;
}
.cid-uouYvhTpZv .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #f2f6ff;
}
.cid-uouYvhTpZv .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #f2f6ff;
}
.cid-uouYvhTpZv H5 {
  color: #ffffff;
  padding-bottom: 2rem;
}
@media (max-width: 992px) {
  .cid-uouYvhTpZv img {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .cid-uouYvhTpZv .col-auto {
    width: 100%;
    text-align: center;
  }
}
.cid-uouYvhTpZv H2 {
  color: #ffffff;
}
.cid-uouYvhTpZv H3 {
  color: #ffffff;
}
.cid-uouYvhTpZv .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uouYvhTpZv .mbr-section-subtitle {
  color: #fafafa;
}
.cid-ukOg2GD51t {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #eeeeee;
}
.cid-ukOg2GD51t .btn.btn-primary-outline {
  border: 1px solid #1654b7;
}
.cid-ukOg2GD51t .btn.btn-primary-outline:hover {
  background-color: #1654b7 !important;
  color: #ffffff !important;
}
.cid-ukOg2GD51t .btn.btn-secondary-outline {
  border: 1px solid #7241da;
}
.cid-ukOg2GD51t .btn.btn-secondary-outline:hover {
  background-color: #7241da !important;
  color: #ffffff !important;
}
.cid-ukOg2GD51t .btn.btn-success-outline {
  border: 1px solid #2bb3f9;
}
.cid-ukOg2GD51t .btn.btn-success-outline:hover {
  background-color: #2bb3f9 !important;
  color: #ffffff !important;
}
.cid-ukOg2GD51t .btn.btn-info-outline {
  border: 1px solid #ffffff;
}
.cid-ukOg2GD51t .btn.btn-info-outline:hover {
  background-color: #ffffff !important;
  color: #ffffff !important;
}
.cid-ukOg2GD51t .btn.btn-warning-outline {
  border: 1px solid #78dbf9;
}
.cid-ukOg2GD51t .btn.btn-warning-outline:hover {
  background-color: #78dbf9 !important;
  color: #ffffff !important;
}
.cid-ukOg2GD51t .btn.btn-danger-outline {
  border: 1px solid #f355d6;
}
.cid-ukOg2GD51t .btn.btn-danger-outline:hover {
  background-color: #f355d6 !important;
  color: #ffffff !important;
}
.cid-ukOg2GD51t .btn.btn-black-outline {
  border: 1px solid #000000;
}
.cid-ukOg2GD51t .btn.btn-black-outline:hover {
  background-color: #000000 !important;
  color: #ffffff !important;
}
.cid-ukOg2GD51t .btn.btn-white-outline {
  border: 1px solid #ffffff;
}
.cid-ukOg2GD51t .btn.btn-white-outline:hover {
  background-color: #ffffff !important;
  color: #000000 !important;
}
.cid-u6o4Wwz6HH {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #7241da;
  overflow: hidden;
}
.cid-u6o4Wwz6HH .mbr-text {
  color: #131313;
}
.cid-u6o4Wwz6HH .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-tV42s89qya {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-tV42s89qya .btn {
  padding: 0.6rem 2rem;
  border: none !important;
  font-weight: 400;
  box-shadow: none;
}
.cid-tV42s89qya nav.navbar {
  position: fixed;
}
.cid-tV42s89qya .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tV42s89qya .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tV42s89qya .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tV42s89qya .dropdown-item:hover,
.cid-tV42s89qya .dropdown-item:focus {
  background: #1654b7 !important;
  color: white !important;
}
.cid-tV42s89qya .dropdown-item:hover span {
  color: white;
}
.cid-tV42s89qya .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tV42s89qya .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tV42s89qya .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tV42s89qya .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tV42s89qya .nav-link {
  position: relative;
}
.cid-tV42s89qya .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tV42s89qya .container {
    flex-wrap: nowrap;
  }
}
.cid-tV42s89qya .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tV42s89qya .dropdown-menu,
.cid-tV42s89qya .navbar.opened {
  background: #ffffff !important;
}
.cid-tV42s89qya .nav-item:focus,
.cid-tV42s89qya .nav-link:focus {
  outline: none;
}
.cid-tV42s89qya .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tV42s89qya .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tV42s89qya .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tV42s89qya .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tV42s89qya .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tV42s89qya .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tV42s89qya .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tV42s89qya .navbar.opened {
  transition: all 0.3s;
}
.cid-tV42s89qya .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tV42s89qya .navbar .navbar-logo img {
  width: auto;
}
.cid-tV42s89qya .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tV42s89qya .navbar.collapsed {
  justify-content: center;
}
.cid-tV42s89qya .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tV42s89qya .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tV42s89qya .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-tV42s89qya .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tV42s89qya .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tV42s89qya .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-tV42s89qya .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tV42s89qya .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tV42s89qya .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tV42s89qya .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tV42s89qya .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tV42s89qya .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tV42s89qya .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tV42s89qya .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-tV42s89qya .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tV42s89qya .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tV42s89qya .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tV42s89qya .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tV42s89qya .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tV42s89qya .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tV42s89qya .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tV42s89qya .navbar.navbar-short {
  min-height: 80px;
}
.cid-tV42s89qya .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tV42s89qya .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tV42s89qya .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tV42s89qya .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tV42s89qya .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tV42s89qya .dropdown-item.active,
.cid-tV42s89qya .dropdown-item:active {
  background-color: transparent;
}
.cid-tV42s89qya .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tV42s89qya .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tV42s89qya .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tV42s89qya .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tV42s89qya .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tV42s89qya .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tV42s89qya ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tV42s89qya .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tV42s89qya button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tV42s89qya button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tV42s89qya button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tV42s89qya button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tV42s89qya button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tV42s89qya button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tV42s89qya nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tV42s89qya nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tV42s89qya nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tV42s89qya nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tV42s89qya .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tV42s89qya a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tV42s89qya .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tV42s89qya .navbar {
    height: 70px;
  }
  .cid-tV42s89qya .navbar.opened {
    height: auto;
  }
  .cid-tV42s89qya .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ujiYM9gDsn {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/adobestock-615039275-2000x997.jpeg");
}
.cid-ujiYM9gDsn .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujiYM9gDsn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ujiYM9gDsn .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-ujiYM9gDsn .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-ujiYM9gDsn .container {
    padding: 0;
  }
}
.cid-ujiYM9gDsn .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-ujiYM9gDsn .title-wrapper .title-wrap .mbr-box {
  width: 155px;
  height: 115px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #7241da;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .cid-ujiYM9gDsn .title-wrapper .title-wrap .mbr-box {
    display: none;
  }
}
.cid-ujiYM9gDsn .title-wrapper .title-wrap .mbr-section-title {
  letter-spacing: 3.25px;
  padding: 0 16px;
  margin-bottom: 0;
}
.cid-ujiYM9gDsn .title-wrapper .mbr-section-btn {
  padding: 0 16px;
  margin-top: 100px;
}
@media (max-width: 992px) {
  .cid-ujiYM9gDsn .title-wrapper .mbr-section-btn {
    margin-top: 40px;
  }
}
.cid-ujiYM9gDsn .mbr-section-title {
  color: #ffffff;
}
.cid-ujiYM9gDsn .mbr-box {
  color: #ffffff;
}
.cid-ujiYM9gDsn .mbr-section-btn {
  text-align: center;
}
.cid-u6oDRQee1n {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ui69UVZPId {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ui69UVZPId .mbr-fallback-image.disabled {
  display: none;
}
.cid-ui69UVZPId .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ui69UVZPId .title-col {
  width: 100%;
  margin-bottom: 2rem;
}
.cid-ui69UVZPId .mbr-section-title {
  color: #000000;
  width: 100%;
}
.cid-ui69UVZPId .mbr-section-subtitle {
  color: #000000;
  width: 100%;
}
.cid-ui69UVZPId .lists-col {
  width: 100%;
}
.cid-ui69UVZPId .col-list {
  width: 100%;
}
.cid-ui69UVZPId .list-title {
  color: #000000;
  width: 100%;
  margin-bottom: 10px;
}
.cid-ui69UVZPId .list {
  list-style: none;
  margin: 0 0 10px 0;
  padding-left: 24px;
}
.cid-ui69UVZPId li {
  position: relative;
  padding: 0 0 0 1rem;
  margin-bottom: 0;
}
.cid-ui69UVZPId ul li::before {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  justify-content: flex-start;
  content: "\2022";
  color: #000000;
  font-weight: bold;
  font-size: 1.2rem;
  width: 1.2rem;
}
.cid-ui6bjj3NbX {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-u6oE5bqqvL {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #1654b7;
}
.cid-u6oE5bqqvL .mbr-fallback-image.disabled {
  display: none;
}
.cid-u6oE5bqqvL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u6oE5bqqvL .mbr-section-title {
  color: #ffffff;
}
.cid-u6oE5I8XOz {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-u6oEQBy95P {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #7241da;
}
.cid-u6oEQBy95P .mbr-iconfont {
  font-size: 4rem;
  color: #1654b7;
}
.cid-u6oEQBy95P .mbr-content-text {
  color: #ffffff;
}
.cid-u6oEQBy95P .mbr-section-subtitle {
  color: #999999;
}
.cid-u6oEQBy95P .mbr-fallback-image.disabled {
  display: none;
}
.cid-u6oEQBy95P .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u6oEQBy95P .count,
.cid-u6oEQBy95P .card-img {
  color: #ffffff;
}
.cid-u6oFEZl8JR {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #7241da;
}
.cid-u6oFEZl8JR .mbr-iconfont {
  font-size: 4rem;
  color: #1654b7;
}
.cid-u6oFEZl8JR .mbr-content-text {
  color: #ffffff;
}
.cid-u6oFEZl8JR .mbr-section-subtitle {
  color: #999999;
}
.cid-u6oFEZl8JR .mbr-fallback-image.disabled {
  display: none;
}
.cid-u6oFEZl8JR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u6oFEZl8JR .count,
.cid-u6oFEZl8JR .card-img {
  color: #ffffff;
}
.cid-u6oGFpfA3b {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-u6oJ2FiPzX {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #7241da;
}
.cid-u6oJ2FiPzX .card-wrapper {
  border-radius: 0;
  padding: 2rem;
}
.cid-u6oJ2FiPzX .card-title {
  font-weight: 600;
}
.cid-u6oJ2FiPzX .card-img {
  text-align: center;
  padding: 0;
  position: relative;
  display: inline-block;
  margin-bottom: 16px;
  width: 100%;
}
.cid-u6oJ2FiPzX .card-img .icon {
  width: 195px;
  height: 195px;
  border-radius: 50%;
  display: inline-block;
  line-height: 195px;
  text-align: center;
  transition: all .3s;
  color: #ffffff;
  background-color: #7241da;
  border: 2px solid #ffffff;
}
.cid-u6oJ2FiPzX .card-img .icon .mbr-iconfont {
  font-size: 120px;
  line-height: 1.59;
  color: #ffffff;
}
.cid-u6oJ2FiPzX .card-img .icon span {
  color: #ffffff;
  font-size: 60px;
  line-height: 1em;
  text-align: center;
  vertical-align: middle;
  display: inline-block;
}
@media (max-width: 992px) {
  .cid-u6oJ2FiPzX .card {
    margin-bottom: 2rem;
  }
}
@media (max-width: 768px) {
  .cid-u6oJ2FiPzX .card-img .icon {
    width: 145px;
    height: 145px;
    line-height: 145px;
  }
  .cid-u6oJ2FiPzX .card-img .icon .mbr-iconfont {
    font-size: 70px;
    line-height: 2.01;
  }
  .cid-u6oJ2FiPzX .card-img .icon span {
    font-size: 50px;
    line-height: 1em;
  }
}
.cid-u6oJ2FiPzX .mbr-fallback-image.disabled {
  display: none;
}
.cid-u6oJ2FiPzX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u6oJ2FiPzX .title .mbr-section-title,
.cid-u6oJ2FiPzX .title .mbr-section-btn {
  color: #ffffff;
}
.cid-u6oJ2FiPzX .card-wrapper .card-box .mbr-text,
.cid-u6oJ2FiPzX .card-wrapper .card-box .mbr-section-btn,
.cid-u6oJ2FiPzX .card-wrapper .card-box .card-img {
  color: #ffffff;
}
.cid-u6oJUJj4Ae {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #7241da;
}
.cid-u6oJUJj4Ae .card-wrapper {
  border-radius: 0;
  padding: 2rem;
}
.cid-u6oJUJj4Ae .card-title {
  font-weight: 600;
}
.cid-u6oJUJj4Ae .card-img {
  text-align: center;
  padding: 0;
  position: relative;
  display: inline-block;
  margin-bottom: 16px;
  width: 100%;
}
.cid-u6oJUJj4Ae .card-img .icon {
  width: 195px;
  height: 195px;
  border-radius: 50%;
  display: inline-block;
  line-height: 195px;
  text-align: center;
  transition: all .3s;
  color: #ffffff;
  background-color: #7241da;
  border: 2px solid #ffffff;
}
.cid-u6oJUJj4Ae .card-img .icon .mbr-iconfont {
  font-size: 120px;
  line-height: 1.59;
  color: #ffffff;
}
.cid-u6oJUJj4Ae .card-img .icon span {
  color: #ffffff;
  font-size: 60px;
  line-height: 1em;
  text-align: center;
  vertical-align: middle;
  display: inline-block;
}
@media (max-width: 992px) {
  .cid-u6oJUJj4Ae .card {
    margin-bottom: 2rem;
  }
}
@media (max-width: 768px) {
  .cid-u6oJUJj4Ae .card-img .icon {
    width: 145px;
    height: 145px;
    line-height: 145px;
  }
  .cid-u6oJUJj4Ae .card-img .icon .mbr-iconfont {
    font-size: 70px;
    line-height: 2.01;
  }
  .cid-u6oJUJj4Ae .card-img .icon span {
    font-size: 50px;
    line-height: 1em;
  }
}
.cid-u6oJUJj4Ae .mbr-fallback-image.disabled {
  display: none;
}
.cid-u6oJUJj4Ae .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u6oJUJj4Ae .card-wrapper .card-box .mbr-text,
.cid-u6oJUJj4Ae .card-wrapper .card-box .mbr-section-btn,
.cid-u6oJUJj4Ae .card-wrapper .card-box .card-img {
  color: #ffffff;
}
.cid-u6oJVlqCcp {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #7241da;
}
.cid-u6oJVlqCcp .card-wrapper {
  border-radius: 0;
  padding: 2rem;
}
.cid-u6oJVlqCcp .card-title {
  font-weight: 600;
}
.cid-u6oJVlqCcp .card-img {
  text-align: center;
  padding: 0;
  position: relative;
  display: inline-block;
  margin-bottom: 16px;
  width: 100%;
}
.cid-u6oJVlqCcp .card-img .icon {
  width: 195px;
  height: 195px;
  border-radius: 50%;
  display: inline-block;
  line-height: 195px;
  text-align: center;
  transition: all .3s;
  color: #ffffff;
  background-color: #7241da;
  border: 2px solid #ffffff;
}
.cid-u6oJVlqCcp .card-img .icon .mbr-iconfont {
  font-size: 120px;
  line-height: 1.59;
  color: #ffffff;
}
.cid-u6oJVlqCcp .card-img .icon span {
  color: #ffffff;
  font-size: 60px;
  line-height: 1em;
  text-align: center;
  vertical-align: middle;
  display: inline-block;
}
@media (max-width: 992px) {
  .cid-u6oJVlqCcp .card {
    margin-bottom: 2rem;
  }
}
@media (max-width: 768px) {
  .cid-u6oJVlqCcp .card-img .icon {
    width: 145px;
    height: 145px;
    line-height: 145px;
  }
  .cid-u6oJVlqCcp .card-img .icon .mbr-iconfont {
    font-size: 70px;
    line-height: 2.01;
  }
  .cid-u6oJVlqCcp .card-img .icon span {
    font-size: 50px;
    line-height: 1em;
  }
}
.cid-u6oJVlqCcp .mbr-fallback-image.disabled {
  display: none;
}
.cid-u6oJVlqCcp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u6oJVlqCcp .card-wrapper .card-box .mbr-text,
.cid-u6oJVlqCcp .card-wrapper .card-box .mbr-section-btn,
.cid-u6oJVlqCcp .card-wrapper .card-box .card-img {
  color: #ffffff;
}
.cid-ui6c7yey5b {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-u6o4Wwz6HH {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #7241da;
  overflow: hidden;
}
.cid-u6o4Wwz6HH .mbr-text {
  color: #131313;
}
.cid-u6o4Wwz6HH .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-u9YtlMapRi {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-u9YtlMapRi .btn {
  padding: 0.6rem 2rem;
  border: none !important;
  font-weight: 400;
  box-shadow: none;
}
.cid-u9YtlMapRi nav.navbar {
  position: fixed;
}
.cid-u9YtlMapRi .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u9YtlMapRi .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u9YtlMapRi .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u9YtlMapRi .dropdown-item:hover,
.cid-u9YtlMapRi .dropdown-item:focus {
  background: #1654b7 !important;
  color: white !important;
}
.cid-u9YtlMapRi .dropdown-item:hover span {
  color: white;
}
.cid-u9YtlMapRi .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u9YtlMapRi .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u9YtlMapRi .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u9YtlMapRi .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u9YtlMapRi .nav-link {
  position: relative;
}
.cid-u9YtlMapRi .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u9YtlMapRi .container {
    flex-wrap: nowrap;
  }
}
.cid-u9YtlMapRi .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u9YtlMapRi .dropdown-menu,
.cid-u9YtlMapRi .navbar.opened {
  background: #ffffff !important;
}
.cid-u9YtlMapRi .nav-item:focus,
.cid-u9YtlMapRi .nav-link:focus {
  outline: none;
}
.cid-u9YtlMapRi .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u9YtlMapRi .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u9YtlMapRi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u9YtlMapRi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u9YtlMapRi .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u9YtlMapRi .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u9YtlMapRi .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-u9YtlMapRi .navbar.opened {
  transition: all 0.3s;
}
.cid-u9YtlMapRi .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u9YtlMapRi .navbar .navbar-logo img {
  width: auto;
}
.cid-u9YtlMapRi .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u9YtlMapRi .navbar.collapsed {
  justify-content: center;
}
.cid-u9YtlMapRi .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u9YtlMapRi .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u9YtlMapRi .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-u9YtlMapRi .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u9YtlMapRi .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u9YtlMapRi .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-u9YtlMapRi .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u9YtlMapRi .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u9YtlMapRi .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u9YtlMapRi .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u9YtlMapRi .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u9YtlMapRi .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u9YtlMapRi .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u9YtlMapRi .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-u9YtlMapRi .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u9YtlMapRi .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u9YtlMapRi .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u9YtlMapRi .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u9YtlMapRi .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u9YtlMapRi .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u9YtlMapRi .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u9YtlMapRi .navbar.navbar-short {
  min-height: 80px;
}
.cid-u9YtlMapRi .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u9YtlMapRi .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u9YtlMapRi .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u9YtlMapRi .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u9YtlMapRi .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u9YtlMapRi .dropdown-item.active,
.cid-u9YtlMapRi .dropdown-item:active {
  background-color: transparent;
}
.cid-u9YtlMapRi .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u9YtlMapRi .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u9YtlMapRi .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u9YtlMapRi .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u9YtlMapRi .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u9YtlMapRi .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u9YtlMapRi ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u9YtlMapRi .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u9YtlMapRi button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u9YtlMapRi button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u9YtlMapRi button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u9YtlMapRi button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u9YtlMapRi button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u9YtlMapRi button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u9YtlMapRi nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u9YtlMapRi nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u9YtlMapRi nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u9YtlMapRi nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u9YtlMapRi .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u9YtlMapRi a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u9YtlMapRi .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u9YtlMapRi .navbar {
    height: 70px;
  }
  .cid-u9YtlMapRi .navbar.opened {
    height: auto;
  }
  .cid-u9YtlMapRi .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ujkq4p8cFg {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/adobestock-360990288-2000x900.jpeg");
}
.cid-ujkq4p8cFg .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujkq4p8cFg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ujkq4p8cFg .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-ujkq4p8cFg .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-ujkq4p8cFg .container {
    padding: 0;
  }
}
.cid-ujkq4p8cFg .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-ujkq4p8cFg .title-wrapper .title-wrap .mbr-box {
  width: 155px;
  height: 115px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #7241da;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .cid-ujkq4p8cFg .title-wrapper .title-wrap .mbr-box {
    display: none;
  }
}
.cid-ujkq4p8cFg .title-wrapper .title-wrap .mbr-section-title {
  letter-spacing: 3.25px;
  padding: 0 16px;
  margin-bottom: 0;
}
.cid-ujkq4p8cFg .title-wrapper .mbr-section-btn {
  padding: 0 16px;
  margin-top: 100px;
}
@media (max-width: 992px) {
  .cid-ujkq4p8cFg .title-wrapper .mbr-section-btn {
    margin-top: 40px;
  }
}
.cid-ujkq4p8cFg .mbr-section-title {
  color: #ffffff;
}
.cid-ujkq4p8cFg .mbr-box {
  color: #ffffff;
}
.cid-ujkq4p8cFg .mbr-section-btn {
  text-align: center;
}
.cid-ucHHRiFgDT {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ui6toeliuY {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-ui6toeliuY .mbr-text {
  text-align: left;
}
.cid-u9YtlSbiSu {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #7241da;
  overflow: hidden;
}
.cid-u9YtlSbiSu .mbr-text {
  color: #131313;
}
.cid-u9YtlSbiSu .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-u9YtlMapRi {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-u9YtlMapRi .btn {
  padding: 0.6rem 2rem;
  border: none !important;
  font-weight: 400;
  box-shadow: none;
}
.cid-u9YtlMapRi nav.navbar {
  position: fixed;
}
.cid-u9YtlMapRi .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u9YtlMapRi .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u9YtlMapRi .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u9YtlMapRi .dropdown-item:hover,
.cid-u9YtlMapRi .dropdown-item:focus {
  background: #1654b7 !important;
  color: white !important;
}
.cid-u9YtlMapRi .dropdown-item:hover span {
  color: white;
}
.cid-u9YtlMapRi .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u9YtlMapRi .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u9YtlMapRi .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u9YtlMapRi .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u9YtlMapRi .nav-link {
  position: relative;
}
.cid-u9YtlMapRi .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u9YtlMapRi .container {
    flex-wrap: nowrap;
  }
}
.cid-u9YtlMapRi .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u9YtlMapRi .dropdown-menu,
.cid-u9YtlMapRi .navbar.opened {
  background: #ffffff !important;
}
.cid-u9YtlMapRi .nav-item:focus,
.cid-u9YtlMapRi .nav-link:focus {
  outline: none;
}
.cid-u9YtlMapRi .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u9YtlMapRi .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u9YtlMapRi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u9YtlMapRi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u9YtlMapRi .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u9YtlMapRi .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u9YtlMapRi .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-u9YtlMapRi .navbar.opened {
  transition: all 0.3s;
}
.cid-u9YtlMapRi .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u9YtlMapRi .navbar .navbar-logo img {
  width: auto;
}
.cid-u9YtlMapRi .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u9YtlMapRi .navbar.collapsed {
  justify-content: center;
}
.cid-u9YtlMapRi .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u9YtlMapRi .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u9YtlMapRi .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-u9YtlMapRi .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u9YtlMapRi .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u9YtlMapRi .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-u9YtlMapRi .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u9YtlMapRi .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u9YtlMapRi .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u9YtlMapRi .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u9YtlMapRi .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u9YtlMapRi .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u9YtlMapRi .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u9YtlMapRi .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-u9YtlMapRi .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u9YtlMapRi .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u9YtlMapRi .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u9YtlMapRi .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u9YtlMapRi .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u9YtlMapRi .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u9YtlMapRi .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u9YtlMapRi .navbar.navbar-short {
  min-height: 80px;
}
.cid-u9YtlMapRi .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u9YtlMapRi .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u9YtlMapRi .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u9YtlMapRi .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u9YtlMapRi .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u9YtlMapRi .dropdown-item.active,
.cid-u9YtlMapRi .dropdown-item:active {
  background-color: transparent;
}
.cid-u9YtlMapRi .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u9YtlMapRi .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u9YtlMapRi .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u9YtlMapRi .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u9YtlMapRi .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u9YtlMapRi .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u9YtlMapRi ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u9YtlMapRi .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u9YtlMapRi button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u9YtlMapRi button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u9YtlMapRi button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u9YtlMapRi button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u9YtlMapRi button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u9YtlMapRi button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u9YtlMapRi nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u9YtlMapRi nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u9YtlMapRi nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u9YtlMapRi nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u9YtlMapRi .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u9YtlMapRi a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u9YtlMapRi .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u9YtlMapRi .navbar {
    height: 70px;
  }
  .cid-u9YtlMapRi .navbar.opened {
    height: auto;
  }
  .cid-u9YtlMapRi .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ujko4TXiRR {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/adobestock-631913585-2000x791.jpg");
}
.cid-ujko4TXiRR .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujko4TXiRR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ujko4TXiRR .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-ujko4TXiRR .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-ujko4TXiRR .container {
    padding: 0;
  }
}
.cid-ujko4TXiRR .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-ujko4TXiRR .title-wrapper .title-wrap .mbr-box {
  width: 155px;
  height: 115px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #7241da;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .cid-ujko4TXiRR .title-wrapper .title-wrap .mbr-box {
    display: none;
  }
}
.cid-ujko4TXiRR .title-wrapper .title-wrap .mbr-section-title {
  letter-spacing: 3.25px;
  padding: 0 16px;
  margin-bottom: 0;
}
.cid-ujko4TXiRR .title-wrapper .mbr-section-btn {
  padding: 0 16px;
  margin-top: 100px;
}
@media (max-width: 992px) {
  .cid-ujko4TXiRR .title-wrapper .mbr-section-btn {
    margin-top: 40px;
  }
}
.cid-ujko4TXiRR .mbr-section-title {
  color: #ffffff;
}
.cid-ujko4TXiRR .mbr-box {
  color: #ffffff;
}
.cid-ujko4TXiRR .mbr-section-btn {
  text-align: center;
}
.cid-ucHKDkJ0ru {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ucHKEg4754 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #1654b7;
}
.cid-ucHKEg4754 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucHKEg4754 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucHKEg4754 .mbr-section-title {
  color: #ffffff;
}
.cid-ucHKFuSxzr {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u9YtlSbiSu {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #7241da;
  overflow: hidden;
}
.cid-u9YtlSbiSu .mbr-text {
  color: #131313;
}
.cid-u9YtlSbiSu .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-tV42s89qya {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-tV42s89qya .btn {
  padding: 0.6rem 2rem;
  border: none !important;
  font-weight: 400;
  box-shadow: none;
}
.cid-tV42s89qya nav.navbar {
  position: fixed;
}
.cid-tV42s89qya .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tV42s89qya .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tV42s89qya .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tV42s89qya .dropdown-item:hover,
.cid-tV42s89qya .dropdown-item:focus {
  background: #1654b7 !important;
  color: white !important;
}
.cid-tV42s89qya .dropdown-item:hover span {
  color: white;
}
.cid-tV42s89qya .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tV42s89qya .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tV42s89qya .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tV42s89qya .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tV42s89qya .nav-link {
  position: relative;
}
.cid-tV42s89qya .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tV42s89qya .container {
    flex-wrap: nowrap;
  }
}
.cid-tV42s89qya .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tV42s89qya .dropdown-menu,
.cid-tV42s89qya .navbar.opened {
  background: #ffffff !important;
}
.cid-tV42s89qya .nav-item:focus,
.cid-tV42s89qya .nav-link:focus {
  outline: none;
}
.cid-tV42s89qya .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tV42s89qya .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tV42s89qya .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tV42s89qya .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tV42s89qya .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tV42s89qya .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tV42s89qya .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tV42s89qya .navbar.opened {
  transition: all 0.3s;
}
.cid-tV42s89qya .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tV42s89qya .navbar .navbar-logo img {
  width: auto;
}
.cid-tV42s89qya .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tV42s89qya .navbar.collapsed {
  justify-content: center;
}
.cid-tV42s89qya .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tV42s89qya .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tV42s89qya .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-tV42s89qya .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tV42s89qya .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tV42s89qya .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-tV42s89qya .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tV42s89qya .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tV42s89qya .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tV42s89qya .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tV42s89qya .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tV42s89qya .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tV42s89qya .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tV42s89qya .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-tV42s89qya .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tV42s89qya .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tV42s89qya .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tV42s89qya .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tV42s89qya .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tV42s89qya .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tV42s89qya .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tV42s89qya .navbar.navbar-short {
  min-height: 80px;
}
.cid-tV42s89qya .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tV42s89qya .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tV42s89qya .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tV42s89qya .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tV42s89qya .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tV42s89qya .dropdown-item.active,
.cid-tV42s89qya .dropdown-item:active {
  background-color: transparent;
}
.cid-tV42s89qya .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tV42s89qya .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tV42s89qya .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tV42s89qya .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tV42s89qya .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tV42s89qya .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tV42s89qya ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tV42s89qya .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tV42s89qya button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tV42s89qya button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tV42s89qya button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tV42s89qya button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tV42s89qya button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tV42s89qya button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tV42s89qya nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tV42s89qya nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tV42s89qya nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tV42s89qya nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tV42s89qya .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tV42s89qya a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tV42s89qya .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tV42s89qya .navbar {
    height: 70px;
  }
  .cid-tV42s89qya .navbar.opened {
    height: auto;
  }
  .cid-tV42s89qya .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ujkuc5j18T {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/adobestock-796060672-2000x1143.jpg");
}
.cid-ujkuc5j18T .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujkuc5j18T .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ujkuc5j18T .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-ujkuc5j18T .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-ujkuc5j18T .container {
    padding: 0;
  }
}
.cid-ujkuc5j18T .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-ujkuc5j18T .title-wrapper .title-wrap .mbr-box {
  width: 155px;
  height: 115px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #7241da;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .cid-ujkuc5j18T .title-wrapper .title-wrap .mbr-box {
    display: none;
  }
}
.cid-ujkuc5j18T .title-wrapper .title-wrap .mbr-section-title {
  letter-spacing: 3.25px;
  padding: 0 16px;
  margin-bottom: 0;
}
.cid-ujkuc5j18T .title-wrapper .mbr-section-btn {
  padding: 0 16px;
  margin-top: 100px;
}
@media (max-width: 992px) {
  .cid-ujkuc5j18T .title-wrapper .mbr-section-btn {
    margin-top: 40px;
  }
}
.cid-ujkuc5j18T .mbr-section-title {
  color: #ffffff;
}
.cid-ujkuc5j18T .mbr-box {
  color: #ffffff;
}
.cid-ujkuc5j18T .mbr-section-btn {
  text-align: center;
}
.cid-tV4uy1Np9u {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tV4uy1Np9u .row {
  flex-direction: row-reverse;
}
.cid-tV4uy1Np9u .mbr-text {
  max-width: 550px;
}
.cid-tV4uy1Np9u .row {
  align-items: center;
}
.cid-tV4uy1Np9u .mbr-section-subtitle {
  line-height: 1.6;
  color: #000000;
}
.cid-tV4uy1Np9u .mbr-text,
.cid-tV4uy1Np9u .mbr-section-btn {
  color: #000000;
}
.cid-tV4uy1Np9u .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tV4uy1Np9u .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #000000;
  transition: all 0.3s;
  display: block;
  cursor: pointer;
}
.cid-tV4uy1Np9u .social-list .mbr-iconfont-social:hover {
  color: #1654b7;
  transform: translateY(-3px);
}
.cid-tV4uy1Np9u .social-list .soc-item {
  margin: 0 1rem;
}
.cid-tV4uy1Np9u .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
@media (max-width: 767px) {
  .cid-tV4uy1Np9u .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tV4uy1Np9u .mbr-text-title {
  color: #000000;
}
.cid-tV4uyMGOZK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tV4uyMGOZK .row {
  flex-direction: row-reverse;
}
.cid-tV4uyMGOZK .mbr-text {
  max-width: 550px;
}
.cid-tV4uyMGOZK .row {
  align-items: center;
}
.cid-tV4uyMGOZK .mbr-section-subtitle {
  line-height: 1.6;
  color: #000000;
}
.cid-tV4uyMGOZK .mbr-text,
.cid-tV4uyMGOZK .mbr-section-btn {
  color: #000000;
}
.cid-tV4uyMGOZK .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tV4uyMGOZK .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #000000;
  transition: all 0.3s;
  display: block;
  cursor: pointer;
}
.cid-tV4uyMGOZK .social-list .mbr-iconfont-social:hover {
  color: #1654b7;
  transform: translateY(-3px);
}
.cid-tV4uyMGOZK .social-list .soc-item {
  margin: 0 1rem;
}
.cid-tV4uyMGOZK .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
@media (max-width: 767px) {
  .cid-tV4uyMGOZK .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tV4uyMGOZK .mbr-text-title {
  color: #000000;
}
.cid-tV4uyMGOZK .mbr-section-title {
  color: #000000;
}
.cid-uiaJweNzUO {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #1654b7;
}
.cid-uiaJweNzUO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uiaJweNzUO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uiaJweNzUO .mbr-section-title {
  color: #ffffff;
}
.cid-uiaJADK00o {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-u6o4Wwz6HH {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #7241da;
  overflow: hidden;
}
.cid-u6o4Wwz6HH .mbr-text {
  color: #131313;
}
.cid-u6o4Wwz6HH .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-u9YChXhTXt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-u9YChXhTXt .btn {
  padding: 0.6rem 2rem;
  border: none !important;
  font-weight: 400;
  box-shadow: none;
}
.cid-u9YChXhTXt nav.navbar {
  position: fixed;
}
.cid-u9YChXhTXt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u9YChXhTXt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u9YChXhTXt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u9YChXhTXt .dropdown-item:hover,
.cid-u9YChXhTXt .dropdown-item:focus {
  background: #1654b7 !important;
  color: white !important;
}
.cid-u9YChXhTXt .dropdown-item:hover span {
  color: white;
}
.cid-u9YChXhTXt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u9YChXhTXt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u9YChXhTXt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u9YChXhTXt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u9YChXhTXt .nav-link {
  position: relative;
}
.cid-u9YChXhTXt .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u9YChXhTXt .container {
    flex-wrap: nowrap;
  }
}
.cid-u9YChXhTXt .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u9YChXhTXt .dropdown-menu,
.cid-u9YChXhTXt .navbar.opened {
  background: #ffffff !important;
}
.cid-u9YChXhTXt .nav-item:focus,
.cid-u9YChXhTXt .nav-link:focus {
  outline: none;
}
.cid-u9YChXhTXt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u9YChXhTXt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u9YChXhTXt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u9YChXhTXt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u9YChXhTXt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u9YChXhTXt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u9YChXhTXt .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-u9YChXhTXt .navbar.opened {
  transition: all 0.3s;
}
.cid-u9YChXhTXt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u9YChXhTXt .navbar .navbar-logo img {
  width: auto;
}
.cid-u9YChXhTXt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u9YChXhTXt .navbar.collapsed {
  justify-content: center;
}
.cid-u9YChXhTXt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u9YChXhTXt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u9YChXhTXt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-u9YChXhTXt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u9YChXhTXt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u9YChXhTXt .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-u9YChXhTXt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u9YChXhTXt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u9YChXhTXt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u9YChXhTXt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u9YChXhTXt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u9YChXhTXt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u9YChXhTXt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u9YChXhTXt .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-u9YChXhTXt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u9YChXhTXt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u9YChXhTXt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u9YChXhTXt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u9YChXhTXt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u9YChXhTXt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u9YChXhTXt .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u9YChXhTXt .navbar.navbar-short {
  min-height: 80px;
}
.cid-u9YChXhTXt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u9YChXhTXt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u9YChXhTXt .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u9YChXhTXt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u9YChXhTXt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u9YChXhTXt .dropdown-item.active,
.cid-u9YChXhTXt .dropdown-item:active {
  background-color: transparent;
}
.cid-u9YChXhTXt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u9YChXhTXt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u9YChXhTXt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u9YChXhTXt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u9YChXhTXt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u9YChXhTXt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u9YChXhTXt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u9YChXhTXt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u9YChXhTXt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u9YChXhTXt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u9YChXhTXt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u9YChXhTXt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u9YChXhTXt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u9YChXhTXt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u9YChXhTXt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u9YChXhTXt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u9YChXhTXt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u9YChXhTXt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u9YChXhTXt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u9YChXhTXt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u9YChXhTXt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u9YChXhTXt .navbar {
    height: 70px;
  }
  .cid-u9YChXhTXt .navbar.opened {
    height: auto;
  }
  .cid-u9YChXhTXt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ujkpjxwwER {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/adobestock-807485519-2000x1143.jpg");
}
.cid-ujkpjxwwER .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujkpjxwwER .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ujkpjxwwER .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-ujkpjxwwER .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-ujkpjxwwER .container {
    padding: 0;
  }
}
.cid-ujkpjxwwER .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-ujkpjxwwER .title-wrapper .title-wrap .mbr-box {
  width: 155px;
  height: 115px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #7241da;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .cid-ujkpjxwwER .title-wrapper .title-wrap .mbr-box {
    display: none;
  }
}
.cid-ujkpjxwwER .title-wrapper .title-wrap .mbr-section-title {
  letter-spacing: 3.25px;
  padding: 0 16px;
  margin-bottom: 0;
}
.cid-ujkpjxwwER .title-wrapper .mbr-section-btn {
  padding: 0 16px;
  margin-top: 100px;
}
@media (max-width: 992px) {
  .cid-ujkpjxwwER .title-wrapper .mbr-section-btn {
    margin-top: 40px;
  }
}
.cid-ujkpjxwwER .mbr-section-title {
  color: #ffffff;
}
.cid-ujkpjxwwER .mbr-box {
  color: #ffffff;
}
.cid-ujkpjxwwER .mbr-section-btn {
  text-align: center;
}
.cid-uiz4maoaxl {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uiz4maoaxl .mbr-text {
  text-align: center;
  color: #000000;
}
.cid-uib56JpTdc {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #1654b7;
}
.cid-uib56JpTdc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uib56JpTdc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uib56JpTdc .mbr-section-title {
  color: #ffffff;
}
.cid-uoSboVhucd {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uoSboVhucd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uoSboVhucd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u9YChXHOCx {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #7241da;
  overflow: hidden;
}
.cid-u9YChXHOCx .mbr-text {
  color: #131313;
}
.cid-u9YChXHOCx .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-u9YCvpIfvt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-u9YCvpIfvt .btn {
  padding: 0.6rem 2rem;
  border: none !important;
  font-weight: 400;
  box-shadow: none;
}
.cid-u9YCvpIfvt nav.navbar {
  position: fixed;
}
.cid-u9YCvpIfvt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u9YCvpIfvt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u9YCvpIfvt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u9YCvpIfvt .dropdown-item:hover,
.cid-u9YCvpIfvt .dropdown-item:focus {
  background: #1654b7 !important;
  color: white !important;
}
.cid-u9YCvpIfvt .dropdown-item:hover span {
  color: white;
}
.cid-u9YCvpIfvt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u9YCvpIfvt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u9YCvpIfvt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u9YCvpIfvt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u9YCvpIfvt .nav-link {
  position: relative;
}
.cid-u9YCvpIfvt .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u9YCvpIfvt .container {
    flex-wrap: nowrap;
  }
}
.cid-u9YCvpIfvt .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u9YCvpIfvt .dropdown-menu,
.cid-u9YCvpIfvt .navbar.opened {
  background: #ffffff !important;
}
.cid-u9YCvpIfvt .nav-item:focus,
.cid-u9YCvpIfvt .nav-link:focus {
  outline: none;
}
.cid-u9YCvpIfvt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u9YCvpIfvt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u9YCvpIfvt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u9YCvpIfvt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u9YCvpIfvt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u9YCvpIfvt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u9YCvpIfvt .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-u9YCvpIfvt .navbar.opened {
  transition: all 0.3s;
}
.cid-u9YCvpIfvt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u9YCvpIfvt .navbar .navbar-logo img {
  width: auto;
}
.cid-u9YCvpIfvt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u9YCvpIfvt .navbar.collapsed {
  justify-content: center;
}
.cid-u9YCvpIfvt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u9YCvpIfvt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u9YCvpIfvt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-u9YCvpIfvt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u9YCvpIfvt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u9YCvpIfvt .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-u9YCvpIfvt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u9YCvpIfvt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u9YCvpIfvt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u9YCvpIfvt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u9YCvpIfvt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u9YCvpIfvt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u9YCvpIfvt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u9YCvpIfvt .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-u9YCvpIfvt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u9YCvpIfvt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u9YCvpIfvt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u9YCvpIfvt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u9YCvpIfvt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u9YCvpIfvt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u9YCvpIfvt .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u9YCvpIfvt .navbar.navbar-short {
  min-height: 80px;
}
.cid-u9YCvpIfvt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u9YCvpIfvt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u9YCvpIfvt .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u9YCvpIfvt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u9YCvpIfvt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u9YCvpIfvt .dropdown-item.active,
.cid-u9YCvpIfvt .dropdown-item:active {
  background-color: transparent;
}
.cid-u9YCvpIfvt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u9YCvpIfvt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u9YCvpIfvt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u9YCvpIfvt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u9YCvpIfvt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u9YCvpIfvt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u9YCvpIfvt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u9YCvpIfvt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u9YCvpIfvt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u9YCvpIfvt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u9YCvpIfvt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u9YCvpIfvt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u9YCvpIfvt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u9YCvpIfvt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u9YCvpIfvt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u9YCvpIfvt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u9YCvpIfvt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u9YCvpIfvt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u9YCvpIfvt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u9YCvpIfvt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u9YCvpIfvt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u9YCvpIfvt .navbar {
    height: 70px;
  }
  .cid-u9YCvpIfvt .navbar.opened {
    height: auto;
  }
  .cid-u9YCvpIfvt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uibfeepSM2 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uibfeepSM2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uibfeepSM2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u9YCvq9xCx {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #7241da;
  overflow: hidden;
}
.cid-u9YCvq9xCx .mbr-text {
  color: #131313;
}
.cid-u9YCvq9xCx .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-u9YCySskyI {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-u9YCySskyI .btn {
  padding: 0.6rem 2rem;
  border: none !important;
  font-weight: 400;
  box-shadow: none;
}
.cid-u9YCySskyI nav.navbar {
  position: fixed;
}
.cid-u9YCySskyI .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u9YCySskyI .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u9YCySskyI .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u9YCySskyI .dropdown-item:hover,
.cid-u9YCySskyI .dropdown-item:focus {
  background: #1654b7 !important;
  color: white !important;
}
.cid-u9YCySskyI .dropdown-item:hover span {
  color: white;
}
.cid-u9YCySskyI .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u9YCySskyI .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u9YCySskyI .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u9YCySskyI .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u9YCySskyI .nav-link {
  position: relative;
}
.cid-u9YCySskyI .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u9YCySskyI .container {
    flex-wrap: nowrap;
  }
}
.cid-u9YCySskyI .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u9YCySskyI .dropdown-menu,
.cid-u9YCySskyI .navbar.opened {
  background: #ffffff !important;
}
.cid-u9YCySskyI .nav-item:focus,
.cid-u9YCySskyI .nav-link:focus {
  outline: none;
}
.cid-u9YCySskyI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u9YCySskyI .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u9YCySskyI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u9YCySskyI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u9YCySskyI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u9YCySskyI .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u9YCySskyI .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-u9YCySskyI .navbar.opened {
  transition: all 0.3s;
}
.cid-u9YCySskyI .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u9YCySskyI .navbar .navbar-logo img {
  width: auto;
}
.cid-u9YCySskyI .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u9YCySskyI .navbar.collapsed {
  justify-content: center;
}
.cid-u9YCySskyI .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u9YCySskyI .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u9YCySskyI .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-u9YCySskyI .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u9YCySskyI .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u9YCySskyI .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-u9YCySskyI .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u9YCySskyI .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u9YCySskyI .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u9YCySskyI .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u9YCySskyI .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u9YCySskyI .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u9YCySskyI .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u9YCySskyI .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-u9YCySskyI .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u9YCySskyI .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u9YCySskyI .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u9YCySskyI .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u9YCySskyI .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u9YCySskyI .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u9YCySskyI .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u9YCySskyI .navbar.navbar-short {
  min-height: 80px;
}
.cid-u9YCySskyI .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u9YCySskyI .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u9YCySskyI .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u9YCySskyI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u9YCySskyI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u9YCySskyI .dropdown-item.active,
.cid-u9YCySskyI .dropdown-item:active {
  background-color: transparent;
}
.cid-u9YCySskyI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u9YCySskyI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u9YCySskyI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u9YCySskyI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u9YCySskyI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u9YCySskyI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u9YCySskyI ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u9YCySskyI .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u9YCySskyI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u9YCySskyI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u9YCySskyI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u9YCySskyI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u9YCySskyI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u9YCySskyI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u9YCySskyI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u9YCySskyI nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u9YCySskyI nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u9YCySskyI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u9YCySskyI .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u9YCySskyI a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u9YCySskyI .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u9YCySskyI .navbar {
    height: 70px;
  }
  .cid-u9YCySskyI .navbar.opened {
    height: auto;
  }
  .cid-u9YCySskyI .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ukOijXrJwm {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/adobestock-791751428-2000x672.jpg");
}
.cid-ukOijXrJwm .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukOijXrJwm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukOijXrJwm .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-ukOijXrJwm .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-ukOijXrJwm .container {
    padding: 0;
  }
}
.cid-ukOijXrJwm .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-ukOijXrJwm .title-wrapper .title-wrap .mbr-box {
  width: 155px;
  height: 115px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #7241da;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .cid-ukOijXrJwm .title-wrapper .title-wrap .mbr-box {
    display: none;
  }
}
.cid-ukOijXrJwm .title-wrapper .title-wrap .mbr-section-title {
  letter-spacing: 3.25px;
  padding: 0 16px;
  margin-bottom: 0;
}
.cid-ukOijXrJwm .title-wrapper .mbr-section-btn {
  padding: 0 16px;
  margin-top: 100px;
}
@media (max-width: 992px) {
  .cid-ukOijXrJwm .title-wrapper .mbr-section-btn {
    margin-top: 40px;
  }
}
.cid-ukOijXrJwm .mbr-section-title {
  color: #ffffff;
}
.cid-ukOijXrJwm .mbr-box {
  color: #ffffff;
}
.cid-ukOijXrJwm .mbr-section-btn {
  text-align: center;
}
.cid-uocSIZjlLa {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uocSIZjlLa .mbr-section-title {
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14142b;
  display: inline-block;
}
.cid-uocSIZjlLa .mbr-text {
  color: #8c8c95;
  margin-bottom: 26px;
  text-align: center;
  max-width: 739px;
  margin: auto;
}
.cid-uocSIZjlLa .button-align {
  text-align: center;
}
.cid-uocSIZjlLa .margin {
  margin-right: 14px;
}
.cid-uocSIZjlLa .mbr-section-btn {
  display: block;
}
@media (max-width: 440px) {
  .cid-uocSIZjlLa .margin {
    margin-right: 0px;
  }
  .cid-uocSIZjlLa .b {
    margin-bottom: 20px;
  }
}
.cid-uocSIZjlLa .btn {
  margin-top: 20px;
}
.cid-uocSIZjlLa a.btn > span {
  margin-left: 0.5rem;
}
.cid-uocSIZjlLa .mbr-text,
.cid-uocSIZjlLa .button-align {
  color: #000000;
}
.cid-u9YCySVyoT {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #7241da;
  overflow: hidden;
}
.cid-u9YCySVyoT .mbr-text {
  color: #131313;
}
.cid-u9YCySVyoT .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-u9YBM3EO7q {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-u9YBM3EO7q .btn {
  padding: 0.6rem 2rem;
  border: none !important;
  font-weight: 400;
  box-shadow: none;
}
.cid-u9YBM3EO7q nav.navbar {
  position: fixed;
}
.cid-u9YBM3EO7q .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u9YBM3EO7q .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u9YBM3EO7q .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u9YBM3EO7q .dropdown-item:hover,
.cid-u9YBM3EO7q .dropdown-item:focus {
  background: #1654b7 !important;
  color: white !important;
}
.cid-u9YBM3EO7q .dropdown-item:hover span {
  color: white;
}
.cid-u9YBM3EO7q .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u9YBM3EO7q .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u9YBM3EO7q .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u9YBM3EO7q .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u9YBM3EO7q .nav-link {
  position: relative;
}
.cid-u9YBM3EO7q .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u9YBM3EO7q .container {
    flex-wrap: nowrap;
  }
}
.cid-u9YBM3EO7q .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u9YBM3EO7q .dropdown-menu,
.cid-u9YBM3EO7q .navbar.opened {
  background: #ffffff !important;
}
.cid-u9YBM3EO7q .nav-item:focus,
.cid-u9YBM3EO7q .nav-link:focus {
  outline: none;
}
.cid-u9YBM3EO7q .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u9YBM3EO7q .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u9YBM3EO7q .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u9YBM3EO7q .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u9YBM3EO7q .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u9YBM3EO7q .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u9YBM3EO7q .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-u9YBM3EO7q .navbar.opened {
  transition: all 0.3s;
}
.cid-u9YBM3EO7q .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u9YBM3EO7q .navbar .navbar-logo img {
  width: auto;
}
.cid-u9YBM3EO7q .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u9YBM3EO7q .navbar.collapsed {
  justify-content: center;
}
.cid-u9YBM3EO7q .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u9YBM3EO7q .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u9YBM3EO7q .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-u9YBM3EO7q .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u9YBM3EO7q .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u9YBM3EO7q .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-u9YBM3EO7q .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u9YBM3EO7q .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u9YBM3EO7q .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u9YBM3EO7q .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u9YBM3EO7q .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u9YBM3EO7q .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u9YBM3EO7q .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u9YBM3EO7q .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-u9YBM3EO7q .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u9YBM3EO7q .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u9YBM3EO7q .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u9YBM3EO7q .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u9YBM3EO7q .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u9YBM3EO7q .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u9YBM3EO7q .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u9YBM3EO7q .navbar.navbar-short {
  min-height: 80px;
}
.cid-u9YBM3EO7q .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u9YBM3EO7q .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u9YBM3EO7q .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u9YBM3EO7q .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u9YBM3EO7q .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u9YBM3EO7q .dropdown-item.active,
.cid-u9YBM3EO7q .dropdown-item:active {
  background-color: transparent;
}
.cid-u9YBM3EO7q .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u9YBM3EO7q .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u9YBM3EO7q .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u9YBM3EO7q .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u9YBM3EO7q .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u9YBM3EO7q .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u9YBM3EO7q ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u9YBM3EO7q .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u9YBM3EO7q button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u9YBM3EO7q button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u9YBM3EO7q button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u9YBM3EO7q button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u9YBM3EO7q button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u9YBM3EO7q button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u9YBM3EO7q nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u9YBM3EO7q nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u9YBM3EO7q nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u9YBM3EO7q nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u9YBM3EO7q .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u9YBM3EO7q a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u9YBM3EO7q .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u9YBM3EO7q .navbar {
    height: 70px;
  }
  .cid-u9YBM3EO7q .navbar.opened {
    height: auto;
  }
  .cid-u9YBM3EO7q .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ujkp1jq5ez {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/adobestock-851538318-2000x796.jpg");
}
.cid-ujkp1jq5ez .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujkp1jq5ez .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ujkp1jq5ez .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-ujkp1jq5ez .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-ujkp1jq5ez .container {
    padding: 0;
  }
}
.cid-ujkp1jq5ez .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-ujkp1jq5ez .title-wrapper .title-wrap .mbr-box {
  width: 155px;
  height: 115px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #7241da;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .cid-ujkp1jq5ez .title-wrapper .title-wrap .mbr-box {
    display: none;
  }
}
.cid-ujkp1jq5ez .title-wrapper .title-wrap .mbr-section-title {
  letter-spacing: 3.25px;
  padding: 0 16px;
  margin-bottom: 0;
}
.cid-ujkp1jq5ez .title-wrapper .mbr-section-btn {
  padding: 0 16px;
  margin-top: 100px;
}
@media (max-width: 992px) {
  .cid-ujkp1jq5ez .title-wrapper .mbr-section-btn {
    margin-top: 40px;
  }
}
.cid-ujkp1jq5ez .mbr-section-title {
  color: #ffffff;
}
.cid-ujkp1jq5ez .mbr-box {
  color: #ffffff;
}
.cid-ujkp1jq5ez .mbr-section-btn {
  text-align: center;
}
.cid-ucHTa4T8FI {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uiaAlRQCmz {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uiaAzvE3so {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uiaAKyleVP {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-u9YBM4bB2v {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #7241da;
  overflow: hidden;
}
.cid-u9YBM4bB2v .mbr-text {
  color: #131313;
}
.cid-u9YBM4bB2v .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-tV42s89qya {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-tV42s89qya .btn {
  padding: 0.6rem 2rem;
  border: none !important;
  font-weight: 400;
  box-shadow: none;
}
.cid-tV42s89qya nav.navbar {
  position: fixed;
}
.cid-tV42s89qya .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tV42s89qya .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tV42s89qya .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tV42s89qya .dropdown-item:hover,
.cid-tV42s89qya .dropdown-item:focus {
  background: #1654b7 !important;
  color: white !important;
}
.cid-tV42s89qya .dropdown-item:hover span {
  color: white;
}
.cid-tV42s89qya .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tV42s89qya .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tV42s89qya .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tV42s89qya .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tV42s89qya .nav-link {
  position: relative;
}
.cid-tV42s89qya .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tV42s89qya .container {
    flex-wrap: nowrap;
  }
}
.cid-tV42s89qya .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tV42s89qya .dropdown-menu,
.cid-tV42s89qya .navbar.opened {
  background: #ffffff !important;
}
.cid-tV42s89qya .nav-item:focus,
.cid-tV42s89qya .nav-link:focus {
  outline: none;
}
.cid-tV42s89qya .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tV42s89qya .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tV42s89qya .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tV42s89qya .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tV42s89qya .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tV42s89qya .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tV42s89qya .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tV42s89qya .navbar.opened {
  transition: all 0.3s;
}
.cid-tV42s89qya .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tV42s89qya .navbar .navbar-logo img {
  width: auto;
}
.cid-tV42s89qya .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tV42s89qya .navbar.collapsed {
  justify-content: center;
}
.cid-tV42s89qya .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tV42s89qya .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tV42s89qya .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-tV42s89qya .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tV42s89qya .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tV42s89qya .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-tV42s89qya .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tV42s89qya .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tV42s89qya .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tV42s89qya .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tV42s89qya .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tV42s89qya .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tV42s89qya .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tV42s89qya .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-tV42s89qya .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tV42s89qya .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tV42s89qya .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tV42s89qya .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tV42s89qya .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tV42s89qya .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tV42s89qya .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tV42s89qya .navbar.navbar-short {
  min-height: 80px;
}
.cid-tV42s89qya .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tV42s89qya .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tV42s89qya .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tV42s89qya .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tV42s89qya .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tV42s89qya .dropdown-item.active,
.cid-tV42s89qya .dropdown-item:active {
  background-color: transparent;
}
.cid-tV42s89qya .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tV42s89qya .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tV42s89qya .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tV42s89qya .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tV42s89qya .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tV42s89qya .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tV42s89qya ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tV42s89qya .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tV42s89qya button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tV42s89qya button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tV42s89qya button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tV42s89qya button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tV42s89qya button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tV42s89qya button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tV42s89qya nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tV42s89qya nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tV42s89qya nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tV42s89qya nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tV42s89qya .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tV42s89qya a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tV42s89qya .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tV42s89qya .navbar {
    height: 70px;
  }
  .cid-tV42s89qya .navbar.opened {
    height: auto;
  }
  .cid-tV42s89qya .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ujktBnIryQ {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/adobestock-793688352-preview-1000x398.jpeg");
}
.cid-ujktBnIryQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujktBnIryQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ujktBnIryQ .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-ujktBnIryQ .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-ujktBnIryQ .container {
    padding: 0;
  }
}
.cid-ujktBnIryQ .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-ujktBnIryQ .title-wrapper .title-wrap .mbr-box {
  width: 155px;
  height: 115px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #7241da;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .cid-ujktBnIryQ .title-wrapper .title-wrap .mbr-box {
    display: none;
  }
}
.cid-ujktBnIryQ .title-wrapper .title-wrap .mbr-section-title {
  letter-spacing: 3.25px;
  padding: 0 16px;
  margin-bottom: 0;
}
.cid-ujktBnIryQ .title-wrapper .mbr-section-btn {
  padding: 0 16px;
  margin-top: 100px;
}
@media (max-width: 992px) {
  .cid-ujktBnIryQ .title-wrapper .mbr-section-btn {
    margin-top: 40px;
  }
}
.cid-ujktBnIryQ .mbr-section-title {
  color: #ffffff;
}
.cid-ujktBnIryQ .mbr-box {
  color: #ffffff;
}
.cid-ujktBnIryQ .mbr-section-btn {
  text-align: center;
}
.cid-ujiNb76hz2 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ujiNb76hz2 .mbr-text,
.cid-ujiNb76hz2 .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-ujiNb76hz2 .mbr-section-title {
  color: #000000;
  margin-bottom: 30px;
}
.cid-ujiNb76hz2 .buttons-wrap .link {
  display: flex;
}
@media (max-width: 768px) {
  .cid-ujiNb76hz2 * {
    text-align: center;
  }
  .cid-ujiNb76hz2 .buttons-wrap {
    justify-content: center;
  }
}
.cid-ujiNb76hz2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujiNb76hz2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ujiNb76hz2 .mbr-section-title,
.cid-ujiNb76hz2 .mbr-section-btn {
  text-align: left;
}
.cid-ujcVOKrW1W {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ujcVOKrW1W .mbr-text {
  text-align: center;
}
.cid-ujcVkLOWji {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ujcVkLOWji .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujcVkLOWji .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ujcVkLOWji .title-col {
  width: 100%;
  margin-bottom: 2rem;
}
.cid-ujcVkLOWji .mbr-section-title {
  color: #000000;
  width: 100%;
}
.cid-ujcVkLOWji .mbr-section-subtitle {
  color: #000000;
  width: 100%;
}
.cid-ujcVkLOWji .lists-col {
  width: 100%;
}
.cid-ujcVkLOWji .col-list {
  width: 100%;
}
.cid-ujcVkLOWji .list-title {
  color: #000000;
  width: 100%;
  margin-bottom: 10px;
}
.cid-ujcVkLOWji .list {
  list-style: none;
  margin: 0 0 10px 0;
  padding-left: 24px;
}
.cid-ujcVkLOWji li {
  position: relative;
  padding: 0 0 0 1rem;
  margin-bottom: 0;
}
.cid-ujcVkLOWji ul li::before {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  justify-content: flex-start;
  content: "\2022";
  color: #000000;
  font-weight: bold;
  font-size: 1.2rem;
  width: 1.2rem;
}
.cid-ucHUNjJtLH {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-ucHUNjJtLH .btn.btn-primary-outline {
  border: 1px solid #1654b7;
}
.cid-ucHUNjJtLH .btn.btn-primary-outline:hover {
  background-color: #1654b7 !important;
  color: #ffffff !important;
}
.cid-ucHUNjJtLH .btn.btn-secondary-outline {
  border: 1px solid #7241da;
}
.cid-ucHUNjJtLH .btn.btn-secondary-outline:hover {
  background-color: #7241da !important;
  color: #ffffff !important;
}
.cid-ucHUNjJtLH .btn.btn-success-outline {
  border: 1px solid #2bb3f9;
}
.cid-ucHUNjJtLH .btn.btn-success-outline:hover {
  background-color: #2bb3f9 !important;
  color: #ffffff !important;
}
.cid-ucHUNjJtLH .btn.btn-info-outline {
  border: 1px solid #ffffff;
}
.cid-ucHUNjJtLH .btn.btn-info-outline:hover {
  background-color: #ffffff !important;
  color: #ffffff !important;
}
.cid-ucHUNjJtLH .btn.btn-warning-outline {
  border: 1px solid #78dbf9;
}
.cid-ucHUNjJtLH .btn.btn-warning-outline:hover {
  background-color: #78dbf9 !important;
  color: #ffffff !important;
}
.cid-ucHUNjJtLH .btn.btn-danger-outline {
  border: 1px solid #f355d6;
}
.cid-ucHUNjJtLH .btn.btn-danger-outline:hover {
  background-color: #f355d6 !important;
  color: #ffffff !important;
}
.cid-ucHUNjJtLH .btn.btn-black-outline {
  border: 1px solid #000000;
}
.cid-ucHUNjJtLH .btn.btn-black-outline:hover {
  background-color: #000000 !important;
  color: #ffffff !important;
}
.cid-ucHUNjJtLH .btn.btn-white-outline {
  border: 1px solid #ffffff;
}
.cid-ucHUNjJtLH .btn.btn-white-outline:hover {
  background-color: #ffffff !important;
  color: #000000 !important;
}
.cid-ucHV4ZYWUw {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #1654b7;
}
.cid-ucHV4ZYWUw .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucHV4ZYWUw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucHV4ZYWUw .mbr-section-title {
  color: #ffffff;
}
.cid-ucHV6b4KfF {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ucHV6b4KfF .mbr-text {
  color: #000000;
}
.cid-ucHVemNuPE {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-ucHVemNuPE .btn.btn-primary-outline {
  border: 1px solid #1654b7;
}
.cid-ucHVemNuPE .btn.btn-primary-outline:hover {
  background-color: #1654b7 !important;
  color: #ffffff !important;
}
.cid-ucHVemNuPE .btn.btn-secondary-outline {
  border: 1px solid #7241da;
}
.cid-ucHVemNuPE .btn.btn-secondary-outline:hover {
  background-color: #7241da !important;
  color: #ffffff !important;
}
.cid-ucHVemNuPE .btn.btn-success-outline {
  border: 1px solid #2bb3f9;
}
.cid-ucHVemNuPE .btn.btn-success-outline:hover {
  background-color: #2bb3f9 !important;
  color: #ffffff !important;
}
.cid-ucHVemNuPE .btn.btn-info-outline {
  border: 1px solid #ffffff;
}
.cid-ucHVemNuPE .btn.btn-info-outline:hover {
  background-color: #ffffff !important;
  color: #ffffff !important;
}
.cid-ucHVemNuPE .btn.btn-warning-outline {
  border: 1px solid #78dbf9;
}
.cid-ucHVemNuPE .btn.btn-warning-outline:hover {
  background-color: #78dbf9 !important;
  color: #ffffff !important;
}
.cid-ucHVemNuPE .btn.btn-danger-outline {
  border: 1px solid #f355d6;
}
.cid-ucHVemNuPE .btn.btn-danger-outline:hover {
  background-color: #f355d6 !important;
  color: #ffffff !important;
}
.cid-ucHVemNuPE .btn.btn-black-outline {
  border: 1px solid #000000;
}
.cid-ucHVemNuPE .btn.btn-black-outline:hover {
  background-color: #000000 !important;
  color: #ffffff !important;
}
.cid-ucHVemNuPE .btn.btn-white-outline {
  border: 1px solid #ffffff;
}
.cid-ucHVemNuPE .btn.btn-white-outline:hover {
  background-color: #ffffff !important;
  color: #000000 !important;
}
.cid-ucHV75GUUW {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #1654b7;
}
.cid-ucHV75GUUW .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucHV75GUUW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucHV75GUUW .mbr-section-title {
  color: #ffffff;
}
.cid-ucHV7YH6KI {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-ucHV7YH6KI .mbr-text {
  color: #000000;
}
.cid-u6o4Wwz6HH {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #7241da;
  overflow: hidden;
}
.cid-u6o4Wwz6HH .mbr-text {
  color: #131313;
}
.cid-u6o4Wwz6HH .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-u9YtlMapRi {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-u9YtlMapRi .btn {
  padding: 0.6rem 2rem;
  border: none !important;
  font-weight: 400;
  box-shadow: none;
}
.cid-u9YtlMapRi nav.navbar {
  position: fixed;
}
.cid-u9YtlMapRi .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u9YtlMapRi .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u9YtlMapRi .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u9YtlMapRi .dropdown-item:hover,
.cid-u9YtlMapRi .dropdown-item:focus {
  background: #1654b7 !important;
  color: white !important;
}
.cid-u9YtlMapRi .dropdown-item:hover span {
  color: white;
}
.cid-u9YtlMapRi .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u9YtlMapRi .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u9YtlMapRi .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u9YtlMapRi .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u9YtlMapRi .nav-link {
  position: relative;
}
.cid-u9YtlMapRi .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u9YtlMapRi .container {
    flex-wrap: nowrap;
  }
}
.cid-u9YtlMapRi .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u9YtlMapRi .dropdown-menu,
.cid-u9YtlMapRi .navbar.opened {
  background: #ffffff !important;
}
.cid-u9YtlMapRi .nav-item:focus,
.cid-u9YtlMapRi .nav-link:focus {
  outline: none;
}
.cid-u9YtlMapRi .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u9YtlMapRi .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u9YtlMapRi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u9YtlMapRi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u9YtlMapRi .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u9YtlMapRi .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u9YtlMapRi .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-u9YtlMapRi .navbar.opened {
  transition: all 0.3s;
}
.cid-u9YtlMapRi .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u9YtlMapRi .navbar .navbar-logo img {
  width: auto;
}
.cid-u9YtlMapRi .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u9YtlMapRi .navbar.collapsed {
  justify-content: center;
}
.cid-u9YtlMapRi .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u9YtlMapRi .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u9YtlMapRi .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-u9YtlMapRi .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u9YtlMapRi .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u9YtlMapRi .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-u9YtlMapRi .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u9YtlMapRi .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u9YtlMapRi .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u9YtlMapRi .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u9YtlMapRi .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u9YtlMapRi .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u9YtlMapRi .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u9YtlMapRi .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-u9YtlMapRi .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u9YtlMapRi .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u9YtlMapRi .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u9YtlMapRi .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u9YtlMapRi .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u9YtlMapRi .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u9YtlMapRi .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u9YtlMapRi .navbar.navbar-short {
  min-height: 80px;
}
.cid-u9YtlMapRi .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u9YtlMapRi .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u9YtlMapRi .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u9YtlMapRi .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u9YtlMapRi .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u9YtlMapRi .dropdown-item.active,
.cid-u9YtlMapRi .dropdown-item:active {
  background-color: transparent;
}
.cid-u9YtlMapRi .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u9YtlMapRi .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u9YtlMapRi .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u9YtlMapRi .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u9YtlMapRi .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u9YtlMapRi .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u9YtlMapRi ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u9YtlMapRi .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u9YtlMapRi button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u9YtlMapRi button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u9YtlMapRi button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u9YtlMapRi button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u9YtlMapRi button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u9YtlMapRi button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u9YtlMapRi nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u9YtlMapRi nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u9YtlMapRi nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u9YtlMapRi nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u9YtlMapRi .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u9YtlMapRi a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u9YtlMapRi .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u9YtlMapRi .navbar {
    height: 70px;
  }
  .cid-u9YtlMapRi .navbar.opened {
    height: auto;
  }
  .cid-u9YtlMapRi .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ujkrKb82qa {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/adobestock-115193833-2000x1309.jpg");
}
.cid-ujkrKb82qa .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujkrKb82qa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ujkrKb82qa .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-ujkrKb82qa .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-ujkrKb82qa .container {
    padding: 0;
  }
}
.cid-ujkrKb82qa .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-ujkrKb82qa .title-wrapper .title-wrap .mbr-box {
  width: 155px;
  height: 115px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #7241da;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .cid-ujkrKb82qa .title-wrapper .title-wrap .mbr-box {
    display: none;
  }
}
.cid-ujkrKb82qa .title-wrapper .title-wrap .mbr-section-title {
  letter-spacing: 3.25px;
  padding: 0 16px;
  margin-bottom: 0;
}
.cid-ujkrKb82qa .title-wrapper .mbr-section-btn {
  padding: 0 16px;
  margin-top: 100px;
}
@media (max-width: 992px) {
  .cid-ujkrKb82qa .title-wrapper .mbr-section-btn {
    margin-top: 40px;
  }
}
.cid-ujkrKb82qa .mbr-section-title {
  color: #ffffff;
}
.cid-ujkrKb82qa .mbr-box {
  color: #ffffff;
}
.cid-ujkrKb82qa .mbr-section-btn {
  text-align: center;
}
.cid-u9YtlN6C0k {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ui6deFfqzk {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ui6deFfqzk .mbr-fallback-image.disabled {
  display: none;
}
.cid-ui6deFfqzk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ui6deFfqzk .title-col {
  width: 100%;
  margin-bottom: 2rem;
}
.cid-ui6deFfqzk .mbr-section-title {
  color: #000000;
  width: 100%;
}
.cid-ui6deFfqzk .mbr-section-subtitle {
  color: #000000;
  width: 100%;
}
.cid-ui6deFfqzk .lists-col {
  width: 100%;
}
.cid-ui6deFfqzk .col-list {
  width: 100%;
}
.cid-ui6deFfqzk .list-title {
  color: #000000;
  width: 100%;
  margin-bottom: 10px;
}
.cid-ui6deFfqzk .list {
  list-style: none;
  margin: 0 0 10px 0;
  padding-left: 24px;
}
.cid-ui6deFfqzk li {
  position: relative;
  padding: 0 0 0 1rem;
  margin-bottom: 0;
}
.cid-ui6deFfqzk ul li::before {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  justify-content: flex-start;
  content: "\2022";
  color: #000000;
  font-weight: bold;
  font-size: 1.2rem;
  width: 1.2rem;
}
.cid-ui6dfBlWwI {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-u9YtlNvJGV {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #1654b7;
}
.cid-u9YtlNvJGV .mbr-fallback-image.disabled {
  display: none;
}
.cid-u9YtlNvJGV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u9YtlNvJGV .mbr-section-title {
  color: #ffffff;
}
.cid-ucHDVILCZS {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-ui6gss2K4x {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #1654b7;
}
.cid-ui6gss2K4x .mbr-fallback-image.disabled {
  display: none;
}
.cid-ui6gss2K4x .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ui6gss2K4x .mbr-section-title {
  color: #ffffff;
}
.cid-ui6gtRSJna {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ui6gxxS90i {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ui6gxxS90i .mbr-fallback-image.disabled {
  display: none;
}
.cid-ui6gxxS90i .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ui6gxxS90i .title-col {
  width: 100%;
  margin-bottom: 2rem;
}
.cid-ui6gxxS90i .mbr-section-title {
  color: #000000;
  width: 100%;
}
.cid-ui6gxxS90i .mbr-section-subtitle {
  color: #000000;
  width: 100%;
}
.cid-ui6gxxS90i .lists-col {
  width: 100%;
}
.cid-ui6gxxS90i .col-list {
  width: 100%;
}
.cid-ui6gxxS90i .list-title {
  color: #000000;
  width: 100%;
  margin-bottom: 10px;
}
.cid-ui6gxxS90i .list {
  list-style: none;
  margin: 0 0 10px 0;
  padding-left: 24px;
}
.cid-ui6gxxS90i li {
  position: relative;
  padding: 0 0 0 1rem;
  margin-bottom: 0;
}
.cid-ui6gxxS90i ul li::before {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  justify-content: flex-start;
  content: "\2022";
  color: #000000;
  font-weight: bold;
  font-size: 1.2rem;
  width: 1.2rem;
}
.cid-ui6gyO8MC4 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ui6gB6ekIt {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ui6gB6ekIt .mbr-fallback-image.disabled {
  display: none;
}
.cid-ui6gB6ekIt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ui6gB6ekIt .title-col {
  width: 100%;
  margin-bottom: 2rem;
}
.cid-ui6gB6ekIt .mbr-section-title {
  color: #000000;
  width: 100%;
}
.cid-ui6gB6ekIt .mbr-section-subtitle {
  color: #000000;
  width: 100%;
}
.cid-ui6gB6ekIt .lists-col {
  width: 100%;
}
.cid-ui6gB6ekIt .col-list {
  width: 100%;
}
.cid-ui6gB6ekIt .list-title {
  color: #000000;
  width: 100%;
  margin-bottom: 10px;
}
.cid-ui6gB6ekIt .list {
  list-style: none;
  margin: 0 0 10px 0;
  padding-left: 24px;
}
.cid-ui6gB6ekIt li {
  position: relative;
  padding: 0 0 0 1rem;
  margin-bottom: 0;
}
.cid-ui6gB6ekIt ul li::before {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  justify-content: flex-start;
  content: "\2022";
  color: #000000;
  font-weight: bold;
  font-size: 1.2rem;
  width: 1.2rem;
}
.cid-ui6gCC54aV {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-u9Yv7593bU {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #1654b7;
}
.cid-u9Yv7593bU .mbr-fallback-image.disabled {
  display: none;
}
.cid-u9Yv7593bU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u9Yv7593bU .mbr-section-title {
  color: #ffffff;
}
.cid-u9YtlPpns7 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ui6lUZyZFP {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ui6lUZyZFP .mbr-fallback-image.disabled {
  display: none;
}
.cid-ui6lUZyZFP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ui6lUZyZFP .title-col {
  width: 100%;
  margin-bottom: 2rem;
}
.cid-ui6lUZyZFP .mbr-section-title {
  color: #000000;
  width: 100%;
}
.cid-ui6lUZyZFP .mbr-section-subtitle {
  color: #000000;
  width: 100%;
}
.cid-ui6lUZyZFP .lists-col {
  width: 100%;
}
.cid-ui6lUZyZFP .col-list {
  width: 100%;
}
.cid-ui6lUZyZFP .list-title {
  color: #000000;
  width: 100%;
  margin-bottom: 10px;
}
.cid-ui6lUZyZFP .list {
  list-style: none;
  margin: 0 0 10px 0;
  padding-left: 24px;
}
.cid-ui6lUZyZFP li {
  position: relative;
  padding: 0 0 0 1rem;
  margin-bottom: 0;
}
.cid-ui6lUZyZFP ul li::before {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  justify-content: flex-start;
  content: "\2022";
  color: #000000;
  font-weight: bold;
  font-size: 1.2rem;
  width: 1.2rem;
}
.cid-ui6lXpC3S1 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ui6lYtNlVr {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ui6lYtNlVr .mbr-fallback-image.disabled {
  display: none;
}
.cid-ui6lYtNlVr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ui6lYtNlVr .title-col {
  width: 100%;
  margin-bottom: 2rem;
}
.cid-ui6lYtNlVr .mbr-section-title {
  color: #000000;
  width: 100%;
}
.cid-ui6lYtNlVr .mbr-section-subtitle {
  color: #000000;
  width: 100%;
}
.cid-ui6lYtNlVr .lists-col {
  width: 100%;
}
.cid-ui6lYtNlVr .col-list {
  width: 100%;
}
.cid-ui6lYtNlVr .list-title {
  color: #000000;
  width: 100%;
  margin-bottom: 10px;
}
.cid-ui6lYtNlVr .list {
  list-style: none;
  margin: 0 0 10px 0;
  padding-left: 24px;
}
.cid-ui6lYtNlVr li {
  position: relative;
  padding: 0 0 0 1rem;
  margin-bottom: 0;
}
.cid-ui6lYtNlVr ul li::before {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  justify-content: flex-start;
  content: "\2022";
  color: #000000;
  font-weight: bold;
  font-size: 1.2rem;
  width: 1.2rem;
}
.cid-ui6n7YJejK {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-u9YtlRnOL7 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #1654b7;
}
.cid-u9YtlRnOL7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u9YtlRnOL7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u9YtlRnOL7 .mbr-section-title {
  color: #ffffff;
}
.cid-u9YtlRMEwB {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-u9YtlSbiSu {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #7241da;
  overflow: hidden;
}
.cid-u9YtlSbiSu .mbr-text {
  color: #131313;
}
.cid-u9YtlSbiSu .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-u9YBVxRND8 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-u9YBVxRND8 .btn {
  padding: 0.6rem 2rem;
  border: none !important;
  font-weight: 400;
  box-shadow: none;
}
.cid-u9YBVxRND8 nav.navbar {
  position: fixed;
}
.cid-u9YBVxRND8 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u9YBVxRND8 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u9YBVxRND8 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u9YBVxRND8 .dropdown-item:hover,
.cid-u9YBVxRND8 .dropdown-item:focus {
  background: #1654b7 !important;
  color: white !important;
}
.cid-u9YBVxRND8 .dropdown-item:hover span {
  color: white;
}
.cid-u9YBVxRND8 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u9YBVxRND8 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u9YBVxRND8 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u9YBVxRND8 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u9YBVxRND8 .nav-link {
  position: relative;
}
.cid-u9YBVxRND8 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u9YBVxRND8 .container {
    flex-wrap: nowrap;
  }
}
.cid-u9YBVxRND8 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u9YBVxRND8 .dropdown-menu,
.cid-u9YBVxRND8 .navbar.opened {
  background: #ffffff !important;
}
.cid-u9YBVxRND8 .nav-item:focus,
.cid-u9YBVxRND8 .nav-link:focus {
  outline: none;
}
.cid-u9YBVxRND8 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u9YBVxRND8 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u9YBVxRND8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u9YBVxRND8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u9YBVxRND8 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u9YBVxRND8 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u9YBVxRND8 .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-u9YBVxRND8 .navbar.opened {
  transition: all 0.3s;
}
.cid-u9YBVxRND8 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u9YBVxRND8 .navbar .navbar-logo img {
  width: auto;
}
.cid-u9YBVxRND8 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u9YBVxRND8 .navbar.collapsed {
  justify-content: center;
}
.cid-u9YBVxRND8 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u9YBVxRND8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u9YBVxRND8 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-u9YBVxRND8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u9YBVxRND8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u9YBVxRND8 .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-u9YBVxRND8 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u9YBVxRND8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u9YBVxRND8 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u9YBVxRND8 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u9YBVxRND8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u9YBVxRND8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u9YBVxRND8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u9YBVxRND8 .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-u9YBVxRND8 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u9YBVxRND8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u9YBVxRND8 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u9YBVxRND8 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u9YBVxRND8 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u9YBVxRND8 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u9YBVxRND8 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u9YBVxRND8 .navbar.navbar-short {
  min-height: 80px;
}
.cid-u9YBVxRND8 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u9YBVxRND8 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u9YBVxRND8 .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u9YBVxRND8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u9YBVxRND8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u9YBVxRND8 .dropdown-item.active,
.cid-u9YBVxRND8 .dropdown-item:active {
  background-color: transparent;
}
.cid-u9YBVxRND8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u9YBVxRND8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u9YBVxRND8 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u9YBVxRND8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u9YBVxRND8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u9YBVxRND8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u9YBVxRND8 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u9YBVxRND8 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u9YBVxRND8 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u9YBVxRND8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u9YBVxRND8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u9YBVxRND8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u9YBVxRND8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u9YBVxRND8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u9YBVxRND8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u9YBVxRND8 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u9YBVxRND8 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u9YBVxRND8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u9YBVxRND8 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u9YBVxRND8 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u9YBVxRND8 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u9YBVxRND8 .navbar {
    height: 70px;
  }
  .cid-u9YBVxRND8 .navbar.opened {
    height: auto;
  }
  .cid-u9YBVxRND8 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ujkpO3bHNj {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/adobestock-288346477-2000x1065.jpg");
}
.cid-ujkpO3bHNj .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujkpO3bHNj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ujkpO3bHNj .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-ujkpO3bHNj .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-ujkpO3bHNj .container {
    padding: 0;
  }
}
.cid-ujkpO3bHNj .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-ujkpO3bHNj .title-wrapper .title-wrap .mbr-box {
  width: 155px;
  height: 115px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #7241da;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .cid-ujkpO3bHNj .title-wrapper .title-wrap .mbr-box {
    display: none;
  }
}
.cid-ujkpO3bHNj .title-wrapper .title-wrap .mbr-section-title {
  letter-spacing: 3.25px;
  padding: 0 16px;
  margin-bottom: 0;
}
.cid-ujkpO3bHNj .title-wrapper .mbr-section-btn {
  padding: 0 16px;
  margin-top: 100px;
}
@media (max-width: 992px) {
  .cid-ujkpO3bHNj .title-wrapper .mbr-section-btn {
    margin-top: 40px;
  }
}
.cid-ujkpO3bHNj .mbr-section-title {
  color: #ffffff;
}
.cid-ujkpO3bHNj .mbr-box {
  color: #ffffff;
}
.cid-ujkpO3bHNj .mbr-section-btn {
  text-align: center;
}
.cid-uiaEQl9ShF {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uiaEQl9ShF .mbr-text,
.cid-uiaEQl9ShF .mbr-section-btn {
  color: #000000;
}
.cid-uiaEQl9ShF .mbr-section-title {
  color: #000000;
  margin-bottom: 30px;
}
.cid-uiaEQl9ShF .buttons-wrap .link {
  display: flex;
}
@media (max-width: 768px) {
  .cid-uiaEQl9ShF * {
    text-align: center;
  }
  .cid-uiaEQl9ShF .buttons-wrap {
    justify-content: center;
  }
}
.cid-uiaEQl9ShF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uiaEQl9ShF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uiaFIJlSJP {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uiaFIJlSJP .row {
  flex-direction: row-reverse;
}
.cid-uiaFIJlSJP .mbr-text,
.cid-uiaFIJlSJP .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uiaFIJlSJP .mbr-section-title {
  color: #000000;
  margin-bottom: 30px;
}
.cid-uiaFIJlSJP .buttons-wrap .link {
  display: flex;
}
@media (max-width: 768px) {
  .cid-uiaFIJlSJP * {
    text-align: center;
  }
  .cid-uiaFIJlSJP .buttons-wrap {
    justify-content: center;
  }
}
.cid-uiaFIJlSJP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uiaFIJlSJP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uiaFIJlSJP .mbr-section-subtitle,
.cid-uiaFIJlSJP .mbr-section-btn {
  text-align: left;
}
.cid-uiaFJeaZGZ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uiaFJeaZGZ .mbr-text,
.cid-uiaFJeaZGZ .mbr-section-btn {
  color: #000000;
  text-align: right;
}
.cid-uiaFJeaZGZ .mbr-section-title {
  color: #000000;
  margin-bottom: 30px;
}
.cid-uiaFJeaZGZ .buttons-wrap .link {
  display: flex;
}
@media (max-width: 768px) {
  .cid-uiaFJeaZGZ * {
    text-align: center;
  }
  .cid-uiaFJeaZGZ .buttons-wrap {
    justify-content: center;
  }
}
.cid-uiaFJeaZGZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uiaFJeaZGZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u9YBVygtQQ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #7241da;
  overflow: hidden;
}
.cid-u9YBVygtQQ .mbr-text {
  color: #131313;
}
.cid-u9YBVygtQQ .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-u9Yxwf5Fzh {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-u9Yxwf5Fzh .btn {
  padding: 0.6rem 2rem;
  border: none !important;
  font-weight: 400;
  box-shadow: none;
}
.cid-u9Yxwf5Fzh nav.navbar {
  position: fixed;
}
.cid-u9Yxwf5Fzh .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u9Yxwf5Fzh .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u9Yxwf5Fzh .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u9Yxwf5Fzh .dropdown-item:hover,
.cid-u9Yxwf5Fzh .dropdown-item:focus {
  background: #1654b7 !important;
  color: white !important;
}
.cid-u9Yxwf5Fzh .dropdown-item:hover span {
  color: white;
}
.cid-u9Yxwf5Fzh .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u9Yxwf5Fzh .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u9Yxwf5Fzh .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u9Yxwf5Fzh .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u9Yxwf5Fzh .nav-link {
  position: relative;
}
.cid-u9Yxwf5Fzh .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u9Yxwf5Fzh .container {
    flex-wrap: nowrap;
  }
}
.cid-u9Yxwf5Fzh .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u9Yxwf5Fzh .dropdown-menu,
.cid-u9Yxwf5Fzh .navbar.opened {
  background: #ffffff !important;
}
.cid-u9Yxwf5Fzh .nav-item:focus,
.cid-u9Yxwf5Fzh .nav-link:focus {
  outline: none;
}
.cid-u9Yxwf5Fzh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u9Yxwf5Fzh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u9Yxwf5Fzh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u9Yxwf5Fzh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u9Yxwf5Fzh .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u9Yxwf5Fzh .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u9Yxwf5Fzh .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-u9Yxwf5Fzh .navbar.opened {
  transition: all 0.3s;
}
.cid-u9Yxwf5Fzh .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u9Yxwf5Fzh .navbar .navbar-logo img {
  width: auto;
}
.cid-u9Yxwf5Fzh .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u9Yxwf5Fzh .navbar.collapsed {
  justify-content: center;
}
.cid-u9Yxwf5Fzh .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u9Yxwf5Fzh .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u9Yxwf5Fzh .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-u9Yxwf5Fzh .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u9Yxwf5Fzh .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u9Yxwf5Fzh .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-u9Yxwf5Fzh .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u9Yxwf5Fzh .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u9Yxwf5Fzh .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u9Yxwf5Fzh .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u9Yxwf5Fzh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u9Yxwf5Fzh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u9Yxwf5Fzh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u9Yxwf5Fzh .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-u9Yxwf5Fzh .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u9Yxwf5Fzh .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u9Yxwf5Fzh .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u9Yxwf5Fzh .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u9Yxwf5Fzh .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u9Yxwf5Fzh .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u9Yxwf5Fzh .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u9Yxwf5Fzh .navbar.navbar-short {
  min-height: 80px;
}
.cid-u9Yxwf5Fzh .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u9Yxwf5Fzh .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u9Yxwf5Fzh .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u9Yxwf5Fzh .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u9Yxwf5Fzh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u9Yxwf5Fzh .dropdown-item.active,
.cid-u9Yxwf5Fzh .dropdown-item:active {
  background-color: transparent;
}
.cid-u9Yxwf5Fzh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u9Yxwf5Fzh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u9Yxwf5Fzh .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u9Yxwf5Fzh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u9Yxwf5Fzh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u9Yxwf5Fzh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u9Yxwf5Fzh ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u9Yxwf5Fzh .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u9Yxwf5Fzh button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u9Yxwf5Fzh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u9Yxwf5Fzh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u9Yxwf5Fzh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u9Yxwf5Fzh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u9Yxwf5Fzh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u9Yxwf5Fzh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u9Yxwf5Fzh nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u9Yxwf5Fzh nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u9Yxwf5Fzh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u9Yxwf5Fzh .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u9Yxwf5Fzh a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u9Yxwf5Fzh .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u9Yxwf5Fzh .navbar {
    height: 70px;
  }
  .cid-u9Yxwf5Fzh .navbar.opened {
    height: auto;
  }
  .cid-u9Yxwf5Fzh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ujkulzIgs5 {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/adobestock-246182219-2000x530.jpg");
}
.cid-ujkulzIgs5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujkulzIgs5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ujkulzIgs5 .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-ujkulzIgs5 .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-ujkulzIgs5 .container {
    padding: 0;
  }
}
.cid-ujkulzIgs5 .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-ujkulzIgs5 .title-wrapper .title-wrap .mbr-box {
  width: 155px;
  height: 115px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #7241da;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .cid-ujkulzIgs5 .title-wrapper .title-wrap .mbr-box {
    display: none;
  }
}
.cid-ujkulzIgs5 .title-wrapper .title-wrap .mbr-section-title {
  letter-spacing: 3.25px;
  padding: 0 16px;
  margin-bottom: 0;
}
.cid-ujkulzIgs5 .title-wrapper .mbr-section-btn {
  padding: 0 16px;
  margin-top: 100px;
}
@media (max-width: 992px) {
  .cid-ujkulzIgs5 .title-wrapper .mbr-section-btn {
    margin-top: 40px;
  }
}
.cid-ujkulzIgs5 .mbr-section-title {
  color: #ffffff;
}
.cid-ujkulzIgs5 .mbr-box {
  color: #ffffff;
}
.cid-ujkulzIgs5 .mbr-section-btn {
  text-align: center;
}
.cid-ujcXliVmTg {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-ujcXliVmTg .mbr-text {
  text-align: center;
}
.cid-uib3QohMpp {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uib3QohMpp .row {
  flex-direction: row-reverse;
}
.cid-uib3QohMpp .mbr-text,
.cid-uib3QohMpp .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uib3QohMpp .mbr-section-title {
  color: #000000;
  margin-bottom: 30px;
}
.cid-uib3QohMpp .buttons-wrap .link {
  display: flex;
}
@media (max-width: 768px) {
  .cid-uib3QohMpp * {
    text-align: center;
  }
  .cid-uib3QohMpp .buttons-wrap {
    justify-content: center;
  }
}
.cid-uib3QohMpp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uib3QohMpp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uib3QohMpp .mbr-section-title,
.cid-uib3QohMpp .mbr-section-btn {
  text-align: left;
}
.cid-uib3QohMpp .mbr-section-subtitle,
.cid-uib3QohMpp .mbr-section-btn {
  text-align: left;
}
.cid-uib3QNSbAz {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uib3QNSbAz .mbr-text,
.cid-uib3QNSbAz .mbr-section-btn {
  color: #000000;
}
.cid-uib3QNSbAz .mbr-section-title {
  color: #000000;
  margin-bottom: 30px;
}
.cid-uib3QNSbAz .buttons-wrap .link {
  display: flex;
}
@media (max-width: 768px) {
  .cid-uib3QNSbAz * {
    text-align: center;
  }
  .cid-uib3QNSbAz .buttons-wrap {
    justify-content: center;
  }
}
.cid-uib3QNSbAz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uib3QNSbAz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uib3Re63LH {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uib3Re63LH .row {
  flex-direction: row-reverse;
}
.cid-uib3Re63LH .mbr-text,
.cid-uib3Re63LH .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uib3Re63LH .mbr-section-title {
  color: #000000;
  margin-bottom: 30px;
}
.cid-uib3Re63LH .buttons-wrap .link {
  display: flex;
}
@media (max-width: 768px) {
  .cid-uib3Re63LH * {
    text-align: center;
  }
  .cid-uib3Re63LH .buttons-wrap {
    justify-content: center;
  }
}
.cid-uib3Re63LH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uib3Re63LH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uib3Re63LH .mbr-section-title,
.cid-uib3Re63LH .mbr-section-btn {
  text-align: left;
}
.cid-uib3Re63LH .mbr-section-subtitle,
.cid-uib3Re63LH .mbr-section-btn {
  text-align: left;
}
.cid-uD0NsJNy0L {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uD0NsJNy0L .mbr-text,
.cid-uD0NsJNy0L .mbr-section-btn {
  color: #000000;
  text-align: right;
}
.cid-uD0NsJNy0L .mbr-section-title {
  color: #000000;
  margin-bottom: 30px;
}
.cid-uD0NsJNy0L .buttons-wrap .link {
  display: flex;
}
@media (max-width: 768px) {
  .cid-uD0NsJNy0L * {
    text-align: center;
  }
  .cid-uD0NsJNy0L .buttons-wrap {
    justify-content: center;
  }
}
.cid-uD0NsJNy0L .mbr-fallback-image.disabled {
  display: none;
}
.cid-uD0NsJNy0L .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uD0NsJNy0L .mbr-section-title,
.cid-uD0NsJNy0L .mbr-section-btn {
  text-align: left;
}
.cid-uD0NsJNy0L .mbr-section-subtitle,
.cid-uD0NsJNy0L .mbr-section-btn {
  text-align: left;
}
.cid-uUz4VKNkKR {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uUz4VKNkKR .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uUz4VKNkKR .mbr-text {
  padding: 20px;
  margin-bottom: 0;
  background-color: rgba(255, 255, 255, 0.2);
  text-align: center;
  color: #000000;
}
.cid-ucI2Xe5lbl {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-ucI2Xe5lbl .btn.btn-primary-outline {
  border: 1px solid #1654b7;
}
.cid-ucI2Xe5lbl .btn.btn-primary-outline:hover {
  background-color: #1654b7 !important;
  color: #ffffff !important;
}
.cid-ucI2Xe5lbl .btn.btn-secondary-outline {
  border: 1px solid #7241da;
}
.cid-ucI2Xe5lbl .btn.btn-secondary-outline:hover {
  background-color: #7241da !important;
  color: #ffffff !important;
}
.cid-ucI2Xe5lbl .btn.btn-success-outline {
  border: 1px solid #2bb3f9;
}
.cid-ucI2Xe5lbl .btn.btn-success-outline:hover {
  background-color: #2bb3f9 !important;
  color: #ffffff !important;
}
.cid-ucI2Xe5lbl .btn.btn-info-outline {
  border: 1px solid #ffffff;
}
.cid-ucI2Xe5lbl .btn.btn-info-outline:hover {
  background-color: #ffffff !important;
  color: #ffffff !important;
}
.cid-ucI2Xe5lbl .btn.btn-warning-outline {
  border: 1px solid #78dbf9;
}
.cid-ucI2Xe5lbl .btn.btn-warning-outline:hover {
  background-color: #78dbf9 !important;
  color: #ffffff !important;
}
.cid-ucI2Xe5lbl .btn.btn-danger-outline {
  border: 1px solid #f355d6;
}
.cid-ucI2Xe5lbl .btn.btn-danger-outline:hover {
  background-color: #f355d6 !important;
  color: #ffffff !important;
}
.cid-ucI2Xe5lbl .btn.btn-black-outline {
  border: 1px solid #000000;
}
.cid-ucI2Xe5lbl .btn.btn-black-outline:hover {
  background-color: #000000 !important;
  color: #ffffff !important;
}
.cid-ucI2Xe5lbl .btn.btn-white-outline {
  border: 1px solid #ffffff;
}
.cid-ucI2Xe5lbl .btn.btn-white-outline:hover {
  background-color: #ffffff !important;
  color: #000000 !important;
}
.cid-u9YxwhQKNs {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #7241da;
  overflow: hidden;
}
.cid-u9YxwhQKNs .mbr-text {
  color: #131313;
}
.cid-u9YxwhQKNs .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-untAIVz0SF {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-untAIVz0SF .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-untAIVz0SF .form-control,
.cid-untAIVz0SF .field-input {
  padding: 0.5rem;
  background-color: #ffffff;
  border-color: #cccccc;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-untAIVz0SF .form-control::-webkit-input-placeholder,
.cid-untAIVz0SF .field-input::-webkit-input-placeholder,
.cid-untAIVz0SF .form-control::-webkit-input-placeholder,
.cid-untAIVz0SF .field-input::-webkit-input-placeholder {
  color: #c1c1c1;
}
.cid-untAIVz0SF .form-control:-moz-placeholder,
.cid-untAIVz0SF .field-input:-moz-placeholder,
.cid-untAIVz0SF .form-control:-moz-placeholder,
.cid-untAIVz0SF .field-input:-moz-placeholder {
  color: #c1c1c1;
}
.cid-untAIVz0SF .form-control:hover,
.cid-untAIVz0SF .field-input:hover,
.cid-untAIVz0SF .form-control:focus,
.cid-untAIVz0SF .field-input:focus {
  background-color: #efefef;
  border-color: #cccccc;
  color: #232323;
  box-shadow: none;
  outline: none;
}
.cid-untAIVz0SF .form-control:hover::-webkit-input-placeholder,
.cid-untAIVz0SF .field-input:hover::-webkit-input-placeholder,
.cid-untAIVz0SF .form-control:focus::-webkit-input-placeholder,
.cid-untAIVz0SF .field-input:focus::-webkit-input-placeholder,
.cid-untAIVz0SF .form-control:hover::-webkit-input-placeholder,
.cid-untAIVz0SF .field-input:hover::-webkit-input-placeholder,
.cid-untAIVz0SF .form-control:focus::-webkit-input-placeholder,
.cid-untAIVz0SF .field-input:focus::-webkit-input-placeholder {
  color: #c1c1c1;
}
.cid-untAIVz0SF .form-control:hover:-moz-placeholder,
.cid-untAIVz0SF .field-input:hover:-moz-placeholder,
.cid-untAIVz0SF .form-control:focus:-moz-placeholder,
.cid-untAIVz0SF .field-input:focus:-moz-placeholder,
.cid-untAIVz0SF .form-control:hover:-moz-placeholder,
.cid-untAIVz0SF .field-input:hover:-moz-placeholder,
.cid-untAIVz0SF .form-control:focus:-moz-placeholder,
.cid-untAIVz0SF .field-input:focus:-moz-placeholder {
  color: #c1c1c1;
}
.cid-untAIVz0SF .jq-number__spin:hover,
.cid-untAIVz0SF .jq-number__spin:focus {
  background-color: #efefef;
  border-color: #cccccc;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-untAIVz0SF .jq-number__spin {
  background-color: #ffffff;
  border-color: #cccccc;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-untAIVz0SF .jq-selectbox li,
.cid-untAIVz0SF .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-untAIVz0SF .jq-selectbox li:hover,
.cid-untAIVz0SF .jq-selectbox li.selected {
  background-color: #efefef;
  color: #000000;
}
.cid-untAIVz0SF .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-untAIVz0SF .jq-number__spin.minus:hover:after,
.cid-untAIVz0SF .jq-number__spin.plus:hover:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-untAIVz0SF .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-untAIVz0SF .jq-number__spin.minus:after,
.cid-untAIVz0SF .jq-number__spin.plus:after {
  border-top-color: #efefef;
  border-bottom-color: #efefef;
}
.cid-untAIVz0SF input::-webkit-clear-button {
  display: none;
}
.cid-untAIVz0SF input::-webkit-inner-spin-button {
  display: none;
}
.cid-untAIVz0SF input::-webkit-outer-spin-button {
  display: none;
}
.cid-untAIVz0SF input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-u9YCySskyI {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-u9YCySskyI .btn {
  padding: 0.6rem 2rem;
  border: none !important;
  font-weight: 400;
  box-shadow: none;
}
.cid-u9YCySskyI nav.navbar {
  position: fixed;
}
.cid-u9YCySskyI .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u9YCySskyI .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u9YCySskyI .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u9YCySskyI .dropdown-item:hover,
.cid-u9YCySskyI .dropdown-item:focus {
  background: #1654b7 !important;
  color: white !important;
}
.cid-u9YCySskyI .dropdown-item:hover span {
  color: white;
}
.cid-u9YCySskyI .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u9YCySskyI .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u9YCySskyI .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u9YCySskyI .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u9YCySskyI .nav-link {
  position: relative;
}
.cid-u9YCySskyI .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u9YCySskyI .container {
    flex-wrap: nowrap;
  }
}
.cid-u9YCySskyI .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u9YCySskyI .dropdown-menu,
.cid-u9YCySskyI .navbar.opened {
  background: #ffffff !important;
}
.cid-u9YCySskyI .nav-item:focus,
.cid-u9YCySskyI .nav-link:focus {
  outline: none;
}
.cid-u9YCySskyI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u9YCySskyI .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u9YCySskyI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u9YCySskyI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u9YCySskyI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u9YCySskyI .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u9YCySskyI .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-u9YCySskyI .navbar.opened {
  transition: all 0.3s;
}
.cid-u9YCySskyI .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u9YCySskyI .navbar .navbar-logo img {
  width: auto;
}
.cid-u9YCySskyI .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u9YCySskyI .navbar.collapsed {
  justify-content: center;
}
.cid-u9YCySskyI .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u9YCySskyI .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u9YCySskyI .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-u9YCySskyI .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u9YCySskyI .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u9YCySskyI .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-u9YCySskyI .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u9YCySskyI .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u9YCySskyI .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u9YCySskyI .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u9YCySskyI .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u9YCySskyI .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u9YCySskyI .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u9YCySskyI .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-u9YCySskyI .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u9YCySskyI .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u9YCySskyI .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u9YCySskyI .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u9YCySskyI .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u9YCySskyI .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u9YCySskyI .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u9YCySskyI .navbar.navbar-short {
  min-height: 80px;
}
.cid-u9YCySskyI .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u9YCySskyI .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u9YCySskyI .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u9YCySskyI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u9YCySskyI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u9YCySskyI .dropdown-item.active,
.cid-u9YCySskyI .dropdown-item:active {
  background-color: transparent;
}
.cid-u9YCySskyI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u9YCySskyI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u9YCySskyI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u9YCySskyI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u9YCySskyI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u9YCySskyI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u9YCySskyI ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u9YCySskyI .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u9YCySskyI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u9YCySskyI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u9YCySskyI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u9YCySskyI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u9YCySskyI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u9YCySskyI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u9YCySskyI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u9YCySskyI nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u9YCySskyI nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u9YCySskyI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u9YCySskyI .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u9YCySskyI a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u9YCySskyI .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u9YCySskyI .navbar {
    height: 70px;
  }
  .cid-u9YCySskyI .navbar.opened {
    height: auto;
  }
  .cid-u9YCySskyI .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u9YCySVyoT {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #7241da;
  overflow: hidden;
}
.cid-u9YCySVyoT .mbr-text {
  color: #131313;
}
.cid-u9YCySVyoT .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-tV42s89qya {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-tV42s89qya .btn {
  padding: 0.6rem 2rem;
  border: none !important;
  font-weight: 400;
  box-shadow: none;
}
.cid-tV42s89qya nav.navbar {
  position: fixed;
}
.cid-tV42s89qya .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tV42s89qya .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tV42s89qya .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tV42s89qya .dropdown-item:hover,
.cid-tV42s89qya .dropdown-item:focus {
  background: #1654b7 !important;
  color: white !important;
}
.cid-tV42s89qya .dropdown-item:hover span {
  color: white;
}
.cid-tV42s89qya .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tV42s89qya .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tV42s89qya .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tV42s89qya .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tV42s89qya .nav-link {
  position: relative;
}
.cid-tV42s89qya .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tV42s89qya .container {
    flex-wrap: nowrap;
  }
}
.cid-tV42s89qya .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tV42s89qya .dropdown-menu,
.cid-tV42s89qya .navbar.opened {
  background: #ffffff !important;
}
.cid-tV42s89qya .nav-item:focus,
.cid-tV42s89qya .nav-link:focus {
  outline: none;
}
.cid-tV42s89qya .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tV42s89qya .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tV42s89qya .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tV42s89qya .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tV42s89qya .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tV42s89qya .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tV42s89qya .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tV42s89qya .navbar.opened {
  transition: all 0.3s;
}
.cid-tV42s89qya .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tV42s89qya .navbar .navbar-logo img {
  width: auto;
}
.cid-tV42s89qya .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tV42s89qya .navbar.collapsed {
  justify-content: center;
}
.cid-tV42s89qya .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tV42s89qya .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tV42s89qya .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-tV42s89qya .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tV42s89qya .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tV42s89qya .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-tV42s89qya .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tV42s89qya .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tV42s89qya .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tV42s89qya .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tV42s89qya .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tV42s89qya .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tV42s89qya .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tV42s89qya .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-tV42s89qya .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tV42s89qya .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tV42s89qya .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tV42s89qya .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tV42s89qya .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tV42s89qya .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tV42s89qya .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tV42s89qya .navbar.navbar-short {
  min-height: 80px;
}
.cid-tV42s89qya .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tV42s89qya .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tV42s89qya .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tV42s89qya .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tV42s89qya .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tV42s89qya .dropdown-item.active,
.cid-tV42s89qya .dropdown-item:active {
  background-color: transparent;
}
.cid-tV42s89qya .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tV42s89qya .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tV42s89qya .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tV42s89qya .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tV42s89qya .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tV42s89qya .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tV42s89qya ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tV42s89qya .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tV42s89qya button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tV42s89qya button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tV42s89qya button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tV42s89qya button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tV42s89qya button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tV42s89qya button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tV42s89qya nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tV42s89qya nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tV42s89qya nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tV42s89qya nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tV42s89qya .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tV42s89qya a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tV42s89qya .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tV42s89qya .navbar {
    height: 70px;
  }
  .cid-tV42s89qya .navbar.opened {
    height: auto;
  }
  .cid-tV42s89qya .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uqbKA8AJLg {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u6o4Wwz6HH {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #7241da;
  overflow: hidden;
}
.cid-u6o4Wwz6HH .mbr-text {
  color: #131313;
}
.cid-u6o4Wwz6HH .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uqbNZKWpDU {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-uqbNZKWpDU .btn {
  padding: 0.6rem 2rem;
  border: none !important;
  font-weight: 400;
  box-shadow: none;
}
.cid-uqbNZKWpDU nav.navbar {
  position: fixed;
}
.cid-uqbNZKWpDU .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uqbNZKWpDU .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uqbNZKWpDU .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uqbNZKWpDU .dropdown-item:hover,
.cid-uqbNZKWpDU .dropdown-item:focus {
  background: #1654b7 !important;
  color: white !important;
}
.cid-uqbNZKWpDU .dropdown-item:hover span {
  color: white;
}
.cid-uqbNZKWpDU .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uqbNZKWpDU .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uqbNZKWpDU .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uqbNZKWpDU .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uqbNZKWpDU .nav-link {
  position: relative;
}
.cid-uqbNZKWpDU .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uqbNZKWpDU .container {
    flex-wrap: nowrap;
  }
}
.cid-uqbNZKWpDU .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uqbNZKWpDU .dropdown-menu,
.cid-uqbNZKWpDU .navbar.opened {
  background: #ffffff !important;
}
.cid-uqbNZKWpDU .nav-item:focus,
.cid-uqbNZKWpDU .nav-link:focus {
  outline: none;
}
.cid-uqbNZKWpDU .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uqbNZKWpDU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uqbNZKWpDU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uqbNZKWpDU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uqbNZKWpDU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uqbNZKWpDU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uqbNZKWpDU .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uqbNZKWpDU .navbar.opened {
  transition: all 0.3s;
}
.cid-uqbNZKWpDU .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uqbNZKWpDU .navbar .navbar-logo img {
  width: auto;
}
.cid-uqbNZKWpDU .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uqbNZKWpDU .navbar.collapsed {
  justify-content: center;
}
.cid-uqbNZKWpDU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uqbNZKWpDU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uqbNZKWpDU .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-uqbNZKWpDU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uqbNZKWpDU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uqbNZKWpDU .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-uqbNZKWpDU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uqbNZKWpDU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uqbNZKWpDU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uqbNZKWpDU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uqbNZKWpDU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uqbNZKWpDU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uqbNZKWpDU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uqbNZKWpDU .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-uqbNZKWpDU .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uqbNZKWpDU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uqbNZKWpDU .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uqbNZKWpDU .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uqbNZKWpDU .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uqbNZKWpDU .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uqbNZKWpDU .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uqbNZKWpDU .navbar.navbar-short {
  min-height: 80px;
}
.cid-uqbNZKWpDU .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uqbNZKWpDU .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uqbNZKWpDU .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uqbNZKWpDU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uqbNZKWpDU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uqbNZKWpDU .dropdown-item.active,
.cid-uqbNZKWpDU .dropdown-item:active {
  background-color: transparent;
}
.cid-uqbNZKWpDU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uqbNZKWpDU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uqbNZKWpDU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uqbNZKWpDU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uqbNZKWpDU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uqbNZKWpDU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uqbNZKWpDU ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uqbNZKWpDU .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uqbNZKWpDU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uqbNZKWpDU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uqbNZKWpDU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uqbNZKWpDU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uqbNZKWpDU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uqbNZKWpDU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uqbNZKWpDU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uqbNZKWpDU nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uqbNZKWpDU nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uqbNZKWpDU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uqbNZKWpDU .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uqbNZKWpDU a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uqbNZKWpDU .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uqbNZKWpDU .navbar {
    height: 70px;
  }
  .cid-uqbNZKWpDU .navbar.opened {
    height: auto;
  }
  .cid-uqbNZKWpDU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uqbNZLNjh4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uqbNZMy2ez {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #7241da;
  overflow: hidden;
}
.cid-uqbNZMy2ez .mbr-text {
  color: #131313;
}
.cid-uqbNZMy2ez .media-container-row .mbr-text {
  color: #ffffff;
}
