body {
  font-family: Albert Sans;
}
.display-1 {
  font-family: 'Albert Sans', sans-serif;
  font-size: 3.8rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 4.75rem;
}
.display-2 {
  font-family: 'Albert Sans', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Albert Sans', sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.125rem;
}
.display-5 {
  font-family: 'Albert Sans', sans-serif;
  font-size: 2.2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.75rem;
}
.display-7 {
  font-family: 'Albert Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.375rem;
}
/* ---- 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: 768px) {
  .display-1 {
    font-size: 2.66rem;
    font-size: calc( 1.98rem + (3.8 - 1.98) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.98rem + (3.8 - 1.98) * ((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.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.72rem;
    font-size: calc( 0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.76rem;
    font-size: calc( 1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.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-2 {
  line-height: 1;
}
.display-5 {
  line-height: 1;
}
.display-7 {
  line-height: 1.2;
}
@media (max-width: 992px) {
  .display-1 {
    font-size: 1.064rem;
    line-height: 1.2;
  }
}
@media (max-width: 992px) {
  .display-2 {
    font-size: 1.8rem;
    line-height: 1.2;
  }
}
@media (max-width: 767px) {
  .display-2 {
    font-size: 1.2rem;
    line-height: 1.2;
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #17003b !important;
}
.bg-success {
  background-color: #6bffc7 !important;
}
.bg-info {
  background-color: #6500e0 !important;
}
.bg-warning {
  background-color: #ff8926 !important;
}
.bg-danger {
  background-color: #ff014e !important;
}
.btn-primary {
  margin-right: 2rem;
  position: relative;
  border: 0;
  border-radius: 0px;
  z-index: 1;
  box-shadow: none;
  overflow: hidden;
  background-color: inherit;
}
.btn-primary,
.btn-primary:active {
  background-color: #17003b !important;
  border-color: #17003b !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: -1;
  transform: translateX(-102%);
  transition: all 0.3s;
}
.btn-primary:hover {
  box-shadow: none;
  color: #17003b !important;
}
.btn-primary:hover:before {
  transform: translateX(0);
}
.btn-secondary {
  margin-right: 2rem;
  position: relative;
  border: 0;
  border-radius: 0px;
  z-index: 1;
  box-shadow: none;
  overflow: hidden;
  background-color: inherit;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff3eb4 !important;
  border-color: #ff3eb4 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #e6008d !important;
  border-color: #e6008d !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #e6008d !important;
  border-color: #e6008d !important;
}
.btn-secondary:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: -1;
  transform: translateX(-102%);
  transition: all 0.3s;
}
.btn-secondary:hover {
  box-shadow: none;
  color: #ff3eb4 !important;
}
.btn-secondary:hover:before {
  transform: translateX(0);
}
.btn-info {
  margin-right: 2rem;
  position: relative;
  border: 0;
  border-radius: 0px;
  z-index: 1;
  box-shadow: none;
  overflow: hidden;
  background-color: inherit;
}
.btn-info,
.btn-info:active {
  background-color: #6500e0 !important;
  border-color: #6500e0 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #3e0089 !important;
  border-color: #3e0089 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #3e0089 !important;
  border-color: #3e0089 !important;
}
.btn-info:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: -1;
  transform: translateX(-102%);
  transition: all 0.3s;
}
.btn-info:hover {
  box-shadow: none;
  color: #6500e0 !important;
}
.btn-info:hover:before {
  transform: translateX(0);
}
.btn-success {
  margin-right: 2rem;
  position: relative;
  border: 0;
  border-radius: 0px;
  z-index: 1;
  box-shadow: none;
  overflow: hidden;
  background-color: inherit;
}
.btn-success,
.btn-success:active {
  background-color: #6bffc7 !important;
  border-color: #6bffc7 !important;
  color: #006b43 !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #00140d !important;
  background-color: #14ffa6 !important;
  border-color: #14ffa6 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #006b43 !important;
  background-color: #14ffa6 !important;
  border-color: #14ffa6 !important;
}
.btn-success:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: -1;
  transform: translateX(-102%);
  transition: all 0.3s;
}
.btn-success:hover {
  box-shadow: none;
  color: #6bffc7 !important;
}
.btn-success:hover:before {
  transform: translateX(0);
}
.btn-warning {
  margin-right: 2rem;
  position: relative;
  border: 0;
  border-radius: 0px;
  z-index: 1;
  box-shadow: none;
  overflow: hidden;
  background-color: inherit;
}
.btn-warning,
.btn-warning:active {
  background-color: #ff8926 !important;
  border-color: #ff8926 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #ce5e00 !important;
  border-color: #ce5e00 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #ce5e00 !important;
  border-color: #ce5e00 !important;
}
.btn-warning:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: -1;
  transform: translateX(-102%);
  transition: all 0.3s;
}
.btn-warning:hover {
  box-shadow: none;
  color: #ff8926 !important;
}
.btn-warning:hover:before {
  transform: translateX(0);
}
.btn-danger {
  margin-right: 2rem;
  position: relative;
  border: 0;
  border-radius: 0px;
  z-index: 1;
  box-shadow: none;
  overflow: hidden;
  background-color: inherit;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff014e !important;
  border-color: #ff014e !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #a90033 !important;
  border-color: #a90033 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #a90033 !important;
  border-color: #a90033 !important;
}
.btn-danger:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: -1;
  transform: translateX(-102%);
  transition: all 0.3s;
}
.btn-danger:hover {
  box-shadow: none;
  color: #ff014e !important;
}
.btn-danger:hover:before {
  transform: translateX(0);
}
.btn-white {
  margin-right: 2rem;
  position: relative;
  border: 0;
  border-radius: 0px;
  z-index: 1;
  box-shadow: none;
  overflow: hidden;
  background-color: inherit;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-white:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: -1;
  transform: translateX(-102%);
  transition: all 0.3s;
}
.btn-white:hover {
  box-shadow: none;
  color: #fafafa !important;
}
.btn-white:hover:before {
  transform: translateX(0);
}
.btn-black {
  margin-right: 2rem;
  position: relative;
  border: 0;
  border-radius: 0px;
  z-index: 1;
  box-shadow: none;
  overflow: hidden;
  background-color: inherit;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-black:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: -1;
  transform: translateX(-102%);
  transition: all 0.3s;
}
.btn-black:hover {
  box-shadow: none;
  color: #232323 !important;
}
.btn-black:hover:before {
  transform: translateX(0);
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #17003b;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #000000 !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: #17003b !important;
  border-color: #17003b !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff3eb4;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #e6008d !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff3eb4 !important;
  border-color: #ff3eb4 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #6500e0;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #3e0089 !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: #6500e0 !important;
  border-color: #6500e0 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #6bffc7;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #14ffa6 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #006b43 !important;
  background-color: #6bffc7 !important;
  border-color: #6bffc7 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff8926;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ce5e00 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #ff8926 !important;
  border-color: #ff8926 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff014e;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #a90033 !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: #ff014e !important;
  border-color: #ff014e !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: #17003b !important;
}
.text-secondary {
  color: #ff3eb4 !important;
}
.text-success {
  color: #6bffc7 !important;
}
.text-info {
  color: #6500e0 !important;
}
.text-warning {
  color: #ff8926 !important;
}
.text-danger {
  color: #ff014e !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #17003b !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff3eb4 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #6bffc7 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #6500e0 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #ff8926 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff014e !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #fafafa !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #232323 !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: none;
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #17003b;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #6500e0;
}
.alert-warning {
  background-color: #ff8926;
}
.alert-danger {
  background-color: #ff014e;
}
.mbr-gallery-filter li.active .btn {
  background-color: #17003b;
  border-color: #17003b;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #17003b;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #7821ff;
}
.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: #d2adff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #fff8f2;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffcddc;
}
/* Scroll to top button*/
.form-control {
  font-family: 'Albert Sans', sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.125rem;
}
.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: #17003b !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Albert Sans', sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.125rem;
}
blockquote {
  border-color: #17003b;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #17003b;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #17003b;
}
.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: #17003b;
  border-bottom-color: #17003b;
}
.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: #17003b !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #ff3eb4 !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='%2317003b' %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-ueMt9L64hq .navbar-dropdown {
  position: relative !important;
}
.cid-ueMt9L64hq .navbar-dropdown {
  position: absolute !important;
}
@media (min-width: 992px) {
  .cid-ueMt9L64hq .nav-dropdown {
    margin-top: 2rem;
  }
}
.cid-ueMt9L64hq .navbar {
  min-height: 140px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(23, 0, 59, 0);
}
.cid-ueMt9L64hq .navbar.opened {
  transition: all 0.3s;
}
.cid-ueMt9L64hq .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ueMt9L64hq .navbar .navbar-logo img {
  width: auto;
}
.cid-ueMt9L64hq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ueMt9L64hq .navbar.collapsed {
  justify-content: center;
}
.cid-ueMt9L64hq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ueMt9L64hq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ueMt9L64hq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 7.1rem);
  }
}
.cid-ueMt9L64hq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ueMt9L64hq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ueMt9L64hq .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-ueMt9L64hq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ueMt9L64hq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ueMt9L64hq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ueMt9L64hq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ueMt9L64hq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ueMt9L64hq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ueMt9L64hq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ueMt9L64hq .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-ueMt9L64hq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ueMt9L64hq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ueMt9L64hq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ueMt9L64hq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ueMt9L64hq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ueMt9L64hq .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ueMt9L64hq .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ueMt9L64hq .navbar.navbar-short {
  min-height: 60px;
}
.cid-ueMt9L64hq .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ueMt9L64hq .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ueMt9L64hq .navbar-logo {
  margin: 0;
}
.cid-ueMt9L64hq .container,
.cid-ueMt9L64hq .container-fluid {
  justify-content: flex-end;
  min-height: 100px;
}
@media (max-width: 767px) {
  .cid-ueMt9L64hq .container,
  .cid-ueMt9L64hq .container-fluid {
    justify-content: space-between;
  }
}
.cid-ueMt9L64hq .navbar-brand {
  margin: auto !important;
  position: absolute;
  width: 200px;
  flex-direction: column;
  top: -5px;
  left: 50%;
  right: 50%;
  transform: translateX(-50%);
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0 !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ueMt9L64hq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ueMt9L64hq .navbar-brand .navbar-logo a {
  outline: none;
  margin-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-ueMt9L64hq .navbar-brand {
    display: none;
  }
}
.cid-ueMt9L64hq .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ueMt9L64hq .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ueMt9L64hq .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ueMt9L64hq .dropdown-item:hover,
.cid-ueMt9L64hq .dropdown-item:focus {
  background: #17003b !important;
  color: white !important;
}
.cid-ueMt9L64hq .dropdown-item:hover span {
  color: white;
}
.cid-ueMt9L64hq .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ueMt9L64hq .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ueMt9L64hq .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.2em 1em !important;
}
.cid-ueMt9L64hq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ueMt9L64hq .nav-link {
  position: relative;
}
.cid-ueMt9L64hq .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ueMt9L64hq .container {
    flex-wrap: nowrap;
  }
}
.cid-ueMt9L64hq .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ueMt9L64hq .dropdown-menu,
.cid-ueMt9L64hq .navbar.opened {
  background: #17003b !important;
}
.cid-ueMt9L64hq .nav-item:focus,
.cid-ueMt9L64hq .nav-link:focus {
  outline: none;
}
.cid-ueMt9L64hq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ueMt9L64hq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ueMt9L64hq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ueMt9L64hq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ueMt9L64hq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ueMt9L64hq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ueMt9L64hq .dropdown-item.active,
.cid-ueMt9L64hq .dropdown-item:active {
  background-color: transparent;
}
.cid-ueMt9L64hq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ueMt9L64hq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ueMt9L64hq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ueMt9L64hq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #17003b;
}
.cid-ueMt9L64hq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ueMt9L64hq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ueMt9L64hq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ueMt9L64hq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ueMt9L64hq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ueMt9L64hq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ueMt9L64hq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ueMt9L64hq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ueMt9L64hq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ueMt9L64hq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ueMt9L64hq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ueMt9L64hq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ueMt9L64hq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ueMt9L64hq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ueMt9L64hq .navbar-dropdown {
  padding: 0 1rem;
}
.cid-ueMt9L64hq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ueMt9L64hq .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ueMt9L64hq .navbar {
    height: 70px;
  }
  .cid-ueMt9L64hq .navbar.opened {
    height: auto;
  }
  .cid-ueMt9L64hq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uejW5gj8vY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uejW5gj8vY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-uejW5gj8vY .row {
  flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-uejW5gj8vY img {
    padding: 0 4rem;
  }
}
@media (max-width: 992px) {
  .cid-uejW5gj8vY img {
    padding-bottom: 2rem;
  }
}
.cid-uejW5gj8vY .row {
  align-items: center;
}
.cid-uejW5gj8vY .mbr-section-title {
  color: #ffffff;
}
.cid-uejW5gj8vY .mbr-text,
.cid-uejW5gj8vY .mbr-section-btn {
  color: #ffffff;
}
.cid-uejW5gj8vY .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uek0MYEV7k {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #17003b;
}
.cid-uek0MYEV7k .mbr-fallback-image.disabled {
  display: none;
}
.cid-uek0MYEV7k .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@keyframes wave2 {
  0% {
    transform: scaleY(0.8);
  }
  50% {
    transform: scaleY(1);
  }
  100% {
    transform: scaleY(0.8);
  }
}
.cid-uek0MYEV7k #gentle-wave {
  fill: #17003b;
}
.cid-uek0MYEV7k .svg2 {
  background: transparent;
  position: absolute;
  bottom: 100%;
  animation: 5s ease infinite wave2;
  transform: scaleY(0.8);
  transform-origin: bottom;
}
.cid-uek0MYEV7k b {
  font-weight: 900;
}
.cid-uek0MYEV7k .row {
  flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-uek0MYEV7k img {
    padding: 0 4rem;
  }
}
@media (max-width: 992px) {
  .cid-uek0MYEV7k img {
    padding-bottom: 2rem;
  }
}
@keyframes wave1 {
  0% {
    left: -30%;
  }
  100% {
    left: -1%;
  }
}
.cid-uek0MYEV7k .link-wrapper {
  width: fit-content;
  position: relative;
  display: inline-block;
  overflow: hidden;
  cursor: pointer;
  padding-bottom: 10px;
}
.cid-uek0MYEV7k .link-wrapper .svg1 {
  position: absolute;
  top: 60%;
  width: 130%;
  min-width: 300px;
  left: -30%;
  height: auto;
}
.cid-uek0MYEV7k .link-wrapper .svg1 path {
  stroke: currentColor !important;
}
.cid-uek0MYEV7k .link-wrapper:hover .svg1 {
  animation: 1s linear forwards infinite wave1;
}
.cid-uek0MYEV7k .row {
  align-items: center;
}
.cid-uek0MYEV7k .mbr-section-title {
  color: #ffffff;
}
.cid-uek0MYEV7k .mbr-text,
.cid-uek0MYEV7k .mbr-section-btn {
  color: #ffffff;
}
.cid-uek0MYEV7k .mbr-link,
.cid-uek0MYEV7k .link-wrapper {
  color: #ffffff;
}
.cid-tIUEjn15pv {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tIUEjn15pv .mbr-section-subtitle {
  color: #ff6666;
  text-align: center;
}
.cid-tIUEjn15pv .mbr-section-title {
  text-align: center;
  color: #17003b;
}
.cid-tIUEjn15pv .mbr-text {
  color: #17003b;
}
.cid-tIUEjn15pv .mbr-section-btn {
  margin-top: 40px;
}
.cid-tIUEjn15pv .mbr-section-btn .btn {
  margin-left: 0 !important;
}
.cid-tIUEjn15pv .mbr-list {
  color: #17003b;
}
.cid-tIUEjn15pv .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
@media (max-width: 767px) {
  .cid-tIUEjn15pv .mbr-list .list {
    text-align: left;
  }
}
.cid-tIUEjn15pv .mbr-list .list li {
  line-height: 1.8;
  padding-bottom: 14px;
  margin-top: 14px;
  font-weight: 400;
}
.cid-tIUEjn15pv .mbr-list .list li:first-child {
  margin-top: 0;
}
.cid-tIUEjn15pv .mbr-list .list li:before {
  font-weight: 900;
  color: #ffffff;
  display: inline-block;
  font-size: 15px;
  content: "\e97c";
  font-family: 'Moririse2' !important;
  text-align: center;
  line-height: 1em;
  transition: all 0.3s;
  margin-right: 11.25px;
  border-radius: 50%;
  padding: 5px;
  background-color: #6500e0;
}
@media (max-width: 768px) {
  .cid-tIUEjn15pv * {
    text-align: left;
  }
}
.cid-tIUEjn15pv .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIUEjn15pv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uekUSNK5xZ {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #5e2da9;
}
.cid-uekUSNK5xZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uekUSNK5xZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uekUSNK5xZ .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-uekUSNK5xZ .mbr-text,
.cid-uekUSNK5xZ .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-uekUSNK5xZ b,
.cid-uekUSNK5xZ strong {
  font-weight: 900;
}
.cid-uekUSNK5xZ .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-uekT01M0HD {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #5e2da9;
}
.cid-uekT01M0HD .card-icon {
  font-size: 48px;
  color: #5e2da9;
  transition: color 0.3s;
}
.cid-uekT01M0HD .card-title {
  font-weight: 600;
  letter-spacing: 1px;
}
.cid-uekT01M0HD .link-ico {
  font-size: 0.8rem;
  color: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 100%;
  padding: 0.5rem 0;
  font-weight: 900;
  padding-left: 9px;
  padding-right: 7px;
}
.cid-uekT01M0HD .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #ffffff;
  margin-bottom: 1.5rem;
  transition: background 0.3s;
}
.cid-uekT01M0HD .card {
  padding: 0 !important;
}
.cid-uekT01M0HD .card-wrapper {
  padding: 4rem;
  transition: background 0.3s;
}
.cid-uekT01M0HD .card-wrapper:hover {
  background: #5e2da9;
}
.cid-uekT01M0HD .card-wrapper:hover .card-icon {
  color: #17003b;
}
.cid-uekT01M0HD .card-wrapper:hover .line {
  background: #17003b;
}
.cid-uekT01M0HD .card1 {
  background: #17003b;
}
.cid-uekT01M0HD .card2 {
  background: #1b0045;
}
.cid-uekT01M0HD .card3 {
  background: #1f004f;
}
.cid-uekT01M0HD .card4 {
  background: #23005a;
}
.cid-uekT01M0HD .card5 {
  background: #270064;
}
.cid-uekT01M0HD .card6 {
  background: #2b006e;
}
.cid-uekT01M0HD .col-lg-x {
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  max-width: 20%;
}
@media (max-width: 1400px) {
  .cid-uekT01M0HD .col-md-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uekT01M0HD .col-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.cid-uekT01M0HD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uekT01M0HD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ufhz5XUU2M {
  padding-top: 6rem;
  padding-bottom: 8rem;
  overflow: hidden;
  background-image: url("../../../assets/images/upm-landmark-3-1800x1198.jpg");
}
.cid-ufhz5XUU2M::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 25%;
  background-image: linear-gradient(transparent, #000000 50%);
  z-index: 1;
}
.cid-ufhz5XUU2M .mbr-fallback-image.disabled {
  display: none;
}
.cid-ufhz5XUU2M .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-ufhz5XUU2M .container {
    padding: 0 22px;
  }
}
.cid-ufhz5XUU2M .row {
  justify-content: center;
}
.cid-ufhz5XUU2M .content-wrapper {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}
@media (max-width: 992px) {
  .cid-ufhz5XUU2M .content-wrapper {
    padding: 0;
  }
}
.cid-ufhz5XUU2M .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-ufhz5XUU2M .content-wrapper .mbr-desc {
  margin-bottom: 10px;
}
.cid-ufhz5XUU2M .mbr-section-title {
  color: #ffffff;
}
.cid-ufhz5XUU2M .mbr-desc {
  color: #ffffff;
  text-align: center;
}
.cid-ufhz5XUU2M .mbr-section-title,
.cid-ufhz5XUU2M .mbr-section-btn {
  text-align: center;
}
.cid-ui65KGrCx4 {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #000000;
  overflow: hidden;
}
.cid-ui65KGrCx4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ui65KGrCx4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 50%;
  height: 50%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-ui65KGrCx4 .container {
    padding: 0 22px;
  }
}
.cid-ui65KGrCx4 .card {
  justify-content: center;
}
.cid-ui65KGrCx4 .content-wrapper {
  padding-right: 32px;
}
@media (max-width: 992px) {
  .cid-ui65KGrCx4 .content-wrapper {
    padding: 0;
    margin-bottom: 40px;
  }
}
.cid-ui65KGrCx4 .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-ui65KGrCx4 .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ui65KGrCx4 .image-wrapper {
  display: flex;
  justify-content: center;
}
.cid-ui65KGrCx4 .image-wrapper img {
  height: 300px;
  width: 300px;
  border-radius: 100% !important;
  object-fit: cover;
  box-shadow: 10px 10px 60px #5e2da9;
}
@media (max-width: 1440px) {
  .cid-ui65KGrCx4 .image-wrapper img {
    height: 500px;
    width: 500px;
  }
}
@media (max-width: 1200px) {
  .cid-ui65KGrCx4 .image-wrapper img {
    height: 400px;
    width: 400px;
  }
}
@media (max-width: 992px) {
  .cid-ui65KGrCx4 .image-wrapper img {
    height: 400px;
    width: 400px;
  }
}
@media (max-width: 768px) {
  .cid-ui65KGrCx4 .image-wrapper img {
    height: 260px;
    width: 260px;
  }
}
.cid-ui65KGrCx4 .mbr-section-title {
  color: #ff30af;
}
.cid-ui65KGrCx4 .mbr-text {
  color: #ffffff;
}
.cid-tJNgPETHS3 {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-tJNgPETHS3 .mbr-section-head {
  margin-bottom: 20px;
  width: 100%;
}
.cid-tJNgPETHS3 .mbr-section-title {
  color: #FF014E;
}
.cid-tJNgPETHS3 .mbr-section-subtitle {
  color: #C4CFDE;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-tJNgPETHS3 .mbr-section-subtitle {
    margin-top: 10px;
  }
}
.cid-tJNgPETHS3 .carousel-wrapper {
  margin: 0 75px;
}
@media (max-width: 1199px) {
  .cid-tJNgPETHS3 .carousel-wrapper {
    margin: 0;
  }
}
@media (max-width: 575px) {
  .cid-tJNgPETHS3 .carousel-wrapper {
    margin: 0 -10px;
  }
}
.cid-tJNgPETHS3 .carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1140px;
  width: 100%;
  margin: 0 auto 36px;
}
@media (max-width: 1199px) {
  .cid-tJNgPETHS3 .carousel {
    max-width: 100%;
  }
}
.cid-tJNgPETHS3 .carousel-inner {
  display: flex;
  align-items: center;
  padding: 50px 0 25px;
}
@media (max-width: 991px) {
  .cid-tJNgPETHS3 .carousel-inner {
    padding: 40px 0 25px;
  }
}
@media (max-width: 575px) {
  .cid-tJNgPETHS3 .carousel-inner {
    padding: 35px 0 25px;
  }
}
.cid-tJNgPETHS3 .item-wrapper {
  display: flex;
  width: 100%;
  overflow: visible;
  padding: 0 25px;
}
@media (max-width: 991px) {
  .cid-tJNgPETHS3 .item-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 575px) {
  .cid-tJNgPETHS3 .item-wrapper {
    padding: 0 10px;
  }
}
.cid-tJNgPETHS3 .card-info {
  position: relative;
  z-index: 10;
  width: 395px;
  padding: 30px 30px 40px 30px;
  margin-right: 40px;
  border-radius: 10px;
  background: linear-gradient(145deg, #000000, #12002e);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
@media (max-width: 1199px) {
  .cid-tJNgPETHS3 .card-info {
    width: 270px;
    padding: 20px;
  }
}
@media (max-width: 991px) {
  .cid-tJNgPETHS3 .card-info {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 30px;
    margin-bottom: 30px;
    margin-right: 0;
  }
}
@media (max-width: 575px) {
  .cid-tJNgPETHS3 .card-info {
    flex-wrap: wrap;
    padding: 20px;
  }
}
.cid-tJNgPETHS3 .info-img-wrap {
  display: flex;
  width: 100%;
  margin-bottom: 27px;
  overflow: hidden;
  border-radius: 10px;
}
@media (max-width: 991px) {
  .cid-tJNgPETHS3 .info-img-wrap {
    max-width: 150px;
    margin-right: 25px;
    margin-bottom: 0;
  }
}
@media (max-width: 575px) {
  .cid-tJNgPETHS3 .info-img-wrap {
    max-width: 100%;
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.cid-tJNgPETHS3 .info-img-wrap img {
  width: 100%;
  aspect-ratio: 1.32936508;
  object-fit: cover;
  transition: 0.4s all;
}
.cid-tJNgPETHS3 .info-img-wrap img:hover {
  transform: scale(1.1);
}
.cid-tJNgPETHS3 .info-text-wrap {
  position: relative;
  z-index: 10;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tJNgPETHS3 .info-text-wrap {
    flex-grow: 1;
  }
}
.cid-tJNgPETHS3 .info-card-title {
  color: #f3722f;
  margin-bottom: 10px;
}
.cid-tJNgPETHS3 .info-card-subtitle {
  color: #c4cfde;
}
.cid-tJNgPETHS3 .info-card-text {
  color: #8caff0;
  margin-top: 4px;
}
.cid-tJNgPETHS3 .card-description {
  position: relative;
  margin-top: 115px;
  width: 1px;
  flex-grow: 1;
}
@media (max-width: 991px) {
  .cid-tJNgPETHS3 .card-description {
    width: 100%;
    margin-top: 0;
  }
}
.cid-tJNgPETHS3 .card-description-wrapper {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100%;
  padding: 50px 40px 50px 40px;
  border-radius: 10px;
  background: linear-gradient(145deg, #000000, #12002e);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
@media (max-width: 991px) {
  .cid-tJNgPETHS3 .card-description-wrapper {
    padding: 35px 30px;
  }
}
@media (max-width: 575px) {
  .cid-tJNgPETHS3 .card-description-wrapper {
    padding: 20px;
  }
}
.cid-tJNgPETHS3 .card-description-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border-bottom: 1px solid #16181c;
  padding-bottom: 20px;
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .cid-tJNgPETHS3 .card-description-container {
    flex-wrap: wrap;
  }
}
.cid-tJNgPETHS3 .card-description-text-wrap {
  margin-bottom: 15px;
  margin-right: auto;
  padding-right: 10px;
}
@media (max-width: 767px) {
  .cid-tJNgPETHS3 .card-description-text-wrap {
    width: 100%;
    padding-right: 0;
  }
}
.cid-tJNgPETHS3 .card-description-title {
  color: #ffffff;
  margin-bottom: 7px;
}
.cid-tJNgPETHS3 .card-description-subtitle {
  color: #f3722f;
  margin-bottom: 0;
}
.cid-tJNgPETHS3 .card-description-label-wrap {
  padding: 15px 17px;
  border-radius: 6px;
  margin-left: auto;
  background: linear-gradient(145deg, #000000, #12002e);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
@media (max-width: 767px) {
  .cid-tJNgPETHS3 .card-description-label-wrap {
    margin-left: 0;
  }
}
.cid-tJNgPETHS3 .score-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-tJNgPETHS3 .score-container .score-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 3px;
}
.cid-tJNgPETHS3 .score-container .score-wrapper .mbr-iconfont {
  font-size: 11px;
  color: #ff014e;
}
.cid-tJNgPETHS3 .card-description-text {
  color: #c4cfde;
  margin-bottom: 0;
}
.cid-tJNgPETHS3 .absolute-icon-wrapper {
  position: absolute;
  z-index: 9;
  left: 0;
  top: -107px;
}
@media (max-width: 991px) {
  .cid-tJNgPETHS3 .absolute-icon-wrapper {
    display: none;
  }
}
.cid-tJNgPETHS3 .absolute-icon-wrapper .mbr-iconfont {
  color: #16181c;
  font-size: 99px;
}
.cid-tJNgPETHS3 .carousel-control {
  top: 50px;
  width: 60px;
  height: 60px;
  font-size: 25px;
  background: linear-gradient(145deg, #000000, #12002e) !important;
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
  border: none;
  border-radius: 6px;
  transition: all 0.4s;
  opacity: 1;
}
.cid-tJNgPETHS3 .carousel-control.carousel-control-prev {
  right: 105px;
  left: auto;
  margin-left: 0;
}
.cid-tJNgPETHS3 .carousel-control.carousel-control-next {
  right: 25px;
  margin-right: 0;
}
@media (max-width: 991px) {
  .cid-tJNgPETHS3 .carousel-control {
    display: none;
  }
}
.cid-tJNgPETHS3 .carousel-control:hover {
  background: linear-gradient(to right bottom, #212428, #16181c) !important;
  color: #17003b !important;
  opacity: 1;
}
.cid-tJNgPETHS3 .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tJNgPETHS3 .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tJNgPETHS3 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tJNgPETHS3 .carousel-indicators {
  position: absolute;
  bottom: -35px;
  margin-bottom: 0 !important;
}
.cid-tJNgPETHS3 .carousel-indicators li {
  max-width: 11px;
  height: 11px;
  width: 11px;
  max-height: 11px;
  margin: 10px;
  background: linear-gradient(145deg, #000000, #12002e) !important;
  border: 0;
  border-radius: 50%;
  box-shadow: 1px 4px 2px -3px rgba(0, 0, 0, 0.7) inset, -1px -3px 3px -2px rgba(255, 255, 255, 0.2) inset;
  opacity: 1;
  transition: all 0.4s;
}
.cid-tJNgPETHS3 .carousel-indicators li.active,
.cid-tJNgPETHS3 .carousel-indicators li:hover {
  opacity: 1;
  background: #17003b !important;
}
.cid-tJNgPETHS3 .carousel-indicators li::after,
.cid-tJNgPETHS3 .carousel-indicators li::before {
  content: none;
}
.cid-tJNgPETHS3 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
.cid-tJNgPETHS3 .item-menu-overlay {
  opacity: 0 !important;
}
.cid-tLFvMAUGMU {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #290167;
  overflow: hidden;
  position: relative;
}
.cid-tLFvMAUGMU .row {
  align-items: flex-start;
}
.cid-tLFvMAUGMU .container,
.cid-tLFvMAUGMU .container-fluid {
  position: static;
}
.cid-tLFvMAUGMU .mbr-section-title {
  color: #ffffff;
  margin-bottom: 0;
}
.cid-tLFvMAUGMU .col-text {
  position: relative;
  z-index: 2;
}
.cid-tLFvMAUGMU .mbr-text {
  color: #00284E;
  opacity: 0.8;
  margin-top: 20px;
  margin-bottom: 0;
}
.cid-tLFvMAUGMU .toggle-panel,
.cid-tLFvMAUGMU .panel-group {
  width: 100%;
}
.cid-tLFvMAUGMU .card {
  padding: 0;
  position: relative;
  margin-bottom: 18px;
  border-radius: 7px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(68, 109, 255, 0.04) !important;
}
.cid-tLFvMAUGMU .card .card-header {
  margin-bottom: 0;
  padding: 0;
  border-bottom: none;
  transition: 0.5s all;
  background-color: #17003b;
}
.cid-tLFvMAUGMU .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 23px 20px 15px 35px;
  transition: 0.5s all;
  position: relative;
  z-index: 2;
}
.cid-tLFvMAUGMU .panel-title .sign {
  transform: rotate(180deg);
}
@media (max-width: 767px) {
  .cid-tLFvMAUGMU .panel-title {
    padding: 1rem !important;
  }
}
.cid-tLFvMAUGMU .collapsed {
  padding: 23px 20px 23px 35px;
}
.cid-tLFvMAUGMU .collapsed .sign {
  transform: rotate(0deg);
}
.cid-tLFvMAUGMU .panel-text {
  text-align: left;
  opacity: 0.8;
  color: #ffffff;
  margin-bottom: 16px;
}
.cid-tLFvMAUGMU .sign {
  color: #ffffff;
  transition: transform 0.2s ease-in-out;
  font-size: 1.6rem;
}
.cid-tLFvMAUGMU .panel-body {
  padding: 0 40px 20px 35px;
  position: relative;
  z-index: 2;
  background-color: #17003b;
}
@media (max-width: 767px) {
  .cid-tLFvMAUGMU .panel-body {
    padding: 1rem;
    padding-top: 0;
  }
}
.cid-tLFvMAUGMU .panel-title-edit {
  width: 100%;
  color: #f3722f;
  text-align: left;
}
.cid-tLFvMAUGMU .mbr-text,
.cid-tLFvMAUGMU .mbr-section-btn {
  color: #ffffff;
}
.cid-ueSDdPgI3A {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #290167;
}
.cid-ueSDdPgI3A .mbr-fallback-image.disabled {
  display: none;
}
.cid-ueSDdPgI3A .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ueSDdPgI3A .content-container {
  display: flex;
  width: 100%;
}
.cid-ueSDdPgI3A .text-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: 100%;
}
.cid-ueSDdPgI3A .text-wrap {
  width: 100%;
  padding: 0;
}
.cid-ueSDdPgI3A .mbr-section-title {
  color: #112B6D;
  margin-bottom: 20px !important;
  width: 100%;
}
.cid-ueSDdPgI3A .mbr-text {
  color: #112B6D;
  padding-bottom: 0.9rem !important;
  width: 100%;
  margin-bottom: 0 !important;
}
.cid-ueSDdPgI3A .mbr-section-btn {
  margin-top: 20px;
}
@media (min-width: 576px) {
  .cid-ueSDdPgI3A .mbr-section-btn {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
}
@media (min-width: 991px) {
  .cid-ueSDdPgI3A .mbr-section-btn {
    flex-direction: row;
    justify-content: space-around;
  }
}
.cid-ucfuCLL4RI {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #fafafa;
}
.cid-ucfuCLL4RI .container-fluid {
  max-width: 1500px;
}
.cid-ucfuCLL4RI .icon1 {
  font-size: 2.2rem;
}
.cid-ucfuCLL4RI .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-ucfuCLL4RI .team-card:hover {
  transform: translateY(-10px);
}
@media (min-width: 1400px) {
  .cid-ucfuCLL4RI .col-lg-3 {
    padding: 0 1.5rem;
  }
}
.cid-ucfuCLL4RI .card-wrap {
  height: 100%;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 4px;
}
.cid-ucfuCLL4RI .card-wrap:hover img {
  transform: scale(1.1);
}
@media (max-width: 991px) {
  .cid-ucfuCLL4RI .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-ucfuCLL4RI .card-wrap .image-wrap img {
  width: 100%;
  transition: all 0.3s;
  height: 300px;
  object-fit: cover;
}
.cid-ucfuCLL4RI .card-wrap .content-wrap {
  margin: auto;
}
@media (min-width: 768px) {
  .cid-ucfuCLL4RI .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-ucfuCLL4RI .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-ucfuCLL4RI .content-wrap {
  height: 100%;
  justify-content: space-between;
  display: flex;
  flex-direction: column;
}
.cid-ucfuCLL4RI .text-wrapper {
  display: flex;
}
.cid-ucfuCLL4RI .text-wrapper span {
  color: #17003b;
  padding-right: 1rem;
}
.cid-ucfuCLL4RI .mbr-main-subtitle {
  background: #17003b;
  width: fit-content;
  padding: 0.4rem 0.8rem;
  position: relative;
  margin-bottom: 2rem;
  color: #ffffff;
}
.cid-ucfuCLL4RI .mbr-main-subtitle:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -18px;
  border-left: 24px solid #17003b;
  border-bottom: 18px solid transparent;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-ucfuCLL4RI .mbr-main-subtitle {
    margin: auto;
    margin-bottom: 2rem;
  }
}
.cid-ucfuCLL4RI .social {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.5rem;
  padding-left: 3rem;
}
.cid-ucfuCLL4RI .social .mbr-iconfont {
  padding-right: 0.6rem;
  color: #17003b;
}
@media (max-width: 767px) {
  .cid-ucfuCLL4RI .social {
    padding-left: 0rem;
  }
}
.cid-ucfuCLL4RI .icons-menu {
  display: flex;
}
@media (max-width: 767px) {
  .cid-ucfuCLL4RI .icons-menu {
    justify-content: center;
  }
}
.cid-ucfuCLL4RI .image-wrap {
  clip-path: polygon(100% 0, 100% 100%, 0% 94%, 0% 0%);
}
.cid-ucfuCLL4RI .iconfont-wrapper {
  font-size: 1.2rem;
  padding: 0.4rem 0;
  margin: 0 0.2rem;
  display: block;
  position: relative;
}
.cid-ucfuCLL4RI .iconfont-wrapper:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: #17003b;
  z-index: 0;
}
.cid-ucfuCLL4RI .iconfont-wrapper:hover:before {
  height: 100%;
}
.cid-ucfuCLL4RI .mbr-iconfont {
  position: relative;
  fomt-size: 1rem;
  color: #272727;
}
.cid-ucfuCLL4RI .card-text,
.cid-ucfuCLL4RI .mbr-section-btn,
.cid-ucfuCLL4RI .social-row {
  color: #353535;
}
.cid-ucfuCLL4RI .mbr-role,
.cid-ucfuCLL4RI .social-row {
  color: #2d0073;
  text-align: left;
}
.cid-ucfuCLL4RI .card-title,
.cid-ucfuCLL4RI .social-row {
  color: #2d0073;
}
.cid-ucfuCLL4RI .mbr-section-title {
  color: #272727;
}
.cid-ucfuCLL4RI .card1-text {
  color: #272727;
}
.cid-ucfuCLL4RI .soc-link,
.cid-ucfuCLL4RI .soc-wrapper {
  color: #272727;
}
.cid-uckTwI2qN3 {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #17003b;
}
.cid-uckTwI2qN3 .list-group-item {
  padding: 0.5rem 3.25rem;
}
.cid-uckTwI2qN3 h4 {
  margin: 0;
}
.cid-uckTwI2qN3 .btn-sm {
  padding: 0.6rem 4.4rem;
}
.cid-uckTwI2qN3 .plan-body {
  padding-bottom: 2rem;
}
.cid-uckTwI2qN3 .plan-header {
  padding-top: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uckTwI2qN3 .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #ff5500;
  transition: background 0.3s;
  margin-bottom: 1.5rem;
}
.cid-uckTwI2qN3 .line2 {
  background: #ff5500;
}
.cid-uckTwI2qN3 .plan {
  word-break: break-word;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  position: relative;
  padding-right: 0;
  padding-left: 0;
}
.cid-uckTwI2qN3 .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
}
.cid-uckTwI2qN3 .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 20%;
  width: 60%;
  height: 2px;
  content: '';
  background-color: #eaeaea;
}
.cid-uckTwI2qN3 .plan .list-group-item:last-child::after {
  display: none;
}
.cid-uckTwI2qN3 .plan-header,
.cid-uckTwI2qN3 .plan-body {
  background-color: #fff;
}
.cid-uckTwI2qN3 .price-figure {
  font-weight: 700;
}
.cid-uckTwI2qN3 .price-value {
  font-weight: 700;
  vertical-align: top;
}
@media (max-width: 550px) {
  .cid-uckTwI2qN3 .price-figure {
    font-size: 4.25rem;
  }
}
.cid-uckTwI2qN3 .color1 {
  color: #4b03a4;
}
.cid-uckTwI2qN3 .color2 {
  color: #4b03a4;
}
.cid-uckTwI2qN3 LI {
  color: #767676;
}
.cid-uckTwI2qN3 .price-term {
  color: #767676;
}
.cid-uckTwI2qN3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uckTwI2qN3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uckTwI2qN3 .plan-title {
  color: #ff5500;
}
.cid-ueSDT5zpIs {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #17003b;
}
.cid-ueSDT5zpIs .mbr-fallback-image.disabled {
  display: none;
}
.cid-ueSDT5zpIs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ueSDT5zpIs .content-container {
  display: flex;
  width: 100%;
}
.cid-ueSDT5zpIs .text-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: 100%;
}
.cid-ueSDT5zpIs .text-wrap {
  width: 100%;
  padding: 0;
}
.cid-ueSDT5zpIs .mbr-section-title {
  color: #112B6D;
  margin-bottom: 20px !important;
  width: 100%;
}
.cid-ueSDT5zpIs .mbr-text {
  color: #ffffff;
  padding-bottom: 0.9rem !important;
  width: 100%;
  margin-bottom: 0 !important;
  text-align: center;
}
.cid-ueSDT5zpIs .mbr-section-btn {
  margin-top: 20px;
}
@media (min-width: 576px) {
  .cid-ueSDT5zpIs .mbr-section-btn {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
}
@media (min-width: 991px) {
  .cid-ueSDT5zpIs .mbr-section-btn {
    flex-direction: row;
    justify-content: space-around;
  }
}
.cid-tKlxJm2NjG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bce9ff;
}
.cid-tKlxJm2NjG .mbr-fallback-image.disabled {
  display: none;
}
.cid-tKlxJm2NjG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tKlxJm2NjG .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-tKlxJm2NjG .container {
    padding: 0 12px;
  }
}
.cid-tKlxJm2NjG .title-wrapper .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-tKlxJm2NjG .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-tKlxJm2NjG .title-wrapper .mbr-section-title span {
  padding: 6px 12px;
  background-color: #47b5ed;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-tKlxJm2NjG .title-wrapper .mbr-section-title span {
    padding: 0 10px;
    border-radius: 8px;
  }
}
.cid-tKlxJm2NjG .title-wrapper .mbr-text {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-tKlxJm2NjG .title-wrapper .mbr-text {
    margin-bottom: 24px;
  }
}
@media (max-width: 992px) {
  .cid-tKlxJm2NjG .title-wrapper .mbr-section-btn {
    margin-bottom: 40px;
  }
}
.cid-tKlxJm2NjG .title-wrapper .tags-wrapper {
  margin-bottom: 24px;
}
.cid-tKlxJm2NjG .title-wrapper .tags-wrapper .tags-wrap {
  display: inline-block;
}
.cid-tKlxJm2NjG .title-wrapper .tags-wrapper .tags-wrap .tag-item {
  display: inline-flex;
  align-items: center;
  margin-right: 40px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.cid-tKlxJm2NjG .title-wrapper .tags-wrapper .tags-wrap .tag-item .mbr-iconfont {
  font-size: 44px;
  margin-right: 8px;
  color: #222222;
}
.cid-tKlxJm2NjG .title-wrapper .tags-wrapper .tags-wrap .tag-item .mbr-tag {
  margin-bottom: 0;
}
.cid-tKlxJm2NjG .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.cid-tKlxJm2NjG .image-wrapper img {
  width: 420px;
  height: 420px;
  border-radius: 100%;
  border: 3px solid #222222;
  box-shadow: 4px 4px #222222;
  background-color: #222222;
  object-fit: cover;
}
@media (max-width: 1300px) {
  .cid-tKlxJm2NjG .image-wrapper img {
    width: 350px;
    height: 350px;
  }
}
@media (max-width: 1200px) {
  .cid-tKlxJm2NjG .image-wrapper img {
    width: 310px;
    height: 310px;
  }
}
@media (max-width: 768px) {
  .cid-tKlxJm2NjG .image-wrapper img {
    width: 280px;
    height: 280px;
  }
}
.cid-tKlxJm2NjG .mbr-section-title {
  color: #222222;
}
.cid-tKlxJm2NjG .mbr-text {
  color: #222222;
}
.cid-tKlxJm2NjG .mbr-tag {
  color: #222222;
}
.cid-tKlxJm2NjG .mbr-section-title,
.cid-tKlxJm2NjG .mbr-section-btn {
  color: #ffffff;
}
.cid-um4JKN1QKC {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-um4JKN1QKC img {
  width: 180px;
  margin: auto;
}
.cid-um4JKN1QKC .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  margin-bottom: 1rem;
}
.cid-um4JKN1QKC .mbr-section-title {
  color: #000000;
}
.cid-um4JKN1QKC .mbr-section-subtitle {
  border-radius: 1rem;
  width: fit-content;
  padding: 0.2rem 0.7rem;
  display: inline-block;
  background: #ff3eb4;
}
.cid-um4JKN1QKC .mbr-section-subtitle,
.cid-um4JKN1QKC .subtitle-wrap,
.cid-um4JKN1QKC .mbr-section-btn {
  text-align: center;
}
.cid-tHdCQGG89a {
  background-color: #17003b;
}
@media (max-width: 768px) {
  .cid-tHdCQGG89a {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
.cid-tHdCQGG89a .container-fluid {
  padding-left: 12px;
  padding-right: 12px;
}
@media (min-width: 992px) {
  .cid-tHdCQGG89a .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cid-tHdCQGG89a .row {
  align-items: center;
}
@media (max-width: 767px) {
  .cid-tHdCQGG89a .row {
    position: relative;
  }
}
.cid-tHdCQGG89a .custom-row {
  display: flex;
  max-width: 1200px;
  padding-left: 12px;
  padding-right: 12px;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-tHdCQGG89a .custom-row {
    padding-left: 16px;
    padding-right: 16px;
    flex-wrap: nowrap;
  }
}
@media (max-width: 767px) {
  .cid-tHdCQGG89a .map-col {
    height: 650px;
    order: 2;
    padding: 0!important;
  }
}
.cid-tHdCQGG89a .col-text {
  position: relative;
}
.cid-tHdCQGG89a .col-text .radial-svg {
  display: none;
}
@media (max-width: 767px) {
  .cid-tHdCQGG89a .col-text {
    order: 0;
    margin-bottom: 20px;
  }
}
@media (min-width: 768px) {
  .cid-tHdCQGG89a .col-text {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
@media (min-width: 992px) {
  .cid-tHdCQGG89a .col-text .radial-svg {
    display: block;
    position: absolute;
    top: 0;
    right: 84%;
    transform: scale(-1, 1);
    height: 100%;
    width: 150px;
    z-index: 1;
  }
  .cid-tHdCQGG89a .col-text .radial-svg path {
    fill: #17003b;
  }
}
.cid-tHdCQGG89a .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) {
  .cid-tHdCQGG89a .text-wrapper {
    padding-left: 4rem;
  }
}
.cid-tHdCQGG89a .text-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}
.cid-tHdCQGG89a .label-text {
  width: 100%;
  letter-spacing: 2px;
  color: #ff6666;
  margin-bottom: 4px;
}
@media (max-width: 767px) {
  .cid-tHdCQGG89a .label-text {
    text-align: center;
  }
}
.cid-tHdCQGG89a .mbr-section-title {
  margin-bottom: 32px;
  width: 100%;
  color: #111111;
}
@media (max-width: 767px) {
  .cid-tHdCQGG89a .mbr-section-title {
    text-align: center;
    margin-bottom: 20px;
  }
}
.cid-tHdCQGG89a .contact-container {
  margin-bottom: 50px;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-tHdCQGG89a .contact-container {
    width: 100%;
    margin-bottom: 20px;
  }
}
.cid-tHdCQGG89a .contact-container .phone-container {
  padding: 16px 25px;
  background-color: #6500e0;
  border-radius: 5px;
  margin-bottom: 10px;
  margin-right: 16px;
}
@media (max-width: 767px) {
  .cid-tHdCQGG89a .contact-container .phone-container {
    width: 100%;
    margin-right: 0;
  }
}
.cid-tHdCQGG89a .contact-container .email-container {
  padding: 16px 25px;
  background-color: #6500e0;
  border-radius: 5px;
  margin-bottom: 10px;
  margin-right: 16px;
}
@media (max-width: 767px) {
  .cid-tHdCQGG89a .contact-container .email-container {
    width: 100%;
    margin-right: 0;
  }
}
.cid-tHdCQGG89a .contact-text {
  color: #ffffff;
}
.cid-tHdCQGG89a .cards-container {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  padding: 0;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .cid-tHdCQGG89a .cards-container {
    text-align: center;
  }
}
.cid-tHdCQGG89a .cards-title {
  margin-bottom: 12px;
  color: #ffffff;
}
.cid-tHdCQGG89a .card {
  padding: 9px 0;
}
.cid-tHdCQGG89a .card-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media (max-width: 767px) {
  .cid-tHdCQGG89a .card-wrapper {
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  .cid-tHdCQGG89a .card-title {
    font-size: 1.5rem !important;
  }
}
.cid-tHdCQGG89a .icon-box {
  margin-right: 12px;
}
.cid-tHdCQGG89a .icon-box .mbr-iconfont {
  color: #111111;
}
.cid-tHdCQGG89a .card-text {
  color: #ffffff;
  letter-spacing: inherit;
  flex-grow: 1;
}
.cid-tHdCQGG89a .btn-container {
  width: 100%;
}
.cid-tHdCQGG89a .mbr-section-btn {
  margin-top: 10px;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tHdCQGG89a .mbr-section-btn {
    text-align: center;
    margin-left: 0;
    margin-right: 0;
  }
}
.cid-tHdCQGG89a .mbr-section-btn .btn {
  padding: 0;
  transition: all 0.3s ease 0s;
}
.cid-tHdCQGG89a .mbr-section-btn .btn span {
  margin-left: 0;
  padding-left: 0.5rem;
  transition: all 0.3s ease 0s;
}
.cid-tHdCQGG89a .mbr-section-btn .btn:hover span {
  padding-left: 1.25rem;
}
.cid-tHdCQGG89a .google-map {
  position: absolute;
}
@media (max-width: 767px) {
  .cid-tHdCQGG89a .google-map {
    height: 650px;
    width: 100%;
    padding: 0;
    left: 0;
    bottom: 0;
  }
}
@media (min-width: 768px) {
  .cid-tHdCQGG89a .google-map {
    height: 100%;
    width: 50%;
    padding: 0;
    left: 0;
    top: 0;
  }
}
.cid-tHdCQGG89a .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tHdCQGG89a .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-tHdCQGG89a .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tHdCQGG89a .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tHdCQGG89a .mbr-fallback-image.disabled {
  display: none;
}
.cid-tHdCQGG89a .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tHdCQGG89a .mbr-section-title,
.cid-tHdCQGG89a .mbr-section-btn {
  color: #ffffff;
}
.cid-tqJ47Lt4tP {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #17003b;
}
.cid-tqJ47Lt4tP p {
  text-align: center;
}
.cid-tqJ47Lt4tP .text-copyright {
  width: 100%;
  margin-bottom: 0;
}
.cid-tqJ47Lt4tP .img-logo-footer {
  margin-right: 1rem;
  max-width: 3rem;
}
.cid-tqJ47Lt4tP .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
  color: #ffffff;
}
.cid-tqJ47Lt4tP .logo-footer {
  line-height: normal;
}
.cid-tqJ47Lt4tP .copyright .list-inline {
  margin-bottom: 0;
}
.cid-tqJ47Lt4tP .copyright .list-inline .list-inline-item {
  margin: 10px 15px;
}
@media (max-width: 767px) {
  .cid-tqJ47Lt4tP .copyright .list-inline .list-inline-item {
    margin: 10px 6px;
  }
}
.cid-tqJ47Lt4tP li {
  overflow: hidden;
}
.cid-tqJ47Lt4tP .icon-transition span {
  display: block;
}
.cid-tqJ47Lt4tP .icon-transition:hover span {
  animation: 0.3s linear top;
}
.cid-tqJ47Lt4tP .list-inline-item a {
  display: block;
}
.cid-tqJ47Lt4tP .list-inline-item:hover a {
  animation: 0.3s linear top;
}
@keyframes top {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-100%);
  }
  51% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}
.cid-tqJ47Lt4tP .social-btns {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tqJ47Lt4tP .media-container-row {
  align-items: center;
  justify-content: space-between;
}
.cid-tqJ47Lt4tP .icon-transition span {
  color: #ffffff;
  display: block;
  text-align: center;
  height: 2rem;
  border-radius: 50%;
  line-height: 2rem;
  width: 2rem;
  transition: all 0.3s ease-out 0s;
  font-size: 1.5rem;
}
.cid-tqJ47Lt4tP .social-media {
  display: flex;
  justify-content: flex-end;
}
.cid-tqJ47Lt4tP .social-media ul {
  margin: 0;
  padding: 0;
}
.cid-tqJ47Lt4tP .social-media ul li {
  padding: 4px;
  display: inline-block;
}
@media (max-width: 991px) {
  .cid-tqJ47Lt4tP .logo-footer {
    text-align: center;
  }
  .cid-tqJ47Lt4tP .social-media {
    justify-content: center;
  }
}
.cid-ueMt9L64hq .navbar-dropdown {
  position: relative !important;
}
.cid-ueMt9L64hq .navbar-dropdown {
  position: absolute !important;
}
@media (min-width: 992px) {
  .cid-ueMt9L64hq .nav-dropdown {
    margin-top: 2rem;
  }
}
.cid-ueMt9L64hq .navbar {
  min-height: 140px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(23, 0, 59, 0);
}
.cid-ueMt9L64hq .navbar.opened {
  transition: all 0.3s;
}
.cid-ueMt9L64hq .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ueMt9L64hq .navbar .navbar-logo img {
  width: auto;
}
.cid-ueMt9L64hq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ueMt9L64hq .navbar.collapsed {
  justify-content: center;
}
.cid-ueMt9L64hq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ueMt9L64hq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ueMt9L64hq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 7.1rem);
  }
}
.cid-ueMt9L64hq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ueMt9L64hq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ueMt9L64hq .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-ueMt9L64hq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ueMt9L64hq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ueMt9L64hq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ueMt9L64hq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ueMt9L64hq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ueMt9L64hq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ueMt9L64hq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ueMt9L64hq .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-ueMt9L64hq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ueMt9L64hq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ueMt9L64hq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ueMt9L64hq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ueMt9L64hq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ueMt9L64hq .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ueMt9L64hq .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ueMt9L64hq .navbar.navbar-short {
  min-height: 60px;
}
.cid-ueMt9L64hq .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ueMt9L64hq .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ueMt9L64hq .navbar-logo {
  margin: 0;
}
.cid-ueMt9L64hq .container,
.cid-ueMt9L64hq .container-fluid {
  justify-content: flex-end;
  min-height: 100px;
}
@media (max-width: 767px) {
  .cid-ueMt9L64hq .container,
  .cid-ueMt9L64hq .container-fluid {
    justify-content: space-between;
  }
}
.cid-ueMt9L64hq .navbar-brand {
  margin: auto !important;
  position: absolute;
  width: 200px;
  flex-direction: column;
  top: -5px;
  left: 50%;
  right: 50%;
  transform: translateX(-50%);
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0 !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ueMt9L64hq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ueMt9L64hq .navbar-brand .navbar-logo a {
  outline: none;
  margin-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-ueMt9L64hq .navbar-brand {
    display: none;
  }
}
.cid-ueMt9L64hq .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ueMt9L64hq .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ueMt9L64hq .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ueMt9L64hq .dropdown-item:hover,
.cid-ueMt9L64hq .dropdown-item:focus {
  background: #17003b !important;
  color: white !important;
}
.cid-ueMt9L64hq .dropdown-item:hover span {
  color: white;
}
.cid-ueMt9L64hq .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ueMt9L64hq .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ueMt9L64hq .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.2em 1em !important;
}
.cid-ueMt9L64hq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ueMt9L64hq .nav-link {
  position: relative;
}
.cid-ueMt9L64hq .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ueMt9L64hq .container {
    flex-wrap: nowrap;
  }
}
.cid-ueMt9L64hq .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ueMt9L64hq .dropdown-menu,
.cid-ueMt9L64hq .navbar.opened {
  background: #17003b !important;
}
.cid-ueMt9L64hq .nav-item:focus,
.cid-ueMt9L64hq .nav-link:focus {
  outline: none;
}
.cid-ueMt9L64hq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ueMt9L64hq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ueMt9L64hq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ueMt9L64hq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ueMt9L64hq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ueMt9L64hq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ueMt9L64hq .dropdown-item.active,
.cid-ueMt9L64hq .dropdown-item:active {
  background-color: transparent;
}
.cid-ueMt9L64hq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ueMt9L64hq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ueMt9L64hq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ueMt9L64hq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #17003b;
}
.cid-ueMt9L64hq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ueMt9L64hq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ueMt9L64hq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ueMt9L64hq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ueMt9L64hq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ueMt9L64hq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ueMt9L64hq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ueMt9L64hq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ueMt9L64hq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ueMt9L64hq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ueMt9L64hq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ueMt9L64hq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ueMt9L64hq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ueMt9L64hq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ueMt9L64hq .navbar-dropdown {
  padding: 0 1rem;
}
.cid-ueMt9L64hq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ueMt9L64hq .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ueMt9L64hq .navbar {
    height: 70px;
  }
  .cid-ueMt9L64hq .navbar.opened {
    height: auto;
  }
  .cid-ueMt9L64hq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ueMrzigjLf {
  padding-top: 12rem;
  padding-bottom: 5rem;
  background-color: #17003b;
  overflow: hidden;
}
.cid-ueMrzigjLf .mbr-fallback-image.disabled {
  display: none;
}
.cid-ueMrzigjLf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-ueMrzigjLf .container {
    padding: 0 30px;
  }
}
.cid-ueMrzigjLf .card {
  justify-content: center;
}
.cid-ueMrzigjLf .content-wrapper {
  padding: 0 120px;
}
@media (max-width: 1440px) {
  .cid-ueMrzigjLf .content-wrapper {
    padding: 0 60px;
  }
}
@media (max-width: 992px) {
  .cid-ueMrzigjLf .content-wrapper {
    padding: 0;
  }
}
.cid-ueMrzigjLf .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  position: relative;
  align-items: center;
  margin-bottom: 60px;
  padding-left: 120px;
}
@media (max-width: 992px) {
  .cid-ueMrzigjLf .content-wrapper .desc-wrapper .mbr-desc {
    margin-bottom: 40px;
    padding-left: 60px;
  }
}
.cid-ueMrzigjLf .content-wrapper .desc-wrapper .mbr-desc::before {
  content: '';
  position: absolute;
  left: 0;
  width: 90px;
  height: 1px;
  background-color: #5e2da9;
}
@media (max-width: 992px) {
  .cid-ueMrzigjLf .content-wrapper .desc-wrapper .mbr-desc::before {
    width: 40px;
  }
}
.cid-ueMrzigjLf .content-wrapper .mbr-text {
  margin-bottom: 180px;
}
@media (max-width: 992px) {
  .cid-ueMrzigjLf .content-wrapper .mbr-text {
    margin-bottom: 80px;
  }
}
.cid-ueMrzigjLf .content-wrapper .items-wrapper {
  padding-left: 240px;
}
@media (max-width: 1440px) {
  .cid-ueMrzigjLf .content-wrapper .items-wrapper {
    padding-left: 120px;
  }
}
@media (max-width: 992px) {
  .cid-ueMrzigjLf .content-wrapper .items-wrapper {
    padding-left: 0;
  }
}
.cid-ueMrzigjLf .content-wrapper .items-wrapper .item {
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-ueMrzigjLf .content-wrapper .items-wrapper .item {
    margin-bottom: 80px;
  }
}
.cid-ueMrzigjLf .content-wrapper .items-wrapper .item .item-wrapper {
  display: flex;
}
@media (max-width: 992px) {
  .cid-ueMrzigjLf .content-wrapper .items-wrapper .item .item-wrapper {
    display: block;
  }
}
.cid-ueMrzigjLf .content-wrapper .items-wrapper .item .item-wrapper .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  width: 55px;
  height: 55px;
  font-size: 55px;
  min-width: 55px;
  margin-right: 60px;
  color: #5e2da9;
}
@media (max-width: 992px) {
  .cid-ueMrzigjLf .content-wrapper .items-wrapper .item .item-wrapper .icon-wrapper .mbr-iconfont {
    margin: 0 0 40px 0;
  }
}
.cid-ueMrzigjLf .content-wrapper .items-wrapper .item .item-wrapper .item-content .item-title {
  margin-bottom: 40px;
}
.cid-ueMrzigjLf .content-wrapper .items-wrapper .item .item-wrapper .item-content .item-text {
  margin-bottom: 0;
}
.cid-ueMrzigjLf .mbr-desc {
  color: #254b45;
}
.cid-ueMrzigjLf .mbr-text {
  color: #ffffff;
}
.cid-ueMrzigjLf .item-title {
  color: #ff30af;
}
.cid-ueMrzigjLf .item-text {
  color: #ffffff;
}
.cid-ueMrzigjLf .mbr-desc,
.cid-ueMrzigjLf .desc-wrapper {
  color: #ffffff;
}
.cid-tqJ47Lt4tP {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #17003b;
}
.cid-tqJ47Lt4tP p {
  text-align: center;
}
.cid-tqJ47Lt4tP .text-copyright {
  width: 100%;
  margin-bottom: 0;
}
.cid-tqJ47Lt4tP .img-logo-footer {
  margin-right: 1rem;
  max-width: 3rem;
}
.cid-tqJ47Lt4tP .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
  color: #ffffff;
}
.cid-tqJ47Lt4tP .logo-footer {
  line-height: normal;
}
.cid-tqJ47Lt4tP .copyright .list-inline {
  margin-bottom: 0;
}
.cid-tqJ47Lt4tP .copyright .list-inline .list-inline-item {
  margin: 10px 15px;
}
@media (max-width: 767px) {
  .cid-tqJ47Lt4tP .copyright .list-inline .list-inline-item {
    margin: 10px 6px;
  }
}
.cid-tqJ47Lt4tP li {
  overflow: hidden;
}
.cid-tqJ47Lt4tP .icon-transition span {
  display: block;
}
.cid-tqJ47Lt4tP .icon-transition:hover span {
  animation: 0.3s linear top;
}
.cid-tqJ47Lt4tP .list-inline-item a {
  display: block;
}
.cid-tqJ47Lt4tP .list-inline-item:hover a {
  animation: 0.3s linear top;
}
@keyframes top {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-100%);
  }
  51% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}
