body {
  font-family: Kantumruy Pro;
}
.display-1 {
  font-family: 'ABeeZee', sans-serif;
  font-size: 4.2rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.25rem;
}
.display-2 {
  font-family: 'ABeeZee', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'ABeeZee', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'ABeeZee', sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2rem;
}
.display-7 {
  font-family: 'ABeeZee', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.36rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.94rem;
    font-size: calc( 2.12rem + (4.2 - 2.12) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.12rem + (4.2 - 2.12) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.21rem + (1.6 - 1.21) * ((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: 1rem 2.6rem;
  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: #fd290a !important;
}
.bg-success {
  background-color: #eff0ff !important;
}
.bg-info {
  background-color: #1f357f !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary {
  border: 5px solid #d1d1f7 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #fd290a !important;
  border-color: #d1d1f7 !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: #fd290a !important;
  border-color: #d1d1f7 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #fd290a !important;
  border-color: #fd290a !important;
}
.btn-primary:hover {
  box-shadow: 0px 0px 30px 0px rgba(86, 90, 221, 0.3) !important;
  transform: scale(1.02) translateY(-2px);
}
.btn-secondary {
  border: 5px solid #d1d1f7 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #d1d1f7 !important;
  border-color: #d1d1f7 !important;
  color: #1e1eab !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: #1e1eab !important;
  background-color: #d1d1f7 !important;
  border-color: #d1d1f7 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #1e1eab !important;
  background-color: #d1d1f7 !important;
  border-color: #d1d1f7 !important;
}
.btn-secondary:hover {
  box-shadow: 0px 0px 30px 0px rgba(86, 90, 221, 0.3) !important;
  transform: scale(1.02) translateY(-2px);
}
.btn-info {
  border: 5px solid #d1d1f7 !important;
}
.btn-info,
.btn-info:active {
  background-color: #1f357f !important;
  border-color: #d1d1f7 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #1f357f !important;
  border-color: #d1d1f7 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #1f357f !important;
  border-color: #1f357f !important;
}
.btn-info:hover {
  box-shadow: 0px 0px 30px 0px rgba(86, 90, 221, 0.3) !important;
  transform: scale(1.02) translateY(-2px);
}
.btn-success {
  border: 5px solid #d1d1f7 !important;
}
.btn-success,
.btn-success:active {
  background-color: #eff0ff !important;
  border-color: #d1d1f7 !important;
  color: #000fef !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: #000fef !important;
  background-color: #eff0ff !important;
  border-color: #d1d1f7 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #000fef !important;
  background-color: #eff0ff !important;
  border-color: #eff0ff !important;
}
.btn-success:hover {
  box-shadow: 0px 0px 30px 0px rgba(86, 90, 221, 0.3) !important;
  transform: scale(1.02) translateY(-2px);
}
.btn-warning {
  border: 5px solid #d1d1f7 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #d1d1f7 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #d1d1f7 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-warning:hover {
  box-shadow: 0px 0px 30px 0px rgba(86, 90, 221, 0.3) !important;
  transform: scale(1.02) translateY(-2px);
}
.btn-danger {
  border: 5px solid #d1d1f7 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #d1d1f7 !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: #ff9966 !important;
  border-color: #d1d1f7 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-danger:hover {
  box-shadow: 0px 0px 30px 0px rgba(86, 90, 221, 0.3) !important;
  transform: scale(1.02) translateY(-2px);
}
.btn-white {
  border: 5px solid #d1d1f7 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #d1d1f7 !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: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #d1d1f7 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.btn-white:hover {
  box-shadow: 0px 0px 30px 0px rgba(86, 90, 221, 0.3) !important;
  transform: scale(1.02) translateY(-2px);
}
.btn-black {
  border: 5px solid #d1d1f7 !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #d1d1f7 !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: #232323 !important;
  border-color: #d1d1f7 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-black:hover {
  box-shadow: 0px 0px 30px 0px rgba(86, 90, 221, 0.3) !important;
  transform: scale(1.02) translateY(-2px);
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fd290a;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #af1801 !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: #fd290a !important;
  border-color: #fd290a !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #d1d1f7;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #8787ea !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #1e1eab !important;
  background-color: #d1d1f7 !important;
  border-color: #d1d1f7 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #1f357f;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #0e1839 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #1f357f !important;
  border-color: #1f357f !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #eff0ff;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #989fff !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #000fef !important;
  background-color: #eff0ff !important;
  border-color: #eff0ff !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #fd290a !important;
}
.text-secondary {
  color: #d1d1f7 !important;
}
.text-success {
  color: #eff0ff !important;
}
.text-info {
  color: #1f357f !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #a01601 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #7a7ae8 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #8990ff !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #0b132d !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #fd290a;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #1f357f;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #fd290a;
  border-color: #fd290a;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #fd290a;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffdad4;
}
.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: #4b6ad3;
}
.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: 'ABeeZee', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #fd290a !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'ABeeZee', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #fd290a;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #fd290a;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #fd290a;
}
.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: #fd290a;
  border-bottom-color: #fd290a;
}
.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: #fd290a !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #d1d1f7 !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='%23fd290a' %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-uqH7n8llp1 {
  background-color: transparent;
}
.cid-uqH7n8llp1 .navbar-dropdown {
  background-color: #eff0ff !important;
  padding: 0;
}
.cid-uqH7n8llp1 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #eff0ff !important;
  background: #eff0ff;
}
.cid-uqH7n8llp1 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uqH7n8llp1 .navbar {
  border-bottom: 2px solid #150764 !important;
  padding-left: 120px !important;
  padding-right: 120px !important;
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 1640px) {
  .cid-uqH7n8llp1 .navbar {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
}
@media (max-width: 992px) {
  .cid-uqH7n8llp1 .navbar {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
@media (max-width: 992px) {
  .cid-uqH7n8llp1 .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uqH7n8llp1 .navbar.opened {
  transition: all 0.3s;
}
.cid-uqH7n8llp1 .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uqH7n8llp1 .navbar .navbar-logo img {
  max-width: 62px;
  min-height: 62px;
  object-fit: contain;
  border-radius: .75rem !important;
}
.cid-uqH7n8llp1 .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uqH7n8llp1 .navbar.collapsed {
  justify-content: center;
}
.cid-uqH7n8llp1 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uqH7n8llp1 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uqH7n8llp1 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uqH7n8llp1 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uqH7n8llp1 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uqH7n8llp1 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uqH7n8llp1 .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uqH7n8llp1 .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uqH7n8llp1 .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-uqH7n8llp1 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uqH7n8llp1 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uqH7n8llp1 .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uqH7n8llp1 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uqH7n8llp1 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uqH7n8llp1 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uqH7n8llp1 .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uqH7n8llp1 .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uqH7n8llp1 .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uqH7n8llp1 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uqH7n8llp1 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uqH7n8llp1 .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uqH7n8llp1 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uqH7n8llp1 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uqH7n8llp1 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uqH7n8llp1 .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uqH7n8llp1 .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uqH7n8llp1 .menu_box .navbar.opened,
  .cid-uqH7n8llp1 .menu_box .navbar-collapse {
    background-color: #eff0ff !important;
    transition: all 0s ease 0s;
  }
}
.cid-uqH7n8llp1 .navbar-dropdown {
  position: relative !important;
}
.cid-uqH7n8llp1 .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
  margin-left: 24px;
}
@media (max-width: 991px) {
  .cid-uqH7n8llp1 .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uqH7n8llp1 .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uqH7n8llp1 .mbr-section-btn-main .btn {
  margin: 8px;
  min-width: 120px;
  white-space: nowrap;
}
.cid-uqH7n8llp1 .btn {
  min-height: auto;
  margin-top: 0;
}
.cid-uqH7n8llp1 .nav-item {
  margin: 4px 0;
}
@media (min-width: 992px) {
  .cid-uqH7n8llp1 .nav-item {
    margin: 4px 40px 4px 0;
  }
}
@media (min-width: 992px) {
  .cid-uqH7n8llp1 .nav-item {
    margin: 4px 0;
  }
}
@media (max-width: 991px) {
  .cid-uqH7n8llp1 .nav-item {
    margin: 0 !important;
  }
}
.cid-uqH7n8llp1 .nav-item .nav-link {
  display: flex;
  justify-content: center;
  padding: 12px;
  transition: all 0.3s ease-out;
  position: relative;
  opacity: 1;
}
@media (max-width: 992px) {
  .cid-uqH7n8llp1 .nav-item .nav-link {
    justify-content: flex-start;
  }
}
.cid-uqH7n8llp1 .nav-item .nav-link:hover,
.cid-uqH7n8llp1 .nav-item .nav-link:focus {
  color: #ffffff !important;
}
.cid-uqH7n8llp1 .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uqH7n8llp1 .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uqH7n8llp1 .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uqH7n8llp1 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uqH7n8llp1 .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-uqH7n8llp1 .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uqH7n8llp1 .offcanvas_box {
    display: none;
  }
}
.cid-uqH7n8llp1 .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uqH7n8llp1 .nav-dropdown .link {
  font-weight: 700 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uqH7n8llp1 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uqH7n8llp1 .container {
  display: flex;
  margin: auto;
}
.cid-uqH7n8llp1 .iconfont-wrapper {
  color: #150764;
  font-size: 26px;
  margin-right: 10px;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}
.cid-uqH7n8llp1 .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uqH7n8llp1 .iconfont-wrapper:hover .mbr-iconfont {
  opacity: .7;
}
@media (min-width: 992px) {
  .cid-uqH7n8llp1 .navbar-nav {
    margin: 0;
  }
}
.cid-uqH7n8llp1 .dropdown-menu,
.cid-uqH7n8llp1 .navbar.opened {
  background-color: false !important;
}
.cid-uqH7n8llp1 .nav-item:focus,
.cid-uqH7n8llp1 .nav-link:focus {
  outline: none;
}
.cid-uqH7n8llp1 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uqH7n8llp1 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uqH7n8llp1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uqH7n8llp1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uqH7n8llp1 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uqH7n8llp1 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uqH7n8llp1 .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-uqH7n8llp1 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-uqH7n8llp1 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uqH7n8llp1 .dropdown-item.active,
.cid-uqH7n8llp1 .dropdown-item:active {
  background-color: transparent;
}
.cid-uqH7n8llp1 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 6px 16px !important;
}
@media (max-width: 992px) {
  .cid-uqH7n8llp1 .navbar-expand-lg .navbar-nav .nav-link {
    padding: 6px 8px !important;
  }
}
.cid-uqH7n8llp1 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uqH7n8llp1 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uqH7n8llp1 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uqH7n8llp1 ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uqH7n8llp1 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uqH7n8llp1 button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #eff0ff;
  background: #f4f2ef;
}
.cid-uqH7n8llp1 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #150764;
}
.cid-uqH7n8llp1 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uqH7n8llp1 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uqH7n8llp1 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uqH7n8llp1 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uqH7n8llp1 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uqH7n8llp1 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uqH7n8llp1 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uqH7n8llp1 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uqH7n8llp1 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uqH7n8llp1 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uqH7n8llp1 .navbar {
    height: 70px;
  }
  .cid-uqH7n8llp1 .navbar.opened {
    height: auto;
  }
  .cid-uqH7n8llp1 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uqH7n8llp1 .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
