body {
  font-family: 'Be Vietnam Pro', sans-serif;
}
.display-1 {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 4rem;
  line-height: 1.17;
}
.display-1 > .mbr-iconfont {
  font-size: 5rem;
}
.display-2 {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 2.2rem;
  line-height: 1.31;
}
.display-2 > .mbr-iconfont {
  font-size: 2.75rem;
}
.display-4 {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 1.4rem;
  line-height: 1.4;
}
.display-4 > .mbr-iconfont {
  font-size: 1.75rem;
}
.display-5 {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 1.8rem;
  line-height: 1.4;
}
.display-5 > .mbr-iconfont {
  font-size: 2.25rem;
}
.display-7 {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}
.display-7 > .mbr-iconfont {
  font-size: 1.25rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.2rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.8rem;
    font-size: calc( 2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.17 * (2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.76rem;
    font-size: calc( 1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.31 * (1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.44rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.6 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #913bff !important;
}
.bg-success {
  background-color: #ff7a41 !important;
}
.bg-info {
  background-color: #f0e4ff !important;
}
.bg-warning {
  background-color: #738bae !important;
}
.bg-danger {
  background-color: #ec2016 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #913bff !important;
  border-color: #913bff !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: #6400e3 !important;
  border-color: #6400e3 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #6400e3 !important;
  border-color: #6400e3 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #0066ff !important;
  border-color: #0066ff !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: #0043a8 !important;
  border-color: #0043a8 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #0043a8 !important;
  border-color: #0043a8 !important;
}
.btn-info,
.btn-info:active {
  background-color: #f0e4ff !important;
  border-color: #f0e4ff !important;
  color: #6500e4 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #c08dff !important;
  border-color: #c08dff !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #6500e4 !important;
  background-color: #c08dff !important;
  border-color: #c08dff !important;
}
.btn-success,
.btn-success:active {
  background-color: #ff7a41 !important;
  border-color: #ff7a41 !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: #e94600 !important;
  border-color: #e94600 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #e94600 !important;
  border-color: #e94600 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #738bae !important;
  border-color: #738bae !important;
  color: #ffffff !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: #4a6080 !important;
  border-color: #4a6080 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #4a6080 !important;
  border-color: #4a6080 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ec2016 !important;
  border-color: #ec2016 !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: #9e140d !important;
  border-color: #9e140d !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #9e140d !important;
  border-color: #9e140d !important;
}
.btn-white,
.btn-white: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-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #545454 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-black,
.btn-black:active {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #913bff;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #6400e3 !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: #913bff !important;
  border-color: #913bff !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #0066ff;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #0043a8 !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: #0066ff !important;
  border-color: #0066ff !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #f0e4ff;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #c08dff !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #6500e4 !important;
  background-color: #f0e4ff !important;
  border-color: #f0e4ff !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff7a41;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #e94600 !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: #ff7a41 !important;
  border-color: #ff7a41 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #738bae;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #4a6080 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #738bae !important;
  border-color: #738bae !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ec2016;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #9e140d !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: #ec2016 !important;
  border-color: #ec2016 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.text-primary {
  color: #913bff !important;
}
.text-secondary {
  color: #0066ff !important;
}
.text-success {
  color: #ff7a41 !important;
}
.text-info {
  color: #f0e4ff !important;
}
.text-warning {
  color: #738bae !important;
}
.text-danger {
  color: #ec2016 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #010d4c !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #5d00d4 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #003d99 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #da4100 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #b77eff !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #455976 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #90120c !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #913bff;
}
.nav-tabs .nav-link:not(.active) {
  color: #02274a;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #f0e4ff;
}
.alert-warning {
  background-color: #738bae;
}
.alert-danger {
  background-color: #ec2016;
}
.mbr-gallery-filter li.active .btn {
  background-color: #913bff;
  border-color: #913bff;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #913bff;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.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: #c4cedd;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #fbd5d3;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 1.4rem;
  line-height: 1.4;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.75rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #913bff !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 1.4rem;
  line-height: 1.4;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.75rem;
}
blockquote {
  border-color: #913bff;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #913bff;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #913bff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #913bff;
  border-bottom-color: #913bff;
}
.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: #913bff !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: #0066ff !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='%23913bff' %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;
}
a:hover {
  background-image: none !important;
}
.container {
  padding-left: 12px;
  padding-right: 12px;
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 984px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1164px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1344px;
  }
}
.container .row {
  margin-left: -12px;
  margin-right: -12px;
}
.container .row > [class*="col"] {
  padding-left: 12px;
  padding-right: 12px;
}
.btn {
  min-height: 48px;
  padding: 8px 40px;
  border-radius: 5px;
  box-shadow: none;
  outline: none;
  border: none;
  position: relative;
}
.btn::before {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  left: 50%;
  top: 50%;
  margin: -50px 0 0 -50px;
  transform: scale(0);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
}
@media (max-width: 575px) {
  .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .mbr-section-btn .btn {
    width: 100%;
  }
}
.mbr-section-btn .btn-primary:hover {
  background-color: #0066ff !important;
  color: #ffffff !important;
}
.mbr-section-btn .btn-primary:hover::before,
.mbr-section-btn .btn-secondary:hover::before,
.mbr-section-btn .btn-info:hover::before,
.mbr-section-btn .btn-success:hover::before,
.mbr-section-btn .btn-warning:hover::before,
.mbr-section-btn .btn-danger:hover::before,
.mbr-section-btn .btn-white:hover::before,
.mbr-section-btn .btn-black:hover::before {
  transform: scale(1);
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.cid-uZinHzcopU .navbar-dropdown {
  position: relative !important;
}
.cid-uZinHzcopU .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-uZinHzcopU .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uZinHzcopU .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uZinHzcopU .dropdown-item:hover,
.cid-uZinHzcopU .dropdown-item:focus {
  background: #913bff !important;
  color: white !important;
}
.cid-uZinHzcopU .dropdown-item:hover span {
  color: white;
}
.cid-uZinHzcopU .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uZinHzcopU .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uZinHzcopU .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uZinHzcopU .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uZinHzcopU .nav-link {
  position: relative;
}
.cid-uZinHzcopU .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uZinHzcopU .container {
    flex-wrap: nowrap;
  }
}
.cid-uZinHzcopU .iconfont-wrapper {
  color: #913bff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uZinHzcopU .dropdown-menu,
.cid-uZinHzcopU .navbar.opened {
  background: #ffffff !important;
}
.cid-uZinHzcopU .nav-item:focus,
.cid-uZinHzcopU .nav-link:focus {
  outline: none;
}
.cid-uZinHzcopU .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uZinHzcopU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uZinHzcopU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uZinHzcopU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uZinHzcopU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uZinHzcopU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uZinHzcopU .navbar {
  min-height: 71px;
  transition: all 0.4s ease-out;
  box-sizing: content-box;
  box-shadow: none !important;
  padding: 5px 40px !important;
  background-color: #ffffff;
}
.cid-uZinHzcopU .navbar.opened {
  transition: all 0.3s;
}
.cid-uZinHzcopU .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uZinHzcopU .navbar .navbar-logo img {
  width: auto;
}
.cid-uZinHzcopU .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uZinHzcopU .navbar.collapsed {
  justify-content: center;
}
.cid-uZinHzcopU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uZinHzcopU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uZinHzcopU .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uZinHzcopU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uZinHzcopU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uZinHzcopU .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-uZinHzcopU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uZinHzcopU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uZinHzcopU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uZinHzcopU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uZinHzcopU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uZinHzcopU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uZinHzcopU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uZinHzcopU .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-uZinHzcopU .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uZinHzcopU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uZinHzcopU .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uZinHzcopU .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uZinHzcopU .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uZinHzcopU .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uZinHzcopU .navbar.navbar-short {
  min-height: 60px;
}
.cid-uZinHzcopU .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uZinHzcopU .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uZinHzcopU .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uZinHzcopU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uZinHzcopU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uZinHzcopU .dropdown-item.active,
.cid-uZinHzcopU .dropdown-item:active {
  background-color: transparent;
}
.cid-uZinHzcopU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uZinHzcopU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uZinHzcopU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uZinHzcopU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uZinHzcopU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uZinHzcopU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uZinHzcopU ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uZinHzcopU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uZinHzcopU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uZinHzcopU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uZinHzcopU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uZinHzcopU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uZinHzcopU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uZinHzcopU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uZinHzcopU nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uZinHzcopU nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uZinHzcopU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uZinHzcopU .navbar-dropdown {
  padding: 0;
}
.cid-uZinHzcopU a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uZinHzcopU .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-uZinHzcopU .navbar {
    height: 70px;
  }
  .cid-uZinHzcopU .navbar.opened {
    height: auto;
  }
  .cid-uZinHzcopU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uZinHzcopU .navbar-short {
  padding: 5px 40px !important;
  background-color: #ffffff;
  box-shadow: 0 13px 35px -12px rgba(35, 35, 35, 0.1);
}
.cid-uZinHzcopU .container-fluid {
  padding: 0 !important;
}
@media (min-width: 992px) {
  .cid-uZinHzcopU .container-fluid {
    flex-wrap: nowrap;
  }
}
@media (max-width: 991px) {
  .cid-uZinHzcopU .container-fluid .show {
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .cid-uZinHzcopU .navbar-nav {
    margin-right: auto;
    margin-left: 60px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .cid-uZinHzcopU .navbar-nav {
    margin-left: 40px;
  }
}
@media (min-width: 1400px) {
  .cid-uZinHzcopU .navbar-nav {
    margin-left: 145px;
  }
}
.cid-uZinHzcopU .nav-item a:hover {
  color: #ffffff !important;
}
.cid-uZinHzcopU .nav-item .nav-link {
  position: relative !important;
}
.cid-uZinHzcopU .nav-item .nav-link:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: #913bff;
  left: 0;
  bottom: 0;
  transform: scale(0, 1);
  transform-origin: 0 100%;
  opacity: 0;
  transition: transform 0.3s ease-in-out;
}
.cid-uZinHzcopU .nav-item .nav-link:hover {
  color: #913bff !important;
}
.cid-uZinHzcopU .nav-item .nav-link:hover:before {
  opacity: 1;
  transform: scale(1);
}
@media (max-width: 991px) {
  .cid-uZinHzcopU .nav-item .show {
    padding-bottom: 0;
  }
}
.cid-uZinHzcopU .tel-menu {
  transition: 0s all !important;
}
@media (min-width: 992px) {
  .cid-uZinHzcopU .tel-menu {
    margin-right: 48px;
    margin-left: auto;
    order: 49;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-uZinHzcopU .tel-menu {
    display: none;
  }
}
.cid-uZinHzcopU .mbr-text {
  color: #00284E;
  opacity: 0.8;
  margin-bottom: 0;
  word-break: normal;
}
@media (max-width: 991px) {
  .cid-uZinHzcopU .mbr-text {
    text-align: center !important;
  }
}
.cid-uZinHzcopU .mbr-text a {
  opacity: 1;
  text-decoration: underline;
}
.cid-uZinHzcopU .mbr-section-btn {
  display: flex;
}
@media (max-width: 991px) {
  .cid-uZinHzcopU .mbr-section-btn {
    justify-content: center;
    margin-top: 60px;
  }
}
@media (min-width: 992px) {
  .cid-uZinHzcopU .mbr-section-btn {
    max-width: 35%;
    margin-left: -0.6rem !important;
    margin-right: -0.6rem !important;
    order: 50;
  }
}
.cid-uZinHzcopU .mbr-section-btn .btn {
  max-width: 200px;
  width: 200px;
  min-height: 55px;
  padding: 5px 10px;
  border-radius: 9px;
}
.cid-uZinHzcopU .mbr-section-btn .btn:hover:before {
  display: none;
}
.cid-uZinHzcopU .navbar-toggler:before {
  content: '';
  position: absolute;
  right: -7px;
  top: -10px;
  width: 44px;
  height: 38px;
  background-color: #913bff;
  border-radius: 0.25rem;
}
.cid-uZinHGF0qd {
  background-image: url("../../../assets/images/2148779305-2000x1333.jpg");
}
.cid-uZinHGF0qd .mbr-section-title {
  color: #010d4c;
  margin-bottom: 8px;
}
.cid-uZinHGF0qd .mbr-section-subtitle {
  color: #ffffff;
  padding: 15px 0 20px;
  margin-bottom: 0;
}
@media (min-width: 1400px) {
  .cid-uZinHGF0qd .mbr-section-subtitle {
    margin-left: 3rem!important;
    margin-right: 3rem!important;
  }
}
.cid-uZinHGF0qd .mbr-section-btn {
  margin-top: 6px;
}
.cid-uZinHGF0qd .mbr-section-btn .btn:before {
  display: none;
}
.cid-uZinHGF0qd .mbr-section-btn .btn:hover:before {
  display: none;
}
.cid-uZinHGF0qd .image-wrapper {
  margin-top: 40px;
}
.cid-uZinHGF0qd .image-wrapper img {
  max-width: 800px;
  width: 100%;
}
.cid-uZinHGF0qd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZinHGF0qd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZinHGF0qd .mbr-section-title,
.cid-uZinHGF0qd .mbr-section-btn {
  color: #ffffff;
}
.cid-uZipZloevZ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
@media (min-width: 1400px) {
  .cid-uZipZloevZ .container {
    max-width: 1368px;
    padding-left: 24px;
    padding-right: 24px;
  }
  .cid-uZipZloevZ .container .row {
    margin-left: -24px;
    margin-right: -24px;
  }
  .cid-uZipZloevZ .container .row > [class*="col"] {
    padding-left: 24px;
    padding-right: 24px;
  }
}
.cid-uZipZloevZ .row {
  display: flex;
  align-items: stretch;
}
.cid-uZipZloevZ .mbr-section-head {
  margin-bottom: 50px;
}
.cid-uZipZloevZ .label-text {
  width: 100%;
  color: #913BFF;
  margin-bottom: 20px;
}
.cid-uZipZloevZ .label-text span {
  padding: 8px 18px;
  background-color: #f0e4ff;
  border-radius: 15px;
  color: inherit;
}
.cid-uZipZloevZ .mbr-section-title {
  color: #913bff;
  margin-bottom: 0;
}
.cid-uZipZloevZ .colored-text {
  color: #913bff;
  line-height: inherit;
  text-decoration: underline;
  text-decoration-thickness: 4px;
}
.cid-uZipZloevZ .mbr-section-subtitle {
  color: #00284E;
  opacity: 0.8;
  margin-bottom: 0;
  margin-top: 20px;
}
.cid-uZipZloevZ .item:focus,
.cid-uZipZloevZ span:focus {
  outline: none;
}
.cid-uZipZloevZ .item {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.cid-uZipZloevZ .item-wrapper {
  position: relative;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 20px 60px rgba(0, 73, 140, 0.05);
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.cid-uZipZloevZ .item-wrapper .item-content a:hover {
  color: #913bff !important;
}
.cid-uZipZloevZ .item-wrapper:hover {
  transform: translateY(-5px);
}
.cid-uZipZloevZ .item-img {
  position: relative;
  z-index: 2;
  width: 100%;
  overflow: hidden;
  height: 318px;
}
@media (max-width: 1399px) {
  .cid-uZipZloevZ .item-img {
    height: 284px;
  }
}
@media (max-width: 1199px) {
  .cid-uZipZloevZ .item-img {
    height: 238px;
  }
}
@media (max-width: 991px) {
  .cid-uZipZloevZ .item-img {
    height: 262px;
  }
}
@media (max-width: 767px) {
  .cid-uZipZloevZ .item-img {
    height: 192px;
  }
}
@media (max-width: 575px) {
  .cid-uZipZloevZ .item-img {
    height: 100%;
    max-height: 426px;
  }
}
.cid-uZipZloevZ .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uZipZloevZ .item-img::before {
  content: '';
  position: absolute;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: #913bff;
  right: -85px;
  bottom: -85px;
  z-index: 1;
  cursor: pointer;
  transform: scale(0);
  transition: all 0.3s ease-in-out;
}
.cid-uZipZloevZ .item-img .icon-box {
  position: absolute;
  color: #ffffff;
  font-size: 22px;
  right: 22px;
  bottom: 12px;
  z-index: 2;
  transform: scale(0);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uZipZloevZ .item-content-container {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 42px 32px 20px;
}
@media (max-width: 1199px) {
  .cid-uZipZloevZ .item-content-container {
    padding: 20px 15px;
  }
}
.cid-uZipZloevZ .mbr-section-btn {
  margin-top: 20px;
}
.cid-uZipZloevZ .item-title {
  text-align: center;
  width: 100%;
  color: #7736ff;
  margin-bottom: 0;
}
.cid-uZipZloevZ .mbr-text {
  color: #010d4c;
  width: 100%;
  margin: 8px 0;
}
.cid-uZipZloevZ .mbr-text,
.cid-uZipZloevZ .mbr-section-btn {
  text-align: center;
}
.cid-uZinIszNDQ {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
  overflow: hidden;
  position: relative;
}
.cid-uZinIszNDQ .container,
.cid-uZinIszNDQ .container-fluid {
  position: static;
}
.cid-uZinIszNDQ .mbr-section-title {
  color: #913bff;
}
.cid-uZinIszNDQ .colored-text {
  color: #913bff;
  line-height: inherit;
  text-decoration: underline;
  text-decoration-thickness: 5px;
}
.cid-uZinIszNDQ .mbr-text {
  color: #00284E;
  margin-top: 48px;
}
@media (min-width: 1400px) {
  .cid-uZinIszNDQ .mbr-text {
    padding-right: 48px;
  }
}
@media (max-width: 991px) {
  .cid-uZinIszNDQ .mbr-text {
    margin-top: 38px;
  }
}
.cid-uZinIszNDQ .mbr-section-btn {
  margin-top: 40px;
}
@media (max-width: 991px) {
  .cid-uZinIszNDQ .mbr-section-btn {
    margin-top: 30px;
  }
}
.cid-uZinIszNDQ .mbr-section-btn .btn {
  padding: 10px 30px;
  min-height: 55px;
  border-radius: 9px;
}
.cid-uZinIszNDQ .mbr-section-btn .btn-info:hover {
  background-color: #0066ff !important;
  color: #ffffff !important;
}
.cid-uZinIszNDQ .image-wrapper {
  height: 650px;
}
.cid-uZinIszNDQ .image-wrapper img {
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  margin-left: auto!important;
}
@media (min-width: 768px) {
  .cid-uZinIszNDQ .image-wrapper {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36.4% !important;
    z-index: 2;
    right: 5%;
    padding-right: 0;
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .cid-uZinIszNDQ .image-wrapper {
    max-width: 474px !important;
    margin: 80px auto 0;
  }
}
.cid-uZinIszNDQ .col-text {
  position: relative;
  z-index: 3;
}
@media (min-width: 768px) {
  .cid-uZinIszNDQ .col-text {
    width: 58.3333333333% !important;
    margin-right: auto;
  }
}
@media (min-width: 1400px) {
  .cid-uZinIszNDQ .col-text {
    width: 50% !important;
  }
}
.cid-uZinIszNDQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZinIszNDQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZioGeLkyo {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uZioGeLkyo .row {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
}
.cid-uZioGeLkyo .mbr-section-title {
  color: #913bff;
}
.cid-uZioGeLkyo .mbr-section-subtitle {
  color: #00284E;
  opacity: 0.8;
}
.cid-uZioGeLkyo .card-title {
  color: #010d4c;
  margin-top: 30px;
}
.cid-uZioGeLkyo .card-title a {
  font-weight: 700 !important;
}
.cid-uZioGeLkyo .card-title a:hover {
  text-decoration: underline;
}
.cid-uZioGeLkyo .icon-box {
  display: flex;
  justify-content: flex-start;
}
.cid-uZioGeLkyo .icon-box .mbr-iconfont {
  font-size: 45px;
  color: #913bff;
}
.cid-uZioGeLkyo .mbr-text {
  color: #00284E;
  opacity: 0.8;
  margin-top: 16px;
}
.cid-uZioGeLkyo .icon-link-box {
  display: flex;
  justify-content: flex-start;
  margin-top: 16px;
}
.cid-uZioGeLkyo .icon-link-box .mbr-iconfont {
  font-size: 37px;
  color: #cecece;
  transition: all 0.3s ease-in-out;
}
.cid-uZioGeLkyo .icon-link-box .mbr-iconfont:hover {
  transform: scale(1.1);
  cursor: pointer !important;
}
.cid-uZioGeLkyo .col-card {
  margin-top: 30px;
}
.cid-uZioGeLkyo .card-wrapper {
  padding: 52px 40px 45px 50px;
  height: 100%;
}
@media (max-width: 1199px) {
  .cid-uZioGeLkyo .card-wrapper {
    padding: 40px 20px 20px;
  }
}
@media (min-width: 768px) {
  .cid-uZioGeLkyo .card-1 {
    padding-left: 0;
    margin-right: 8px;
  }
}
.cid-uZioGeLkyo .card-2 {
  background: #ffffff;
  box-shadow: 0 30px 60px rgba(0, 19, 87, 0.04);
  border-radius: 15px;
}
.cid-uZioGeLkyo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZioGeLkyo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZioGeLkyo .card-title,
.cid-uZioGeLkyo .card-box {
  color: #913bff;
}
.cid-uZiuiyo8if {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-uZiuiyo8if .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZiuiyo8if .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZiuiyo8if .mbr-section-head {
  margin-bottom: 32px;
}
.cid-uZiuiyo8if .mbr-section-title {
  color: #913bff;
  text-align: center;
}
.cid-uZiuiyo8if .mbr-section-subtitle {
  margin-top: 16px;
  color: #010d4c;
  text-align: center;
}
.cid-uZiuiyo8if .cards-row {
  row-gap: 32px;
}
.cid-uZiuiyo8if .item {
  border-radius: 0;
}
.cid-uZiuiyo8if .item-wrapper {
  width: 100%;
  height: 100%;
  padding: 32px 32px 24px;
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-uZiuiyo8if .item-wrapper {
    padding: 32px 16px 24px;
  }
}
.cid-uZiuiyo8if .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 82px;
  height: 82px;
  margin-right: auto;
  margin-bottom: 24px;
  border-radius: 50%;
  overflow: hidden;
}
.cid-uZiuiyo8if .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uZiuiyo8if .card-title {
  margin-bottom: 8px;
  color: #913bff;
}
.cid-uZiuiyo8if .card-subtitle {
  color: #010d4c;
}
.cid-uZiuiyo8if .card-bottom-wrap {
  margin-top: 24px;
}
.cid-uZiuiyo8if .card-name {
  color: #010d4c;
}
.cid-uZiuiyo8if .card-text {
  color: #010d4c;
}
.cid-uZippXTAVz {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background1.jpg");
  overflow: hidden;
  position: relative;
}
.cid-uZippXTAVz .row {
  align-items: flex-start;
}
.cid-uZippXTAVz .container,
.cid-uZippXTAVz .container-fluid {
  position: static;
}
.cid-uZippXTAVz .label-text {
  width: 100%;
  color: #913BFF;
  margin-bottom: 20px;
}
.cid-uZippXTAVz .label-text span {
  padding: 8px 18px;
  background-color: #f0e4ff;
  border-radius: 15px;
  color: inherit;
}
.cid-uZippXTAVz .mbr-section-title {
  color: #913bff;
  margin-bottom: 0;
}
.cid-uZippXTAVz .colored-text {
  color: #913bff;
  line-height: inherit;
  text-decoration: underline;
  text-decoration-thickness: 4px;
}
.cid-uZippXTAVz .col-text {
  position: relative;
  z-index: 2;
}
.cid-uZippXTAVz .mbr-text {
  color: #00284E;
  opacity: 0.8;
  margin-top: 20px;
  margin-bottom: 0;
}
.cid-uZippXTAVz .mbr-section-btn {
  margin-top: 10px;
  text-align: left;
}
@media (max-width: 575px) {
  .cid-uZippXTAVz .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-uZippXTAVz .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uZippXTAVz .mbr-section-head {
  position: relative;
  z-index: 2;
  display: flex;
  margin-top: 20px;
}
@media (min-width: 992px) {
  .cid-uZippXTAVz .mbr-section-head {
    margin-top: 0;
    padding-left: 20px;
  }
}
.cid-uZippXTAVz .toggle-panel,
.cid-uZippXTAVz .panel-group {
  width: 100%;
}
.cid-uZippXTAVz .card {
  padding: 0;
  position: relative;
  margin-bottom: 18px;
  border-radius: 7px;
  overflow: hidden;
  background-color: transparent !important;
}
.cid-uZippXTAVz .card .card-header {
  margin-bottom: 0;
  padding: 0;
  border-bottom: none;
  transition: 0.5s all;
  background-color: transparent !important;
}
.cid-uZippXTAVz .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 23px 20px 15px 35px;
  transition: 0.5s all;
  position: relative;
  z-index: 2;
}
.cid-uZippXTAVz .panel-title .sign {
  transform: rotate(180deg);
}
.cid-uZippXTAVz .collapsed {
  padding: 23px 20px 23px 35px;
}
.cid-uZippXTAVz .collapsed .sign {
  transform: rotate(0deg);
}
.cid-uZippXTAVz .panel-text {
  text-align: left;
  opacity: 0.8;
  color: #00284E;
  margin-bottom: 16px;
}
.cid-uZippXTAVz .sign {
  color: #010d4c;
  transition: transform 0.2s ease-in-out;
}
.cid-uZippXTAVz .panel-body {
  padding: 0 40px 20px 35px;
  position: relative;
  z-index: 2;
  background-color: transparent !important;
}
.cid-uZippXTAVz .panel-title-edit {
  width: 100%;
  color: #00284E;
  text-align: left;
}
.cid-uZippXTAVz .bg-round {
  position: absolute;
  top: -33%;
  z-index: 1;
  max-width: 860px;
  padding: 0;
  right: 14%;
}
@media (max-width: 1399px) {
  .cid-uZippXTAVz .bg-round {
    right: 0;
  }
}
@media (max-width: 1199px) {
  .cid-uZippXTAVz .bg-round {
    top: auto;
    bottom: 0;
  }
}
.cid-uZippXTAVz .bg-round svg {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-uZippXTAVz .bg-round svg {
    height: 100%;
  }
}
.cid-uZippXTAVz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZippXTAVz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZitp7bDUn {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-uZitp7bDUn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZitp7bDUn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZitp7bDUn .mbr-section-head {
  width: 100%;
  margin-bottom: 30px;
}
.cid-uZitp7bDUn .mbr-section-title {
  color: #913bff;
  margin-bottom: 0;
  text-align: center;
}
.cid-uZitp7bDUn .mbr-section-subtitle {
  color: #010d4c;
  margin-top: 8px;
  text-align: center;
}
.cid-uZitp7bDUn .form-wrap {
  width: 100%;
  margin: 0 auto;
  padding: 0 !important;
}
.cid-uZitp7bDUn form {
  width: 100%;
}
.cid-uZitp7bDUn form .dragArea.row {
  justify-content: flex-start;
  width: auto !important;
  z-index: 2;
}
.cid-uZitp7bDUn form p {
  color: #1a1e21;
}
.cid-uZitp7bDUn form .mbr-section-btn {
  margin-top: 10px;
}
.cid-uZitp7bDUn form .mbr-section-btn .btn {
  width: 100% !important;
}
.cid-uZitp7bDUn form .form-group {
  margin-top: 0 !important;
  margin-bottom: 30px !important;
}
@media (max-width: 767px) {
  .cid-uZitp7bDUn form .form-group {
    margin-bottom: 25px !important;
  }
}
.cid-uZitp7bDUn form .form-control {
  height: 55px;
  border: 1px solid #e3ebf3 !important;
  background: transparent;
  outline: none !important;
  box-shadow: none !important;
  border-radius: 6px !important;
  margin-bottom: 0;
  padding: 24px 16px;
  font-size: 18px;
  line-height: 1;
  color: #6c7a88;
  font-weight: 500;
  transition: .3s;
}
.cid-uZitp7bDUn form .form-control::-webkit-input-placeholder {
  color: #6c7a88;
}
.cid-uZitp7bDUn form .form-control::-moz-placeholder {
  color: #6c7a88;
}
.cid-uZitp7bDUn form .form-control:-moz-placeholder {
  color: #6c7a88;
}
.cid-uZitp7bDUn form .form-control:-ms-input-placeholder {
  color: #6c7a88;
}
.cid-uZitp7bDUn form select {
  color: #6c7a88 !important;
}
.cid-uZitp7bDUn form textarea {
  height: 150px !important;
  min-height: 140px !important;
  padding: 24px 16px;
  resize: none;
}
.cid-uZitp7bDUn form textarea::-webkit-input-placeholder {
  color: #6c7a88 !important;
}
.cid-uZitp7bDUn form textarea::-moz-placeholder {
  color: #6c7a88 !important;
}
.cid-uZitp7bDUn form textarea:-moz-placeholder {
  color: #6c7a88 !important;
}
.cid-uZitp7bDUn form textarea:-ms-input-placeholder {
  color: #6c7a88 !important;
}
.cid-uZitp7bDUn form input,
.cid-uZitp7bDUn form textarea {
  transition: .3s all;
}
.cid-uZitp7bDUn form input:active,
.cid-uZitp7bDUn form textarea:active,
.cid-uZitp7bDUn form input:focus,
.cid-uZitp7bDUn form textarea:focus {
  background-color: transparent !important;
  border-color: #e3ebf3 !important;
  outline: none !important;
}
.cid-uZitp7bDUn form input:active::-webkit-input-placeholder,
.cid-uZitp7bDUn form textarea:active::-webkit-input-placeholder,
.cid-uZitp7bDUn form input:focus::-webkit-input-placeholder,
.cid-uZitp7bDUn form textarea:focus::-webkit-input-placeholder {
  color: #6c7a88 !important;
}
.cid-uZitp7bDUn form input:active::-moz-placeholder,
.cid-uZitp7bDUn form textarea:active::-moz-placeholder,
.cid-uZitp7bDUn form input:focus::-moz-placeholder,
.cid-uZitp7bDUn form textarea:focus::-moz-placeholder {
  color: #6c7a88 !important;
}
.cid-uZitp7bDUn form input:active:-moz-placeholder,
.cid-uZitp7bDUn form textarea:active:-moz-placeholder,
.cid-uZitp7bDUn form input:focus:-moz-placeholder,
.cid-uZitp7bDUn form textarea:focus:-moz-placeholder {
  color: #6c7a88 !important;
}
.cid-uZitp7bDUn form input:active:-ms-input-placeholder,
.cid-uZitp7bDUn form textarea:active:-ms-input-placeholder,
.cid-uZitp7bDUn form input:focus:-ms-input-placeholder,
.cid-uZitp7bDUn form textarea:focus:-ms-input-placeholder {
  color: #6c7a88 !important;
}
.cid-uZitp7bDUn form .row {
  flex-wrap: wrap;
  margin-left: -8px !important;
  margin-right: -8px !important;
}
.cid-uZitp7bDUn form .row [class*=col] {
  padding-left: 8px !important;
  padding-right: 8px !important;
}
.cid-uZitp7bDUn form label {
  width: 100%;
  color: #1a1e21;
  margin-bottom: 8px;
}
.cid-uZitp7bDUn form .form-check label {
  color: #1a1e21;
}
.cid-uZitp7bDUn form .form-check-input {
  border-color: #e3ebf3 !important;
  outline: none !important;
  box-shadow: none !important;
  background-color: transparent !important;
}
.cid-uZitp7bDUn form .form-check-input:focus,
.cid-uZitp7bDUn form .form-check-input:hover {
  background-color: transparent !important;
  border-color: #6c7a88 !important;
}
.cid-uZitp7bDUn form .form-check-input:checked {
  border-color: #6c7a88 !important;
  background-color: #6c7a88 !important;
}
.cid-uZisTeocYf {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/background3.jpg");
}
@media (max-width: 992px) {
  .cid-uZisTeocYf .container {
    padding: 0 20px;
  }
}
.cid-uZisTeocYf .content-wrapper {
  padding: 60px 0;
}
@media (max-width: 992px) {
  .cid-uZisTeocYf .content-wrapper {
    padding: 46px 0;
  }
}
.cid-uZisTeocYf .content-wrapper .content-wrap {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uZisTeocYf .content-wrapper .content-wrap {
    margin-bottom: 46px;
  }
}
.cid-uZisTeocYf .content-wrapper .content-wrap .mbr-desc {
  margin-bottom: 32px;
}
.cid-uZisTeocYf .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-uZisTeocYf .mbr-section-title {
  color: #010d4c;
  text-align: center;
}
.cid-uZisTeocYf .mbr-desc {
  color: #913bff;
  text-align: center;
}
.cid-uZisTeocYf .google-map {
  height: 30rem;
  border-radius: 20px;
  position: relative;
}
.cid-uZisTeocYf .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uZisTeocYf .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uZisTeocYf .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uZisTeocYf .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uZisTeocYf iframe {
  border-radius: 20px !important;
}
.cid-uZiqDPAh6i {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uZiqDPAh6i .container {
  display: flex;
  justify-content: center;
}
.cid-uZiqDPAh6i .main-row {
  align-items: center;
  max-width: 1170px;
  width: 100%;
}
.cid-uZiqDPAh6i .content-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  background-color: #ffffff;
  box-shadow: 0 -30px 100px rgba(0, 37, 133, 0.03);
  border-radius: 30px;
  padding: 0 !important;
}
.cid-uZiqDPAh6i .col-text {
  display: flex;
  padding: 50px 15px 60px 70px;
}
@media (max-width: 1199px) {
  .cid-uZiqDPAh6i .col-text {
    padding: 40px 15px 30px;
  }
}
.cid-uZiqDPAh6i .col-text1 {
  border-right: 1px solid #dfeaf9;
}
@media (max-width: 767px) {
  .cid-uZiqDPAh6i .col-text1 {
    border-right: none;
    border-bottom: 1px solid #dfeaf9;
  }
}
.cid-uZiqDPAh6i .icon-box {
  display: flex;
  margin-right: 40px;
}
@media (max-width: 1199px) {
  .cid-uZiqDPAh6i .icon-box {
    margin-right: 20px;
  }
}
.cid-uZiqDPAh6i .icon-box .mbr-iconfont {
  color: #913bff;
  font-size: 68px;
}
@media (max-width: 1199px) {
  .cid-uZiqDPAh6i .icon-box .mbr-iconfont {
    font-size: 40px;
  }
}
.cid-uZiqDPAh6i .text-container {
  flex-grow: 1;
}
.cid-uZiqDPAh6i .mbr-section-title {
  color: #913bff;
  margin-bottom: 10px;
}
.cid-uZiqDPAh6i .mbr-text {
  color: #010d4c;
  margin-bottom: 0;
}
.cid-uZiqDPAh6i .link-text {
  margin-bottom: 0;
  margin-top: 5px;
}
.cid-uZiqDPAh6i .link-text a:hover {
  text-decoration: underline;
}
.cid-uZiqDPAh6i .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZiqDPAh6i .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZiqDPAh6i .col-text3 {
  border-right: 1px solid #dfeaf9;
}
@media (max-width: 767px) {
  .cid-uZiqDPAh6i .col-text3 {
    border-right: none;
    border-bottom: 1px solid #dfeaf9;
  }
}
.cid-uZitKzrh5u {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uZitKzrh5u .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZitKzrh5u .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZitKzrh5u .content-wrapper .logo-wrapper img {
  display: inline-block;
  width: 42px;
  height: 42px;
  margin-bottom: 40px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uZitKzrh5u .content-wrapper .logo-wrapper img {
    margin-bottom: 32px;
  }
}
.cid-uZitKzrh5u .content-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uZitKzrh5u .content-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uZitKzrh5u .content-wrapper .nav-wrapper {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uZitKzrh5u .content-wrapper .nav-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uZitKzrh5u .content-wrapper .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 16px 40px;
}
.cid-uZitKzrh5u .content-wrapper .nav-wrapper .list .item-wrap {
  margin-bottom: 0;
  transition: all .3s ease;
}
.cid-uZitKzrh5u .content-wrapper .nav-wrapper .list .item-wrap:hover,
.cid-uZitKzrh5u .content-wrapper .nav-wrapper .list .item-wrap:focus {
  color: #383193;
}
.cid-uZitKzrh5u .content-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-uZitKzrh5u .mbr-section-title {
  color: #181824;
  text-align: center;
}
.cid-uZitKzrh5u .list,
.cid-uZitKzrh5u .nav-wrapper {
  color: #9797b9;
  text-align: center;
}
.cid-uZitKzrh5u .mbr-copy {
  color: #010d4c;
  text-align: center;
}
.cid-uZitKzrh5u .mbr-section-title,
.cid-uZitKzrh5u .logo-wrapper {
  text-align: center;
}
.cid-uZitKzrh5u .list,
.cid-uZitKzrh5u .item-wrap {
  color: #000000;
}
.cid-v10Oy8IYB0 .navbar-dropdown {
  position: relative !important;
}
.cid-v10Oy8IYB0 .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-v10Oy8IYB0 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v10Oy8IYB0 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v10Oy8IYB0 .dropdown-item:hover,
.cid-v10Oy8IYB0 .dropdown-item:focus {
  background: #913bff !important;
  color: white !important;
}
.cid-v10Oy8IYB0 .dropdown-item:hover span {
  color: white;
}
.cid-v10Oy8IYB0 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v10Oy8IYB0 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v10Oy8IYB0 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v10Oy8IYB0 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v10Oy8IYB0 .nav-link {
  position: relative;
}
.cid-v10Oy8IYB0 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-v10Oy8IYB0 .container {
    flex-wrap: nowrap;
  }
}
.cid-v10Oy8IYB0 .iconfont-wrapper {
  color: #913bff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v10Oy8IYB0 .dropdown-menu,
.cid-v10Oy8IYB0 .navbar.opened {
  background: #ffffff !important;
}
.cid-v10Oy8IYB0 .nav-item:focus,
.cid-v10Oy8IYB0 .nav-link:focus {
  outline: none;
}
.cid-v10Oy8IYB0 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v10Oy8IYB0 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v10Oy8IYB0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v10Oy8IYB0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v10Oy8IYB0 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v10Oy8IYB0 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v10Oy8IYB0 .navbar {
  min-height: 71px;
  transition: all 0.4s ease-out;
  box-sizing: content-box;
  box-shadow: none !important;
  padding: 5px 40px !important;
  background-color: #ffffff;
}
.cid-v10Oy8IYB0 .navbar.opened {
  transition: all 0.3s;
}
.cid-v10Oy8IYB0 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v10Oy8IYB0 .navbar .navbar-logo img {
  width: auto;
}
.cid-v10Oy8IYB0 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v10Oy8IYB0 .navbar.collapsed {
  justify-content: center;
}
.cid-v10Oy8IYB0 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v10Oy8IYB0 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v10Oy8IYB0 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v10Oy8IYB0 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v10Oy8IYB0 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v10Oy8IYB0 .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-v10Oy8IYB0 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v10Oy8IYB0 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v10Oy8IYB0 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v10Oy8IYB0 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v10Oy8IYB0 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v10Oy8IYB0 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v10Oy8IYB0 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v10Oy8IYB0 .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-v10Oy8IYB0 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v10Oy8IYB0 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v10Oy8IYB0 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v10Oy8IYB0 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v10Oy8IYB0 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v10Oy8IYB0 .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v10Oy8IYB0 .navbar.navbar-short {
  min-height: 60px;
}
.cid-v10Oy8IYB0 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v10Oy8IYB0 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v10Oy8IYB0 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v10Oy8IYB0 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v10Oy8IYB0 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v10Oy8IYB0 .dropdown-item.active,
.cid-v10Oy8IYB0 .dropdown-item:active {
  background-color: transparent;
}
.cid-v10Oy8IYB0 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v10Oy8IYB0 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v10Oy8IYB0 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v10Oy8IYB0 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v10Oy8IYB0 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v10Oy8IYB0 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v10Oy8IYB0 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v10Oy8IYB0 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v10Oy8IYB0 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v10Oy8IYB0 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v10Oy8IYB0 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v10Oy8IYB0 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v10Oy8IYB0 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v10Oy8IYB0 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v10Oy8IYB0 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v10Oy8IYB0 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v10Oy8IYB0 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v10Oy8IYB0 .navbar-dropdown {
  padding: 0;
}
.cid-v10Oy8IYB0 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v10Oy8IYB0 .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-v10Oy8IYB0 .navbar {
    height: 70px;
  }
  .cid-v10Oy8IYB0 .navbar.opened {
    height: auto;
  }
  .cid-v10Oy8IYB0 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v10Oy8IYB0 .navbar-short {
  padding: 5px 40px !important;
  background-color: #ffffff;
  box-shadow: 0 13px 35px -12px rgba(35, 35, 35, 0.1);
}
.cid-v10Oy8IYB0 .container-fluid {
  padding: 0 !important;
}
@media (min-width: 992px) {
  .cid-v10Oy8IYB0 .container-fluid {
    flex-wrap: nowrap;
  }
}
@media (max-width: 991px) {
  .cid-v10Oy8IYB0 .container-fluid .show {
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .cid-v10Oy8IYB0 .navbar-nav {
    margin-right: auto;
    margin-left: 60px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .cid-v10Oy8IYB0 .navbar-nav {
    margin-left: 40px;
  }
}
@media (min-width: 1400px) {
  .cid-v10Oy8IYB0 .navbar-nav {
    margin-left: 145px;
  }
}
.cid-v10Oy8IYB0 .nav-item a:hover {
  color: #ffffff !important;
}
.cid-v10Oy8IYB0 .nav-item .nav-link {
  position: relative !important;
}
.cid-v10Oy8IYB0 .nav-item .nav-link:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: #913bff;
  left: 0;
  bottom: 0;
  transform: scale(0, 1);
  transform-origin: 0 100%;
  opacity: 0;
  transition: transform 0.3s ease-in-out;
}
.cid-v10Oy8IYB0 .nav-item .nav-link:hover {
  color: #913bff !important;
}
.cid-v10Oy8IYB0 .nav-item .nav-link:hover:before {
  opacity: 1;
  transform: scale(1);
}
@media (max-width: 991px) {
  .cid-v10Oy8IYB0 .nav-item .show {
    padding-bottom: 0;
  }
}
.cid-v10Oy8IYB0 .tel-menu {
  transition: 0s all !important;
}
@media (min-width: 992px) {
  .cid-v10Oy8IYB0 .tel-menu {
    margin-right: 48px;
    margin-left: auto;
    order: 49;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-v10Oy8IYB0 .tel-menu {
    display: none;
  }
}
.cid-v10Oy8IYB0 .mbr-text {
  color: #00284E;
  opacity: 0.8;
  margin-bottom: 0;
  word-break: normal;
}
@media (max-width: 991px) {
  .cid-v10Oy8IYB0 .mbr-text {
    text-align: center !important;
  }
}
.cid-v10Oy8IYB0 .mbr-text a {
  opacity: 1;
  text-decoration: underline;
}
.cid-v10Oy8IYB0 .mbr-section-btn {
  display: flex;
}
@media (max-width: 991px) {
  .cid-v10Oy8IYB0 .mbr-section-btn {
    justify-content: center;
    margin-top: 60px;
  }
}
@media (min-width: 992px) {
  .cid-v10Oy8IYB0 .mbr-section-btn {
    max-width: 35%;
    margin-left: -0.6rem !important;
    margin-right: -0.6rem !important;
    order: 50;
  }
}
.cid-v10Oy8IYB0 .mbr-section-btn .btn {
  max-width: 200px;
  width: 200px;
  min-height: 55px;
  padding: 5px 10px;
  border-radius: 9px;
}
.cid-v10Oy8IYB0 .mbr-section-btn .btn:hover:before {
  display: none;
}
.cid-v10Oy8IYB0 .navbar-toggler:before {
  content: '';
  position: absolute;
  right: -7px;
  top: -10px;
  width: 44px;
  height: 38px;
  background-color: #913bff;
  border-radius: 0.25rem;
}
.cid-v10OG7uhsz {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v10OG7uhsz .mbr-fallback-image.disabled {
  display: none;
}
.cid-v10OG7uhsz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v10OG7uhsz .card-wrapper {
  background: #ffffff;
}
@media (max-width: 767px) {
  .cid-v10OG7uhsz .card-wrapper {
    padding: 2rem 1.5rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-v10OG7uhsz .card-wrapper {
    padding: 2.25rem;
  }
}
@media (min-width: 992px) {
  .cid-v10OG7uhsz .card-wrapper {
    padding: 4rem;
  }
}
.cid-v10OG7uhsz .mbr-text,
.cid-v10OG7uhsz .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-v10OG7uhsz .card-title,
.cid-v10OG7uhsz .card-box {
  text-align: left;
  color: #913bff;
}
.cid-v10Oybam08 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v10Oybam08 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v10Oybam08 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v10Oybam08 .content-wrapper .logo-wrapper img {
  display: inline-block;
  width: 42px;
  height: 42px;
  margin-bottom: 40px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-v10Oybam08 .content-wrapper .logo-wrapper img {
    margin-bottom: 32px;
  }
}
.cid-v10Oybam08 .content-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-v10Oybam08 .content-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-v10Oybam08 .content-wrapper .nav-wrapper {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-v10Oybam08 .content-wrapper .nav-wrapper {
    margin-bottom: 24px;
  }
}
.cid-v10Oybam08 .content-wrapper .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 16px 40px;
}
.cid-v10Oybam08 .content-wrapper .nav-wrapper .list .item-wrap {
  margin-bottom: 0;
  transition: all .3s ease;
}
.cid-v10Oybam08 .content-wrapper .nav-wrapper .list .item-wrap:hover,
.cid-v10Oybam08 .content-wrapper .nav-wrapper .list .item-wrap:focus {
  color: #383193;
}
.cid-v10Oybam08 .content-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v10Oybam08 .mbr-section-title {
  color: #181824;
  text-align: center;
}
.cid-v10Oybam08 .list,
.cid-v10Oybam08 .nav-wrapper {
  color: #9797b9;
  text-align: center;
}
.cid-v10Oybam08 .mbr-copy {
  color: #010d4c;
  text-align: center;
}
.cid-v10Oybam08 .mbr-section-title,
.cid-v10Oybam08 .logo-wrapper {
  text-align: center;
}
.cid-v10Oybam08 .list,
.cid-v10Oybam08 .item-wrap {
  color: #000000;
}