.cid-tqJ47Lt4tP .social-btns {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tqJ47Lt4tP .media-container-row {
  align-items: center;
  justify-content: space-between;
}
.cid-tqJ47Lt4tP .icon-transition span {
  color: #ffffff;
  display: block;
  text-align: center;
  height: 2rem;
  border-radius: 50%;
  line-height: 2rem;
  width: 2rem;
  transition: all 0.3s ease-out 0s;
  font-size: 1.5rem;
}
.cid-tqJ47Lt4tP .social-media {
  display: flex;
  justify-content: flex-end;
}
.cid-tqJ47Lt4tP .social-media ul {
  margin: 0;
  padding: 0;
}
.cid-tqJ47Lt4tP .social-media ul li {
  padding: 4px;
  display: inline-block;
}
@media (max-width: 991px) {
  .cid-tqJ47Lt4tP .logo-footer {
    text-align: center;
  }
  .cid-tqJ47Lt4tP .social-media {
    justify-content: center;
  }
}
.cid-ueMt9L64hq .navbar-dropdown {
  position: relative !important;
}
.cid-ueMt9L64hq .navbar-dropdown {
  position: absolute !important;
}
@media (min-width: 992px) {
  .cid-ueMt9L64hq .nav-dropdown {
    margin-top: 2rem;
  }
}
.cid-ueMt9L64hq .navbar {
  min-height: 140px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(23, 0, 59, 0);
}
.cid-ueMt9L64hq .navbar.opened {
  transition: all 0.3s;
}
.cid-ueMt9L64hq .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ueMt9L64hq .navbar .navbar-logo img {
  width: auto;
}
.cid-ueMt9L64hq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ueMt9L64hq .navbar.collapsed {
  justify-content: center;
}
.cid-ueMt9L64hq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ueMt9L64hq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ueMt9L64hq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 7.1rem);
  }
}
.cid-ueMt9L64hq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ueMt9L64hq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ueMt9L64hq .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-ueMt9L64hq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ueMt9L64hq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ueMt9L64hq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ueMt9L64hq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ueMt9L64hq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ueMt9L64hq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ueMt9L64hq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ueMt9L64hq .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-ueMt9L64hq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ueMt9L64hq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ueMt9L64hq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ueMt9L64hq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ueMt9L64hq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ueMt9L64hq .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ueMt9L64hq .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ueMt9L64hq .navbar.navbar-short {
  min-height: 60px;
}
.cid-ueMt9L64hq .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ueMt9L64hq .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ueMt9L64hq .navbar-logo {
  margin: 0;
}
.cid-ueMt9L64hq .container,
.cid-ueMt9L64hq .container-fluid {
  justify-content: flex-end;
  min-height: 100px;
}
@media (max-width: 767px) {
  .cid-ueMt9L64hq .container,
  .cid-ueMt9L64hq .container-fluid {
    justify-content: space-between;
  }
}
.cid-ueMt9L64hq .navbar-brand {
  margin: auto !important;
  position: absolute;
  width: 200px;
  flex-direction: column;
  top: -5px;
  left: 50%;
  right: 50%;
  transform: translateX(-50%);
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0 !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ueMt9L64hq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ueMt9L64hq .navbar-brand .navbar-logo a {
  outline: none;
  margin-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-ueMt9L64hq .navbar-brand {
    display: none;
  }
}
.cid-ueMt9L64hq .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ueMt9L64hq .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ueMt9L64hq .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ueMt9L64hq .dropdown-item:hover,
.cid-ueMt9L64hq .dropdown-item:focus {
  background: #17003b !important;
  color: white !important;
}
.cid-ueMt9L64hq .dropdown-item:hover span {
  color: white;
}
.cid-ueMt9L64hq .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ueMt9L64hq .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ueMt9L64hq .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.2em 1em !important;
}
.cid-ueMt9L64hq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ueMt9L64hq .nav-link {
  position: relative;
}
.cid-ueMt9L64hq .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ueMt9L64hq .container {
    flex-wrap: nowrap;
  }
}
.cid-ueMt9L64hq .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ueMt9L64hq .dropdown-menu,
.cid-ueMt9L64hq .navbar.opened {
  background: #17003b !important;
}
.cid-ueMt9L64hq .nav-item:focus,
.cid-ueMt9L64hq .nav-link:focus {
  outline: none;
}
.cid-ueMt9L64hq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ueMt9L64hq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ueMt9L64hq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ueMt9L64hq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ueMt9L64hq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ueMt9L64hq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ueMt9L64hq .dropdown-item.active,
.cid-ueMt9L64hq .dropdown-item:active {
  background-color: transparent;
}
.cid-ueMt9L64hq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ueMt9L64hq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ueMt9L64hq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ueMt9L64hq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #17003b;
}
.cid-ueMt9L64hq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ueMt9L64hq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ueMt9L64hq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ueMt9L64hq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ueMt9L64hq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ueMt9L64hq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ueMt9L64hq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ueMt9L64hq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ueMt9L64hq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ueMt9L64hq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ueMt9L64hq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ueMt9L64hq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ueMt9L64hq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ueMt9L64hq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ueMt9L64hq .navbar-dropdown {
  padding: 0 1rem;
}
.cid-ueMt9L64hq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ueMt9L64hq .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ueMt9L64hq .navbar {
    height: 70px;
  }
  .cid-ueMt9L64hq .navbar.opened {
    height: auto;
  }
  .cid-ueMt9L64hq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tqJ47Lt4tP {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #17003b;
}
.cid-tqJ47Lt4tP p {
  text-align: center;
}
.cid-tqJ47Lt4tP .text-copyright {
  width: 100%;
  margin-bottom: 0;
}
.cid-tqJ47Lt4tP .img-logo-footer {
  margin-right: 1rem;
  max-width: 3rem;
}
.cid-tqJ47Lt4tP .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
  color: #ffffff;
}
.cid-tqJ47Lt4tP .logo-footer {
  line-height: normal;
}
.cid-tqJ47Lt4tP .copyright .list-inline {
  margin-bottom: 0;
}
.cid-tqJ47Lt4tP .copyright .list-inline .list-inline-item {
  margin: 10px 15px;
}
@media (max-width: 767px) {
  .cid-tqJ47Lt4tP .copyright .list-inline .list-inline-item {
    margin: 10px 6px;
  }
}
.cid-tqJ47Lt4tP li {
  overflow: hidden;
}
.cid-tqJ47Lt4tP .icon-transition span {
  display: block;
}
.cid-tqJ47Lt4tP .icon-transition:hover span {
  animation: 0.3s linear top;
}
.cid-tqJ47Lt4tP .list-inline-item a {
  display: block;
}
.cid-tqJ47Lt4tP .list-inline-item:hover a {
  animation: 0.3s linear top;
}
@keyframes top {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-100%);
  }
  51% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}