.cid-uqH7n8llp1 .navbar-caption:hover {
  color: #fd290a;
}
@media (min-width: 992px) {
  .cid-uqH7n8llp1 .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uqH7n8llp1 .text_widget {
  margin-bottom: 32px;
}
.cid-uqH7n8llp1 .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uqH7n8llp1 .text_widget a:hover,
.cid-uqH7n8llp1 .text_widget a:focus {
  opacity: .6;
}
@media (min-width: 992px) {
  .cid-uqH7n8llp1 .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: flex-start;
    min-width: 200px;
    padding-left: 48px;
  }
}
.cid-uqH7n8llp1 .navbar-caption {
  color: #150764;
}
.cid-uqH7n8llp1 .mbr-section-subtitle,
.cid-uqH7n8llp1 .text_widget,
.cid-uqH7n8llp1 .mbr-section-btn {
  text-align: center;
}
.cid-uqH7n8llp1 a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-tjQDC0fgGE {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #eff0ff;
}
.cid-tjQDC0fgGE .mbr-fallback-image.disabled {
  display: none;
}
.cid-tjQDC0fgGE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tjQDC0fgGE .btn {
  padding: 1.5rem 5rem;
  border: 0 !important;
}
@media (max-width: 767px) {
  .cid-tjQDC0fgGE .btn {
    padding: 1.5rem 3rem;
  }
}
.cid-tjQDC0fgGE .row {
  align-items: center;
}
.cid-tjQDC0fgGE img {
  border-radius: 2rem;
}
.cid-tjQDC0fgGE .image-wrapper {
  background: #d1d1f7;
  padding: 4rem 5rem;
  border-radius: 2rem;
}
@media (max-width: 991px) {
  .cid-tjQDC0fgGE .image-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tjQDC0fgGE .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tjQDC0fgGE .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tjQDC0fgGE .mbr-section-title {
  color: #000000;
}
.cid-tjQDC0fgGE .mbr-text,
.cid-tjQDC0fgGE .mbr-section-btn {
  color: #000000;
}
.cid-uqHnx5HpvS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d1d1f7;
}
.cid-uqHnx5HpvS .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-uqHnx5HpvS .counter-container ul li {
  margin-bottom: 2rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-uqHnx5HpvS .counter-container ul li:before {
  position: absolute;
  top: -8px;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: currentColor;
  background-color: #eff0ff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-uqHnx5HpvS .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-uqHnx5HpvS .mbr-text {
  color: #000000;
}
.cid-uqHmNT0Ftq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eff0ff;
  position: relative;
  overflow: hidden;
}
.cid-uqHmNT0Ftq::before {
  content: '';
  position: absolute;
  top: 0;
  right: 4rem;
  width: 240px;
  height: 240px;
  border-radius: 100%;
  background-image: linear-gradient(180deg, #d1d1f7 -10%, transparent 70%);
}
.cid-uqHmNT0Ftq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqHmNT0Ftq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-uqHmNT0Ftq .container {
    padding: 0 16px;
  }
}
.cid-uqHmNT0Ftq .row {
  justify-content: center;
  position: relative;
  z-index: 1;
}
.cid-uqHmNT0Ftq .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-uqHmNT0Ftq .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uqHmNT0Ftq .mbr-section-title {
  color: #000000;
}
.cid-uqHmNT0Ftq .mbr-text {
  color: #000000;
}
.cid-uqHmRHSVEK {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #d1d1f7;
}
.cid-uqHmRHSVEK .card-wrapper {
  background: #ffffff;
}
@media (max-width: 992px) {
  .cid-uqHmRHSVEK .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uqHmRHSVEK .mbr-iconfont {
  display: flex;
  font-size: 1.5rem;
  color: #ffffff;
  background: #252434;
  width: 50px;
  height: 50px;
  transition: all 0.3s;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
}
.cid-uqHmRHSVEK .row {
  justify-content: center;
}
.cid-uqHmRHSVEK .card-box {
  display: flex;
  align-items: center;
}
.cid-uqHmRHSVEK .card-box .iconfont-wrapper {
  margin-right: 1.5rem;
}
@media (max-width: 767px) {
  .cid-uqHmRHSVEK .card-box {
    flex-direction: column;
  }
  .cid-uqHmRHSVEK .card-box .iconfont-wrapper {
    margin-right: 0rem;
    margin-bottom: 1.5rem;
  }
}
.cid-uqHmRHSVEK .card-link:hover a {
  background-image: none !important;
}
.cid-uqHmRHSVEK .mbr-section-subtitle {
  color: #777777;
}
.cid-uqHmRHSVEK .card-text {
  color: #777777;
}
.cid-uqHmOqcjZ0 {
  padding-top: 5rem;
  padding-bottom: 6rem;
  background-color: #eff0ff;
}
.cid-uqHmOqcjZ0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqHmOqcjZ0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqHmOqcjZ0 .row {
  align-items: center;
}
.cid-uqHmOqcjZ0 img {
  border-radius: 2rem;
}
@media (min-width: 992px) {
  .cid-uqHmOqcjZ0 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uqHmOqcjZ0 .mbr-section-title {
  color: #000000;
}
.cid-uqHmOqcjZ0 .mbr-text,
.cid-uqHmOqcjZ0 .mbr-section-btn {
  color: #000000;
}
.cid-uqHeNzbL34 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eff0ff;
  position: relative;
  overflow: hidden;
}
.cid-uqHeNzbL34::before {
  content: '';
  position: absolute;
  top: 0;
  right: 4rem;
  width: 240px;
  height: 240px;
  border-radius: 100%;
  background-image: linear-gradient(180deg, #d1d1f7 -10%, transparent 70%);
}
.cid-uqHeNzbL34 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqHeNzbL34 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-uqHeNzbL34 .container {
    padding: 0 16px;
  }
}
.cid-uqHeNzbL34 .row {
  justify-content: center;
  position: relative;
  z-index: 1;
}
.cid-uqHeNzbL34 .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-uqHeNzbL34 .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uqHeNzbL34 .mbr-section-title {
  color: #000000;
}
.cid-uqHeNzbL34 .mbr-text {
  color: #000000;
}
.cid-uqHn9g9i4k {
  padding-top: 8rem;
  padding-bottom: 8rem;
  overflow: hidden;
  background-color: #eff0ff;
}
.cid-uqHn9g9i4k .image__block:before {
  content: "";
  position: absolute;
  top: -128px;
  left: 205px;
  width: 100vw;
  height: calc(100% + 260px);
  background-color: #d1d1f7;
}
.cid-uqHn9g9i4k .date__block {
  margin-top: 88px;
  margin-bottom: 16px;
}
.cid-uqHn9g9i4k .date__article {
  display: inline-block;
  margin: 0;
  padding: 0 7.5px;
  color: #ff9966;
}
.cid-uqHn9g9i4k .dot {
  display: inline-block;
  vertical-align: super;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #46877e;
}
.cid-uqHn9g9i4k .date__d {
  display: inline-block;
  margin: 0;
  padding: 0 7.5px;
  color: #689bb2;
}
.cid-uqHn9g9i4k .mbr-section-title {
  margin-bottom: 28px;
}
.cid-uqHn9g9i4k .mbr-text {
  margin-bottom: 23px;
}
.cid-uqHn9g9i4k .link {
  display: block;
  margin-bottom: 0;
  white-space: nowrap;
}
.cid-uqHn9g9i4k .link a {
  font-weight: 700;
}
.cid-uqHn9g9i4k .link span {
  display: inline-block !important;
  transition: all 0.3s ease;
  margin-left: 13px;
}
.cid-uqHn9g9i4k .link:hover span {
  transform: translateX(9px);
}
.cid-uqHn9g9i4k .image__block {
  position: relative;
}
.cid-uqHn9g9i4k .image {
  width: 100%;
  height: 575px;
  position: relative;
}
.cid-uqHn9g9i4k .image:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #bbbbbb;
  z-index: 1;
}
.cid-uqHn9g9i4k .image img {
  position: absolute;
  width: 50%;
  height: 80%;
  top: 60px;
  left: 50%;
  z-index: 5;
  transform: translatex(-50%);
  border-radius: 50%;
  max-height: 575px;
  object-fit: cover;
  border: 4px solid #d1d1f7;
}
@media (max-width: 991px) {
  .cid-uqHn9g9i4k .date__block {
    margin-top: 0;
    margin-bottom: 14px;
  }
  .cid-uqHn9g9i4k .mbr-section-title {
    margin-bottom: 15px;
  }
  .cid-uqHn9g9i4k .mbr-text {
    margin-bottom: 12px;
  }
  .cid-uqHn9g9i4k .image__block {
    margin-top: 60px;
  }
  .cid-uqHn9g9i4k .image__block:before {
    top: -50px;
    left: 70px;
    height: calc(100% + 150px);
  }
}
@media (max-width: 767px) {
  .cid-uqHn9g9i4k .image {
    height: 460px;
  }
  .cid-uqHn9g9i4k .image img {
    top: 45px;
    width: 60%;
  }
}
@media (max-width: 575px) {
  .cid-uqHn9g9i4k .image {
    height: 420px;
  }
  .cid-uqHn9g9i4k .image img {
    top: 40px;
    width: 60%;
  }
}
@media (max-width: 380px) {
  .cid-uqHn9g9i4k .image {
    height: 300px;
  }
  .cid-uqHn9g9i4k .image img {
    top: 30px;
    width: 60%;
  }
}
.cid-uqHn9g9i4k .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqHn9g9i4k .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqHn9g9i4k .mbr-text,
.cid-uqHn9g9i4k .link {
  color: #000000;
}
.cid-uqHn9g9i4k .mbr-section-title,
.cid-uqHn9g9i4k .date__block {
  color: #000000;
  text-align: center;
}
.cid-uqHnbeMxZt {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d1d1f7;
}
.cid-uqHnbeMxZt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqHnbeMxZt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqHnbeMxZt img {
  border-radius: 2rem;
}
@media (max-width: 991px) {
  .cid-uqHnbeMxZt img {
    margin-bottom: 2rem;
  }
}
.cid-uqHnbeMxZt .card-wrapper {
  display: flex;
  margin: auto;
}
@media (max-width: 991px) {
  .cid-uqHnbeMxZt .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (min-width: 1400px) {
  .cid-uqHnbeMxZt .card-wrapper {
    max-width: 450px;
  }
}
.cid-uqHnbeMxZt .mbr-iconfont {
  font-size: 1.5rem;
  background: #2b1c50;
  min-width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  margin-right: 1.5rem;
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .cid-uqHnbeMxZt .mbr-iconfont {
    font-size: 1rem;
    margin-right: 1rem;
    margin-top: 1rem;
  }
}
.cid-uqHnbeMxZt .card-text {
  color: #000000;
}
.cid-uqHndb94Kc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eff0ff;
  position: relative;
  overflow: hidden;
}
.cid-uqHndb94Kc::before {
  content: '';
  position: absolute;
  top: 0;
  right: 4rem;
  width: 240px;
  height: 240px;
  border-radius: 100%;
  background-image: linear-gradient(180deg, #eff0ff -10%, transparent 70%);
}
.cid-uqHndb94Kc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqHndb94Kc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-uqHndb94Kc .container {
    padding: 0 16px;
  }
}
.cid-uqHndb94Kc .row {
  justify-content: center;
  position: relative;
  z-index: 1;
}
.cid-uqHndb94Kc .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-uqHndb94Kc .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uqHndb94Kc .mbr-section-title {
  color: #000000;
}
.cid-uqHndb94Kc .mbr-text {
  color: #000000;
}
.cid-uqHnaioEc1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d1d1f7;
}
.cid-uqHnaioEc1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqHnaioEc1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqHnaioEc1 .container-fluid {
  padding: 0 60px;
}
@media (max-width: 1440px) {
  .cid-uqHnaioEc1 .container-fluid {
    padding: 0 42px;
  }
}
@media (max-width: 992px) {
  .cid-uqHnaioEc1 .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uqHnaioEc1 .container {
    padding: 0 16px;
  }
}
.cid-uqHnaioEc1 .title-wrapper .mbr-section-title {
  margin-bottom: 96px;
}
@media (max-width: 992px) {
  .cid-uqHnaioEc1 .title-wrapper .mbr-section-title {
    margin-bottom: 48px;
  }
}
.cid-uqHnaioEc1 .panel-group .card {
  border-radius: 0 !important;
  padding: 24px 0;
  border-bottom: 1px solid #c1c1c1;
}
.cid-uqHnaioEc1 .panel-group .card:first-child {
  border-top: 1px solid #c1c1c1;
}
.cid-uqHnaioEc1 .panel-group .card .card-header {
  padding: 0;
  border: none;
  background-color: transparent;
}
.cid-uqHnaioEc1 .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uqHnaioEc1 .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  transform: rotate(135deg);
}
.cid-uqHnaioEc1 .panel-group .card .card-header .panel-title .panel-wrap {
  display: flex;
  align-items: center;
  width: 80%;
}
@media (max-width: 992px) {
  .cid-uqHnaioEc1 .panel-group .card .card-header .panel-title .panel-wrap {
    width: 100%;
  }
}
.cid-uqHnaioEc1 .panel-group .card .card-header .panel-title .panel-wrap .panel-number {
  min-width: 210px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uqHnaioEc1 .panel-group .card .card-header .panel-title .panel-wrap .panel-number {
    display: none;
  }
}
.cid-uqHnaioEc1 .panel-group .card .card-header .panel-title .panel-wrap .panel-title-edit {
  width: 100%;
  margin-bottom: 0;
}
.cid-uqHnaioEc1 .panel-group .card .card-header .panel-title .icon-wrapper {
  margin-left: 16px;
}
.cid-uqHnaioEc1 .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  font-size: 32px;
  color: #1c1c1c;
  transition: all 0.3s ease-in-out;
}
.cid-uqHnaioEc1 .panel-group .card .panel-collapse .panel-body {
  display: flex;
  padding-top: 16px;
}
.cid-uqHnaioEc1 .panel-group .card .panel-collapse .panel-body .panel-padding {
  min-width: 210px;
}
@media (max-width: 992px) {
  .cid-uqHnaioEc1 .panel-group .card .panel-collapse .panel-body .panel-padding {
    display: none;
  }
}
.cid-uqHnaioEc1 .panel-group .card .panel-collapse .panel-body .panel-text {
  width: 60%;
  margin-bottom: 0;
  opacity: .7;
}
@media (max-width: 768px) {
  .cid-uqHnaioEc1 .panel-group .card .panel-collapse .panel-body .panel-text {
    width: 80%;
  }
}
.cid-uqHnaioEc1 .mbr-section-title {
  color: #1c1c1c;
}
.cid-uqHnaioEc1 .panel-number {
  color: #1c1c1c;
}
.cid-uqHnaioEc1 .panel-title-edit {
  color: #1c1c1c;
}
.cid-uqHnaioEc1 .panel-text {
  color: #1c1c1c;
}
.cid-uqHncga3aA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eff0ff;
  position: relative;
  overflow: hidden;
}
.cid-uqHncga3aA::before {
  content: '';
  position: absolute;
  top: 0;
  right: 4rem;
  width: 240px;
  height: 240px;
  border-radius: 100%;
  background-image: linear-gradient(180deg, #eff0ff -10%, transparent 70%);
}
.cid-uqHncga3aA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqHncga3aA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-uqHncga3aA .container {
    padding: 0 16px;
  }
}
.cid-uqHncga3aA .row {
  justify-content: center;
  position: relative;
  z-index: 1;
}
.cid-uqHncga3aA .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-uqHncga3aA .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uqHncga3aA .mbr-section-title {
  color: #000000;
}
.cid-uqHncga3aA .mbr-text {
  color: #000000;
}
.cid-uqHmUHOs2z {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #eff0ff;
}
.cid-uqHmUHOs2z .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqHmUHOs2z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqHmUHOs2z ul {
  list-style: none;
}
.cid-uqHmUHOs2z li {
  padding-bottom: 0.5rem;
}
.cid-uqHmUHOs2z ul li::before {
  content: "\2022";
  color: #fd290a;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1rem;
}
.cid-uqHmUHOs2z .list-group-item {
  color: #ff6666;
}
.cid-uqHmUHOs2z .plan-body {
  padding-bottom: 2rem;
}
.cid-uqHmUHOs2z .card1 {
  background: #d1d1f7;
}
@media (min-width: 767px) {
  .cid-uqHmUHOs2z .card1 {
    transform: translateX(2rem);
  }
}
.cid-uqHmUHOs2z .card2 {
  background: #ffffff;
}
@media (min-width: 767px) {
  .cid-uqHmUHOs2z .card2 {
    transform: translateX(-2rem);
  }
}
.cid-uqHmUHOs2z .plan-header {
  padding-top: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uqHmUHOs2z .price {
  color: #fd290a;
}
.cid-uqHmUHOs2z .plan {
  word-break: break-word;
  padding: 3rem;
  border-radius: 3rem;
  box-shadow: 0 0 20px 0 lightgray;
}
.cid-uqHmUHOs2z .plan .list-group-item {
  position: relative;
  justify-content: center;
  border: 0;
}
@media (max-width: 992px) {
  .cid-uqHmUHOs2z .plan {
    padding: 1rem 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uqHmUHOs2z .plan {
    margin-bottom: 2rem;
  }
}
.cid-uqHmUHOs2z .mbr-text UL {
  text-align: left;
}
.cid-uqHmUHOs2z .mbr-text {
  color: #726c89;
}
.cid-uqHmUHOs2z .price-term {
  color: #1f357f;
}
.cid-uqHmUHOs2z .title {
  color: #1b224b;
}
.cid-uqHoM5t2fO {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eff0ff;
  position: relative;
  overflow: hidden;
}
.cid-uqHoM5t2fO::before {
  content: '';
  position: absolute;
  top: 0;
  right: 4rem;
  width: 240px;
  height: 240px;
  border-radius: 100%;
  background-image: linear-gradient(180deg, #d1d1f7 -10%, transparent 70%);
}
.cid-uqHoM5t2fO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqHoM5t2fO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-uqHoM5t2fO .container {
    padding: 0 16px;
  }
}
.cid-uqHoM5t2fO .row {
  justify-content: center;
  position: relative;
  z-index: 1;
}
.cid-uqHoM5t2fO .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-uqHoM5t2fO .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uqHoM5t2fO .mbr-section-title {
  color: #000000;
}
.cid-uqHoM5t2fO .mbr-text {
  color: #000000;
}
.cid-uqHb8s5oHH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #d1d1f7;
}
.cid-uqHb8s5oHH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqHb8s5oHH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqHb8s5oHH .map-wrapper {
  height: 100%;
}
.cid-uqHb8s5oHH .card-wrapper {
  border: 1px solid #fd290a;
  padding: 3rem 2.25rem;
  background: #eff0ff;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-uqHb8s5oHH .card-wrapper {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uqHb8s5oHH .card-wrapper {
    padding: 2rem 1.5rem;
  }
}
@media (max-width: 992px) {
  .cid-uqHb8s5oHH .row .map-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uqHb8s5oHH .row .map-wrapper {
    margin-top: 1rem;
  }
}
.cid-uqHb8s5oHH .google-map {
  height: 100%;
  position: relative;
}
.cid-uqHb8s5oHH .google-map iframe {
  height: 100%;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uqHb8s5oHH .google-map iframe {
    min-height: 350px;
  }
}
.cid-uqHb8s5oHH .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-uqHb8s5oHH .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uqHb8s5oHH .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uqHb8s5oHH ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-uqHb8s5oHH .content-head {
  max-width: 800px;
}
.cid-uqHb8s5oHH .mbr-section-title {
  color: #000000;
}
.cid-uqHb8s5oHH .cardTitle {
  color: #221b35;
}
.cid-uqHb8s5oHH .list,
.cid-uqHb8s5oHH .item-wrap {
  color: #221b35;
}
.cid-uqHaG9z2WY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #181818;
}
.cid-uqHaG9z2WY .list {
  list-style: none;
  padding-left: 0;
  font-weight: 300;
  color: #fff;
}
@media (max-width: 991px) {
  .cid-uqHaG9z2WY .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uqHaG9z2WY .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 576px) {
  .cid-uqHaG9z2WY .list {
    margin-bottom: 30px;
  }
}
.cid-uqHaG9z2WY .item-wrap {
  margin-bottom: 15px;
}
@media (max-width: 576px) {
  .cid-uqHaG9z2WY .item-wrap {
    margin-bottom: 0;
  }
}
@media (max-width: 991px) {
  .cid-uqHaG9z2WY div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uqHaG9z2WY .copyright {
  color: #ffffff;
}
.cid-uqHaG9z2WY .mbr-section-subtitle {
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-uqHaG9z2WY .mbr-section-subtitle {
    margin-bottom: 10px;
  }
}
.cid-uqHaG9z2WY .footer {
  padding-top: 66px;
  padding-bottom: 50px;
  border-top: 1px solid #868c90;
  border-bottom: 1px solid #868c90;
}
@media (max-width: 768px) {
  .cid-uqHaG9z2WY .footer {
    padding-top: 48px;
    padding-bottom: 36px;
  }
}
@media (max-width: 767px) {
  .cid-uqHaG9z2WY .footer {
    text-align: center !important;
  }
}
@media (max-width: 576px) {
  .cid-uqHaG9z2WY .footer-logo {
    margin: 0 auto;
  }
}
.cid-uqHlH0jkGU {
  background-color: transparent;
}
.cid-uqHlH0jkGU .navbar-dropdown {
  background-color: #eff0ff !important;
  padding: 0;
}
.cid-uqHlH0jkGU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #eff0ff !important;
  background: #eff0ff;
}
.cid-uqHlH0jkGU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uqHlH0jkGU .navbar {
  border-bottom: 2px solid #150764 !important;
  padding-left: 120px !important;
  padding-right: 120px !important;
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 1640px) {
  .cid-uqHlH0jkGU .navbar {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
}
@media (max-width: 992px) {
  .cid-uqHlH0jkGU .navbar {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
@media (max-width: 992px) {
  .cid-uqHlH0jkGU .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uqHlH0jkGU .navbar.opened {
  transition: all 0.3s;
}
.cid-uqHlH0jkGU .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uqHlH0jkGU .navbar .navbar-logo img {
  max-width: 62px;
  min-height: 62px;
  object-fit: contain;
  border-radius: .75rem !important;
}
.cid-uqHlH0jkGU .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uqHlH0jkGU .navbar.collapsed {
  justify-content: center;
}
.cid-uqHlH0jkGU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uqHlH0jkGU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uqHlH0jkGU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uqHlH0jkGU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uqHlH0jkGU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uqHlH0jkGU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uqHlH0jkGU .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uqHlH0jkGU .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uqHlH0jkGU .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-uqHlH0jkGU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uqHlH0jkGU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uqHlH0jkGU .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uqHlH0jkGU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uqHlH0jkGU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uqHlH0jkGU .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uqHlH0jkGU .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uqHlH0jkGU .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uqHlH0jkGU .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uqHlH0jkGU .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uqHlH0jkGU .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uqHlH0jkGU .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uqHlH0jkGU .navbar.navbar-short {
  min-height: 60px;
}
.cid-uqHlH0jkGU .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uqHlH0jkGU .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uqHlH0jkGU .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uqHlH0jkGU .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uqHlH0jkGU .menu_box .navbar.opened,
  .cid-uqHlH0jkGU .menu_box .navbar-collapse {
    background-color: #eff0ff !important;
    transition: all 0s ease 0s;
  }
}
.cid-uqHlH0jkGU .navbar-dropdown {
  position: relative !important;
}
.cid-uqHlH0jkGU .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
  margin-left: 24px;
}
@media (max-width: 991px) {
  .cid-uqHlH0jkGU .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uqHlH0jkGU .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uqHlH0jkGU .mbr-section-btn-main .btn {
  margin: 8px;
  min-width: 120px;
  white-space: nowrap;
}
.cid-uqHlH0jkGU .btn {
  min-height: auto;
  margin-top: 0;
}
.cid-uqHlH0jkGU .nav-item {
  margin: 4px 0;
}
@media (min-width: 992px) {
  .cid-uqHlH0jkGU .nav-item {
    margin: 4px 40px 4px 0;
  }
}
@media (min-width: 992px) {
  .cid-uqHlH0jkGU .nav-item {
    margin: 4px 0;
  }
}
@media (max-width: 991px) {
  .cid-uqHlH0jkGU .nav-item {
    margin: 0 !important;
  }
}
.cid-uqHlH0jkGU .nav-item .nav-link {
  display: flex;
  justify-content: center;
  padding: 12px;
  transition: all 0.3s ease-out;
  position: relative;
  opacity: 1;
}
@media (max-width: 992px) {
  .cid-uqHlH0jkGU .nav-item .nav-link {
    justify-content: flex-start;
  }
}
.cid-uqHlH0jkGU .nav-item .nav-link:hover,
.cid-uqHlH0jkGU .nav-item .nav-link:focus {
  color: #ffffff !important;
}
.cid-uqHlH0jkGU .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uqHlH0jkGU .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uqHlH0jkGU .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uqHlH0jkGU .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uqHlH0jkGU .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-uqHlH0jkGU .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uqHlH0jkGU .offcanvas_box {
    display: none;
  }
}
.cid-uqHlH0jkGU .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uqHlH0jkGU .nav-dropdown .link {
  font-weight: 700 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uqHlH0jkGU .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uqHlH0jkGU .container {
  display: flex;
  margin: auto;
}
.cid-uqHlH0jkGU .iconfont-wrapper {
  color: #150764;
  font-size: 26px;
  margin-right: 10px;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}
.cid-uqHlH0jkGU .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uqHlH0jkGU .iconfont-wrapper:hover .mbr-iconfont {
  opacity: .7;
}
@media (min-width: 992px) {
  .cid-uqHlH0jkGU .navbar-nav {
    margin: 0;
  }
}
.cid-uqHlH0jkGU .dropdown-menu,
.cid-uqHlH0jkGU .navbar.opened {
  background-color: false !important;
}
.cid-uqHlH0jkGU .nav-item:focus,
.cid-uqHlH0jkGU .nav-link:focus {
  outline: none;
}
.cid-uqHlH0jkGU .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uqHlH0jkGU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uqHlH0jkGU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uqHlH0jkGU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uqHlH0jkGU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uqHlH0jkGU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uqHlH0jkGU .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-uqHlH0jkGU .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-uqHlH0jkGU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uqHlH0jkGU .dropdown-item.active,
.cid-uqHlH0jkGU .dropdown-item:active {
  background-color: transparent;
}
.cid-uqHlH0jkGU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 6px 16px !important;
}
@media (max-width: 992px) {
  .cid-uqHlH0jkGU .navbar-expand-lg .navbar-nav .nav-link {
    padding: 6px 8px !important;
  }
}
.cid-uqHlH0jkGU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uqHlH0jkGU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uqHlH0jkGU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uqHlH0jkGU ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uqHlH0jkGU .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uqHlH0jkGU button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #eff0ff;
  background: #f4f2ef;
}
.cid-uqHlH0jkGU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #150764;
}
.cid-uqHlH0jkGU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uqHlH0jkGU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uqHlH0jkGU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uqHlH0jkGU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uqHlH0jkGU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uqHlH0jkGU nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uqHlH0jkGU nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uqHlH0jkGU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uqHlH0jkGU a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uqHlH0jkGU .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uqHlH0jkGU .navbar {
    height: 70px;
  }
  .cid-uqHlH0jkGU .navbar.opened {
    height: auto;
  }
  .cid-uqHlH0jkGU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uqHlH0jkGU .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
.cid-uqHlH0jkGU .navbar-caption:hover {
  color: #fd290a;
}
@media (min-width: 992px) {
  .cid-uqHlH0jkGU .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uqHlH0jkGU .text_widget {
  margin-bottom: 32px;
}
.cid-uqHlH0jkGU .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uqHlH0jkGU .text_widget a:hover,
.cid-uqHlH0jkGU .text_widget a:focus {
  opacity: .6;
}
@media (min-width: 992px) {
  .cid-uqHlH0jkGU .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: flex-start;
    min-width: 200px;
    padding-left: 48px;
  }
}
.cid-uqHlH0jkGU .navbar-caption {
  color: #150764;
}
.cid-uqHlH0jkGU .mbr-section-subtitle,
.cid-uqHlH0jkGU .text_widget,
.cid-uqHlH0jkGU .mbr-section-btn {
  text-align: center;
}
.cid-uqHlH0jkGU a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uqHlH1kiIF {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #eff0ff;
}
.cid-uqHlH1kiIF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqHlH1kiIF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqHlH1kiIF .btn {
  padding: 1.5rem 5rem;
  border: 0 !important;
}
@media (max-width: 767px) {
  .cid-uqHlH1kiIF .btn {
    padding: 1.5rem 3rem;
  }
}
.cid-uqHlH1kiIF .row {
  align-items: center;
}
.cid-uqHlH1kiIF img {
  border-radius: 2rem;
}
.cid-uqHlH1kiIF .image-wrapper {
  background: #d1d1f7;
  padding: 4rem 5rem;
  border-radius: 2rem;
}
@media (max-width: 991px) {
  .cid-uqHlH1kiIF .image-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uqHlH1kiIF .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uqHlH1kiIF .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uqHlH1kiIF .mbr-section-title {
  color: #000000;
}
.cid-uqHlH1kiIF .mbr-text,
.cid-uqHlH1kiIF .mbr-section-btn {
  color: #000000;
}
.cid-uqHlH2FyfI {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eff0ff;
  position: relative;
  overflow: hidden;
}
.cid-uqHlH2FyfI::before {
  content: '';
  position: absolute;
  top: 0;
  right: 4rem;
  width: 240px;
  height: 240px;
  border-radius: 100%;
  background-image: linear-gradient(180deg, #d1d1f7 -10%, transparent 70%);
}
.cid-uqHlH2FyfI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqHlH2FyfI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-uqHlH2FyfI .container {
    padding: 0 16px;
  }
}
.cid-uqHlH2FyfI .row {
  justify-content: center;
  position: relative;
  z-index: 1;
}
.cid-uqHlH2FyfI .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-uqHlH2FyfI .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uqHlH2FyfI .mbr-section-title {
  color: #f1634f;
}
.cid-uqHlH2FyfI .mbr-text {
  color: #000000;
}
.cid-uqHlH3FkU4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
.cid-uqHlH3FkU4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqHlH3FkU4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqHlH3FkU4 .map-wrapper {
  height: 100%;
}
.cid-uqHlH3FkU4 .card-wrapper {
  border: 1px solid #fd290a;
  padding: 3rem 2.25rem;
  background: #ffffff;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-uqHlH3FkU4 .card-wrapper {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uqHlH3FkU4 .card-wrapper {
    padding: 2rem 1.5rem;
  }
}
@media (max-width: 992px) {
  .cid-uqHlH3FkU4 .row .map-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uqHlH3FkU4 .row .map-wrapper {
    margin-top: 1rem;
  }
}
.cid-uqHlH3FkU4 .google-map {
  height: 100%;
  position: relative;
}
.cid-uqHlH3FkU4 .google-map iframe {
  height: 100%;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uqHlH3FkU4 .google-map iframe {
    min-height: 350px;
  }
}
.cid-uqHlH3FkU4 .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-uqHlH3FkU4 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uqHlH3FkU4 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uqHlH3FkU4 ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-uqHlH3FkU4 .content-head {
  max-width: 800px;
}
.cid-uqHlH3FkU4 .mbr-section-title {
  color: #000000;
}
.cid-uqHlH3FkU4 .cardTitle {
  color: #221b35;
}
.cid-uqHlH3FkU4 .list,
.cid-uqHlH3FkU4 .item-wrap {
  color: #221b35;
}
.cid-uqHlH4KkbU {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #181818;
}
.cid-uqHlH4KkbU .list {
  list-style: none;
  padding-left: 0;
  font-weight: 300;
  color: #fff;
}
@media (max-width: 991px) {
  .cid-uqHlH4KkbU .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uqHlH4KkbU .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 576px) {
  .cid-uqHlH4KkbU .list {
    margin-bottom: 30px;
  }
}
.cid-uqHlH4KkbU .item-wrap {
  margin-bottom: 15px;
}
@media (max-width: 576px) {
  .cid-uqHlH4KkbU .item-wrap {
    margin-bottom: 0;
  }
}
@media (max-width: 991px) {
  .cid-uqHlH4KkbU div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uqHlH4KkbU .copyright {
  color: #ffffff;
}
.cid-uqHlH4KkbU .mbr-section-subtitle {
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-uqHlH4KkbU .mbr-section-subtitle {
    margin-bottom: 10px;
  }
}
.cid-uqHlH4KkbU .footer {
  padding-top: 66px;
  padding-bottom: 50px;
  border-top: 1px solid #868c90;
  border-bottom: 1px solid #868c90;
}
@media (max-width: 768px) {
  .cid-uqHlH4KkbU .footer {
    padding-top: 48px;
    padding-bottom: 36px;
  }
}
@media (max-width: 767px) {
  .cid-uqHlH4KkbU .footer {
    text-align: center !important;
  }
}
@media (max-width: 576px) {
  .cid-uqHlH4KkbU .footer-logo {
    margin: 0 auto;
  }
}
.cid-uqHlYJyKp2 {
  background-color: transparent;
}
.cid-uqHlYJyKp2 .navbar-dropdown {
  background-color: #eff0ff !important;
  padding: 0;
}
.cid-uqHlYJyKp2 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #eff0ff !important;
  background: #eff0ff;
}
.cid-uqHlYJyKp2 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uqHlYJyKp2 .navbar {
  border-bottom: 2px solid #150764 !important;
  padding-left: 120px !important;
  padding-right: 120px !important;
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 1640px) {
  .cid-uqHlYJyKp2 .navbar {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
}
@media (max-width: 992px) {
  .cid-uqHlYJyKp2 .navbar {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
@media (max-width: 992px) {
  .cid-uqHlYJyKp2 .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uqHlYJyKp2 .navbar.opened {
  transition: all 0.3s;
}
.cid-uqHlYJyKp2 .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uqHlYJyKp2 .navbar .navbar-logo img {
  max-width: 62px;
  min-height: 62px;
  object-fit: contain;
  border-radius: .75rem !important;
}
.cid-uqHlYJyKp2 .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uqHlYJyKp2 .navbar.collapsed {
  justify-content: center;
}
.cid-uqHlYJyKp2 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uqHlYJyKp2 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uqHlYJyKp2 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uqHlYJyKp2 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uqHlYJyKp2 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uqHlYJyKp2 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uqHlYJyKp2 .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uqHlYJyKp2 .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uqHlYJyKp2 .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-uqHlYJyKp2 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uqHlYJyKp2 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uqHlYJyKp2 .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uqHlYJyKp2 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uqHlYJyKp2 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uqHlYJyKp2 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uqHlYJyKp2 .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uqHlYJyKp2 .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uqHlYJyKp2 .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uqHlYJyKp2 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uqHlYJyKp2 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uqHlYJyKp2 .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uqHlYJyKp2 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uqHlYJyKp2 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uqHlYJyKp2 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uqHlYJyKp2 .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uqHlYJyKp2 .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uqHlYJyKp2 .menu_box .navbar.opened,
  .cid-uqHlYJyKp2 .menu_box .navbar-collapse {
    background-color: #eff0ff !important;
    transition: all 0s ease 0s;
  }
}
.cid-uqHlYJyKp2 .navbar-dropdown {
  position: relative !important;
}
.cid-uqHlYJyKp2 .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
  margin-left: 24px;
}
@media (max-width: 991px) {
  .cid-uqHlYJyKp2 .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uqHlYJyKp2 .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uqHlYJyKp2 .mbr-section-btn-main .btn {
  margin: 8px;
  min-width: 120px;
  white-space: nowrap;
}
.cid-uqHlYJyKp2 .btn {
  min-height: auto;
  margin-top: 0;
}
.cid-uqHlYJyKp2 .nav-item {
  margin: 4px 0;
}
@media (min-width: 992px) {
  .cid-uqHlYJyKp2 .nav-item {
    margin: 4px 40px 4px 0;
  }
}
@media (min-width: 992px) {
  .cid-uqHlYJyKp2 .nav-item {
    margin: 4px 0;
  }
}
@media (max-width: 991px) {
  .cid-uqHlYJyKp2 .nav-item {
    margin: 0 !important;
  }
}
.cid-uqHlYJyKp2 .nav-item .nav-link {
  display: flex;
  justify-content: center;
  padding: 12px;
  transition: all 0.3s ease-out;
  position: relative;
  opacity: 1;
}
@media (max-width: 992px) {
  .cid-uqHlYJyKp2 .nav-item .nav-link {
    justify-content: flex-start;
  }
}
.cid-uqHlYJyKp2 .nav-item .nav-link:hover,
.cid-uqHlYJyKp2 .nav-item .nav-link:focus {
  color: #ffffff !important;
}
.cid-uqHlYJyKp2 .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uqHlYJyKp2 .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uqHlYJyKp2 .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uqHlYJyKp2 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uqHlYJyKp2 .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-uqHlYJyKp2 .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uqHlYJyKp2 .offcanvas_box {
    display: none;
  }
}
.cid-uqHlYJyKp2 .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uqHlYJyKp2 .nav-dropdown .link {
  font-weight: 700 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uqHlYJyKp2 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uqHlYJyKp2 .container {
  display: flex;
  margin: auto;
}
.cid-uqHlYJyKp2 .iconfont-wrapper {
  color: #150764;
  font-size: 26px;
  margin-right: 10px;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}
.cid-uqHlYJyKp2 .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uqHlYJyKp2 .iconfont-wrapper:hover .mbr-iconfont {
  opacity: .7;
}
@media (min-width: 992px) {
  .cid-uqHlYJyKp2 .navbar-nav {
    margin: 0;
  }
}
.cid-uqHlYJyKp2 .dropdown-menu,
.cid-uqHlYJyKp2 .navbar.opened {
  background-color: false !important;
}
.cid-uqHlYJyKp2 .nav-item:focus,
.cid-uqHlYJyKp2 .nav-link:focus {
  outline: none;
}
.cid-uqHlYJyKp2 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uqHlYJyKp2 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uqHlYJyKp2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uqHlYJyKp2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uqHlYJyKp2 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uqHlYJyKp2 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uqHlYJyKp2 .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-uqHlYJyKp2 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-uqHlYJyKp2 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uqHlYJyKp2 .dropdown-item.active,
.cid-uqHlYJyKp2 .dropdown-item:active {
  background-color: transparent;
}
.cid-uqHlYJyKp2 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 6px 16px !important;
}
@media (max-width: 992px) {
  .cid-uqHlYJyKp2 .navbar-expand-lg .navbar-nav .nav-link {
    padding: 6px 8px !important;
  }
}
.cid-uqHlYJyKp2 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uqHlYJyKp2 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uqHlYJyKp2 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uqHlYJyKp2 ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uqHlYJyKp2 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uqHlYJyKp2 button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #eff0ff;
  background: #f4f2ef;
}
.cid-uqHlYJyKp2 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #150764;
}
.cid-uqHlYJyKp2 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uqHlYJyKp2 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uqHlYJyKp2 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uqHlYJyKp2 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uqHlYJyKp2 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uqHlYJyKp2 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uqHlYJyKp2 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uqHlYJyKp2 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uqHlYJyKp2 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uqHlYJyKp2 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uqHlYJyKp2 .navbar {
    height: 70px;
  }
  .cid-uqHlYJyKp2 .navbar.opened {
    height: auto;
  }
  .cid-uqHlYJyKp2 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uqHlYJyKp2 .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