.cid-tqJ47Lt4tP .social-btns {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tqJ47Lt4tP .media-container-row {
  align-items: center;
  justify-content: space-between;
}
.cid-tqJ47Lt4tP .icon-transition span {
  color: #ffffff;
  display: block;
  text-align: center;
  height: 2rem;
  border-radius: 50%;
  line-height: 2rem;
  width: 2rem;
  transition: all 0.3s ease-out 0s;
  font-size: 1.5rem;
}
.cid-tqJ47Lt4tP .social-media {
  display: flex;
  justify-content: flex-end;
}
.cid-tqJ47Lt4tP .social-media ul {
  margin: 0;
  padding: 0;
}
.cid-tqJ47Lt4tP .social-media ul li {
  padding: 4px;
  display: inline-block;
}
@media (max-width: 991px) {
  .cid-tqJ47Lt4tP .logo-footer {
    text-align: center;
  }
  .cid-tqJ47Lt4tP .social-media {
    justify-content: center;
  }
}
.cid-ue8RxEdiQi {
  padding-top: 15rem;
  padding-bottom: 8rem;
  background-color: #17003b;
}
.cid-ue8RxEdiQi .mbr-fallback-image.disabled {
  display: none;
}
.cid-ue8RxEdiQi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ue8RxEdiQi .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-ue8RxEdiQi .mbr-text,
.cid-ue8RxEdiQi .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-ue8RxEdiQi b,
.cid-ue8RxEdiQi strong {
  font-weight: 900;
}
.cid-ue8RxEdiQi .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-ufh05yktbd {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #f9f9f9;
}
.cid-ufh05yktbd .mbr-text {
  color: #767676;
}
.cid-ufh05yktbd h4 {
  font-weight: 500;
}
.cid-ufh05yktbd h4,
.cid-ufh05yktbd h5 {
  text-align: center;
}
.cid-ufh05yktbd p {
  text-align: center;
}
.cid-ufh05yktbd .card-box {
  text-align: center;
}
.cid-ufh05yktbd .card-img {
  font-size: 3rem;
}
.cid-ufh05yktbd .mbr-iconfont {
  color: #17003b;
}
.cid-ufh05yktbd .mbr-fallback-image.disabled {
  display: none;
}
.cid-ufh05yktbd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ufhfv8lKJn {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-ufhfv8lKJn .mbr-fallback-image.disabled {
  display: none;
}
.cid-ufhfv8lKJn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-ufhfv8lKJn .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ufhfv8lKJn .row {
  flex-direction: row-reverse;
}
.cid-ufhfv8lKJn .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-ufhfv8lKJn .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-ufhfv8lKJn .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-ufhfv8lKJn .mbr-section-title {
  color: #000000;
}
.cid-ufhfv8lKJn .mbr-text,
.cid-ufhfv8lKJn .mbr-section-btn {
  color: #232323;
}
.cid-ueTy8x4gIF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  position: relative;
  background-color: #290167;
}
.cid-ueTy8x4gIF .decor-wrap_1 {
  position: absolute;
  top: -4rem;
  left: 18%;
  width: 133px;
  height: 133px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #17003b 0, #38008f 43%, #5e2da9 100%);
}
.cid-ueTy8x4gIF .decor-wrap_2 {
  position: absolute;
  bottom: 4rem;
  left: -6rem;
  width: 207px;
  height: 207px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #17003b 0, #38008f 43%, #5e2da9 100%);
}
.cid-ueTy8x4gIF .decor-wrap_3 {
  position: absolute;
  bottom: -55%;
  right: -2rem;
  width: 422px;
  height: 422px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #17003b 0, #38008f 43%, #5e2da9 100%);
}
.cid-ueTy8x4gIF .mbr-fallback-image.disabled {
  display: none;
}
.cid-ueTy8x4gIF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-ueTy8x4gIF .container {
    padding: 0 30px;
  }
}
.cid-ueTy8x4gIF .row {
  justify-content: center;
  position: relative;
  z-index: 1;
}
.cid-ueTy8x4gIF .content-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-ueTy8x4gIF .content-wrapper .text-wrapper .mbr-text {
  display: inline-flex;
  width: 60%;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-ueTy8x4gIF .content-wrapper .text-wrapper .mbr-text {
    margin-bottom: 30px;
    width: 100%;
  }
}
.cid-ueTy8x4gIF .mbr-section-title {
  color: #ffffff;
}
.cid-ueTy8x4gIF .mbr-text,
.cid-ueTy8x4gIF .text-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-ueTy8x4gIF .mbr-section-title,
.cid-ueTy8x4gIF .mbr-section-btn {
  text-align: center;
}