.cid-uqHlYJyKp2 .navbar-caption:hover {
  color: #fd290a;
}
@media (min-width: 992px) {
  .cid-uqHlYJyKp2 .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uqHlYJyKp2 .text_widget {
  margin-bottom: 32px;
}
.cid-uqHlYJyKp2 .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uqHlYJyKp2 .text_widget a:hover,
.cid-uqHlYJyKp2 .text_widget a:focus {
  opacity: .6;
}
@media (min-width: 992px) {
  .cid-uqHlYJyKp2 .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: flex-start;
    min-width: 200px;
    padding-left: 48px;
  }
}
.cid-uqHlYJyKp2 .navbar-caption {
  color: #150764;
}
.cid-uqHlYJyKp2 .mbr-section-subtitle,
.cid-uqHlYJyKp2 .text_widget,
.cid-uqHlYJyKp2 .mbr-section-btn {
  text-align: center;
}
.cid-uqHlYJyKp2 a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uqHlYKVM1O {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #eff0ff;
}
.cid-uqHlYKVM1O .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqHlYKVM1O .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqHlYKVM1O .btn {
  padding: 1.5rem 5rem;
  border: 0 !important;
}
@media (max-width: 767px) {
  .cid-uqHlYKVM1O .btn {
    padding: 1.5rem 3rem;
  }
}
.cid-uqHlYKVM1O .row {
  align-items: center;
}
.cid-uqHlYKVM1O img {
  border-radius: 2rem;
}
.cid-uqHlYKVM1O .image-wrapper {
  background: #d1d1f7;
  padding: 4rem 5rem;
  border-radius: 2rem;
}
@media (max-width: 991px) {
  .cid-uqHlYKVM1O .image-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uqHlYKVM1O .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uqHlYKVM1O .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uqHlYKVM1O .mbr-section-title {
  color: #000000;
}
.cid-uqHlYKVM1O .mbr-text,
.cid-uqHlYKVM1O .mbr-section-btn {
  color: #000000;
}
.cid-uqHlYMidt1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eff0ff;
  position: relative;
  overflow: hidden;
}
.cid-uqHlYMidt1::before {
  content: '';
  position: absolute;
  top: 0;
  right: 4rem;
  width: 240px;
  height: 240px;
  border-radius: 100%;
  background-image: linear-gradient(180deg, #d1d1f7 -10%, transparent 70%);
}
.cid-uqHlYMidt1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqHlYMidt1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-uqHlYMidt1 .container {
    padding: 0 16px;
  }
}
.cid-uqHlYMidt1 .row {
  justify-content: center;
  position: relative;
  z-index: 1;
}
.cid-uqHlYMidt1 .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-uqHlYMidt1 .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uqHlYMidt1 .mbr-section-title {
  color: #f1634f;
}
.cid-uqHlYMidt1 .mbr-text {
  color: #000000;
}
.cid-uqHlYNvywx {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
.cid-uqHlYNvywx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqHlYNvywx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqHlYNvywx .map-wrapper {
  height: 100%;
}
.cid-uqHlYNvywx .card-wrapper {
  border: 1px solid #fd290a;
  padding: 3rem 2.25rem;
  background: #ffffff;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-uqHlYNvywx .card-wrapper {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uqHlYNvywx .card-wrapper {
    padding: 2rem 1.5rem;
  }
}
@media (max-width: 992px) {
  .cid-uqHlYNvywx .row .map-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uqHlYNvywx .row .map-wrapper {
    margin-top: 1rem;
  }
}
.cid-uqHlYNvywx .google-map {
  height: 100%;
  position: relative;
}
.cid-uqHlYNvywx .google-map iframe {
  height: 100%;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uqHlYNvywx .google-map iframe {
    min-height: 350px;
  }
}
.cid-uqHlYNvywx .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-uqHlYNvywx .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uqHlYNvywx .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uqHlYNvywx ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-uqHlYNvywx .content-head {
  max-width: 800px;
}
.cid-uqHlYNvywx .mbr-section-title {
  color: #000000;
}
.cid-uqHlYNvywx .cardTitle {
  color: #221b35;
}
.cid-uqHlYNvywx .list,
.cid-uqHlYNvywx .item-wrap {
  color: #221b35;
}
.cid-uqHlYOMFI2 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #181818;
}
.cid-uqHlYOMFI2 .list {
  list-style: none;
  padding-left: 0;
  font-weight: 300;
  color: #fff;
}
@media (max-width: 991px) {
  .cid-uqHlYOMFI2 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uqHlYOMFI2 .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 576px) {
  .cid-uqHlYOMFI2 .list {
    margin-bottom: 30px;
  }
}
.cid-uqHlYOMFI2 .item-wrap {
  margin-bottom: 15px;
}
@media (max-width: 576px) {
  .cid-uqHlYOMFI2 .item-wrap {
    margin-bottom: 0;
  }
}
@media (max-width: 991px) {
  .cid-uqHlYOMFI2 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uqHlYOMFI2 .copyright {
  color: #ffffff;
}
.cid-uqHlYOMFI2 .mbr-section-subtitle {
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-uqHlYOMFI2 .mbr-section-subtitle {
    margin-bottom: 10px;
  }
}
.cid-uqHlYOMFI2 .footer {
  padding-top: 66px;
  padding-bottom: 50px;
  border-top: 1px solid #868c90;
  border-bottom: 1px solid #868c90;
}
@media (max-width: 768px) {
  .cid-uqHlYOMFI2 .footer {
    padding-top: 48px;
    padding-bottom: 36px;
  }
}
@media (max-width: 767px) {
  .cid-uqHlYOMFI2 .footer {
    text-align: center !important;
  }
}
@media (max-width: 576px) {
  .cid-uqHlYOMFI2 .footer-logo {
    margin: 0 auto;
  }
}
.cid-uqHqbf53xh {
  background-color: transparent;
}
.cid-uqHqbf53xh .navbar-dropdown {
  background-color: #eff0ff !important;
  padding: 0;
}
.cid-uqHqbf53xh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #eff0ff !important;
  background: #eff0ff;
}
.cid-uqHqbf53xh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uqHqbf53xh .navbar {
  border-bottom: 2px solid #150764 !important;
  padding-left: 120px !important;
  padding-right: 120px !important;
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 1640px) {
  .cid-uqHqbf53xh .navbar {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
}
@media (max-width: 992px) {
  .cid-uqHqbf53xh .navbar {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
@media (max-width: 992px) {
  .cid-uqHqbf53xh .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uqHqbf53xh .navbar.opened {
  transition: all 0.3s;
}
.cid-uqHqbf53xh .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uqHqbf53xh .navbar .navbar-logo img {
  max-width: 62px;
  min-height: 62px;
  object-fit: contain;
  border-radius: .75rem !important;
}
.cid-uqHqbf53xh .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uqHqbf53xh .navbar.collapsed {
  justify-content: center;
}
.cid-uqHqbf53xh .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uqHqbf53xh .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uqHqbf53xh .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uqHqbf53xh .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uqHqbf53xh .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uqHqbf53xh .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uqHqbf53xh .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uqHqbf53xh .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uqHqbf53xh .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-uqHqbf53xh .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uqHqbf53xh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uqHqbf53xh .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uqHqbf53xh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uqHqbf53xh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uqHqbf53xh .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uqHqbf53xh .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uqHqbf53xh .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uqHqbf53xh .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uqHqbf53xh .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uqHqbf53xh .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uqHqbf53xh .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uqHqbf53xh .navbar.navbar-short {
  min-height: 60px;
}
.cid-uqHqbf53xh .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uqHqbf53xh .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uqHqbf53xh .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uqHqbf53xh .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uqHqbf53xh .menu_box .navbar.opened,
  .cid-uqHqbf53xh .menu_box .navbar-collapse {
    background-color: #eff0ff !important;
    transition: all 0s ease 0s;
  }
}
.cid-uqHqbf53xh .navbar-dropdown {
  position: relative !important;
}
.cid-uqHqbf53xh .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
  margin-left: 24px;
}
@media (max-width: 991px) {
  .cid-uqHqbf53xh .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uqHqbf53xh .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uqHqbf53xh .mbr-section-btn-main .btn {
  margin: 8px;
  min-width: 120px;
  white-space: nowrap;
}
.cid-uqHqbf53xh .btn {
  min-height: auto;
  margin-top: 0;
}
.cid-uqHqbf53xh .nav-item {
  margin: 4px 0;
}
@media (min-width: 992px) {
  .cid-uqHqbf53xh .nav-item {
    margin: 4px 40px 4px 0;
  }
}
@media (min-width: 992px) {
  .cid-uqHqbf53xh .nav-item {
    margin: 4px 0;
  }
}
@media (max-width: 991px) {
  .cid-uqHqbf53xh .nav-item {
    margin: 0 !important;
  }
}
.cid-uqHqbf53xh .nav-item .nav-link {
  display: flex;
  justify-content: center;
  padding: 12px;
  transition: all 0.3s ease-out;
  position: relative;
  opacity: 1;
}
@media (max-width: 992px) {
  .cid-uqHqbf53xh .nav-item .nav-link {
    justify-content: flex-start;
  }
}
.cid-uqHqbf53xh .nav-item .nav-link:hover,
.cid-uqHqbf53xh .nav-item .nav-link:focus {
  color: #ffffff !important;
}
.cid-uqHqbf53xh .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uqHqbf53xh .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uqHqbf53xh .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uqHqbf53xh .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uqHqbf53xh .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-uqHqbf53xh .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uqHqbf53xh .offcanvas_box {
    display: none;
  }
}
.cid-uqHqbf53xh .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uqHqbf53xh .nav-dropdown .link {
  font-weight: 700 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uqHqbf53xh .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uqHqbf53xh .container {
  display: flex;
  margin: auto;
}
.cid-uqHqbf53xh .iconfont-wrapper {
  color: #150764;
  font-size: 26px;
  margin-right: 10px;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}
.cid-uqHqbf53xh .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uqHqbf53xh .iconfont-wrapper:hover .mbr-iconfont {
  opacity: .7;
}
@media (min-width: 992px) {
  .cid-uqHqbf53xh .navbar-nav {
    margin: 0;
  }
}
.cid-uqHqbf53xh .dropdown-menu,
.cid-uqHqbf53xh .navbar.opened {
  background-color: false !important;
}
.cid-uqHqbf53xh .nav-item:focus,
.cid-uqHqbf53xh .nav-link:focus {
  outline: none;
}
.cid-uqHqbf53xh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uqHqbf53xh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uqHqbf53xh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uqHqbf53xh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uqHqbf53xh .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uqHqbf53xh .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uqHqbf53xh .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-uqHqbf53xh .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-uqHqbf53xh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uqHqbf53xh .dropdown-item.active,
.cid-uqHqbf53xh .dropdown-item:active {
  background-color: transparent;
}
.cid-uqHqbf53xh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 6px 16px !important;
}
@media (max-width: 992px) {
  .cid-uqHqbf53xh .navbar-expand-lg .navbar-nav .nav-link {
    padding: 6px 8px !important;
  }
}
.cid-uqHqbf53xh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uqHqbf53xh .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uqHqbf53xh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uqHqbf53xh ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uqHqbf53xh .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uqHqbf53xh button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #eff0ff;
  background: #f4f2ef;
}
.cid-uqHqbf53xh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #150764;
}
.cid-uqHqbf53xh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uqHqbf53xh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uqHqbf53xh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uqHqbf53xh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uqHqbf53xh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uqHqbf53xh nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uqHqbf53xh nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uqHqbf53xh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uqHqbf53xh a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uqHqbf53xh .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uqHqbf53xh .navbar {
    height: 70px;
  }
  .cid-uqHqbf53xh .navbar.opened {
    height: auto;
  }
  .cid-uqHqbf53xh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uqHqbf53xh .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
.cid-uqHqbf53xh .navbar-caption:hover {
  color: #fd290a;
}
@media (min-width: 992px) {
  .cid-uqHqbf53xh .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uqHqbf53xh .text_widget {
  margin-bottom: 32px;
}
.cid-uqHqbf53xh .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uqHqbf53xh .text_widget a:hover,
.cid-uqHqbf53xh .text_widget a:focus {
  opacity: .6;
}
@media (min-width: 992px) {
  .cid-uqHqbf53xh .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: flex-start;
    min-width: 200px;
    padding-left: 48px;
  }
}
.cid-uqHqbf53xh .navbar-caption {
  color: #150764;
}
.cid-uqHqbf53xh .mbr-section-subtitle,
.cid-uqHqbf53xh .text_widget,
.cid-uqHqbf53xh .mbr-section-btn {
  text-align: center;
}
.cid-uqHqbf53xh a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uqHqbiAZtV {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #eff0ff;
}
.cid-uqHqbiAZtV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqHqbiAZtV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqHqbiAZtV .btn {
  padding: 1.5rem 5rem;
  border: 0 !important;
}
@media (max-width: 767px) {
  .cid-uqHqbiAZtV .btn {
    padding: 1.5rem 3rem;
  }
}
.cid-uqHqbiAZtV .row {
  align-items: center;
}
.cid-uqHqbiAZtV img {
  border-radius: 2rem;
}
.cid-uqHqbiAZtV .image-wrapper {
  background: #d1d1f7;
  padding: 4rem 5rem;
  border-radius: 2rem;
}
@media (max-width: 991px) {
  .cid-uqHqbiAZtV .image-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uqHqbiAZtV .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uqHqbiAZtV .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uqHqbiAZtV .mbr-section-title {
  color: #000000;
}
.cid-uqHqbiAZtV .mbr-text,
.cid-uqHqbiAZtV .mbr-section-btn {
  color: #000000;
}
.cid-uqHqblMKrd {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d1d1f7;
}
.cid-uqHqblMKrd .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-uqHqblMKrd .counter-container ul li {
  margin-bottom: 2rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-uqHqblMKrd .counter-container ul li:before {
  position: absolute;
  top: -8px;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: currentColor;
  background-color: #eff0ff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-uqHqblMKrd .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-uqHqblMKrd .mbr-text {
  color: #000000;
}
.cid-uqHqbngWEm {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eff0ff;
  position: relative;
  overflow: hidden;
}
.cid-uqHqbngWEm::before {
  content: '';
  position: absolute;
  top: 0;
  right: 4rem;
  width: 240px;
  height: 240px;
  border-radius: 100%;
  background-image: linear-gradient(180deg, #d1d1f7 -10%, transparent 70%);
}
.cid-uqHqbngWEm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqHqbngWEm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-uqHqbngWEm .container {
    padding: 0 16px;
  }
}
.cid-uqHqbngWEm .row {
  justify-content: center;
  position: relative;
  z-index: 1;
}
.cid-uqHqbngWEm .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-uqHqbngWEm .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uqHqbngWEm .mbr-section-title {
  color: #000000;
}
.cid-uqHqbngWEm .mbr-text {
  color: #000000;
}
.cid-uqHqbp9IPF {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #d1d1f7;
}
.cid-uqHqbp9IPF .card-wrapper {
  background: #ffffff;
}
@media (max-width: 992px) {
  .cid-uqHqbp9IPF .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uqHqbp9IPF .mbr-iconfont {
  display: flex;
  font-size: 1.5rem;
  color: #ffffff;
  background: #252434;
  width: 50px;
  height: 50px;
  transition: all 0.3s;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
}
.cid-uqHqbp9IPF .row {
  justify-content: center;
}
.cid-uqHqbp9IPF .card-box {
  display: flex;
  align-items: center;
}
.cid-uqHqbp9IPF .card-box .iconfont-wrapper {
  margin-right: 1.5rem;
}
@media (max-width: 767px) {
  .cid-uqHqbp9IPF .card-box {
    flex-direction: column;
  }
  .cid-uqHqbp9IPF .card-box .iconfont-wrapper {
    margin-right: 0rem;
    margin-bottom: 1.5rem;
  }
}
.cid-uqHqbp9IPF .card-link:hover a {
  background-image: none !important;
}
.cid-uqHqbp9IPF .mbr-section-subtitle {
  color: #777777;
}
.cid-uqHqbp9IPF .card-text {
  color: #777777;
}
.cid-uqHqbrlGPQ {
  padding-top: 5rem;
  padding-bottom: 6rem;
  background-color: #eff0ff;
}
.cid-uqHqbrlGPQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqHqbrlGPQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqHqbrlGPQ .row {
  align-items: center;
}
.cid-uqHqbrlGPQ img {
  border-radius: 2rem;
}
@media (min-width: 992px) {
  .cid-uqHqbrlGPQ .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uqHqbrlGPQ .mbr-section-title {
  color: #000000;
}
.cid-uqHqbrlGPQ .mbr-text,
.cid-uqHqbrlGPQ .mbr-section-btn {
  color: #000000;
}
.cid-uqHqbuGNtY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eff0ff;
  position: relative;
  overflow: hidden;
}
.cid-uqHqbuGNtY::before {
  content: '';
  position: absolute;
  top: 0;
  right: 4rem;
  width: 240px;
  height: 240px;
  border-radius: 100%;
  background-image: linear-gradient(180deg, #d1d1f7 -10%, transparent 70%);
}
.cid-uqHqbuGNtY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqHqbuGNtY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-uqHqbuGNtY .container {
    padding: 0 16px;
  }
}
.cid-uqHqbuGNtY .row {
  justify-content: center;
  position: relative;
  z-index: 1;
}
.cid-uqHqbuGNtY .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-uqHqbuGNtY .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uqHqbuGNtY .mbr-section-title {
  color: #000000;
}
.cid-uqHqbuGNtY .mbr-text {
  color: #000000;
}
.cid-uqHqbxOCBm {
  padding-top: 8rem;
  padding-bottom: 8rem;
  overflow: hidden;
  background-color: #eff0ff;
}
.cid-uqHqbxOCBm .image__block:before {
  content: "";
  position: absolute;
  top: -128px;
  left: 205px;
  width: 100vw;
  height: calc(100% + 260px);
  background-color: #d1d1f7;
}
.cid-uqHqbxOCBm .date__block {
  margin-top: 88px;
  margin-bottom: 16px;
}
.cid-uqHqbxOCBm .date__article {
  display: inline-block;
  margin: 0;
  padding: 0 7.5px;
  color: #ff9966;
}
.cid-uqHqbxOCBm .dot {
  display: inline-block;
  vertical-align: super;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #46877e;
}
.cid-uqHqbxOCBm .date__d {
  display: inline-block;
  margin: 0;
  padding: 0 7.5px;
  color: #689bb2;
}
.cid-uqHqbxOCBm .mbr-section-title {
  margin-bottom: 28px;
}
.cid-uqHqbxOCBm .mbr-text {
  margin-bottom: 23px;
}
.cid-uqHqbxOCBm .link {
  display: block;
  margin-bottom: 0;
  white-space: nowrap;
}
.cid-uqHqbxOCBm .link a {
  font-weight: 700;
}
.cid-uqHqbxOCBm .link span {
  display: inline-block !important;
  transition: all 0.3s ease;
  margin-left: 13px;
}
.cid-uqHqbxOCBm .link:hover span {
  transform: translateX(9px);
}
.cid-uqHqbxOCBm .image__block {
  position: relative;
}
.cid-uqHqbxOCBm .image {
  width: 100%;
  height: 575px;
  position: relative;
}
.cid-uqHqbxOCBm .image:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #bbbbbb;
  z-index: 1;
}
.cid-uqHqbxOCBm .image img {
  position: absolute;
  width: 50%;
  height: 80%;
  top: 60px;
  left: 50%;
  z-index: 5;
  transform: translatex(-50%);
  border-radius: 50%;
  max-height: 575px;
  object-fit: cover;
  border: 4px solid #d1d1f7;
}
@media (max-width: 991px) {
  .cid-uqHqbxOCBm .date__block {
    margin-top: 0;
    margin-bottom: 14px;
  }
  .cid-uqHqbxOCBm .mbr-section-title {
    margin-bottom: 15px;
  }
  .cid-uqHqbxOCBm .mbr-text {
    margin-bottom: 12px;
  }
  .cid-uqHqbxOCBm .image__block {
    margin-top: 60px;
  }
  .cid-uqHqbxOCBm .image__block:before {
    top: -50px;
    left: 70px;
    height: calc(100% + 150px);
  }
}
@media (max-width: 767px) {
  .cid-uqHqbxOCBm .image {
    height: 460px;
  }
  .cid-uqHqbxOCBm .image img {
    top: 45px;
    width: 60%;
  }
}
@media (max-width: 575px) {
  .cid-uqHqbxOCBm .image {
    height: 420px;
  }
  .cid-uqHqbxOCBm .image img {
    top: 40px;
    width: 60%;
  }
}
@media (max-width: 380px) {
  .cid-uqHqbxOCBm .image {
    height: 300px;
  }
  .cid-uqHqbxOCBm .image img {
    top: 30px;
    width: 60%;
  }
}
.cid-uqHqbxOCBm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqHqbxOCBm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqHqbxOCBm .mbr-text,
.cid-uqHqbxOCBm .link {
  color: #000000;
}
.cid-uqHqbxOCBm .mbr-section-title,
.cid-uqHqbxOCBm .date__block {
  color: #000000;
  text-align: center;
}
.cid-uqHqbAQ9pf {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d1d1f7;
}
.cid-uqHqbAQ9pf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqHqbAQ9pf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqHqbAQ9pf img {
  border-radius: 2rem;
}
@media (max-width: 991px) {
  .cid-uqHqbAQ9pf img {
    margin-bottom: 2rem;
  }
}
.cid-uqHqbAQ9pf .card-wrapper {
  display: flex;
  margin: auto;
}
@media (max-width: 991px) {
  .cid-uqHqbAQ9pf .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (min-width: 1400px) {
  .cid-uqHqbAQ9pf .card-wrapper {
    max-width: 450px;
  }
}
.cid-uqHqbAQ9pf .mbr-iconfont {
  font-size: 1.5rem;
  background: #2b1c50;
  min-width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  margin-right: 1.5rem;
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .cid-uqHqbAQ9pf .mbr-iconfont {
    font-size: 1rem;
    margin-right: 1rem;
    margin-top: 1rem;
  }
}
.cid-uqHqbAQ9pf .card-text {
  color: #000000;
}
.cid-uqHqbDBcED {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eff0ff;
  position: relative;
  overflow: hidden;
}
.cid-uqHqbDBcED::before {
  content: '';
  position: absolute;
  top: 0;
  right: 4rem;
  width: 240px;
  height: 240px;
  border-radius: 100%;
  background-image: linear-gradient(180deg, #eff0ff -10%, transparent 70%);
}
.cid-uqHqbDBcED .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqHqbDBcED .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-uqHqbDBcED .container {
    padding: 0 16px;
  }
}
.cid-uqHqbDBcED .row {
  justify-content: center;
  position: relative;
  z-index: 1;
}
.cid-uqHqbDBcED .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-uqHqbDBcED .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uqHqbDBcED .mbr-section-title {
  color: #000000;
}
.cid-uqHqbDBcED .mbr-text {
  color: #000000;
}
.cid-uqHqbGQXXg {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d1d1f7;
}
.cid-uqHqbGQXXg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqHqbGQXXg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqHqbGQXXg .container-fluid {
  padding: 0 60px;
}
@media (max-width: 1440px) {
  .cid-uqHqbGQXXg .container-fluid {
    padding: 0 42px;
  }
}
@media (max-width: 992px) {
  .cid-uqHqbGQXXg .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uqHqbGQXXg .container {
    padding: 0 16px;
  }
}
.cid-uqHqbGQXXg .title-wrapper .mbr-section-title {
  margin-bottom: 96px;
}
@media (max-width: 992px) {
  .cid-uqHqbGQXXg .title-wrapper .mbr-section-title {
    margin-bottom: 48px;
  }
}
.cid-uqHqbGQXXg .panel-group .card {
  border-radius: 0 !important;
  padding: 24px 0;
  border-bottom: 1px solid #c1c1c1;
}
.cid-uqHqbGQXXg .panel-group .card:first-child {
  border-top: 1px solid #c1c1c1;
}
.cid-uqHqbGQXXg .panel-group .card .card-header {
  padding: 0;
  border: none;
  background-color: transparent;
}
.cid-uqHqbGQXXg .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uqHqbGQXXg .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  transform: rotate(135deg);
}
.cid-uqHqbGQXXg .panel-group .card .card-header .panel-title .panel-wrap {
  display: flex;
  align-items: center;
  width: 80%;
}
@media (max-width: 992px) {
  .cid-uqHqbGQXXg .panel-group .card .card-header .panel-title .panel-wrap {
    width: 100%;
  }
}
.cid-uqHqbGQXXg .panel-group .card .card-header .panel-title .panel-wrap .panel-number {
  min-width: 210px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uqHqbGQXXg .panel-group .card .card-header .panel-title .panel-wrap .panel-number {
    display: none;
  }
}
.cid-uqHqbGQXXg .panel-group .card .card-header .panel-title .panel-wrap .panel-title-edit {
  width: 100%;
  margin-bottom: 0;
}
.cid-uqHqbGQXXg .panel-group .card .card-header .panel-title .icon-wrapper {
  margin-left: 16px;
}
.cid-uqHqbGQXXg .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  font-size: 32px;
  color: #1c1c1c;
  transition: all 0.3s ease-in-out;
}
.cid-uqHqbGQXXg .panel-group .card .panel-collapse .panel-body {
  display: flex;
  padding-top: 16px;
}
.cid-uqHqbGQXXg .panel-group .card .panel-collapse .panel-body .panel-padding {
  min-width: 210px;
}
@media (max-width: 992px) {
  .cid-uqHqbGQXXg .panel-group .card .panel-collapse .panel-body .panel-padding {
    display: none;
  }
}
.cid-uqHqbGQXXg .panel-group .card .panel-collapse .panel-body .panel-text {
  width: 60%;
  margin-bottom: 0;
  opacity: .7;
}
@media (max-width: 768px) {
  .cid-uqHqbGQXXg .panel-group .card .panel-collapse .panel-body .panel-text {
    width: 80%;
  }
}
.cid-uqHqbGQXXg .mbr-section-title {
  color: #1c1c1c;
}
.cid-uqHqbGQXXg .panel-number {
  color: #1c1c1c;
}
.cid-uqHqbGQXXg .panel-title-edit {
  color: #1c1c1c;
}
.cid-uqHqbGQXXg .panel-text {
  color: #1c1c1c;
}
.cid-uqHqbKuMKP {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eff0ff;
  position: relative;
  overflow: hidden;
}
.cid-uqHqbKuMKP::before {
  content: '';
  position: absolute;
  top: 0;
  right: 4rem;
  width: 240px;
  height: 240px;
  border-radius: 100%;
  background-image: linear-gradient(180deg, #eff0ff -10%, transparent 70%);
}
.cid-uqHqbKuMKP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqHqbKuMKP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-uqHqbKuMKP .container {
    padding: 0 16px;
  }
}
.cid-uqHqbKuMKP .row {
  justify-content: center;
  position: relative;
  z-index: 1;
}
.cid-uqHqbKuMKP .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-uqHqbKuMKP .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uqHqbKuMKP .mbr-section-title {
  color: #000000;
}
.cid-uqHqbKuMKP .mbr-text {
  color: #000000;
}
.cid-uqHqbNSE2j {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #eff0ff;
}
.cid-uqHqbNSE2j .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqHqbNSE2j .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqHqbNSE2j ul {
  list-style: none;
}
.cid-uqHqbNSE2j li {
  padding-bottom: 0.5rem;
}
.cid-uqHqbNSE2j ul li::before {
  content: "\2022";
  color: #fd290a;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1rem;
}
.cid-uqHqbNSE2j .list-group-item {
  color: #ff6666;
}
.cid-uqHqbNSE2j .plan-body {
  padding-bottom: 2rem;
}
.cid-uqHqbNSE2j .card1 {
  background: #d1d1f7;
}
@media (min-width: 767px) {
  .cid-uqHqbNSE2j .card1 {
    transform: translateX(2rem);
  }
}
.cid-uqHqbNSE2j .card2 {
  background: #ffffff;
}
@media (min-width: 767px) {
  .cid-uqHqbNSE2j .card2 {
    transform: translateX(-2rem);
  }
}
.cid-uqHqbNSE2j .plan-header {
  padding-top: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uqHqbNSE2j .price {
  color: #fd290a;
}
.cid-uqHqbNSE2j .plan {
  word-break: break-word;
  padding: 3rem;
  border-radius: 3rem;
  box-shadow: 0 0 20px 0 lightgray;
}
.cid-uqHqbNSE2j .plan .list-group-item {
  position: relative;
  justify-content: center;
  border: 0;
}
@media (max-width: 992px) {
  .cid-uqHqbNSE2j .plan {
    padding: 1rem 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uqHqbNSE2j .plan {
    margin-bottom: 2rem;
  }
}
.cid-uqHqbNSE2j .mbr-text UL {
  text-align: left;
}
.cid-uqHqbNSE2j .mbr-text {
  color: #726c89;
}
.cid-uqHqbNSE2j .price-term {
  color: #1f357f;
}
.cid-uqHqbNSE2j .title {
  color: #1b224b;
}
.cid-uqHqbRhR5Z {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eff0ff;
  position: relative;
  overflow: hidden;
}
.cid-uqHqbRhR5Z::before {
  content: '';
  position: absolute;
  top: 0;
  right: 4rem;
  width: 240px;
  height: 240px;
  border-radius: 100%;
  background-image: linear-gradient(180deg, #d1d1f7 -10%, transparent 70%);
}
.cid-uqHqbRhR5Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqHqbRhR5Z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-uqHqbRhR5Z .container {
    padding: 0 16px;
  }
}
.cid-uqHqbRhR5Z .row {
  justify-content: center;
  position: relative;
  z-index: 1;
}
.cid-uqHqbRhR5Z .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-uqHqbRhR5Z .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uqHqbRhR5Z .mbr-section-title {
  color: #000000;
}
.cid-uqHqbRhR5Z .mbr-text {
  color: #000000;
}
.cid-uqHqbTiGDC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #d1d1f7;
}
.cid-uqHqbTiGDC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqHqbTiGDC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqHqbTiGDC .map-wrapper {
  height: 100%;
}
.cid-uqHqbTiGDC .card-wrapper {
  border: 1px solid #fd290a;
  padding: 3rem 2.25rem;
  background: #eff0ff;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-uqHqbTiGDC .card-wrapper {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uqHqbTiGDC .card-wrapper {
    padding: 2rem 1.5rem;
  }
}
@media (max-width: 992px) {
  .cid-uqHqbTiGDC .row .map-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uqHqbTiGDC .row .map-wrapper {
    margin-top: 1rem;
  }
}
.cid-uqHqbTiGDC .google-map {
  height: 100%;
  position: relative;
}
.cid-uqHqbTiGDC .google-map iframe {
  height: 100%;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uqHqbTiGDC .google-map iframe {
    min-height: 350px;
  }
}
.cid-uqHqbTiGDC .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-uqHqbTiGDC .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uqHqbTiGDC .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uqHqbTiGDC ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-uqHqbTiGDC .content-head {
  max-width: 800px;
}
.cid-uqHqbTiGDC .mbr-section-title {
  color: #000000;
}
.cid-uqHqbTiGDC .cardTitle {
  color: #221b35;
}
.cid-uqHqbTiGDC .list,
.cid-uqHqbTiGDC .item-wrap {
  color: #221b35;
}
.cid-uqHqbVmXbM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eff0ff;
}
.cid-uqHqbVmXbM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqHqbVmXbM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqHqbVmXbM .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uqHqbVmXbM .container-fluid {
    padding: 0 20px;
  }
}
.cid-uqHqbVmXbM .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uqHqbVmXbM .container {
    padding: 0 20px;
  }
}
.cid-uqHqbVmXbM .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uqHqbVmXbM .title-wrapper .mbr-section-title {
    margin-bottom: 50px;
  }
}
.cid-uqHqbVmXbM .card-wrap .panel-group {
  padding: 64px;
  border-radius: 0;
  border: 2px solid #d7d7d7;
}
@media (max-width: 992px) {
  .cid-uqHqbVmXbM .card-wrap .panel-group {
    padding: 50px 20px;
  }
}
.cid-uqHqbVmXbM .card-wrap .panel-group .card {
  border-bottom: 1px solid #d7d7d7;
  border-radius: 0;
}
.cid-uqHqbVmXbM .card-wrap .panel-group .card .card-header {
  background-color: transparent;
  border-bottom: none;
  padding: 20px 0;
}
@media (max-width: 768px) {
  .cid-uqHqbVmXbM .card-wrap .panel-group .card .card-header {
    padding: 15px 0;
  }
}
.cid-uqHqbVmXbM .card-wrap .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cid-uqHqbVmXbM .card-wrap .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(90deg);
  background-color: #d7d7d7;
}
.cid-uqHqbVmXbM .card-wrap .panel-group .card .card-header .panel-title:hover .mbr-iconfont,
.cid-uqHqbVmXbM .card-wrap .panel-group .card .card-header .panel-title:focus .mbr-iconfont {
  background-color: #d7d7d7;
}
.cid-uqHqbVmXbM .card-wrap .panel-group .card .card-header .panel-title .panel-title-edit {
  margin: 0;
}
.cid-uqHqbVmXbM .card-wrap .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 32px;
  max-width: 32px;
  height: 32px;
  border-radius: 100%;
  font-size: 16px;
  color: #1d1d1d;
  transition: all 0.3s ease-in-out;
  margin-left: 10px;
}
.cid-uqHqbVmXbM .card-wrap .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 32px;
}
.cid-uqHqbVmXbM .mbr-section-title {
  color: #1d1d1d;
}
.cid-uqHqbVmXbM .panel-title-edit {
  color: #1d1d1d;
}
.cid-uqHqbVmXbM .panel-text {
  color: #1d1d1d;
}
.cid-uqHqbXqN0A {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #181818;
}
.cid-uqHqbXqN0A .list {
  list-style: none;
  padding-left: 0;
  font-weight: 300;
  color: #fff;
}
@media (max-width: 991px) {
  .cid-uqHqbXqN0A .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uqHqbXqN0A .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 576px) {
  .cid-uqHqbXqN0A .list {
    margin-bottom: 30px;
  }
}
.cid-uqHqbXqN0A .item-wrap {
  margin-bottom: 15px;
}
@media (max-width: 576px) {
  .cid-uqHqbXqN0A .item-wrap {
    margin-bottom: 0;
  }
}
@media (max-width: 991px) {
  .cid-uqHqbXqN0A div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uqHqbXqN0A .copyright {
  color: #ffffff;
}
.cid-uqHqbXqN0A .mbr-section-subtitle {
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-uqHqbXqN0A .mbr-section-subtitle {
    margin-bottom: 10px;
  }
}
.cid-uqHqbXqN0A .footer {
  padding-top: 66px;
  padding-bottom: 50px;
  border-top: 1px solid #868c90;
  border-bottom: 1px solid #868c90;
}
@media (max-width: 768px) {
  .cid-uqHqbXqN0A .footer {
    padding-top: 48px;
    padding-bottom: 36px;
  }
}
@media (max-width: 767px) {
  .cid-uqHqbXqN0A .footer {
    text-align: center !important;
  }
}
@media (max-width: 576px) {
  .cid-uqHqbXqN0A .footer-logo {
    margin: 0 auto;
  }
}
.cid-uqHlw4o5GD {
  background-color: transparent;
}
.cid-uqHlw4o5GD .navbar-dropdown {
  background-color: #eff0ff !important;
  padding: 0;
}
.cid-uqHlw4o5GD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #eff0ff !important;
  background: #eff0ff;
}
.cid-uqHlw4o5GD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uqHlw4o5GD .navbar {
  border-bottom: 2px solid #150764 !important;
  padding-left: 120px !important;
  padding-right: 120px !important;
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 1640px) {
  .cid-uqHlw4o5GD .navbar {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
}
@media (max-width: 992px) {
  .cid-uqHlw4o5GD .navbar {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
@media (max-width: 992px) {
  .cid-uqHlw4o5GD .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uqHlw4o5GD .navbar.opened {
  transition: all 0.3s;
}
.cid-uqHlw4o5GD .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uqHlw4o5GD .navbar .navbar-logo img {
  max-width: 62px;
  min-height: 62px;
  object-fit: contain;
  border-radius: .75rem !important;
}
.cid-uqHlw4o5GD .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uqHlw4o5GD .navbar.collapsed {
  justify-content: center;
}
.cid-uqHlw4o5GD .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uqHlw4o5GD .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uqHlw4o5GD .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uqHlw4o5GD .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uqHlw4o5GD .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uqHlw4o5GD .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uqHlw4o5GD .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uqHlw4o5GD .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uqHlw4o5GD .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-uqHlw4o5GD .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uqHlw4o5GD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uqHlw4o5GD .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uqHlw4o5GD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uqHlw4o5GD .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uqHlw4o5GD .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uqHlw4o5GD .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uqHlw4o5GD .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uqHlw4o5GD .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uqHlw4o5GD .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uqHlw4o5GD .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uqHlw4o5GD .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uqHlw4o5GD .navbar.navbar-short {
  min-height: 60px;
}
.cid-uqHlw4o5GD .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uqHlw4o5GD .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uqHlw4o5GD .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uqHlw4o5GD .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uqHlw4o5GD .menu_box .navbar.opened,
  .cid-uqHlw4o5GD .menu_box .navbar-collapse {
    background-color: #eff0ff !important;
    transition: all 0s ease 0s;
  }
}
.cid-uqHlw4o5GD .navbar-dropdown {
  position: relative !important;
}
.cid-uqHlw4o5GD .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
  margin-left: 24px;
}
@media (max-width: 991px) {
  .cid-uqHlw4o5GD .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uqHlw4o5GD .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uqHlw4o5GD .mbr-section-btn-main .btn {
  margin: 8px;
  min-width: 120px;
  white-space: nowrap;
}
.cid-uqHlw4o5GD .btn {
  min-height: auto;
  margin-top: 0;
}
.cid-uqHlw4o5GD .nav-item {
  margin: 4px 0;
}
@media (min-width: 992px) {
  .cid-uqHlw4o5GD .nav-item {
    margin: 4px 40px 4px 0;
  }
}
@media (min-width: 992px) {
  .cid-uqHlw4o5GD .nav-item {
    margin: 4px 0;
  }
}
@media (max-width: 991px) {
  .cid-uqHlw4o5GD .nav-item {
    margin: 0 !important;
  }
}
.cid-uqHlw4o5GD .nav-item .nav-link {
  display: flex;
  justify-content: center;
  padding: 12px;
  transition: all 0.3s ease-out;
  position: relative;
  opacity: 1;
}
@media (max-width: 992px) {
  .cid-uqHlw4o5GD .nav-item .nav-link {
    justify-content: flex-start;
  }
}
.cid-uqHlw4o5GD .nav-item .nav-link:hover,
.cid-uqHlw4o5GD .nav-item .nav-link:focus {
  color: #ffffff !important;
}
.cid-uqHlw4o5GD .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uqHlw4o5GD .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uqHlw4o5GD .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uqHlw4o5GD .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uqHlw4o5GD .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-uqHlw4o5GD .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uqHlw4o5GD .offcanvas_box {
    display: none;
  }
}
.cid-uqHlw4o5GD .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uqHlw4o5GD .nav-dropdown .link {
  font-weight: 700 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uqHlw4o5GD .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uqHlw4o5GD .container {
  display: flex;
  margin: auto;
}
.cid-uqHlw4o5GD .iconfont-wrapper {
  color: #150764;
  font-size: 26px;
  margin-right: 10px;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}
.cid-uqHlw4o5GD .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uqHlw4o5GD .iconfont-wrapper:hover .mbr-iconfont {
  opacity: .7;
}
@media (min-width: 992px) {
  .cid-uqHlw4o5GD .navbar-nav {
    margin: 0;
  }
}
.cid-uqHlw4o5GD .dropdown-menu,
.cid-uqHlw4o5GD .navbar.opened {
  background-color: false !important;
}
.cid-uqHlw4o5GD .nav-item:focus,
.cid-uqHlw4o5GD .nav-link:focus {
  outline: none;
}
.cid-uqHlw4o5GD .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uqHlw4o5GD .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uqHlw4o5GD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uqHlw4o5GD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uqHlw4o5GD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uqHlw4o5GD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uqHlw4o5GD .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-uqHlw4o5GD .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-uqHlw4o5GD .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uqHlw4o5GD .dropdown-item.active,
.cid-uqHlw4o5GD .dropdown-item:active {
  background-color: transparent;
}
.cid-uqHlw4o5GD .navbar-expand-lg .navbar-nav .nav-link {
  padding: 6px 16px !important;
}
@media (max-width: 992px) {
  .cid-uqHlw4o5GD .navbar-expand-lg .navbar-nav .nav-link {
    padding: 6px 8px !important;
  }
}
.cid-uqHlw4o5GD .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uqHlw4o5GD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uqHlw4o5GD .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uqHlw4o5GD ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uqHlw4o5GD .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uqHlw4o5GD button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #eff0ff;
  background: #f4f2ef;
}
.cid-uqHlw4o5GD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #150764;
}
.cid-uqHlw4o5GD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uqHlw4o5GD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uqHlw4o5GD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uqHlw4o5GD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uqHlw4o5GD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uqHlw4o5GD nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uqHlw4o5GD nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uqHlw4o5GD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uqHlw4o5GD a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uqHlw4o5GD .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uqHlw4o5GD .navbar {
    height: 70px;
  }
  .cid-uqHlw4o5GD .navbar.opened {
    height: auto;
  }
  .cid-uqHlw4o5GD .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uqHlw4o5GD .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
.cid-uqHlw4o5GD .navbar-caption:hover {
  color: #fd290a;
}
@media (min-width: 992px) {
  .cid-uqHlw4o5GD .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uqHlw4o5GD .text_widget {
  margin-bottom: 32px;
}
.cid-uqHlw4o5GD .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uqHlw4o5GD .text_widget a:hover,
.cid-uqHlw4o5GD .text_widget a:focus {
  opacity: .6;
}
@media (min-width: 992px) {
  .cid-uqHlw4o5GD .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: flex-start;
    min-width: 200px;
    padding-left: 48px;
  }
}
.cid-uqHlw4o5GD .navbar-caption {
  color: #150764;
}
.cid-uqHlw4o5GD .mbr-section-subtitle,
.cid-uqHlw4o5GD .text_widget,
.cid-uqHlw4o5GD .mbr-section-btn {
  text-align: center;
}
.cid-uqHlw4o5GD a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uqHlw6f31G {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #eff0ff;
}
.cid-uqHlw6f31G .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqHlw6f31G .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqHlw6f31G .btn {
  padding: 1.5rem 5rem;
  border: 0 !important;
}
@media (max-width: 767px) {
  .cid-uqHlw6f31G .btn {
    padding: 1.5rem 3rem;
  }
}
.cid-uqHlw6f31G .row {
  align-items: center;
}
.cid-uqHlw6f31G img {
  border-radius: 2rem;
}
.cid-uqHlw6f31G .image-wrapper {
  background: #d1d1f7;
  padding: 4rem 5rem;
  border-radius: 2rem;
}
@media (max-width: 991px) {
  .cid-uqHlw6f31G .image-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uqHlw6f31G .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uqHlw6f31G .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uqHlw6f31G .mbr-section-title {
  color: #000000;
}
.cid-uqHlw6f31G .mbr-text,
.cid-uqHlw6f31G .mbr-section-btn {
  color: #000000;
}
.cid-uqHlw7Dlq5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d1d1f7;
}
.cid-uqHlw7Dlq5 .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-uqHlw7Dlq5 .counter-container ul li {
  margin-bottom: 2rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-uqHlw7Dlq5 .counter-container ul li:before {
  position: absolute;
  top: -8px;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: currentColor;
  background-color: #eff0ff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-uqHlw7Dlq5 .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-uqHlw7Dlq5 .mbr-text {
  color: #000000;
}
.cid-uqHlw8HILJ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eff0ff;
  position: relative;
  overflow: hidden;
}
.cid-uqHlw8HILJ::before {
  content: '';
  position: absolute;
  top: 0;
  right: 4rem;
  width: 240px;
  height: 240px;
  border-radius: 100%;
  background-image: linear-gradient(180deg, #d1d1f7 -10%, transparent 70%);
}
.cid-uqHlw8HILJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqHlw8HILJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-uqHlw8HILJ .container {
    padding: 0 16px;
  }
}
.cid-uqHlw8HILJ .row {
  justify-content: center;
  position: relative;
  z-index: 1;
}
.cid-uqHlw8HILJ .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-uqHlw8HILJ .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uqHlw8HILJ .mbr-section-title {
  color: #f1634f;
}
.cid-uqHlw8HILJ .mbr-text {
  color: #000000;
}
.cid-uqHlw9KTww {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #eff0ff;
}
.cid-uqHlw9KTww .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqHlw9KTww .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqHlw9KTww .row {
  align-items: center;
}
.cid-uqHlw9KTww img {
  border-radius: 2rem;
}
@media (min-width: 992px) {
  .cid-uqHlw9KTww .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uqHlw9KTww .mbr-section-title {
  color: #000000;
}
.cid-uqHlw9KTww .mbr-text,
.cid-uqHlw9KTww .mbr-section-btn {
  color: #000000;
}
.cid-uqHlwaLwUP {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #d1d1f7;
}
.cid-uqHlwaLwUP .card-wrapper {
  background: #ffffff;
}
@media (max-width: 992px) {
  .cid-uqHlwaLwUP .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uqHlwaLwUP .mbr-iconfont {
  display: flex;
  font-size: 1.5rem;
  color: #ffffff;
  background: #252434;
  width: 50px;
  height: 50px;
  transition: all 0.3s;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
}
.cid-uqHlwaLwUP .row {
  justify-content: center;
}
.cid-uqHlwaLwUP .card-box {
  display: flex;
  align-items: center;
}
.cid-uqHlwaLwUP .card-box .iconfont-wrapper {
  margin-right: 1.5rem;
}
@media (max-width: 767px) {
  .cid-uqHlwaLwUP .card-box {
    flex-direction: column;
  }
  .cid-uqHlwaLwUP .card-box .iconfont-wrapper {
    margin-right: 0rem;
    margin-bottom: 1.5rem;
  }
}
.cid-uqHlwaLwUP .card-link:hover a {
  background-image: none !important;
}
.cid-uqHlwaLwUP .mbr-section-subtitle {
  color: #777777;
}
.cid-uqHlwaLwUP .card-text {
  color: #777777;
}
.cid-uqHlwceyUp {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eff0ff;
  position: relative;
  overflow: hidden;
}
.cid-uqHlwceyUp::before {
  content: '';
  position: absolute;
  top: 0;
  right: 4rem;
  width: 240px;
  height: 240px;
  border-radius: 100%;
  background-image: linear-gradient(180deg, #d1d1f7 -10%, transparent 70%);
}
.cid-uqHlwceyUp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqHlwceyUp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-uqHlwceyUp .container {
    padding: 0 16px;
  }
}
.cid-uqHlwceyUp .row {
  justify-content: center;
  position: relative;
  z-index: 1;
}
.cid-uqHlwceyUp .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-uqHlwceyUp .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uqHlwceyUp .mbr-section-title {
  color: #000000;
}
.cid-uqHlwceyUp .mbr-text {
  color: #000000;
}
.cid-uqHlwdfwrj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d1d1f7;
}
.cid-uqHlwdfwrj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqHlwdfwrj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqHlwdfwrj img {
  border-radius: 2rem;
}
@media (max-width: 991px) {
  .cid-uqHlwdfwrj img {
    margin-bottom: 2rem;
  }
}
.cid-uqHlwdfwrj .card-wrapper {
  display: flex;
  margin: auto;
}
@media (max-width: 991px) {
  .cid-uqHlwdfwrj .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (min-width: 1400px) {
  .cid-uqHlwdfwrj .card-wrapper {
    max-width: 450px;
  }
}
.cid-uqHlwdfwrj .mbr-iconfont {
  font-size: 1.5rem;
  background: #2b1c50;
  min-width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  margin-right: 1.5rem;
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .cid-uqHlwdfwrj .mbr-iconfont {
    font-size: 1rem;
    margin-right: 1rem;
    margin-top: 1rem;
  }
}
.cid-uqHlwdfwrj .card-text {
  color: #000000;
}
.cid-uqHlwep2TQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eff0ff;
  position: relative;
  overflow: hidden;
}
.cid-uqHlwep2TQ::before {
  content: '';
  position: absolute;
  top: 0;
  right: 4rem;
  width: 240px;
  height: 240px;
  border-radius: 100%;
  background-image: linear-gradient(180deg, #e3f3ff -10%, transparent 70%);
}
.cid-uqHlwep2TQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqHlwep2TQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-uqHlwep2TQ .container {
    padding: 0 16px;
  }
}
.cid-uqHlwep2TQ .row {
  justify-content: center;
  position: relative;
  z-index: 1;
}
.cid-uqHlwep2TQ .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-uqHlwep2TQ .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uqHlwep2TQ .mbr-section-title {
  color: #000000;
}
.cid-uqHlwep2TQ .mbr-text {
  color: #000000;
}
.cid-uqHlwfyIsz {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d1d1f7;
}
.cid-uqHlwfyIsz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqHlwfyIsz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqHlwfyIsz .container-fluid {
  padding: 0 60px;
}
@media (max-width: 1440px) {
  .cid-uqHlwfyIsz .container-fluid {
    padding: 0 42px;
  }
}
@media (max-width: 992px) {
  .cid-uqHlwfyIsz .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uqHlwfyIsz .container {
    padding: 0 16px;
  }
}
.cid-uqHlwfyIsz .title-wrapper .mbr-section-title {
  margin-bottom: 96px;
}
@media (max-width: 992px) {
  .cid-uqHlwfyIsz .title-wrapper .mbr-section-title {
    margin-bottom: 48px;
  }
}
.cid-uqHlwfyIsz .panel-group .card {
  border-radius: 0 !important;
  padding: 24px 0;
  border-bottom: 1px solid #c1c1c1;
}
.cid-uqHlwfyIsz .panel-group .card:first-child {
  border-top: 1px solid #c1c1c1;
}
.cid-uqHlwfyIsz .panel-group .card .card-header {
  padding: 0;
  border: none;
  background-color: transparent;
}
.cid-uqHlwfyIsz .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uqHlwfyIsz .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  transform: rotate(135deg);
}
.cid-uqHlwfyIsz .panel-group .card .card-header .panel-title .panel-wrap {
  display: flex;
  align-items: center;
  width: 80%;
}
@media (max-width: 992px) {
  .cid-uqHlwfyIsz .panel-group .card .card-header .panel-title .panel-wrap {
    width: 100%;
  }
}
.cid-uqHlwfyIsz .panel-group .card .card-header .panel-title .panel-wrap .panel-number {
  min-width: 210px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uqHlwfyIsz .panel-group .card .card-header .panel-title .panel-wrap .panel-number {
    display: none;
  }
}
.cid-uqHlwfyIsz .panel-group .card .card-header .panel-title .panel-wrap .panel-title-edit {
  width: 100%;
  margin-bottom: 0;
}
.cid-uqHlwfyIsz .panel-group .card .card-header .panel-title .icon-wrapper {
  margin-left: 16px;
}
.cid-uqHlwfyIsz .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  font-size: 32px;
  color: #1c1c1c;
  transition: all 0.3s ease-in-out;
}
.cid-uqHlwfyIsz .panel-group .card .panel-collapse .panel-body {
  display: flex;
  padding-top: 16px;
}
.cid-uqHlwfyIsz .panel-group .card .panel-collapse .panel-body .panel-padding {
  min-width: 210px;
}
@media (max-width: 992px) {
  .cid-uqHlwfyIsz .panel-group .card .panel-collapse .panel-body .panel-padding {
    display: none;
  }
}
.cid-uqHlwfyIsz .panel-group .card .panel-collapse .panel-body .panel-text {
  width: 60%;
  margin-bottom: 0;
  opacity: .7;
}
@media (max-width: 768px) {
  .cid-uqHlwfyIsz .panel-group .card .panel-collapse .panel-body .panel-text {
    width: 80%;
  }
}
.cid-uqHlwfyIsz .mbr-section-title {
  color: #1c1c1c;
}
.cid-uqHlwfyIsz .panel-number {
  color: #1c1c1c;
}
.cid-uqHlwfyIsz .panel-title-edit {
  color: #1c1c1c;
}
.cid-uqHlwfyIsz .panel-text {
  color: #1c1c1c;
}
.cid-uqHlwh14PF {
  padding-top: 8rem;
  padding-bottom: 8rem;
  overflow: hidden;
  background-color: #eff0ff;
}
.cid-uqHlwh14PF .image__block:before {
  content: "";
  position: absolute;
  top: -128px;
  left: 205px;
  width: 100vw;
  height: calc(100% + 260px);
  background-color: #d1d1f7;
}
.cid-uqHlwh14PF .date__block {
  margin-top: 88px;
  margin-bottom: 16px;
}
.cid-uqHlwh14PF .date__article {
  display: inline-block;
  margin: 0;
  padding: 0 7.5px;
  color: #ff9966;
}
.cid-uqHlwh14PF .dot {
  display: inline-block;
  vertical-align: super;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #46877e;
}
.cid-uqHlwh14PF .date__d {
  display: inline-block;
  margin: 0;
  padding: 0 7.5px;
  color: #689bb2;
}
.cid-uqHlwh14PF .mbr-section-title {
  margin-bottom: 28px;
}
.cid-uqHlwh14PF .mbr-text {
  margin-bottom: 23px;
}
.cid-uqHlwh14PF .link {
  display: block;
  margin-bottom: 0;
  white-space: nowrap;
}
.cid-uqHlwh14PF .link a {
  font-weight: 700;
}
.cid-uqHlwh14PF .link span {
  display: inline-block !important;
  transition: all 0.3s ease;
  margin-left: 13px;
}
.cid-uqHlwh14PF .link:hover span {
  transform: translateX(9px);
}
.cid-uqHlwh14PF .image__block {
  position: relative;
}
.cid-uqHlwh14PF .image {
  width: 100%;
  height: 575px;
  position: relative;
}
.cid-uqHlwh14PF .image:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #bbbbbb;
  z-index: 1;
}
.cid-uqHlwh14PF .image img {
  position: absolute;
  width: 50%;
  height: 80%;
  top: 60px;
  left: 50%;
  z-index: 5;
  transform: translatex(-50%);
  border-radius: 50%;
  max-height: 575px;
  object-fit: cover;
  border: 4px solid #d1d1f7;
}
@media (max-width: 991px) {
  .cid-uqHlwh14PF .date__block {
    margin-top: 0;
    margin-bottom: 14px;
  }
  .cid-uqHlwh14PF .mbr-section-title {
    margin-bottom: 15px;
  }
  .cid-uqHlwh14PF .mbr-text {
    margin-bottom: 12px;
  }
  .cid-uqHlwh14PF .image__block {
    margin-top: 60px;
  }
  .cid-uqHlwh14PF .image__block:before {
    top: -50px;
    left: 70px;
    height: calc(100% + 150px);
  }
}
@media (max-width: 767px) {
  .cid-uqHlwh14PF .image {
    height: 460px;
  }
  .cid-uqHlwh14PF .image img {
    top: 45px;
    width: 60%;
  }
}
@media (max-width: 575px) {
  .cid-uqHlwh14PF .image {
    height: 420px;
  }
  .cid-uqHlwh14PF .image img {
    top: 40px;
    width: 60%;
  }
}
@media (max-width: 380px) {
  .cid-uqHlwh14PF .image {
    height: 300px;
  }
  .cid-uqHlwh14PF .image img {
    top: 30px;
    width: 60%;
  }
}
.cid-uqHlwh14PF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqHlwh14PF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqHlwh14PF .mbr-text,
.cid-uqHlwh14PF .link {
  color: #000000;
}
.cid-uqHlwh14PF .mbr-section-title,
.cid-uqHlwh14PF .date__block {
  color: #000000;
  text-align: center;
}
.cid-uqHlwidwLq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eff0ff;
  position: relative;
  overflow: hidden;
}
.cid-uqHlwidwLq::before {
  content: '';
  position: absolute;
  top: 0;
  right: 4rem;
  width: 240px;
  height: 240px;
  border-radius: 100%;
  background-image: linear-gradient(180deg, #eff0ff -10%, transparent 70%);
}
.cid-uqHlwidwLq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqHlwidwLq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-uqHlwidwLq .container {
    padding: 0 16px;
  }
}
.cid-uqHlwidwLq .row {
  justify-content: center;
  position: relative;
  z-index: 1;
}
.cid-uqHlwidwLq .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-uqHlwidwLq .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uqHlwidwLq .mbr-section-title {
  color: #000000;
}
.cid-uqHlwidwLq .mbr-text {
  color: #000000;
}
.cid-uqHlwkiul1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #eff0ff;
}
.cid-uqHlwkiul1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqHlwkiul1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqHlwkiul1 ul {
  list-style: none;
}
.cid-uqHlwkiul1 li {
  padding-bottom: 0.5rem;
}
.cid-uqHlwkiul1 ul li::before {
  content: "\2022";
  color: #fd290a;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1rem;
}
.cid-uqHlwkiul1 .list-group-item {
  color: #ff6666;
}
.cid-uqHlwkiul1 .plan-body {
  padding-bottom: 2rem;
}
.cid-uqHlwkiul1 .card1 {
  background: #d1d1f7;
}
@media (min-width: 767px) {
  .cid-uqHlwkiul1 .card1 {
    transform: translateX(2rem);
  }
}
.cid-uqHlwkiul1 .card2 {
  background: #ffffff;
}
@media (min-width: 767px) {
  .cid-uqHlwkiul1 .card2 {
    transform: translateX(-2rem);
  }
}
.cid-uqHlwkiul1 .plan-header {
  padding-top: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uqHlwkiul1 .price {
  color: #fd290a;
}
.cid-uqHlwkiul1 .plan {
  word-break: break-word;
  padding: 3rem;
  border-radius: 3rem;
  box-shadow: 0 0 20px 0 lightgray;
}
.cid-uqHlwkiul1 .plan .list-group-item {
  position: relative;
  justify-content: center;
  border: 0;
}
@media (max-width: 992px) {
  .cid-uqHlwkiul1 .plan {
    padding: 1rem 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uqHlwkiul1 .plan {
    margin-bottom: 2rem;
  }
}
.cid-uqHlwkiul1 .mbr-text UL {
  text-align: left;
}
.cid-uqHlwkiul1 .mbr-text {
  color: #726c89;
}
.cid-uqHlwkiul1 .price-term {
  color: #1f357f;
}
.cid-uqHlwkiul1 .title {
  color: #1b224b;
}
.cid-uqHlwlX99v {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d1d1f7;
  position: relative;
  overflow: hidden;
}
.cid-uqHlwlX99v::before {
  content: '';
  position: absolute;
  top: 0;
  right: 4rem;
  width: 240px;
  height: 240px;
  border-radius: 100%;
  background-image: linear-gradient(180deg, #d1d1f7 -10%, transparent 70%);
}
.cid-uqHlwlX99v .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqHlwlX99v .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-uqHlwlX99v .container {
    padding: 0 16px;
  }
}
.cid-uqHlwlX99v .row {
  justify-content: center;
  position: relative;
  z-index: 1;
}
.cid-uqHlwlX99v .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-uqHlwlX99v .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uqHlwlX99v .mbr-section-title {
  color: #000000;
}
.cid-uqHlwlX99v .mbr-text {
  color: #000000;
}
.cid-uqHuSX0Zb6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eff0ff;
}
.cid-uqHuSX0Zb6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqHuSX0Zb6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqHuSX0Zb6 .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uqHuSX0Zb6 .container-fluid {
    padding: 0 20px;
  }
}
.cid-uqHuSX0Zb6 .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uqHuSX0Zb6 .container {
    padding: 0 20px;
  }
}
.cid-uqHuSX0Zb6 .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uqHuSX0Zb6 .title-wrapper .mbr-section-title {
    margin-bottom: 50px;
  }
}
.cid-uqHuSX0Zb6 .card-wrap .panel-group {
  padding: 64px;
  border-radius: 0;
  border: 2px solid #d7d7d7;
}
@media (max-width: 992px) {
  .cid-uqHuSX0Zb6 .card-wrap .panel-group {
    padding: 50px 20px;
  }
}
.cid-uqHuSX0Zb6 .card-wrap .panel-group .card {
  border-bottom: 1px solid #d7d7d7;
  border-radius: 0;
}
.cid-uqHuSX0Zb6 .card-wrap .panel-group .card .card-header {
  background-color: transparent;
  border-bottom: none;
  padding: 20px 0;
}
@media (max-width: 768px) {
  .cid-uqHuSX0Zb6 .card-wrap .panel-group .card .card-header {
    padding: 15px 0;
  }
}
.cid-uqHuSX0Zb6 .card-wrap .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cid-uqHuSX0Zb6 .card-wrap .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(90deg);
  background-color: #d7d7d7;
}
.cid-uqHuSX0Zb6 .card-wrap .panel-group .card .card-header .panel-title:hover .mbr-iconfont,
.cid-uqHuSX0Zb6 .card-wrap .panel-group .card .card-header .panel-title:focus .mbr-iconfont {
  background-color: #d7d7d7;
}
.cid-uqHuSX0Zb6 .card-wrap .panel-group .card .card-header .panel-title .panel-title-edit {
  margin: 0;
}
.cid-uqHuSX0Zb6 .card-wrap .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 32px;
  max-width: 32px;
  height: 32px;
  border-radius: 100%;
  font-size: 16px;
  color: #1d1d1d;
  transition: all 0.3s ease-in-out;
  margin-left: 10px;
}
.cid-uqHuSX0Zb6 .card-wrap .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 32px;
}
.cid-uqHuSX0Zb6 .mbr-section-title {
  color: #1d1d1d;
}
.cid-uqHuSX0Zb6 .panel-title-edit {
  color: #1d1d1d;
}
.cid-uqHuSX0Zb6 .panel-text {
  color: #1d1d1d;
}
.cid-uqHlwnAs2k {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #eff0ff;
}
.cid-uqHlwnAs2k .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqHlwnAs2k .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqHlwnAs2k .map-wrapper {
  height: 100%;
}
.cid-uqHlwnAs2k .card-wrapper {
  border: 1px solid #fd290a;
  padding: 3rem 2.25rem;
  background: #eff0ff;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-uqHlwnAs2k .card-wrapper {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uqHlwnAs2k .card-wrapper {
    padding: 2rem 1.5rem;
  }
}
@media (max-width: 992px) {
  .cid-uqHlwnAs2k .row .map-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uqHlwnAs2k .row .map-wrapper {
    margin-top: 1rem;
  }
}
.cid-uqHlwnAs2k .google-map {
  height: 100%;
  position: relative;
}
.cid-uqHlwnAs2k .google-map iframe {
  height: 100%;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uqHlwnAs2k .google-map iframe {
    min-height: 350px;
  }
}
.cid-uqHlwnAs2k .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-uqHlwnAs2k .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uqHlwnAs2k .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uqHlwnAs2k ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-uqHlwnAs2k .content-head {
  max-width: 800px;
}
.cid-uqHlwnAs2k .mbr-section-title {
  color: #000000;
}
.cid-uqHlwnAs2k .cardTitle {
  color: #221b35;
}
.cid-uqHlwnAs2k .list,
.cid-uqHlwnAs2k .item-wrap {
  color: #221b35;
}
.cid-uqHlwp43mK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #181818;
}
.cid-uqHlwp43mK .list {
  list-style: none;
  padding-left: 0;
  font-weight: 300;
  color: #fff;
}
@media (max-width: 991px) {
  .cid-uqHlwp43mK .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uqHlwp43mK .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 576px) {
  .cid-uqHlwp43mK .list {
    margin-bottom: 30px;
  }
}
.cid-uqHlwp43mK .item-wrap {
  margin-bottom: 15px;
}
@media (max-width: 576px) {
  .cid-uqHlwp43mK .item-wrap {
    margin-bottom: 0;
  }
}
@media (max-width: 991px) {
  .cid-uqHlwp43mK div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uqHlwp43mK .copyright {
  color: #ffffff;
}
.cid-uqHlwp43mK .mbr-section-subtitle {
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-uqHlwp43mK .mbr-section-subtitle {
    margin-bottom: 10px;
  }
}
.cid-uqHlwp43mK .footer {
  padding-top: 66px;
  padding-bottom: 50px;
  border-top: 1px solid #868c90;
  border-bottom: 1px solid #868c90;
}
@media (max-width: 768px) {
  .cid-uqHlwp43mK .footer {
    padding-top: 48px;
    padding-bottom: 36px;
  }
}
@media (max-width: 767px) {
  .cid-uqHlwp43mK .footer {
    text-align: center !important;
  }
}
@media (max-width: 576px) {
  .cid-uqHlwp43mK .footer-logo {
    margin: 0 auto;
  }
}
.cid-uqHuYe3CeY {
  background-color: transparent;
}
.cid-uqHuYe3CeY .navbar-dropdown {
  background-color: #eff0ff !important;
  padding: 0;
}
.cid-uqHuYe3CeY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #eff0ff !important;
  background: #eff0ff;
}
.cid-uqHuYe3CeY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uqHuYe3CeY .navbar {
  border-bottom: 2px solid #150764 !important;
  padding-left: 120px !important;
  padding-right: 120px !important;
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 1640px) {
  .cid-uqHuYe3CeY .navbar {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
}
@media (max-width: 992px) {
  .cid-uqHuYe3CeY .navbar {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
@media (max-width: 992px) {
  .cid-uqHuYe3CeY .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uqHuYe3CeY .navbar.opened {
  transition: all 0.3s;
}
.cid-uqHuYe3CeY .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uqHuYe3CeY .navbar .navbar-logo img {
  max-width: 62px;
  min-height: 62px;
  object-fit: contain;
  border-radius: .75rem !important;
}
.cid-uqHuYe3CeY .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uqHuYe3CeY .navbar.collapsed {
  justify-content: center;
}
.cid-uqHuYe3CeY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uqHuYe3CeY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uqHuYe3CeY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uqHuYe3CeY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uqHuYe3CeY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uqHuYe3CeY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uqHuYe3CeY .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uqHuYe3CeY .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uqHuYe3CeY .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-uqHuYe3CeY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uqHuYe3CeY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uqHuYe3CeY .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uqHuYe3CeY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uqHuYe3CeY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uqHuYe3CeY .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uqHuYe3CeY .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uqHuYe3CeY .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uqHuYe3CeY .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uqHuYe3CeY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uqHuYe3CeY .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uqHuYe3CeY .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uqHuYe3CeY .navbar.navbar-short {
  min-height: 60px;
}
.cid-uqHuYe3CeY .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uqHuYe3CeY .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uqHuYe3CeY .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uqHuYe3CeY .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uqHuYe3CeY .menu_box .navbar.opened,
  .cid-uqHuYe3CeY .menu_box .navbar-collapse {
    background-color: #eff0ff !important;
    transition: all 0s ease 0s;
  }
}
.cid-uqHuYe3CeY .navbar-dropdown {
  position: relative !important;
}
.cid-uqHuYe3CeY .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
  margin-left: 24px;
}
@media (max-width: 991px) {
  .cid-uqHuYe3CeY .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uqHuYe3CeY .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uqHuYe3CeY .mbr-section-btn-main .btn {
  margin: 8px;
  min-width: 120px;
  white-space: nowrap;
}
.cid-uqHuYe3CeY .btn {
  min-height: auto;
  margin-top: 0;
}
.cid-uqHuYe3CeY .nav-item {
  margin: 4px 0;
}
@media (min-width: 992px) {
  .cid-uqHuYe3CeY .nav-item {
    margin: 4px 40px 4px 0;
  }
}
@media (min-width: 992px) {
  .cid-uqHuYe3CeY .nav-item {
    margin: 4px 0;
  }
}
@media (max-width: 991px) {
  .cid-uqHuYe3CeY .nav-item {
    margin: 0 !important;
  }
}
.cid-uqHuYe3CeY .nav-item .nav-link {
  display: flex;
  justify-content: center;
  padding: 12px;
  transition: all 0.3s ease-out;
  position: relative;
  opacity: 1;
}
@media (max-width: 992px) {
  .cid-uqHuYe3CeY .nav-item .nav-link {
    justify-content: flex-start;
  }
}
.cid-uqHuYe3CeY .nav-item .nav-link:hover,
.cid-uqHuYe3CeY .nav-item .nav-link:focus {
  color: #ffffff !important;
}
.cid-uqHuYe3CeY .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uqHuYe3CeY .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uqHuYe3CeY .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uqHuYe3CeY .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uqHuYe3CeY .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-uqHuYe3CeY .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uqHuYe3CeY .offcanvas_box {
    display: none;
  }
}
.cid-uqHuYe3CeY .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uqHuYe3CeY .nav-dropdown .link {
  font-weight: 700 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uqHuYe3CeY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uqHuYe3CeY .container {
  display: flex;
  margin: auto;
}
.cid-uqHuYe3CeY .iconfont-wrapper {
  color: #150764;
  font-size: 26px;
  margin-right: 10px;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}
.cid-uqHuYe3CeY .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uqHuYe3CeY .iconfont-wrapper:hover .mbr-iconfont {
  opacity: .7;
}
@media (min-width: 992px) {
  .cid-uqHuYe3CeY .navbar-nav {
    margin: 0;
  }
}
.cid-uqHuYe3CeY .dropdown-menu,
.cid-uqHuYe3CeY .navbar.opened {
  background-color: false !important;
}
.cid-uqHuYe3CeY .nav-item:focus,
.cid-uqHuYe3CeY .nav-link:focus {
  outline: none;
}
.cid-uqHuYe3CeY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uqHuYe3CeY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uqHuYe3CeY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uqHuYe3CeY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uqHuYe3CeY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uqHuYe3CeY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uqHuYe3CeY .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-uqHuYe3CeY .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-uqHuYe3CeY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uqHuYe3CeY .dropdown-item.active,
.cid-uqHuYe3CeY .dropdown-item:active {
  background-color: transparent;
}
.cid-uqHuYe3CeY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 6px 16px !important;
}
@media (max-width: 992px) {
  .cid-uqHuYe3CeY .navbar-expand-lg .navbar-nav .nav-link {
    padding: 6px 8px !important;
  }
}
.cid-uqHuYe3CeY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uqHuYe3CeY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uqHuYe3CeY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uqHuYe3CeY ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uqHuYe3CeY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uqHuYe3CeY button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #eff0ff;
  background: #f4f2ef;
}
.cid-uqHuYe3CeY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #150764;
}
.cid-uqHuYe3CeY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uqHuYe3CeY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uqHuYe3CeY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uqHuYe3CeY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uqHuYe3CeY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uqHuYe3CeY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uqHuYe3CeY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uqHuYe3CeY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uqHuYe3CeY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uqHuYe3CeY .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uqHuYe3CeY .navbar {
    height: 70px;
  }
  .cid-uqHuYe3CeY .navbar.opened {
    height: auto;
  }
  .cid-uqHuYe3CeY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uqHuYe3CeY .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
.cid-uqHuYe3CeY .navbar-caption:hover {
  color: #fd290a;
}
@media (min-width: 992px) {
  .cid-uqHuYe3CeY .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uqHuYe3CeY .text_widget {
  margin-bottom: 32px;
}
.cid-uqHuYe3CeY .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uqHuYe3CeY .text_widget a:hover,
.cid-uqHuYe3CeY .text_widget a:focus {
  opacity: .6;
}
@media (min-width: 992px) {
  .cid-uqHuYe3CeY .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: flex-start;
    min-width: 200px;
    padding-left: 48px;
  }
}
.cid-uqHuYe3CeY .navbar-caption {
  color: #150764;
}
.cid-uqHuYe3CeY .mbr-section-subtitle,
.cid-uqHuYe3CeY .text_widget,
.cid-uqHuYe3CeY .mbr-section-btn {
  text-align: center;
}
.cid-uqHuYe3CeY a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uqHuYfqwev {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #eff0ff;
}
.cid-uqHuYfqwev .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqHuYfqwev .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqHuYfqwev .btn {
  padding: 1.5rem 5rem;
  border: 0 !important;
}
@media (max-width: 767px) {
  .cid-uqHuYfqwev .btn {
    padding: 1.5rem 3rem;
  }
}
.cid-uqHuYfqwev .row {
  align-items: center;
}
.cid-uqHuYfqwev img {
  border-radius: 2rem;
}
.cid-uqHuYfqwev .image-wrapper {
  background: #d1d1f7;
  padding: 4rem 5rem;
  border-radius: 2rem;
}
@media (max-width: 991px) {
  .cid-uqHuYfqwev .image-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uqHuYfqwev .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uqHuYfqwev .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uqHuYfqwev .mbr-section-title {
  color: #000000;
}
.cid-uqHuYfqwev .mbr-text,
.cid-uqHuYfqwev .mbr-section-btn {
  color: #000000;
}
.cid-uqHuYgVHmL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d1d1f7;
}
.cid-uqHuYgVHmL .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-uqHuYgVHmL .counter-container ul li {
  margin-bottom: 2rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-uqHuYgVHmL .counter-container ul li:before {
  position: absolute;
  top: -8px;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: currentColor;
  background-color: #eff0ff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-uqHuYgVHmL .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-uqHuYgVHmL .mbr-text {
  color: #000000;
}
.cid-uqHuYhZaf5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eff0ff;
  position: relative;
  overflow: hidden;
}
.cid-uqHuYhZaf5::before {
  content: '';
  position: absolute;
  top: 0;
  right: 4rem;
  width: 240px;
  height: 240px;
  border-radius: 100%;
  background-image: linear-gradient(180deg, #d1d1f7 -10%, transparent 70%);
}
.cid-uqHuYhZaf5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqHuYhZaf5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-uqHuYhZaf5 .container {
    padding: 0 16px;
  }
}
.cid-uqHuYhZaf5 .row {
  justify-content: center;
  position: relative;
  z-index: 1;
}
.cid-uqHuYhZaf5 .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-uqHuYhZaf5 .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uqHuYhZaf5 .mbr-section-title {
  color: #f1634f;
}
.cid-uqHuYhZaf5 .mbr-text {
  color: #000000;
}
.cid-uqHuYjdwuN {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #eff0ff;
}
.cid-uqHuYjdwuN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqHuYjdwuN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqHuYjdwuN .row {
  align-items: center;
}
.cid-uqHuYjdwuN img {
  border-radius: 2rem;
}
@media (min-width: 992px) {
  .cid-uqHuYjdwuN .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uqHuYjdwuN .mbr-section-title {
  color: #000000;
}
.cid-uqHuYjdwuN .mbr-text,
.cid-uqHuYjdwuN .mbr-section-btn {
  color: #000000;
}
.cid-uqHuYkoMla {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #d1d1f7;
}
.cid-uqHuYkoMla .card-wrapper {
  background: #ffffff;
}
@media (max-width: 992px) {
  .cid-uqHuYkoMla .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uqHuYkoMla .mbr-iconfont {
  display: flex;
  font-size: 1.5rem;
  color: #ffffff;
  background: #252434;
  width: 50px;
  height: 50px;
  transition: all 0.3s;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
}
.cid-uqHuYkoMla .row {
  justify-content: center;
}
.cid-uqHuYkoMla .card-box {
  display: flex;
  align-items: center;
}
.cid-uqHuYkoMla .card-box .iconfont-wrapper {
  margin-right: 1.5rem;
}
@media (max-width: 767px) {
  .cid-uqHuYkoMla .card-box {
    flex-direction: column;
  }
  .cid-uqHuYkoMla .card-box .iconfont-wrapper {
    margin-right: 0rem;
    margin-bottom: 1.5rem;
  }
}
.cid-uqHuYkoMla .card-link:hover a {
  background-image: none !important;
}
.cid-uqHuYkoMla .mbr-section-subtitle {
  color: #777777;
}
.cid-uqHuYkoMla .card-text {
  color: #777777;
}
.cid-uqHuYm0rqq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eff0ff;
  position: relative;
  overflow: hidden;
}
.cid-uqHuYm0rqq::before {
  content: '';
  position: absolute;
  top: 0;
  right: 4rem;
  width: 240px;
  height: 240px;
  border-radius: 100%;
  background-image: linear-gradient(180deg, #d1d1f7 -10%, transparent 70%);
}
.cid-uqHuYm0rqq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqHuYm0rqq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-uqHuYm0rqq .container {
    padding: 0 16px;
  }
}
.cid-uqHuYm0rqq .row {
  justify-content: center;
  position: relative;
  z-index: 1;
}
.cid-uqHuYm0rqq .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-uqHuYm0rqq .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uqHuYm0rqq .mbr-section-title {
  color: #000000;
}
.cid-uqHuYm0rqq .mbr-text {
  color: #000000;
}
.cid-uqHuYndCRW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d1d1f7;
}
.cid-uqHuYndCRW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqHuYndCRW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqHuYndCRW img {
  border-radius: 2rem;
}
@media (max-width: 991px) {
  .cid-uqHuYndCRW img {
    margin-bottom: 2rem;
  }
}
.cid-uqHuYndCRW .card-wrapper {
  display: flex;
  margin: auto;
}
@media (max-width: 991px) {
  .cid-uqHuYndCRW .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (min-width: 1400px) {
  .cid-uqHuYndCRW .card-wrapper {
    max-width: 450px;
  }
}
.cid-uqHuYndCRW .mbr-iconfont {
  font-size: 1.5rem;
  background: #2b1c50;
  min-width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  margin-right: 1.5rem;
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .cid-uqHuYndCRW .mbr-iconfont {
    font-size: 1rem;
    margin-right: 1rem;
    margin-top: 1rem;
  }
}
.cid-uqHuYndCRW .card-text {
  color: #000000;
}
.cid-uqHuYommd8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eff0ff;
  position: relative;
  overflow: hidden;
}
.cid-uqHuYommd8::before {
  content: '';
  position: absolute;
  top: 0;
  right: 4rem;
  width: 240px;
  height: 240px;
  border-radius: 100%;
  background-image: linear-gradient(180deg, #e3f3ff -10%, transparent 70%);
}
.cid-uqHuYommd8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqHuYommd8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-uqHuYommd8 .container {
    padding: 0 16px;
  }
}
.cid-uqHuYommd8 .row {
  justify-content: center;
  position: relative;
  z-index: 1;
}
.cid-uqHuYommd8 .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-uqHuYommd8 .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uqHuYommd8 .mbr-section-title {
  color: #000000;
}
.cid-uqHuYommd8 .mbr-text {
  color: #000000;
}
.cid-uqHuYpuOzp {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d1d1f7;
}
.cid-uqHuYpuOzp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqHuYpuOzp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqHuYpuOzp .container-fluid {
  padding: 0 60px;
}
@media (max-width: 1440px) {
  .cid-uqHuYpuOzp .container-fluid {
    padding: 0 42px;
  }
}
@media (max-width: 992px) {
  .cid-uqHuYpuOzp .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uqHuYpuOzp .container {
    padding: 0 16px;
  }
}
.cid-uqHuYpuOzp .title-wrapper .mbr-section-title {
  margin-bottom: 96px;
}
@media (max-width: 992px) {
  .cid-uqHuYpuOzp .title-wrapper .mbr-section-title {
    margin-bottom: 48px;
  }
}
.cid-uqHuYpuOzp .panel-group .card {
  border-radius: 0 !important;
  padding: 24px 0;
  border-bottom: 1px solid #c1c1c1;
}
.cid-uqHuYpuOzp .panel-group .card:first-child {
  border-top: 1px solid #c1c1c1;
}
.cid-uqHuYpuOzp .panel-group .card .card-header {
  padding: 0;
  border: none;
  background-color: transparent;
}
.cid-uqHuYpuOzp .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uqHuYpuOzp .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  transform: rotate(135deg);
}
.cid-uqHuYpuOzp .panel-group .card .card-header .panel-title .panel-wrap {
  display: flex;
  align-items: center;
  width: 80%;
}
@media (max-width: 992px) {
  .cid-uqHuYpuOzp .panel-group .card .card-header .panel-title .panel-wrap {
    width: 100%;
  }
}
.cid-uqHuYpuOzp .panel-group .card .card-header .panel-title .panel-wrap .panel-number {
  min-width: 210px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uqHuYpuOzp .panel-group .card .card-header .panel-title .panel-wrap .panel-number {
    display: none;
  }
}
.cid-uqHuYpuOzp .panel-group .card .card-header .panel-title .panel-wrap .panel-title-edit {
  width: 100%;
  margin-bottom: 0;
}
.cid-uqHuYpuOzp .panel-group .card .card-header .panel-title .icon-wrapper {
  margin-left: 16px;
}
.cid-uqHuYpuOzp .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  font-size: 32px;
  color: #1c1c1c;
  transition: all 0.3s ease-in-out;
}
.cid-uqHuYpuOzp .panel-group .card .panel-collapse .panel-body {
  display: flex;
  padding-top: 16px;
}
.cid-uqHuYpuOzp .panel-group .card .panel-collapse .panel-body .panel-padding {
  min-width: 210px;
}
@media (max-width: 992px) {
  .cid-uqHuYpuOzp .panel-group .card .panel-collapse .panel-body .panel-padding {
    display: none;
  }
}
.cid-uqHuYpuOzp .panel-group .card .panel-collapse .panel-body .panel-text {
  width: 60%;
  margin-bottom: 0;
  opacity: .7;
}
@media (max-width: 768px) {
  .cid-uqHuYpuOzp .panel-group .card .panel-collapse .panel-body .panel-text {
    width: 80%;
  }
}
.cid-uqHuYpuOzp .mbr-section-title {
  color: #1c1c1c;
}
.cid-uqHuYpuOzp .panel-number {
  color: #1c1c1c;
}
.cid-uqHuYpuOzp .panel-title-edit {
  color: #1c1c1c;
}
.cid-uqHuYpuOzp .panel-text {
  color: #1c1c1c;
}
.cid-uqHuYr2EnR {
  padding-top: 8rem;
  padding-bottom: 8rem;
  overflow: hidden;
  background-color: #eff0ff;
}
.cid-uqHuYr2EnR .image__block:before {
  content: "";
  position: absolute;
  top: -128px;
  left: 205px;
  width: 100vw;
  height: calc(100% + 260px);
  background-color: #d1d1f7;
}
.cid-uqHuYr2EnR .date__block {
  margin-top: 88px;
  margin-bottom: 16px;
}
.cid-uqHuYr2EnR .date__article {
  display: inline-block;
  margin: 0;
  padding: 0 7.5px;
  color: #ff9966;
}
.cid-uqHuYr2EnR .dot {
  display: inline-block;
  vertical-align: super;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #46877e;
}
.cid-uqHuYr2EnR .date__d {
  display: inline-block;
  margin: 0;
  padding: 0 7.5px;
  color: #689bb2;
}
.cid-uqHuYr2EnR .mbr-section-title {
  margin-bottom: 28px;
}
.cid-uqHuYr2EnR .mbr-text {
  margin-bottom: 23px;
}
.cid-uqHuYr2EnR .link {
  display: block;
  margin-bottom: 0;
  white-space: nowrap;
}
.cid-uqHuYr2EnR .link a {
  font-weight: 700;
}
.cid-uqHuYr2EnR .link span {
  display: inline-block !important;
  transition: all 0.3s ease;
  margin-left: 13px;
}
.cid-uqHuYr2EnR .link:hover span {
  transform: translateX(9px);
}
.cid-uqHuYr2EnR .image__block {
  position: relative;
}
.cid-uqHuYr2EnR .image {
  width: 100%;
  height: 575px;
  position: relative;
}
.cid-uqHuYr2EnR .image:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #bbbbbb;
  z-index: 1;
}
.cid-uqHuYr2EnR .image img {
  position: absolute;
  width: 50%;
  height: 80%;
  top: 60px;
  left: 50%;
  z-index: 5;
  transform: translatex(-50%);
  border-radius: 50%;
  max-height: 575px;
  object-fit: cover;
  border: 4px solid #d1d1f7;
}
@media (max-width: 991px) {
  .cid-uqHuYr2EnR .date__block {
    margin-top: 0;
    margin-bottom: 14px;
  }
  .cid-uqHuYr2EnR .mbr-section-title {
    margin-bottom: 15px;
  }
  .cid-uqHuYr2EnR .mbr-text {
    margin-bottom: 12px;
  }
  .cid-uqHuYr2EnR .image__block {
    margin-top: 60px;
  }
  .cid-uqHuYr2EnR .image__block:before {
    top: -50px;
    left: 70px;
    height: calc(100% + 150px);
  }
}
@media (max-width: 767px) {
  .cid-uqHuYr2EnR .image {
    height: 460px;
  }
  .cid-uqHuYr2EnR .image img {
    top: 45px;
    width: 60%;
  }
}
@media (max-width: 575px) {
  .cid-uqHuYr2EnR .image {
    height: 420px;
  }
  .cid-uqHuYr2EnR .image img {
    top: 40px;
    width: 60%;
  }
}
@media (max-width: 380px) {
  .cid-uqHuYr2EnR .image {
    height: 300px;
  }
  .cid-uqHuYr2EnR .image img {
    top: 30px;
    width: 60%;
  }
}
.cid-uqHuYr2EnR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqHuYr2EnR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqHuYr2EnR .mbr-text,
.cid-uqHuYr2EnR .link {
  color: #000000;
}
.cid-uqHuYr2EnR .mbr-section-title,
.cid-uqHuYr2EnR .date__block {
  color: #000000;
  text-align: center;
}
.cid-uqHuYs4AYe {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eff0ff;
  position: relative;
  overflow: hidden;
}
.cid-uqHuYs4AYe::before {
  content: '';
  position: absolute;
  top: 0;
  right: 4rem;
  width: 240px;
  height: 240px;
  border-radius: 100%;
  background-image: linear-gradient(180deg, #eff0ff -10%, transparent 70%);
}
.cid-uqHuYs4AYe .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqHuYs4AYe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-uqHuYs4AYe .container {
    padding: 0 16px;
  }
}
.cid-uqHuYs4AYe .row {
  justify-content: center;
  position: relative;
  z-index: 1;
}
.cid-uqHuYs4AYe .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-uqHuYs4AYe .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uqHuYs4AYe .mbr-section-title {
  color: #000000;
}
.cid-uqHuYs4AYe .mbr-text {
  color: #000000;
}
.cid-uqHwLK4mPX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d1d1f7;
}
.cid-uqHwLK4mPX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqHwLK4mPX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqHwLK4mPX .video-wrapper iframe {
  width: 100%;
}
.cid-uqHwLK4mPX .app-video-wrapper::before {
  font-size: 100px;
  line-height: 100px;
  border: 10px solid #1f357f;
  border-radius: 50%;
  padding: 28px 28px 28px 30px;
  top: 45%;
  left: 45%;
}
@media (max-width: 768px) {
  .cid-uqHwLK4mPX .app-video-wrapper::before {
    font-size: 70px;
    line-height: 70px;
    border: none;
    padding: 0;
    top: 50%;
    left: 50%;
  }
}
.cid-uqHwLK4mPX .video-block {
  position: relative;
  z-index: 1;
}
.cid-uqHwLK4mPX .video-block .video-wrapper iframe {
  z-index: 1;
  position: relative;
}
.cid-uqHwLK4mPX .video-block .image-absolute {
  position: absolute;
  top: -12rem;
  left: -4rem;
  width: 300px;
  height: 450px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-uqHwLK4mPX .video-block .image-absolute {
    display: none;
  }
}
.cid-uqHuYt5X4c {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #eff0ff;
}
.cid-uqHuYt5X4c .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqHuYt5X4c .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqHuYt5X4c ul {
  list-style: none;
}
.cid-uqHuYt5X4c li {
  padding-bottom: 0.5rem;
}
.cid-uqHuYt5X4c ul li::before {
  content: "\2022";
  color: #fd290a;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1rem;
}
.cid-uqHuYt5X4c .list-group-item {
  color: #ff6666;
}
.cid-uqHuYt5X4c .plan-body {
  padding-bottom: 2rem;
}
.cid-uqHuYt5X4c .card1 {
  background: #d1d1f7;
}
@media (min-width: 767px) {
  .cid-uqHuYt5X4c .card1 {
    transform: translateX(2rem);
  }
}
.cid-uqHuYt5X4c .card2 {
  background: #ffffff;
}
@media (min-width: 767px) {
  .cid-uqHuYt5X4c .card2 {
    transform: translateX(-2rem);
  }
}
.cid-uqHuYt5X4c .plan-header {
  padding-top: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uqHuYt5X4c .price {
  color: #fd290a;
}
.cid-uqHuYt5X4c .plan {
  word-break: break-word;
  padding: 3rem;
  border-radius: 3rem;
  box-shadow: 0 0 20px 0 lightgray;
}
.cid-uqHuYt5X4c .plan .list-group-item {
  position: relative;
  justify-content: center;
  border: 0;
}
@media (max-width: 992px) {
  .cid-uqHuYt5X4c .plan {
    padding: 1rem 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uqHuYt5X4c .plan {
    margin-bottom: 2rem;
  }
}
.cid-uqHuYt5X4c .mbr-text UL {
  text-align: left;
}
.cid-uqHuYt5X4c .mbr-text {
  color: #726c89;
}
.cid-uqHuYt5X4c .price-term {
  color: #1f357f;
}
.cid-uqHuYt5X4c .title {
  color: #1b224b;
}
.cid-uqHuYun2RX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d1d1f7;
  position: relative;
  overflow: hidden;
}
.cid-uqHuYun2RX::before {
  content: '';
  position: absolute;
  top: 0;
  right: 4rem;
  width: 240px;
  height: 240px;
  border-radius: 100%;
  background-image: linear-gradient(180deg, #d1d1f7 -10%, transparent 70%);
}
.cid-uqHuYun2RX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqHuYun2RX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-uqHuYun2RX .container {
    padding: 0 16px;
  }
}
.cid-uqHuYun2RX .row {
  justify-content: center;
  position: relative;
  z-index: 1;
}
.cid-uqHuYun2RX .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-uqHuYun2RX .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uqHuYun2RX .mbr-section-title {
  color: #000000;
}
.cid-uqHuYun2RX .mbr-text {
  color: #000000;
}
.cid-uqHuYvEq8u {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eff0ff;
}
.cid-uqHuYvEq8u .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqHuYvEq8u .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqHuYvEq8u .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uqHuYvEq8u .container-fluid {
    padding: 0 20px;
  }
}
.cid-uqHuYvEq8u .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uqHuYvEq8u .container {
    padding: 0 20px;
  }
}
.cid-uqHuYvEq8u .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uqHuYvEq8u .title-wrapper .mbr-section-title {
    margin-bottom: 50px;
  }
}
.cid-uqHuYvEq8u .card-wrap .panel-group {
  padding: 64px;
  border-radius: 0;
  border: 2px solid #d7d7d7;
}
@media (max-width: 992px) {
  .cid-uqHuYvEq8u .card-wrap .panel-group {
    padding: 50px 20px;
  }
}
.cid-uqHuYvEq8u .card-wrap .panel-group .card {
  border-bottom: 1px solid #d7d7d7;
  border-radius: 0;
}
.cid-uqHuYvEq8u .card-wrap .panel-group .card .card-header {
  background-color: transparent;
  border-bottom: none;
  padding: 20px 0;
}
@media (max-width: 768px) {
  .cid-uqHuYvEq8u .card-wrap .panel-group .card .card-header {
    padding: 15px 0;
  }
}
.cid-uqHuYvEq8u .card-wrap .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cid-uqHuYvEq8u .card-wrap .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(90deg);
  background-color: #d7d7d7;
}
.cid-uqHuYvEq8u .card-wrap .panel-group .card .card-header .panel-title:hover .mbr-iconfont,
.cid-uqHuYvEq8u .card-wrap .panel-group .card .card-header .panel-title:focus .mbr-iconfont {
  background-color: #d7d7d7;
}
.cid-uqHuYvEq8u .card-wrap .panel-group .card .card-header .panel-title .panel-title-edit {
  margin: 0;
}
.cid-uqHuYvEq8u .card-wrap .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 32px;
  max-width: 32px;
  height: 32px;
  border-radius: 100%;
  font-size: 16px;
  color: #1d1d1d;
  transition: all 0.3s ease-in-out;
  margin-left: 10px;
}
.cid-uqHuYvEq8u .card-wrap .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 32px;
}
.cid-uqHuYvEq8u .mbr-section-title {
  color: #1d1d1d;
}
.cid-uqHuYvEq8u .panel-title-edit {
  color: #1d1d1d;
}
.cid-uqHuYvEq8u .panel-text {
  color: #1d1d1d;
}
.cid-uqHuYwM9VJ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #eff0ff;
}
.cid-uqHuYwM9VJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqHuYwM9VJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqHuYwM9VJ .map-wrapper {
  height: 100%;
}
.cid-uqHuYwM9VJ .card-wrapper {
  border: 1px solid #fd290a;
  padding: 3rem 2.25rem;
  background: #eff0ff;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-uqHuYwM9VJ .card-wrapper {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uqHuYwM9VJ .card-wrapper {
    padding: 2rem 1.5rem;
  }
}
@media (max-width: 992px) {
  .cid-uqHuYwM9VJ .row .map-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uqHuYwM9VJ .row .map-wrapper {
    margin-top: 1rem;
  }
}
.cid-uqHuYwM9VJ .google-map {
  height: 100%;
  position: relative;
}
.cid-uqHuYwM9VJ .google-map iframe {
  height: 100%;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uqHuYwM9VJ .google-map iframe {
    min-height: 350px;
  }
}
.cid-uqHuYwM9VJ .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-uqHuYwM9VJ .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uqHuYwM9VJ .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uqHuYwM9VJ ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-uqHuYwM9VJ .content-head {
  max-width: 800px;
}
.cid-uqHuYwM9VJ .mbr-section-title {
  color: #000000;
}
.cid-uqHuYwM9VJ .cardTitle {
  color: #221b35;
}
.cid-uqHuYwM9VJ .list,
.cid-uqHuYwM9VJ .item-wrap {
  color: #221b35;
}
.cid-uqHuYy2fKY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #181818;
}
.cid-uqHuYy2fKY .list {
  list-style: none;
  padding-left: 0;
  font-weight: 300;
  color: #fff;
}
@media (max-width: 991px) {
  .cid-uqHuYy2fKY .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uqHuYy2fKY .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 576px) {
  .cid-uqHuYy2fKY .list {
    margin-bottom: 30px;
  }
}
.cid-uqHuYy2fKY .item-wrap {
  margin-bottom: 15px;
}
@media (max-width: 576px) {
  .cid-uqHuYy2fKY .item-wrap {
    margin-bottom: 0;
  }
}
@media (max-width: 991px) {
  .cid-uqHuYy2fKY div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uqHuYy2fKY .copyright {
  color: #ffffff;
}
.cid-uqHuYy2fKY .mbr-section-subtitle {
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-uqHuYy2fKY .mbr-section-subtitle {
    margin-bottom: 10px;
  }
}
.cid-uqHuYy2fKY .footer {
  padding-top: 66px;
  padding-bottom: 50px;
  border-top: 1px solid #868c90;
  border-bottom: 1px solid #868c90;
}
@media (max-width: 768px) {
  .cid-uqHuYy2fKY .footer {
    padding-top: 48px;
    padding-bottom: 36px;
  }
}
@media (max-width: 767px) {
  .cid-uqHuYy2fKY .footer {
    text-align: center !important;
  }
}
@media (max-width: 576px) {
  .cid-uqHuYy2fKY .footer-logo {
    margin: 0 auto;
  }
}
