body {
  font-family: 'Syne', sans-serif;
}
.display-1 {
  font-family: 'Syne', sans-serif;
  font-size: 5rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 6.25rem;
}
.display-2 {
  font-family: 'Syne', sans-serif;
  font-size: 3.125rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.90625rem;
}
.display-4 {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  line-height: 1.25;
}
.display-4 > .mbr-iconfont {
  font-size: 1.875rem;
}
.display-5 {
  font-family: 'Syne', sans-serif;
  font-size: 2.2rem;
  line-height: 1.14;
}
.display-5 > .mbr-iconfont {
  font-size: 2.75rem;
}
.display-7 {
  font-family: 'Syne', sans-serif;
  font-size: 1.25rem;
  line-height: 1.41;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5625rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 4rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.5rem;
    font-size: calc( 2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.5rem;
    font-size: calc( 1.74375rem + (3.125 - 1.74375) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.74375rem + (3.125 - 1.74375) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.25 * (1.175rem + (1.5 - 1.175) * ((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.14 * (1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1rem;
    font-size: calc( 1.0875rem + (1.25 - 1.0875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.41 * (1.0875rem + (1.25 - 1.0875) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #f0a66e !important;
}
.bg-success {
  background-color: #c298d3 !important;
}
.bg-info {
  background-color: #85c0d9 !important;
}
.bg-warning {
  background-color: #ffe885 !important;
}
.bg-danger {
  background-color: #e6c63b !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #f0a66e !important;
  border-color: #f0a66e !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #e8761f !important;
  border-color: #e8761f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #e8761f !important;
  border-color: #e8761f !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #57b8e0 !important;
  border-color: #57b8e0 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #2390bd !important;
  border-color: #2390bd !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #2390bd !important;
  border-color: #2390bd !important;
}
.btn-info,
.btn-info:active {
  background-color: #85c0d9 !important;
  border-color: #85c0d9 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #439ec4 !important;
  border-color: #439ec4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #439ec4 !important;
  border-color: #439ec4 !important;
}
.btn-success,
.btn-success:active {
  background-color: #c298d3 !important;
  border-color: #c298d3 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #9e5bb9 !important;
  border-color: #9e5bb9 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #9e5bb9 !important;
  border-color: #9e5bb9 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe885 !important;
  border-color: #ffe885 !important;
  color: #856c00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #2e2600 !important;
  background-color: #ffd82e !important;
  border-color: #ffd82e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #856c00 !important;
  background-color: #ffd82e !important;
  border-color: #ffd82e !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #e6c63b !important;
  border-color: #e6c63b !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #b39617 !important;
  border-color: #b39617 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #b39617 !important;
  border-color: #b39617 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #f0a66e;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #e8761f !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: #f0a66e !important;
  border-color: #f0a66e !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #57b8e0;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #2390bd !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: #57b8e0 !important;
  border-color: #57b8e0 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #85c0d9;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #439ec4 !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: #85c0d9 !important;
  border-color: #85c0d9 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #c298d3;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #9e5bb9 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #c298d3 !important;
  border-color: #c298d3 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe885;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd82e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #856c00 !important;
  background-color: #ffe885 !important;
  border-color: #ffe885 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #e6c63b;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #b39617 !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: #e6c63b !important;
  border-color: #e6c63b !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #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: #f0a66e !important;
}
.text-secondary {
  color: #57b8e0 !important;
}
.text-success {
  color: #c298d3 !important;
}
.text-info {
  color: #85c0d9 !important;
}
.text-warning {
  color: #ffe885 !important;
}
.text-danger {
  color: #e6c63b !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #e16e17 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #2186b0 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #9851b4 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #3b96bd !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #ffd51f !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #a68b15 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #f0a66e;
}
.nav-tabs .nav-link:not(.active) {
  color: #000000;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #85c0d9;
}
.alert-warning {
  background-color: #ffe885;
}
.alert-danger {
  background-color: #e6c63b;
}
.mbr-gallery-filter li.active .btn {
  background-color: #f0a66e;
  border-color: #f0a66e;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #f0a66e;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #fdfbf0;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  line-height: 1.25;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.875rem;
}
.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: #f0a66e !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  line-height: 1.25;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.875rem;
}
blockquote {
  border-color: #f0a66e;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #f0a66e;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #f0a66e;
}
.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: #f0a66e;
  border-bottom-color: #f0a66e;
}
.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: #000000 !important;
  background-color: #f0a66e !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #57b8e0 !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='%23f0a66e' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
a:hover {
  background-image: none !important;
}
.container {
  max-width: 100%;
  width: 86%;
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 801px) {
  .container {
    max-width: 768px;
  }
}
@media (min-width: 1025px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1201px) {
  .container {
    max-width: 1100px;
  }
}
@media (min-width: 1441px) {
  .container {
    max-width: 1300px;
  }
}
.row {
  margin-left: 0;
  margin-right: 0;
  justify-content: center;
}
.row > [class*="col"] {
  padding-left: 0;
  padding-right: 0;
}
.mbr-section-btn .btn {
  min-width: 190px;
  border-radius: 0;
  padding: 17px 48px 15px 50px;
  line-height: 1.33;
  font-weight: 500 !important;
  box-shadow: none !important;
}
@media (max-width: 575px) {
  .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .mbr-section-btn .btn {
    width: 100%;
    box-shadow: none !important;
  }
}
.mbr-section-btn .btn-primary {
  color: #ffffff !important;
  border: 1px solid;
  border-image-slice: 1;
  border-image-source: linear-gradient(70deg, #57b8e0, #5762e2, #be8ec6);
  background: #5cc3ee !important;
  background: linear-gradient(45deg, #5cc3ee 0, #5d91ef 29%, #5e5ef0 50%, #947be1 73%, #ca97d2 100%) !important;
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.mbr-section-btn .btn-primary:hover {
  color: #000 !important;
  background: 0 0 !important;
}
.mbr-section-btn .btn-primary-outline {
  color: #000000 !important;
  border: 1px solid;
  border-image-slice: 1;
  border-image-source: linear-gradient(70deg, #57b8e0, #5762e2, #be8ec6);
  background: 0 0;
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.mbr-section-btn .btn-primary-outline:hover {
  color: #fff !important;
  background: #5cc3ee !important;
  background: linear-gradient(45deg, #5cc3ee 0, #5d91ef 29%, #5e5ef0 50%, #947be1 73%, #ca97d2 100%) !important;
}
b {
  font-weight: 600 !important;
}
.cid-t0qSejmzDz .navbar-dropdown {
  position: relative !important;
}
.cid-t0qSejmzDz .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-t0qSejmzDz .dropdown-menu {
  background: #ffffff !important;
}
@media (max-width: 991px) {
  .cid-t0qSejmzDz .dropdown-menu {
    padding: 0 !important;
  }
}
@media (min-width: 992px) {
  .cid-t0qSejmzDz .dropdown-menu {
    padding: 23px 0;
    box-shadow: -0.968px 3.881px 24.94px 4.06px rgba(195, 196, 249, 0.28);
  }
}
.cid-t0qSejmzDz .dropdown-item {
  padding: 0 28px 0 38px !important;
  min-width: 240px;
  color: transparent;
  background: transparent !important;
  background-image: linear-gradient(-90deg, #5cc2ed 0, #5d62ee 25%, #c298d3 50%, currentColor 51%, currentColor 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-size: 200% 100% !important;
  background-position: left !important;
  transition: background-position 0.4s ease;
}
@media (max-width: 991px) {
  .cid-t0qSejmzDz .dropdown-item {
    padding: 4px 0 4px 15px !important;
    text-align: left !important;
  }
}
.cid-t0qSejmzDz .dropdown-item:hover {
  background-position: right !important;
}
.cid-t0qSejmzDz .dropdown-item:hover:after {
  color: #f0a66e;
}
.cid-t0qSejmzDz .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-t0qSejmzDz .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t0qSejmzDz .nav-link {
  position: relative;
}
.cid-t0qSejmzDz .container {
  display: flex;
  margin: auto;
  flex-wrap: wrap;
}
.cid-t0qSejmzDz .dropdown-menu,
.cid-t0qSejmzDz .navbar.opened {
  background: #ffffff !important;
}
.cid-t0qSejmzDz .nav-item:focus,
.cid-t0qSejmzDz .nav-link:focus {
  outline: none;
}
.cid-t0qSejmzDz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t0qSejmzDz .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t0qSejmzDz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t0qSejmzDz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t0qSejmzDz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t0qSejmzDz .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t0qSejmzDz .navbar {
  transition: all 0.4s ease-out;
  box-sizing: content-box;
  min-height: 60px;
  position: static !important;
  background-color: #ffffff;
}
.cid-t0qSejmzDz .navbar.opened {
  transition: all 0.3s;
}
@media (max-width: 991px) {
  .cid-t0qSejmzDz .navbar.opened {
    border-bottom: 1px solid #F3F3F3;
  }
}
.cid-t0qSejmzDz .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t0qSejmzDz .navbar .navbar-logo img {
  width: auto;
}
.cid-t0qSejmzDz .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t0qSejmzDz .navbar.collapsed {
  justify-content: center;
}
.cid-t0qSejmzDz .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t0qSejmzDz .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t0qSejmzDz .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-t0qSejmzDz .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t0qSejmzDz .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t0qSejmzDz .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-t0qSejmzDz .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t0qSejmzDz .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t0qSejmzDz .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t0qSejmzDz .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t0qSejmzDz .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t0qSejmzDz .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t0qSejmzDz .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t0qSejmzDz .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-t0qSejmzDz .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t0qSejmzDz .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t0qSejmzDz .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t0qSejmzDz .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t0qSejmzDz .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t0qSejmzDz .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t0qSejmzDz .navbar.navbar-short {
  min-height: 60px;
}
.cid-t0qSejmzDz .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t0qSejmzDz .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0 2rem 0 0;
}
@media (max-width: 480px) {
  .cid-t0qSejmzDz .navbar {
    padding: 5px 7% !important;
  }
}
@media (min-width: 481px) {
  .cid-t0qSejmzDz .navbar {
    padding: 5px 40px !important;
  }
}
@media (min-width: 992px) {
  .cid-t0qSejmzDz .navbar {
    padding: 5px 73px !important;
  }
}
.cid-t0qSejmzDz .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0 2rem 0 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t0qSejmzDz .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t0qSejmzDz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t0qSejmzDz .dropdown-item.active,
.cid-t0qSejmzDz .dropdown-item:active {
  background-color: transparent;
}
.cid-t0qSejmzDz .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t0qSejmzDz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t0qSejmzDz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t0qSejmzDz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t0qSejmzDz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t0qSejmzDz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t0qSejmzDz ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t0qSejmzDz button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t0qSejmzDz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-t0qSejmzDz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t0qSejmzDz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0qSejmzDz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0qSejmzDz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t0qSejmzDz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0qSejmzDz nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t0qSejmzDz nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t0qSejmzDz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0qSejmzDz .navbar-dropdown {
  padding: 0;
}
.cid-t0qSejmzDz a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t0qSejmzDz .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-t0qSejmzDz .navbar {
    height: 70px;
  }
  .cid-t0qSejmzDz .navbar.opened {
    height: auto;
  }
  .cid-t0qSejmzDz .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t0qSejmzDz .navbar-short {
  background-color: #ffffff !important;
  min-height: 60px;
}
@media (max-width: 480px) {
  .cid-t0qSejmzDz .navbar-short {
    padding: 5px 7% !important;
  }
}
@media (min-width: 481px) {
  .cid-t0qSejmzDz .navbar-short {
    padding: 5px 40px !important;
  }
}
@media (min-width: 992px) {
  .cid-t0qSejmzDz .navbar-short {
    padding: 5px 73px !important;
    box-shadow: 0 2px 25px 4px rgba(195, 196, 249, 0.35) !important;
  }
}
.cid-t0qSejmzDz .container-fluid {
  padding: 0 !important;
}
@media (max-width: 991px) {
  .cid-t0qSejmzDz .container-fluid {
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  .cid-t0qSejmzDz .container-fluid .show {
    padding-bottom: 30px;
  }
}
.cid-t0qSejmzDz .navbar-collapse {
  margin-left: auto;
  flex-grow: 0;
}
@media (max-width: 991px) {
  .cid-t0qSejmzDz .navbar-collapse.show {
    padding: 0 0 24px;
  }
}
@media (max-width: 991px) {
  .cid-t0qSejmzDz .navbar-nav {
    padding-top: 18px;
  }
}
.cid-t0qSejmzDz .nav-item .nav-link {
  color: transparent;
  margin: 12px 22px !important;
  background-image: linear-gradient(-90deg, #5cc2ed 0, #5d62ee 25%, #c298d3 50%, currentColor 51%, currentColor 100%) !important;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 100%;
  background-position: left;
  transition: background-position 0.4s ease;
}
.cid-t0qSejmzDz .nav-item .nav-link:hover {
  background-position: right;
}
.cid-t0qSejmzDz .nav-item .nav-link:hover:after {
  color: #f0a66e;
}
@media (max-width: 991px) {
  .cid-t0qSejmzDz .nav-item .show {
    padding-bottom: 0;
  }
}
@media (min-width: 992px) {
  .cid-t0qSejmzDz .nav-item:last-child .nav-link {
    margin-right: 0 !important;
  }
  .cid-t0qSejmzDz .nav-item:first-child .nav-link {
    margin-left: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-t0qSejmzDz .nav-item {
    width: 100%;
  }
  .cid-t0qSejmzDz .nav-item .nav-link {
    margin: 0 !important;
    padding: 12px 0 !important;
    justify-content: flex-start;
  }
  .cid-t0qSejmzDz .nav-item .nav-link:after {
    margin-left: auto !important;
  }
  .cid-t0qSejmzDz .nav-item .nav-link .dropdown-item {
    text-align: left;
  }
}
.cid-t0qSejmzDz .mbr-section-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-t0qSejmzDz .mbr-section-btn {
    margin-left: 36px !important;
    margin-right: -0.6rem;
    max-width: 50%;
  }
}
@media (max-width: 575px) {
  .cid-t0qSejmzDz .mbr-section-btn .btn {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-t0qSejmzDz .navbar-toggler:not(.collapsed) .hamburger span {
    background-color: #57b8e0 !important;
  }
}
.cid-t0qSejmzDz .navbar-toggler[aria-expanded="false"] .hamburger span {
  background-color: #000000 !important;
}
@media (min-width: 992px) {
  .cid-t0qSejmzDz nav.navbar {
    flex-wrap: nowrap;
    border-radius: 0 !important;
  }
  .cid-t0qSejmzDz .offcanvas {
    padding: 178px 5% 35px 122px;
    width: 557px;
    background-color: #ffffff;
  }
  .cid-t0qSejmzDz .offcanvas .btn-close {
    position: absolute;
    top: 58px;
    right: 87px;
    width: 30px;
    height: 30px;
    padding: 0;
    background-size: 100%;
  }
  .cid-t0qSejmzDz .offcanvas-body {
    text-align: left;
    padding: 0;
  }
  .cid-t0qSejmzDz .offcanvas-body .mbr-text {
    margin-top: 15px;
  }
  .cid-t0qSejmzDz .offcanvas-body .email-text {
    margin-top: 8px;
  }
  .cid-t0qSejmzDz .offcanvas-body .offcanvas_contact {
    margin-top: 60px;
  }
  .cid-t0qSejmzDz .offcanvas-body .text_widget a {
    margin-bottom: 8px;
  }
  .cid-t0qSejmzDz .offcanvas_box {
    width: 75px !important;
    margin-left: 24px !important;
    text-align: right;
  }
  .cid-t0qSejmzDz .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 41px;
    height: 17px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
    color: #ffffff;
  }
  .cid-t0qSejmzDz .offcanvas_box button.btn_offcanvas .hamburger-offcanvas span {
    position: absolute;
    overflow: hidden;
    right: 0;
    width: 39px;
    height: 1px;
    background-image: linear-gradient(-90deg, #000000 0, #000000 33.33333333%, transparent 33.33333333%, transparent 66.66666667%, #000000 66.66666667%, #000000 100%) !important;
    background-size: 300% 100%;
    background-position: left;
    transition: background-position 0.7s ease-out;
  }
  .cid-t0qSejmzDz .offcanvas_box button.btn_offcanvas .hamburger-offcanvas span:nth-child(1) {
    top: 1px;
  }
  .cid-t0qSejmzDz .offcanvas_box button.btn_offcanvas .hamburger-offcanvas span:nth-child(2) {
    width: 24px;
    top: 6px;
    transition: background-position 0.8s ease-out;
  }
  .cid-t0qSejmzDz .offcanvas_box button.btn_offcanvas:hover .hamburger-offcanvas span {
    background-position: right;
  }
}
@media (min-width: 992px) and (max-width: 1280px) {
  .cid-t0qSejmzDz .offcanvas {
    padding: 12% 8% 5% 8%;
  }
}
@media (max-width: 991px) {
  .cid-t0qSejmzDz .offcanvas_box {
    display: none;
  }
}
.cid-t0qSejmzDz .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #ffffff;
}
.cid-t0qSejmzDz .list li {
  display: flex;
  align-items: center;
}
.cid-t0qSejmzDz .list a {
  display: flex;
  align-items: center;
}
.cid-t0qSejmzDz .text_widget {
  color: #000000;
  margin-bottom: 0;
}
.cid-t0qSejmzDz .text_widget a {
  background-position: center !important;
  background-size: 100% !important;
  transition: all 0.2s ease-out !important;
}
.cid-t0qSejmzDz .text_widget a:hover {
  background: linear-gradient(90deg, #5cc2ed 0, #5d62ee 50%, #c298d3 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
}
.cid-t0rbVLgdhW {
  background-image: url("../../../assets/images/mbr-1920x1076.jpg");
}
.cid-t0rbVLgdhW .mbr-section-title {
  color: #000000;
  margin-bottom: 0;
}
.cid-t0rbVLgdhW .mbr-section-subtitle {
  margin-top: 20px;
  margin-bottom: 0;
}
.cid-t0rbVLgdhW .mbr-section-btn {
  margin-top: 30px;
}
.cid-t0rbVLgdhW .mbr-section-title,
.cid-t0rbVLgdhW .mbr-section-btn {
  text-align: center;
}
.cid-ugZrL5sZOt {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
  overflow: hidden;
}
.cid-ugZrL5sZOt .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugZrL5sZOt .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-ugZrL5sZOt .container {
    padding: 0 22px;
  }
}
.cid-ugZrL5sZOt .card {
  justify-content: center;
}
.cid-ugZrL5sZOt .content-wrapper {
  padding-right: 32px;
}
@media (max-width: 992px) {
  .cid-ugZrL5sZOt .content-wrapper {
    padding: 0;
    margin-bottom: 40px;
  }
}
.cid-ugZrL5sZOt .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-ugZrL5sZOt .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ugZrL5sZOt .image-wrapper {
  display: flex;
  justify-content: center;
}
.cid-ugZrL5sZOt .image-wrapper img {
  height: 600px;
  width: 600px;
  border-radius: 100% !important;
  object-fit: cover;
  box-shadow: 10px 10px 60px #00d0f3;
}
@media (max-width: 1440px) {
  .cid-ugZrL5sZOt .image-wrapper img {
    height: 500px;
    width: 500px;
  }
}
@media (max-width: 1200px) {
  .cid-ugZrL5sZOt .image-wrapper img {
    height: 400px;
    width: 400px;
  }
}
@media (max-width: 992px) {
  .cid-ugZrL5sZOt .image-wrapper img {
    height: 400px;
    width: 400px;
  }
}
@media (max-width: 768px) {
  .cid-ugZrL5sZOt .image-wrapper img {
    height: 260px;
    width: 260px;
  }
}
.cid-ugZrL5sZOt .mbr-section-title {
  color: #ffffff;
}
.cid-ugZrL5sZOt .mbr-text {
  color: #ffffff;
}
.cid-ugZxAdQd2q {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #8184f4;
}
.cid-ugZxAdQd2q .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugZxAdQd2q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugZxAdQd2q .container-fluid {
  padding: 0 64px;
}
@media (max-width: 1440px) {
  .cid-ugZxAdQd2q .container-fluid {
    padding: 0 36px;
  }
}
@media (max-width: 992px) {
  .cid-ugZxAdQd2q .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-ugZxAdQd2q .container {
    padding: 0 16px;
  }
}
.cid-ugZxAdQd2q .row {
  justify-content: center;
}
.cid-ugZxAdQd2q .title-wrapper .mbr-section-title {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-ugZxAdQd2q .title-wrapper .mbr-section-title {
    margin-bottom: 36px;
  }
}
.cid-ugZxAdQd2q .title-wrapper .mbr-text {
  margin-bottom: 32px;
}
.cid-ugZxAdQd2q .mbr-section-title {
  color: #f0f0f0;
}
.cid-ugZxAdQd2q .mbr-text {
  color: #ffffff;
}
.cid-ugZxAdQd2q .mbr-section-title,
.cid-ugZxAdQd2q .mbr-section-btn {
  color: #ffffff;
}
.cid-t0rg2PaoF9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  min-height: 845px;
  background-image: url("../../../assets/images/background1.jpg");
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .cid-t0rg2PaoF9 {
    min-height: 667px;
  }
}
.cid-t0rg2PaoF9 .row {
  align-items: stretch;
  width: 100%;
}
.cid-t0rg2PaoF9 .col-text {
  width: 100%;
}
@media (min-width: 1024px) {
  .cid-t0rg2PaoF9 .col-text {
    width: 50%;
  }
}
@media (min-width: 758px) {
  .cid-t0rg2PaoF9 .col-text {
    width: 60%;
  }
}
.cid-t0rg2PaoF9 .text-container {
  width: 100%;
}
@media (max-width: 1440px) {
  .cid-t0rg2PaoF9 .text-container {
    padding: 0 0 0 16% !important;
  }
}
@media (max-width: 880px) {
  .cid-t0rg2PaoF9 .text-container {
    padding: 0 !important;
  }
}
@media (min-width: 1441px) {
  .cid-t0rg2PaoF9 .text-container {
    padding: 10px !important;
  }
}
.cid-t0rg2PaoF9 .text-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
}
@media (min-width: 1441px) {
  .cid-t0rg2PaoF9 .text-wrapper {
    padding: 0 55% 0 0;
  }
}
@media (max-width: 1440px) {
  .cid-t0rg2PaoF9 .text-wrapper {
    padding: 0 30% 0 0;
  }
}
@media (max-width: 1024px) {
  .cid-t0rg2PaoF9 .text-wrapper {
    padding: 0 25% 0 0;
  }
}
@media (max-width: 880px) {
  .cid-t0rg2PaoF9 .text-wrapper {
    padding: 0 15% 0 0;
  }
}
@media (max-width: 767px) {
  .cid-t0rg2PaoF9 .text-wrapper {
    padding: 0;
  }
}
.cid-t0rg2PaoF9 .mbr-section-title {
  width: 100%;
  color: #ffffff;
  margin-bottom: 10px;
}
.cid-t0rg2PaoF9 .mbr-text {
  letter-spacing: inherit;
  color: #ffffff;
  width: 100%;
  margin-top: 16px;
  margin-bottom: 0;
}
.cid-t0rg2PaoF9 .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-t0rg2PaoF9 .mbr-section-btn .btn-transform {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: transparent;
  background-image: linear-gradient(-90deg, currentColor 0, currentColor 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-size: 100% 100% !important;
  background-position: left !important;
  transition: background-position 0.2s ease !important;
}
.cid-t0rg2PaoF9 .mbr-section-btn .btn-white-outline {
  color: #ffffff !important;
  border: 1px solid #ffffff;
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-t0rg2PaoF9 .mbr-section-btn .btn-white-outline:hover {
  color: #fff !important;
  background: #ffffff !important;
}
.cid-t0rg2PaoF9 .mbr-section-btn .btn-white-outline:hover .btn-transform {
  background-image: -webkit-linear-gradient(45deg, #5cc3ee 0, #5d91ef 29%, #5e5ef0 50%, #947be1 73%, #ca97d2 100%) !important;
}
.cid-t0rg2PaoF9 .col-img {
  width: 100%;
}
@media (min-width: 1024px) {
  .cid-t0rg2PaoF9 .col-img {
    width: 50%;
  }
}
@media (min-width: 758px) {
  .cid-t0rg2PaoF9 .col-img {
    width: 40%;
  }
}
.cid-t0rkml8WLO {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t0rkml8WLO .mbr-section-title {
  color: #000000;
  margin-bottom: 0;
  background: linear-gradient(-120deg, rgba(202, 151, 210, 0.94), rgba(94, 94, 240, 0.94) 46%, rgba(92, 195, 238, 0.94));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-t0rkml8WLO .mbr-section-subtitle {
  margin-top: 32px;
  margin-bottom: 0;
}
.cid-t0rkml8WLO .mbr-section-btn {
  margin-top: 20px;
}
.cid-t0rkl1EJx6 {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-t0rkl1EJx6 .content-container {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 45px 50px;
  text-align: center;
  background-image: linear-gradient(-120deg, rgba(202, 151, 210, 0.94), rgba(94, 94, 240, 0.94) 46%, rgba(92, 195, 238, 0.94));
}
@media (max-width: 680px) {
  .cid-t0rkl1EJx6 .content-container {
    flex-wrap: wrap;
  }
}
.cid-t0rkl1EJx6 .item-img {
  display: flex;
  width: 190px;
  height: 190px;
  margin-right: 38px;
}
.cid-t0rkl1EJx6 .item-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.cid-t0rkl1EJx6 .text-wrap {
  flex-grow: 1;
}
@media (max-width: 680px) {
  .cid-t0rkl1EJx6 .text-wrap {
    margin-top: 23px;
  }
}
.cid-t0rkl1EJx6 .link-text {
  color: #ffffff;
  margin-top: 20px;
}
.cid-t0rkl1EJx6 .link-text a {
  margin-right: 15px;
}
.cid-t0rkl1EJx6 .mbr-text {
  color: #ffffff;
  margin-bottom: 0;
}
.cid-t0rkl1EJx6 .mbr-text-name {
  color: #ffffff;
  margin-bottom: 11px;
}
.cid-ugZsxr3X32 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-ugZsxr3X32 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugZsxr3X32 .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-ugZsxr3X32 .container {
    padding: 0 22px;
  }
}
.cid-ugZsxr3X32 .card {
  justify-content: center;
}
.cid-ugZsxr3X32 .content-wrapper {
  padding-right: 32px;
}
@media (max-width: 992px) {
  .cid-ugZsxr3X32 .content-wrapper {
    padding: 0;
  }
}
.cid-ugZsxr3X32 .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-ugZsxr3X32 .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-ugZsxr3X32 .image-wrapper {
  padding-right: 64px;
}
@media (max-width: 992px) {
  .cid-ugZsxr3X32 .image-wrapper {
    margin-top: 20px;
    padding: 0;
  }
}
.cid-ugZsxr3X32 .image-wrapper img {
  height: 600px;
  border-radius: 0 !important;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-ugZsxr3X32 .image-wrapper img {
    height: 350px;
  }
}
.cid-ugZsxr3X32 .mbr-section-title {
  color: #ffffff;
}
.cid-ugZsxr3X32 .mbr-text {
  color: #ffffff;
}
.cid-t0rk7RQ8TZ {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background: linear-gradient(90deg, #5cc3ee 0%, #5d91ef 29%, #5e5ef0 50%, #947be1 73%, #ca97d2 100%);
}
.cid-t0rk7RQ8TZ .label-text {
  color: #ffffff;
  margin: 10px 0 7px;
}
.cid-t0rk7RQ8TZ .mbr-section-title {
  color: #ffffff;
  margin-bottom: 0;
}
.cid-t0rk7RQ8TZ .mbr-section-subtitle {
  color: #ffffff;
  margin-top: 20px;
  margin-bottom: 0;
}
.cid-t0rk7RQ8TZ .mbr-section-btn {
  margin-top: 30px;
}
.cid-t0rk7RQ8TZ .mbr-section-btn .btn-transform {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: transparent;
  background-image: linear-gradient(-90deg, currentColor 0, currentColor 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-size: 100% 100% !important;
  background-position: left !important;
  transition: background-position 0.2s ease !important;
}
.cid-t0rk7RQ8TZ .mbr-section-btn .btn-white-outline {
  color: #ffffff !important;
  border: 1px solid #ffffff;
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-t0rk7RQ8TZ .mbr-section-btn .btn-white-outline:hover {
  color: #fff !important;
  background: #ffffff !important;
}
.cid-t0rk7RQ8TZ .mbr-section-btn .btn-white-outline:hover .btn-transform {
  background-image: -webkit-linear-gradient(45deg, #5cc3ee 0, #5d91ef 29%, #5e5ef0 50%, #947be1 73%, #ca97d2 100%) !important;
}
.cid-ugZpwen4Rk {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ugZpwen4Rk .container-fluid {
  padding: 0;
}
.cid-ugZpwen4Rk .row {
  align-items: stretch;
  width: 100%;
}
.cid-ugZpwen4Rk .col-text {
  width: 100%;
}
@media (min-width: 1025px) {
  .cid-ugZpwen4Rk .col-text {
    width: 50%;
  }
}
.cid-ugZpwen4Rk .text-container {
  padding: 30% 4% 33% 8%;
}
@media (min-width: 768px) {
  .cid-ugZpwen4Rk .text-container {
    padding: 18% 35% 20% 7%;
  }
}
@media (min-width: 881px) {
  .cid-ugZpwen4Rk .text-container {
    padding: 14% 35% 15.3% 12%;
  }
}
@media (min-width: 1025px) {
  .cid-ugZpwen4Rk .text-container {
    padding: 15% 15% 17% 20%;
  }
}
@media (min-width: 1441px) {
  .cid-ugZpwen4Rk .text-container {
    padding: 15.3% 35% 17.3% 20%;
  }
}
.cid-ugZpwen4Rk .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
}
.cid-ugZpwen4Rk .label-text {
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
  color: #8A8A8A;
}
.cid-ugZpwen4Rk .mbr-section-title {
  width: 100%;
  color: #000000;
  margin-bottom: 10px;
}
.cid-ugZpwen4Rk .mbr-text {
  letter-spacing: inherit;
  color: #000000;
  width: 100%;
  margin-top: 16px;
  margin-bottom: 0;
}
.cid-ugZpwen4Rk .btn-container {
  width: 100%;
}
.cid-ugZpwen4Rk .mbr-section-btn {
  margin-top: 20px;
}
.cid-ugZpwen4Rk .col-img {
  width: 100%;
  position: relative;
}
@media (min-width: 1025px) {
  .cid-ugZpwen4Rk .col-img {
    width: 50%;
  }
}
@media (max-width: 1024px) {
  .cid-ugZpwen4Rk .col-img {
    height: 1px;
    padding: 30% 0 30% 0;
  }
}
.cid-ugZpwen4Rk .img-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.cid-ugZpwen4Rk .img-container img {
  max-width: 100%;
  max-height: 100%;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-uN2ihjV92H {
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uN2ihjV92H .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-uN2ihjV92H .mbr-fallback-image.disabled {
  display: none;
}
.cid-uN2ihjV92H .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uN2ihjV92H .card-wrapper {
  display: flex;
  justify-content: center;
  background-color: #8184f4;
  margin: 0 24px;
}
@media (max-width: 992px) {
  .cid-uN2ihjV92H .card-wrapper {
    display: block;
    margin: 0;
  }
}
.cid-uN2ihjV92H .card-wrapper .title-wrapper {
  width: 50%;
  padding: 40px 24px 40px 96px;
  border-right: 1px solid #150764;
}
@media (max-width: 992px) {
  .cid-uN2ihjV92H .card-wrapper .title-wrapper {
    border-right: none;
    border-bottom: 1px solid #150764;
  }
}
@media (max-width: 1640px) {
  .cid-uN2ihjV92H .card-wrapper .title-wrapper {
    padding: 40px 24px;
  }
}
@media (max-width: 992px) {
  .cid-uN2ihjV92H .card-wrapper .title-wrapper {
    padding: 40px 20px;
    width: 100%;
  }
}
.cid-uN2ihjV92H .card-wrapper .title-wrapper .title-wrap {
  margin-bottom: 140px;
}
@media (max-width: 992px) {
  .cid-uN2ihjV92H .card-wrapper .title-wrapper .title-wrap {
    margin-bottom: 40px;
  }
}
.cid-uN2ihjV92H .card-wrapper .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uN2ihjV92H .card-wrapper .title-wrapper .logo-wrapper img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  display: inline-flex;
}
.cid-uN2ihjV92H .card-wrapper .content-wrap {
  width: 50%;
  padding: 40px 96px 40px 24px;
}
@media (max-width: 1640px) {
  .cid-uN2ihjV92H .card-wrapper .content-wrap {
    padding: 40px 24px;
  }
}
@media (max-width: 992px) {
  .cid-uN2ihjV92H .card-wrapper .content-wrap {
    padding: 40px 20px;
    width: 100%;
  }
}
.cid-uN2ihjV92H .card-wrapper .content-wrap .lists-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 140px;
}
@media (max-width: 992px) {
  .cid-uN2ihjV92H .card-wrapper .content-wrap .lists-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .cid-uN2ihjV92H .card-wrapper .content-wrap .lists-wrapper {
    grid-template-columns: 1fr;
  }
}
.cid-uN2ihjV92H .card-wrapper .content-wrap .lists-wrapper .list-wrapper .mbr-desc {
  margin-bottom: 14px;
}
.cid-uN2ihjV92H .card-wrapper .content-wrap .lists-wrapper .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uN2ihjV92H .card-wrapper .content-wrap .lists-wrapper .list-wrapper .list .item-wrap {
  margin-bottom: 6px;
  transition: all 0.3s ease-in-out;
}
.cid-uN2ihjV92H .card-wrapper .content-wrap .lists-wrapper .list-wrapper .list .item-wrap:hover,
.cid-uN2ihjV92H .card-wrapper .content-wrap .lists-wrapper .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-uN2ihjV92H .card-wrapper .content-wrap .lists-wrapper .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uN2ihjV92H .card-wrapper .content-wrap .mbr-copy {
  margin-bottom: 0;
}
.cid-uN2ihjV92H .mbr-section-title {
  color: #150764;
}
.cid-uN2ihjV92H .mbr-desc {
  color: #000000;
}
.cid-uN2ihjV92H .list {
  color: #150764;
}
.cid-uN2ihjV92H .mbr-section-title,
.cid-uN2ihjV92H .mbr-section-btn,
.cid-uN2ihjV92H .logo-wrapper {
  color: #000000;
}
.cid-uN2ihjV92H .mbr-copy {
  color: #000000;
}
.cid-ugZuo2ni7j .navbar-dropdown {
  position: relative !important;
}
.cid-ugZuo2ni7j .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-ugZuo2ni7j .dropdown-menu {
  background: #ffffff !important;
}
@media (max-width: 991px) {
  .cid-ugZuo2ni7j .dropdown-menu {
    padding: 0 !important;
  }
}
@media (min-width: 992px) {
  .cid-ugZuo2ni7j .dropdown-menu {
    padding: 23px 0;
    box-shadow: -0.968px 3.881px 24.94px 4.06px rgba(195, 196, 249, 0.28);
  }
}
.cid-ugZuo2ni7j .dropdown-item {
  padding: 0 28px 0 38px !important;
  min-width: 240px;
  color: transparent;
  background: transparent !important;
  background-image: linear-gradient(-90deg, #5cc2ed 0, #5d62ee 25%, #c298d3 50%, currentColor 51%, currentColor 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-size: 200% 100% !important;
  background-position: left !important;
  transition: background-position 0.4s ease;
}
@media (max-width: 991px) {
  .cid-ugZuo2ni7j .dropdown-item {
    padding: 4px 0 4px 15px !important;
    text-align: left !important;
  }
}
.cid-ugZuo2ni7j .dropdown-item:hover {
  background-position: right !important;
}
.cid-ugZuo2ni7j .dropdown-item:hover:after {
  color: #f0a66e;
}
.cid-ugZuo2ni7j .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ugZuo2ni7j .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ugZuo2ni7j .nav-link {
  position: relative;
}
.cid-ugZuo2ni7j .container {
  display: flex;
  margin: auto;
  flex-wrap: wrap;
}
.cid-ugZuo2ni7j .dropdown-menu,
.cid-ugZuo2ni7j .navbar.opened {
  background: #ffffff !important;
}
.cid-ugZuo2ni7j .nav-item:focus,
.cid-ugZuo2ni7j .nav-link:focus {
  outline: none;
}
.cid-ugZuo2ni7j .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ugZuo2ni7j .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ugZuo2ni7j .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ugZuo2ni7j .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ugZuo2ni7j .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ugZuo2ni7j .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ugZuo2ni7j .navbar {
  transition: all 0.4s ease-out;
  box-sizing: content-box;
  min-height: 60px;
  position: static !important;
  background-color: #ffffff;
}
.cid-ugZuo2ni7j .navbar.opened {
  transition: all 0.3s;
}
@media (max-width: 991px) {
  .cid-ugZuo2ni7j .navbar.opened {
    border-bottom: 1px solid #F3F3F3;
  }
}
.cid-ugZuo2ni7j .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ugZuo2ni7j .navbar .navbar-logo img {
  width: auto;
}
.cid-ugZuo2ni7j .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ugZuo2ni7j .navbar.collapsed {
  justify-content: center;
}
.cid-ugZuo2ni7j .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ugZuo2ni7j .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ugZuo2ni7j .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-ugZuo2ni7j .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ugZuo2ni7j .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ugZuo2ni7j .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-ugZuo2ni7j .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ugZuo2ni7j .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ugZuo2ni7j .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ugZuo2ni7j .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ugZuo2ni7j .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ugZuo2ni7j .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ugZuo2ni7j .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ugZuo2ni7j .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-ugZuo2ni7j .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ugZuo2ni7j .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ugZuo2ni7j .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ugZuo2ni7j .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ugZuo2ni7j .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ugZuo2ni7j .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ugZuo2ni7j .navbar.navbar-short {
  min-height: 60px;
}
.cid-ugZuo2ni7j .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ugZuo2ni7j .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0 2rem 0 0;
}
@media (max-width: 480px) {
  .cid-ugZuo2ni7j .navbar {
    padding: 5px 7% !important;
  }
}
@media (min-width: 481px) {
  .cid-ugZuo2ni7j .navbar {
    padding: 5px 40px !important;
  }
}
@media (min-width: 992px) {
  .cid-ugZuo2ni7j .navbar {
    padding: 5px 73px !important;
  }
}
.cid-ugZuo2ni7j .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0 2rem 0 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ugZuo2ni7j .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ugZuo2ni7j .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ugZuo2ni7j .dropdown-item.active,
.cid-ugZuo2ni7j .dropdown-item:active {
  background-color: transparent;
}
.cid-ugZuo2ni7j .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ugZuo2ni7j .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ugZuo2ni7j .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ugZuo2ni7j .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ugZuo2ni7j .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ugZuo2ni7j .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ugZuo2ni7j ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ugZuo2ni7j button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ugZuo2ni7j button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-ugZuo2ni7j button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ugZuo2ni7j button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugZuo2ni7j button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugZuo2ni7j button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ugZuo2ni7j nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugZuo2ni7j nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ugZuo2ni7j nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ugZuo2ni7j nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugZuo2ni7j .navbar-dropdown {
  padding: 0;
}
.cid-ugZuo2ni7j a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ugZuo2ni7j .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-ugZuo2ni7j .navbar {
    height: 70px;
  }
  .cid-ugZuo2ni7j .navbar.opened {
    height: auto;
  }
  .cid-ugZuo2ni7j .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ugZuo2ni7j .navbar-short {
  background-color: #ffffff !important;
  min-height: 60px;
}
@media (max-width: 480px) {
  .cid-ugZuo2ni7j .navbar-short {
    padding: 5px 7% !important;
  }
}
@media (min-width: 481px) {
  .cid-ugZuo2ni7j .navbar-short {
    padding: 5px 40px !important;
  }
}
@media (min-width: 992px) {
  .cid-ugZuo2ni7j .navbar-short {
    padding: 5px 73px !important;
    box-shadow: 0 2px 25px 4px rgba(195, 196, 249, 0.35) !important;
  }
}
.cid-ugZuo2ni7j .container-fluid {
  padding: 0 !important;
}
@media (max-width: 991px) {
  .cid-ugZuo2ni7j .container-fluid {
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  .cid-ugZuo2ni7j .container-fluid .show {
    padding-bottom: 30px;
  }
}
.cid-ugZuo2ni7j .navbar-collapse {
  margin-left: auto;
  flex-grow: 0;
}
@media (max-width: 991px) {
  .cid-ugZuo2ni7j .navbar-collapse.show {
    padding: 0 0 24px;
  }
}
@media (max-width: 991px) {
  .cid-ugZuo2ni7j .navbar-nav {
    padding-top: 18px;
  }
}
.cid-ugZuo2ni7j .nav-item .nav-link {
  color: transparent;
  margin: 12px 22px !important;
  background-image: linear-gradient(-90deg, #5cc2ed 0, #5d62ee 25%, #c298d3 50%, currentColor 51%, currentColor 100%) !important;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 100%;
  background-position: left;
  transition: background-position 0.4s ease;
}
.cid-ugZuo2ni7j .nav-item .nav-link:hover {
  background-position: right;
}
.cid-ugZuo2ni7j .nav-item .nav-link:hover:after {
  color: #f0a66e;
}
@media (max-width: 991px) {
  .cid-ugZuo2ni7j .nav-item .show {
    padding-bottom: 0;
  }
}
@media (min-width: 992px) {
  .cid-ugZuo2ni7j .nav-item:last-child .nav-link {
    margin-right: 0 !important;
  }
  .cid-ugZuo2ni7j .nav-item:first-child .nav-link {
    margin-left: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-ugZuo2ni7j .nav-item {
    width: 100%;
  }
  .cid-ugZuo2ni7j .nav-item .nav-link {
    margin: 0 !important;
    padding: 12px 0 !important;
    justify-content: flex-start;
  }
  .cid-ugZuo2ni7j .nav-item .nav-link:after {
    margin-left: auto !important;
  }
  .cid-ugZuo2ni7j .nav-item .nav-link .dropdown-item {
    text-align: left;
  }
}
.cid-ugZuo2ni7j .mbr-section-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-ugZuo2ni7j .mbr-section-btn {
    margin-left: 36px !important;
    margin-right: -0.6rem;
    max-width: 50%;
  }
}
@media (max-width: 575px) {
  .cid-ugZuo2ni7j .mbr-section-btn .btn {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-ugZuo2ni7j .navbar-toggler:not(.collapsed) .hamburger span {
    background-color: #57b8e0 !important;
  }
}
.cid-ugZuo2ni7j .navbar-toggler[aria-expanded="false"] .hamburger span {
  background-color: #000000 !important;
}
@media (min-width: 992px) {
  .cid-ugZuo2ni7j nav.navbar {
    flex-wrap: nowrap;
    border-radius: 0 !important;
  }
  .cid-ugZuo2ni7j .offcanvas {
    padding: 178px 5% 35px 122px;
    width: 557px;
    background-color: #ffffff;
  }
  .cid-ugZuo2ni7j .offcanvas .btn-close {
    position: absolute;
    top: 58px;
    right: 87px;
    width: 30px;
    height: 30px;
    padding: 0;
    background-size: 100%;
  }
  .cid-ugZuo2ni7j .offcanvas-body {
    text-align: left;
    padding: 0;
  }
  .cid-ugZuo2ni7j .offcanvas-body .mbr-text {
    margin-top: 15px;
  }
  .cid-ugZuo2ni7j .offcanvas-body .email-text {
    margin-top: 8px;
  }
  .cid-ugZuo2ni7j .offcanvas-body .offcanvas_contact {
    margin-top: 60px;
  }
  .cid-ugZuo2ni7j .offcanvas-body .text_widget a {
    margin-bottom: 8px;
  }
  .cid-ugZuo2ni7j .offcanvas_box {
    width: 75px !important;
    margin-left: 24px !important;
    text-align: right;
  }
  .cid-ugZuo2ni7j .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 41px;
    height: 17px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
    color: #ffffff;
  }
  .cid-ugZuo2ni7j .offcanvas_box button.btn_offcanvas .hamburger-offcanvas span {
    position: absolute;
    overflow: hidden;
    right: 0;
    width: 39px;
    height: 1px;
    background-image: linear-gradient(-90deg, #000000 0, #000000 33.33333333%, transparent 33.33333333%, transparent 66.66666667%, #000000 66.66666667%, #000000 100%) !important;
    background-size: 300% 100%;
    background-position: left;
    transition: background-position 0.7s ease-out;
  }
  .cid-ugZuo2ni7j .offcanvas_box button.btn_offcanvas .hamburger-offcanvas span:nth-child(1) {
    top: 1px;
  }
  .cid-ugZuo2ni7j .offcanvas_box button.btn_offcanvas .hamburger-offcanvas span:nth-child(2) {
    width: 24px;
    top: 6px;
    transition: background-position 0.8s ease-out;
  }
  .cid-ugZuo2ni7j .offcanvas_box button.btn_offcanvas:hover .hamburger-offcanvas span {
    background-position: right;
  }
}
@media (min-width: 992px) and (max-width: 1280px) {
  .cid-ugZuo2ni7j .offcanvas {
    padding: 12% 8% 5% 8%;
  }
}
@media (max-width: 991px) {
  .cid-ugZuo2ni7j .offcanvas_box {
    display: none;
  }
}
.cid-ugZuo2ni7j .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #ffffff;
}
.cid-ugZuo2ni7j .list li {
  display: flex;
  align-items: center;
}
.cid-ugZuo2ni7j .list a {
  display: flex;
  align-items: center;
}
.cid-ugZuo2ni7j .text_widget {
  color: #000000;
  margin-bottom: 0;
}
.cid-ugZuo2ni7j .text_widget a {
  background-position: center !important;
  background-size: 100% !important;
  transition: all 0.2s ease-out !important;
}
.cid-ugZuo2ni7j .text_widget a:hover {
  background: linear-gradient(90deg, #5cc2ed 0, #5d62ee 50%, #c298d3 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
}
.cid-ugZuo3LXqV {
  background-image: url("../../../assets/images/ai-medicine-feat-1800x1200.jpg");
}
.cid-ugZuo3LXqV .mbr-section-title {
  color: #000000;
  margin-bottom: 0;
}
.cid-ugZuo3LXqV .mbr-section-subtitle {
  margin-top: 20px;
  margin-bottom: 0;
}
.cid-ugZuo3LXqV .mbr-section-btn {
  margin-top: 30px;
}
.cid-ugZuo3LXqV .mbr-section-title,
.cid-ugZuo3LXqV .mbr-section-btn {
  text-align: center;
}
.cid-ugZuo54NDs {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ugZuo54NDs .mbr-section-title {
  color: #000000;
  margin-bottom: 0;
  background: linear-gradient(-120deg, rgba(202, 151, 210, 0.94), rgba(94, 94, 240, 0.94) 46%, rgba(92, 195, 238, 0.94));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-ugZuo54NDs .mbr-section-subtitle {
  margin-top: 32px;
  margin-bottom: 0;
  color: #000000;
  text-align: left;
}
.cid-ugZuo54NDs .mbr-section-btn {
  margin-top: 20px;
}
.cid-ugZuo54NDs .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-ugZuo5Ru6R {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-ugZuo5Ru6R .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugZuo5Ru6R .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-ugZuo5Ru6R .container {
    padding: 0 22px;
  }
}
.cid-ugZuo5Ru6R .card {
  justify-content: center;
}
.cid-ugZuo5Ru6R .content-wrapper {
  padding-right: 32px;
}
@media (max-width: 992px) {
  .cid-ugZuo5Ru6R .content-wrapper {
    padding: 0;
    margin-bottom: 40px;
  }
}
.cid-ugZuo5Ru6R .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-ugZuo5Ru6R .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ugZuo5Ru6R .image-wrapper {
  display: flex;
  justify-content: center;
}
.cid-ugZuo5Ru6R .image-wrapper img {
  height: 600px;
  width: 600px;
  border-radius: 100% !important;
  object-fit: cover;
  box-shadow: 10px 10px 60px #000000;
}
@media (max-width: 1440px) {
  .cid-ugZuo5Ru6R .image-wrapper img {
    height: 500px;
    width: 500px;
  }
}
@media (max-width: 1200px) {
  .cid-ugZuo5Ru6R .image-wrapper img {
    height: 400px;
    width: 400px;
  }
}
@media (max-width: 992px) {
  .cid-ugZuo5Ru6R .image-wrapper img {
    height: 400px;
    width: 400px;
  }
}
@media (max-width: 768px) {
  .cid-ugZuo5Ru6R .image-wrapper img {
    height: 260px;
    width: 260px;
  }
}
.cid-ugZuo5Ru6R .mbr-section-title {
  color: #ffffff;
}
.cid-ugZuo5Ru6R .mbr-text {
  color: #000000;
}
.cid-uN2ihjV92H {
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uN2ihjV92H .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-uN2ihjV92H .mbr-fallback-image.disabled {
  display: none;
}
.cid-uN2ihjV92H .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uN2ihjV92H .card-wrapper {
  display: flex;
  justify-content: center;
  background-color: #8184f4;
  margin: 0 24px;
}
@media (max-width: 992px) {
  .cid-uN2ihjV92H .card-wrapper {
    display: block;
    margin: 0;
  }
}
.cid-uN2ihjV92H .card-wrapper .title-wrapper {
  width: 50%;
  padding: 40px 24px 40px 96px;
  border-right: 1px solid #150764;
}
@media (max-width: 992px) {
  .cid-uN2ihjV92H .card-wrapper .title-wrapper {
    border-right: none;
    border-bottom: 1px solid #150764;
  }
}
@media (max-width: 1640px) {
  .cid-uN2ihjV92H .card-wrapper .title-wrapper {
    padding: 40px 24px;
  }
}
@media (max-width: 992px) {
  .cid-uN2ihjV92H .card-wrapper .title-wrapper {
    padding: 40px 20px;
    width: 100%;
  }
}
.cid-uN2ihjV92H .card-wrapper .title-wrapper .title-wrap {
  margin-bottom: 140px;
}
@media (max-width: 992px) {
  .cid-uN2ihjV92H .card-wrapper .title-wrapper .title-wrap {
    margin-bottom: 40px;
  }
}
.cid-uN2ihjV92H .card-wrapper .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uN2ihjV92H .card-wrapper .title-wrapper .logo-wrapper img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  display: inline-flex;
}
.cid-uN2ihjV92H .card-wrapper .content-wrap {
  width: 50%;
  padding: 40px 96px 40px 24px;
}
@media (max-width: 1640px) {
  .cid-uN2ihjV92H .card-wrapper .content-wrap {
    padding: 40px 24px;
  }
}
@media (max-width: 992px) {
  .cid-uN2ihjV92H .card-wrapper .content-wrap {
    padding: 40px 20px;
    width: 100%;
  }
}
.cid-uN2ihjV92H .card-wrapper .content-wrap .lists-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 140px;
}
@media (max-width: 992px) {
  .cid-uN2ihjV92H .card-wrapper .content-wrap .lists-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .cid-uN2ihjV92H .card-wrapper .content-wrap .lists-wrapper {
    grid-template-columns: 1fr;
  }
}
.cid-uN2ihjV92H .card-wrapper .content-wrap .lists-wrapper .list-wrapper .mbr-desc {
  margin-bottom: 14px;
}
.cid-uN2ihjV92H .card-wrapper .content-wrap .lists-wrapper .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uN2ihjV92H .card-wrapper .content-wrap .lists-wrapper .list-wrapper .list .item-wrap {
  margin-bottom: 6px;
  transition: all 0.3s ease-in-out;
}
.cid-uN2ihjV92H .card-wrapper .content-wrap .lists-wrapper .list-wrapper .list .item-wrap:hover,
.cid-uN2ihjV92H .card-wrapper .content-wrap .lists-wrapper .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-uN2ihjV92H .card-wrapper .content-wrap .lists-wrapper .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uN2ihjV92H .card-wrapper .content-wrap .mbr-copy {
  margin-bottom: 0;
}
.cid-uN2ihjV92H .mbr-section-title {
  color: #150764;
}
.cid-uN2ihjV92H .mbr-desc {
  color: #000000;
}
.cid-uN2ihjV92H .list {
  color: #150764;
}
.cid-uN2ihjV92H .mbr-section-title,
.cid-uN2ihjV92H .mbr-section-btn,
.cid-uN2ihjV92H .logo-wrapper {
  color: #000000;
}
.cid-uN2ihjV92H .mbr-copy {
  color: #000000;
}
.cid-ugZv4ojLbx .navbar-dropdown {
  position: relative !important;
}
.cid-ugZv4ojLbx .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-ugZv4ojLbx .dropdown-menu {
  background: #ffffff !important;
}
@media (max-width: 991px) {
  .cid-ugZv4ojLbx .dropdown-menu {
    padding: 0 !important;
  }
}
@media (min-width: 992px) {
  .cid-ugZv4ojLbx .dropdown-menu {
    padding: 23px 0;
    box-shadow: -0.968px 3.881px 24.94px 4.06px rgba(195, 196, 249, 0.28);
  }
}
.cid-ugZv4ojLbx .dropdown-item {
  padding: 0 28px 0 38px !important;
  min-width: 240px;
  color: transparent;
  background: transparent !important;
  background-image: linear-gradient(-90deg, #5cc2ed 0, #5d62ee 25%, #c298d3 50%, currentColor 51%, currentColor 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-size: 200% 100% !important;
  background-position: left !important;
  transition: background-position 0.4s ease;
}
@media (max-width: 991px) {
  .cid-ugZv4ojLbx .dropdown-item {
    padding: 4px 0 4px 15px !important;
    text-align: left !important;
  }
}
.cid-ugZv4ojLbx .dropdown-item:hover {
  background-position: right !important;
}
.cid-ugZv4ojLbx .dropdown-item:hover:after {
  color: #f0a66e;
}
.cid-ugZv4ojLbx .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ugZv4ojLbx .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ugZv4ojLbx .nav-link {
  position: relative;
}
.cid-ugZv4ojLbx .container {
  display: flex;
  margin: auto;
  flex-wrap: wrap;
}
.cid-ugZv4ojLbx .dropdown-menu,
.cid-ugZv4ojLbx .navbar.opened {
  background: #ffffff !important;
}
.cid-ugZv4ojLbx .nav-item:focus,
.cid-ugZv4ojLbx .nav-link:focus {
  outline: none;
}
.cid-ugZv4ojLbx .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ugZv4ojLbx .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ugZv4ojLbx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ugZv4ojLbx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ugZv4ojLbx .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ugZv4ojLbx .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ugZv4ojLbx .navbar {
  transition: all 0.4s ease-out;
  box-sizing: content-box;
  min-height: 60px;
  position: static !important;
  background-color: #ffffff;
}
.cid-ugZv4ojLbx .navbar.opened {
  transition: all 0.3s;
}
@media (max-width: 991px) {
  .cid-ugZv4ojLbx .navbar.opened {
    border-bottom: 1px solid #F3F3F3;
  }
}
.cid-ugZv4ojLbx .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ugZv4ojLbx .navbar .navbar-logo img {
  width: auto;
}
.cid-ugZv4ojLbx .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ugZv4ojLbx .navbar.collapsed {
  justify-content: center;
}
.cid-ugZv4ojLbx .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ugZv4ojLbx .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ugZv4ojLbx .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-ugZv4ojLbx .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ugZv4ojLbx .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ugZv4ojLbx .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-ugZv4ojLbx .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ugZv4ojLbx .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ugZv4ojLbx .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ugZv4ojLbx .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ugZv4ojLbx .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ugZv4ojLbx .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ugZv4ojLbx .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ugZv4ojLbx .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-ugZv4ojLbx .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ugZv4ojLbx .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ugZv4ojLbx .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ugZv4ojLbx .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ugZv4ojLbx .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ugZv4ojLbx .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ugZv4ojLbx .navbar.navbar-short {
  min-height: 60px;
}
.cid-ugZv4ojLbx .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ugZv4ojLbx .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0 2rem 0 0;
}
@media (max-width: 480px) {
  .cid-ugZv4ojLbx .navbar {
    padding: 5px 7% !important;
  }
}
@media (min-width: 481px) {
  .cid-ugZv4ojLbx .navbar {
    padding: 5px 40px !important;
  }
}
@media (min-width: 992px) {
  .cid-ugZv4ojLbx .navbar {
    padding: 5px 73px !important;
  }
}
.cid-ugZv4ojLbx .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0 2rem 0 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ugZv4ojLbx .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ugZv4ojLbx .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ugZv4ojLbx .dropdown-item.active,
.cid-ugZv4ojLbx .dropdown-item:active {
  background-color: transparent;
}
.cid-ugZv4ojLbx .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ugZv4ojLbx .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ugZv4ojLbx .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ugZv4ojLbx .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ugZv4ojLbx .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ugZv4ojLbx .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ugZv4ojLbx ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ugZv4ojLbx button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ugZv4ojLbx button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-ugZv4ojLbx button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ugZv4ojLbx button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugZv4ojLbx button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugZv4ojLbx button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ugZv4ojLbx nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugZv4ojLbx nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ugZv4ojLbx nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ugZv4ojLbx nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugZv4ojLbx .navbar-dropdown {
  padding: 0;
}
.cid-ugZv4ojLbx a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ugZv4ojLbx .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-ugZv4ojLbx .navbar {
    height: 70px;
  }
  .cid-ugZv4ojLbx .navbar.opened {
    height: auto;
  }
  .cid-ugZv4ojLbx .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ugZv4ojLbx .navbar-short {
  background-color: #ffffff !important;
  min-height: 60px;
}
@media (max-width: 480px) {
  .cid-ugZv4ojLbx .navbar-short {
    padding: 5px 7% !important;
  }
}
@media (min-width: 481px) {
  .cid-ugZv4ojLbx .navbar-short {
    padding: 5px 40px !important;
  }
}
@media (min-width: 992px) {
  .cid-ugZv4ojLbx .navbar-short {
    padding: 5px 73px !important;
    box-shadow: 0 2px 25px 4px rgba(195, 196, 249, 0.35) !important;
  }
}
.cid-ugZv4ojLbx .container-fluid {
  padding: 0 !important;
}
@media (max-width: 991px) {
  .cid-ugZv4ojLbx .container-fluid {
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  .cid-ugZv4ojLbx .container-fluid .show {
    padding-bottom: 30px;
  }
}
.cid-ugZv4ojLbx .navbar-collapse {
  margin-left: auto;
  flex-grow: 0;
}
@media (max-width: 991px) {
  .cid-ugZv4ojLbx .navbar-collapse.show {
    padding: 0 0 24px;
  }
}
@media (max-width: 991px) {
  .cid-ugZv4ojLbx .navbar-nav {
    padding-top: 18px;
  }
}
.cid-ugZv4ojLbx .nav-item .nav-link {
  color: transparent;
  margin: 12px 22px !important;
  background-image: linear-gradient(-90deg, #5cc2ed 0, #5d62ee 25%, #c298d3 50%, currentColor 51%, currentColor 100%) !important;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 100%;
  background-position: left;
  transition: background-position 0.4s ease;
}
.cid-ugZv4ojLbx .nav-item .nav-link:hover {
  background-position: right;
}
.cid-ugZv4ojLbx .nav-item .nav-link:hover:after {
  color: #f0a66e;
}
@media (max-width: 991px) {
  .cid-ugZv4ojLbx .nav-item .show {
    padding-bottom: 0;
  }
}
@media (min-width: 992px) {
  .cid-ugZv4ojLbx .nav-item:last-child .nav-link {
    margin-right: 0 !important;
  }
  .cid-ugZv4ojLbx .nav-item:first-child .nav-link {
    margin-left: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-ugZv4ojLbx .nav-item {
    width: 100%;
  }
  .cid-ugZv4ojLbx .nav-item .nav-link {
    margin: 0 !important;
    padding: 12px 0 !important;
    justify-content: flex-start;
  }
  .cid-ugZv4ojLbx .nav-item .nav-link:after {
    margin-left: auto !important;
  }
  .cid-ugZv4ojLbx .nav-item .nav-link .dropdown-item {
    text-align: left;
  }
}
.cid-ugZv4ojLbx .mbr-section-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-ugZv4ojLbx .mbr-section-btn {
    margin-left: 36px !important;
    margin-right: -0.6rem;
    max-width: 50%;
  }
}
@media (max-width: 575px) {
  .cid-ugZv4ojLbx .mbr-section-btn .btn {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-ugZv4ojLbx .navbar-toggler:not(.collapsed) .hamburger span {
    background-color: #57b8e0 !important;
  }
}
.cid-ugZv4ojLbx .navbar-toggler[aria-expanded="false"] .hamburger span {
  background-color: #000000 !important;
}
@media (min-width: 992px) {
  .cid-ugZv4ojLbx nav.navbar {
    flex-wrap: nowrap;
    border-radius: 0 !important;
  }
  .cid-ugZv4ojLbx .offcanvas {
    padding: 178px 5% 35px 122px;
    width: 557px;
    background-color: #ffffff;
  }
  .cid-ugZv4ojLbx .offcanvas .btn-close {
    position: absolute;
    top: 58px;
    right: 87px;
    width: 30px;
    height: 30px;
    padding: 0;
    background-size: 100%;
  }
  .cid-ugZv4ojLbx .offcanvas-body {
    text-align: left;
    padding: 0;
  }
  .cid-ugZv4ojLbx .offcanvas-body .mbr-text {
    margin-top: 15px;
  }
  .cid-ugZv4ojLbx .offcanvas-body .email-text {
    margin-top: 8px;
  }
  .cid-ugZv4ojLbx .offcanvas-body .offcanvas_contact {
    margin-top: 60px;
  }
  .cid-ugZv4ojLbx .offcanvas-body .text_widget a {
    margin-bottom: 8px;
  }
  .cid-ugZv4ojLbx .offcanvas_box {
    width: 75px !important;
    margin-left: 24px !important;
    text-align: right;
  }
  .cid-ugZv4ojLbx .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 41px;
    height: 17px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
    color: #ffffff;
  }
  .cid-ugZv4ojLbx .offcanvas_box button.btn_offcanvas .hamburger-offcanvas span {
    position: absolute;
    overflow: hidden;
    right: 0;
    width: 39px;
    height: 1px;
    background-image: linear-gradient(-90deg, #000000 0, #000000 33.33333333%, transparent 33.33333333%, transparent 66.66666667%, #000000 66.66666667%, #000000 100%) !important;
    background-size: 300% 100%;
    background-position: left;
    transition: background-position 0.7s ease-out;
  }
  .cid-ugZv4ojLbx .offcanvas_box button.btn_offcanvas .hamburger-offcanvas span:nth-child(1) {
    top: 1px;
  }
  .cid-ugZv4ojLbx .offcanvas_box button.btn_offcanvas .hamburger-offcanvas span:nth-child(2) {
    width: 24px;
    top: 6px;
    transition: background-position 0.8s ease-out;
  }
  .cid-ugZv4ojLbx .offcanvas_box button.btn_offcanvas:hover .hamburger-offcanvas span {
    background-position: right;
  }
}
@media (min-width: 992px) and (max-width: 1280px) {
  .cid-ugZv4ojLbx .offcanvas {
    padding: 12% 8% 5% 8%;
  }
}
@media (max-width: 991px) {
  .cid-ugZv4ojLbx .offcanvas_box {
    display: none;
  }
}
.cid-ugZv4ojLbx .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #ffffff;
}
.cid-ugZv4ojLbx .list li {
  display: flex;
  align-items: center;
}
.cid-ugZv4ojLbx .list a {
  display: flex;
  align-items: center;
}
.cid-ugZv4ojLbx .text_widget {
  color: #000000;
  margin-bottom: 0;
}
.cid-ugZv4ojLbx .text_widget a {
  background-position: center !important;
  background-size: 100% !important;
  transition: all 0.2s ease-out !important;
}
.cid-ugZv4ojLbx .text_widget a:hover {
  background: linear-gradient(90deg, #5cc2ed 0, #5d62ee 50%, #c298d3 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
}
.cid-ugZv4pw8Xy {
  background-image: url("../../../assets/images/mbr-1-1920x1280.jpg");
}
.cid-ugZv4pw8Xy .mbr-section-title {
  color: #000000;
  margin-bottom: 0;
}
.cid-ugZv4pw8Xy .mbr-section-subtitle {
  margin-top: 20px;
  margin-bottom: 0;
}
.cid-ugZv4pw8Xy .mbr-section-btn {
  margin-top: 30px;
}
.cid-ugZv4pw8Xy .mbr-section-title,
.cid-ugZv4pw8Xy .mbr-section-btn {
  text-align: center;
}
.cid-ugZv4qu27J {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ugZv4qu27J .mbr-section-title {
  color: #000000;
  margin-bottom: 0;
  background: linear-gradient(-120deg, rgba(202, 151, 210, 0.94), rgba(94, 94, 240, 0.94) 46%, rgba(92, 195, 238, 0.94));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-ugZv4qu27J .mbr-section-subtitle {
  margin-top: 32px;
  margin-bottom: 0;
  color: #000000;
  text-align: left;
}
.cid-ugZv4qu27J .mbr-section-btn {
  margin-top: 20px;
}
.cid-ugZv4qu27J .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-ugZv4rglHU {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-ugZv4rglHU .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugZv4rglHU .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-ugZv4rglHU .container {
    padding: 0 22px;
  }
}
.cid-ugZv4rglHU .card {
  justify-content: center;
}
.cid-ugZv4rglHU .content-wrapper {
  padding-right: 32px;
}
@media (max-width: 992px) {
  .cid-ugZv4rglHU .content-wrapper {
    padding: 0;
    margin-bottom: 40px;
  }
}
.cid-ugZv4rglHU .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-ugZv4rglHU .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ugZv4rglHU .image-wrapper {
  display: flex;
  justify-content: center;
}
.cid-ugZv4rglHU .image-wrapper img {
  height: 600px;
  width: 600px;
  border-radius: 100% !important;
  object-fit: cover;
  box-shadow: 10px 10px 60px #000000;
}
@media (max-width: 1440px) {
  .cid-ugZv4rglHU .image-wrapper img {
    height: 500px;
    width: 500px;
  }
}
@media (max-width: 1200px) {
  .cid-ugZv4rglHU .image-wrapper img {
    height: 400px;
    width: 400px;
  }
}
@media (max-width: 992px) {
  .cid-ugZv4rglHU .image-wrapper img {
    height: 400px;
    width: 400px;
  }
}
@media (max-width: 768px) {
  .cid-ugZv4rglHU .image-wrapper img {
    height: 260px;
    width: 260px;
  }
}
.cid-ugZv4rglHU .mbr-section-title {
  color: #ffffff;
}
.cid-ugZv4rglHU .mbr-text {
  color: #000000;
}
.cid-uN2ihjV92H {
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uN2ihjV92H .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-uN2ihjV92H .mbr-fallback-image.disabled {
  display: none;
}
.cid-uN2ihjV92H .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uN2ihjV92H .card-wrapper {
  display: flex;
  justify-content: center;
  background-color: #8184f4;
  margin: 0 24px;
}
@media (max-width: 992px) {
  .cid-uN2ihjV92H .card-wrapper {
    display: block;
    margin: 0;
  }
}
.cid-uN2ihjV92H .card-wrapper .title-wrapper {
  width: 50%;
  padding: 40px 24px 40px 96px;
  border-right: 1px solid #150764;
}
@media (max-width: 992px) {
  .cid-uN2ihjV92H .card-wrapper .title-wrapper {
    border-right: none;
    border-bottom: 1px solid #150764;
  }
}
@media (max-width: 1640px) {
  .cid-uN2ihjV92H .card-wrapper .title-wrapper {
    padding: 40px 24px;
  }
}
@media (max-width: 992px) {
  .cid-uN2ihjV92H .card-wrapper .title-wrapper {
    padding: 40px 20px;
    width: 100%;
  }
}
.cid-uN2ihjV92H .card-wrapper .title-wrapper .title-wrap {
  margin-bottom: 140px;
}
@media (max-width: 992px) {
  .cid-uN2ihjV92H .card-wrapper .title-wrapper .title-wrap {
    margin-bottom: 40px;
  }
}
.cid-uN2ihjV92H .card-wrapper .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uN2ihjV92H .card-wrapper .title-wrapper .logo-wrapper img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  display: inline-flex;
}
.cid-uN2ihjV92H .card-wrapper .content-wrap {
  width: 50%;
  padding: 40px 96px 40px 24px;
}
@media (max-width: 1640px) {
  .cid-uN2ihjV92H .card-wrapper .content-wrap {
    padding: 40px 24px;
  }
}
@media (max-width: 992px) {
  .cid-uN2ihjV92H .card-wrapper .content-wrap {
    padding: 40px 20px;
    width: 100%;
  }
}
.cid-uN2ihjV92H .card-wrapper .content-wrap .lists-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 140px;
}
@media (max-width: 992px) {
  .cid-uN2ihjV92H .card-wrapper .content-wrap .lists-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .cid-uN2ihjV92H .card-wrapper .content-wrap .lists-wrapper {
    grid-template-columns: 1fr;
  }
}
.cid-uN2ihjV92H .card-wrapper .content-wrap .lists-wrapper .list-wrapper .mbr-desc {
  margin-bottom: 14px;
}
.cid-uN2ihjV92H .card-wrapper .content-wrap .lists-wrapper .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uN2ihjV92H .card-wrapper .content-wrap .lists-wrapper .list-wrapper .list .item-wrap {
  margin-bottom: 6px;
  transition: all 0.3s ease-in-out;
}
.cid-uN2ihjV92H .card-wrapper .content-wrap .lists-wrapper .list-wrapper .list .item-wrap:hover,
.cid-uN2ihjV92H .card-wrapper .content-wrap .lists-wrapper .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-uN2ihjV92H .card-wrapper .content-wrap .lists-wrapper .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uN2ihjV92H .card-wrapper .content-wrap .mbr-copy {
  margin-bottom: 0;
}
.cid-uN2ihjV92H .mbr-section-title {
  color: #150764;
}
.cid-uN2ihjV92H .mbr-desc {
  color: #000000;
}
.cid-uN2ihjV92H .list {
  color: #150764;
}
.cid-uN2ihjV92H .mbr-section-title,
.cid-uN2ihjV92H .mbr-section-btn,
.cid-uN2ihjV92H .logo-wrapper {
  color: #000000;
}
.cid-uN2ihjV92H .mbr-copy {
  color: #000000;
}
.cid-ugZrXzieBe .navbar-dropdown {
  position: relative !important;
}
.cid-ugZrXzieBe .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-ugZrXzieBe .dropdown-menu {
  background: #ffffff !important;
}
@media (max-width: 991px) {
  .cid-ugZrXzieBe .dropdown-menu {
    padding: 0 !important;
  }
}
@media (min-width: 992px) {
  .cid-ugZrXzieBe .dropdown-menu {
    padding: 23px 0;
    box-shadow: -0.968px 3.881px 24.94px 4.06px rgba(195, 196, 249, 0.28);
  }
}
.cid-ugZrXzieBe .dropdown-item {
  padding: 0 28px 0 38px !important;
  min-width: 240px;
  color: transparent;
  background: transparent !important;
  background-image: linear-gradient(-90deg, #5cc2ed 0, #5d62ee 25%, #c298d3 50%, currentColor 51%, currentColor 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-size: 200% 100% !important;
  background-position: left !important;
  transition: background-position 0.4s ease;
}
@media (max-width: 991px) {
  .cid-ugZrXzieBe .dropdown-item {
    padding: 4px 0 4px 15px !important;
    text-align: left !important;
  }
}
.cid-ugZrXzieBe .dropdown-item:hover {
  background-position: right !important;
}
.cid-ugZrXzieBe .dropdown-item:hover:after {
  color: #f0a66e;
}
.cid-ugZrXzieBe .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ugZrXzieBe .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ugZrXzieBe .nav-link {
  position: relative;
}
.cid-ugZrXzieBe .container {
  display: flex;
  margin: auto;
  flex-wrap: wrap;
}
.cid-ugZrXzieBe .dropdown-menu,
.cid-ugZrXzieBe .navbar.opened {
  background: #ffffff !important;
}
.cid-ugZrXzieBe .nav-item:focus,
.cid-ugZrXzieBe .nav-link:focus {
  outline: none;
}
.cid-ugZrXzieBe .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ugZrXzieBe .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ugZrXzieBe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ugZrXzieBe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ugZrXzieBe .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ugZrXzieBe .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ugZrXzieBe .navbar {
  transition: all 0.4s ease-out;
  box-sizing: content-box;
  min-height: 60px;
  position: static !important;
  background-color: #ffffff;
}
.cid-ugZrXzieBe .navbar.opened {
  transition: all 0.3s;
}
@media (max-width: 991px) {
  .cid-ugZrXzieBe .navbar.opened {
    border-bottom: 1px solid #F3F3F3;
  }
}
.cid-ugZrXzieBe .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ugZrXzieBe .navbar .navbar-logo img {
  width: auto;
}
.cid-ugZrXzieBe .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ugZrXzieBe .navbar.collapsed {
  justify-content: center;
}
.cid-ugZrXzieBe .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ugZrXzieBe .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ugZrXzieBe .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-ugZrXzieBe .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ugZrXzieBe .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ugZrXzieBe .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-ugZrXzieBe .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ugZrXzieBe .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ugZrXzieBe .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ugZrXzieBe .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ugZrXzieBe .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ugZrXzieBe .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ugZrXzieBe .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ugZrXzieBe .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-ugZrXzieBe .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ugZrXzieBe .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ugZrXzieBe .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ugZrXzieBe .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ugZrXzieBe .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ugZrXzieBe .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ugZrXzieBe .navbar.navbar-short {
  min-height: 60px;
}
.cid-ugZrXzieBe .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ugZrXzieBe .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0 2rem 0 0;
}
@media (max-width: 480px) {
  .cid-ugZrXzieBe .navbar {
    padding: 5px 7% !important;
  }
}
@media (min-width: 481px) {
  .cid-ugZrXzieBe .navbar {
    padding: 5px 40px !important;
  }
}
@media (min-width: 992px) {
  .cid-ugZrXzieBe .navbar {
    padding: 5px 73px !important;
  }
}
.cid-ugZrXzieBe .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0 2rem 0 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ugZrXzieBe .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ugZrXzieBe .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ugZrXzieBe .dropdown-item.active,
.cid-ugZrXzieBe .dropdown-item:active {
  background-color: transparent;
}
.cid-ugZrXzieBe .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ugZrXzieBe .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ugZrXzieBe .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ugZrXzieBe .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ugZrXzieBe .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ugZrXzieBe .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ugZrXzieBe ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ugZrXzieBe button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ugZrXzieBe button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-ugZrXzieBe button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ugZrXzieBe button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugZrXzieBe button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugZrXzieBe button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ugZrXzieBe nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugZrXzieBe nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ugZrXzieBe nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ugZrXzieBe nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugZrXzieBe .navbar-dropdown {
  padding: 0;
}
.cid-ugZrXzieBe a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ugZrXzieBe .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-ugZrXzieBe .navbar {
    height: 70px;
  }
  .cid-ugZrXzieBe .navbar.opened {
    height: auto;
  }
  .cid-ugZrXzieBe .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ugZrXzieBe .navbar-short {
  background-color: #ffffff !important;
  min-height: 60px;
}
@media (max-width: 480px) {
  .cid-ugZrXzieBe .navbar-short {
    padding: 5px 7% !important;
  }
}
@media (min-width: 481px) {
  .cid-ugZrXzieBe .navbar-short {
    padding: 5px 40px !important;
  }
}
@media (min-width: 992px) {
  .cid-ugZrXzieBe .navbar-short {
    padding: 5px 73px !important;
    box-shadow: 0 2px 25px 4px rgba(195, 196, 249, 0.35) !important;
  }
}
.cid-ugZrXzieBe .container-fluid {
  padding: 0 !important;
}
@media (max-width: 991px) {
  .cid-ugZrXzieBe .container-fluid {
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  .cid-ugZrXzieBe .container-fluid .show {
    padding-bottom: 30px;
  }
}
.cid-ugZrXzieBe .navbar-collapse {
  margin-left: auto;
  flex-grow: 0;
}
@media (max-width: 991px) {
  .cid-ugZrXzieBe .navbar-collapse.show {
    padding: 0 0 24px;
  }
}
@media (max-width: 991px) {
  .cid-ugZrXzieBe .navbar-nav {
    padding-top: 18px;
  }
}
.cid-ugZrXzieBe .nav-item .nav-link {
  color: transparent;
  margin: 12px 22px !important;
  background-image: linear-gradient(-90deg, #5cc2ed 0, #5d62ee 25%, #c298d3 50%, currentColor 51%, currentColor 100%) !important;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 100%;
  background-position: left;
  transition: background-position 0.4s ease;
}
.cid-ugZrXzieBe .nav-item .nav-link:hover {
  background-position: right;
}
.cid-ugZrXzieBe .nav-item .nav-link:hover:after {
  color: #f0a66e;
}
@media (max-width: 991px) {
  .cid-ugZrXzieBe .nav-item .show {
    padding-bottom: 0;
  }
}
@media (min-width: 992px) {
  .cid-ugZrXzieBe .nav-item:last-child .nav-link {
    margin-right: 0 !important;
  }
  .cid-ugZrXzieBe .nav-item:first-child .nav-link {
    margin-left: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-ugZrXzieBe .nav-item {
    width: 100%;
  }
  .cid-ugZrXzieBe .nav-item .nav-link {
    margin: 0 !important;
    padding: 12px 0 !important;
    justify-content: flex-start;
  }
  .cid-ugZrXzieBe .nav-item .nav-link:after {
    margin-left: auto !important;
  }
  .cid-ugZrXzieBe .nav-item .nav-link .dropdown-item {
    text-align: left;
  }
}
.cid-ugZrXzieBe .mbr-section-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-ugZrXzieBe .mbr-section-btn {
    margin-left: 36px !important;
    margin-right: -0.6rem;
    max-width: 50%;
  }
}
@media (max-width: 575px) {
  .cid-ugZrXzieBe .mbr-section-btn .btn {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-ugZrXzieBe .navbar-toggler:not(.collapsed) .hamburger span {
    background-color: #57b8e0 !important;
  }
}
.cid-ugZrXzieBe .navbar-toggler[aria-expanded="false"] .hamburger span {
  background-color: #000000 !important;
}
@media (min-width: 992px) {
  .cid-ugZrXzieBe nav.navbar {
    flex-wrap: nowrap;
    border-radius: 0 !important;
  }
  .cid-ugZrXzieBe .offcanvas {
    padding: 178px 5% 35px 122px;
    width: 557px;
    background-color: #ffffff;
  }
  .cid-ugZrXzieBe .offcanvas .btn-close {
    position: absolute;
    top: 58px;
    right: 87px;
    width: 30px;
    height: 30px;
    padding: 0;
    background-size: 100%;
  }
  .cid-ugZrXzieBe .offcanvas-body {
    text-align: left;
    padding: 0;
  }
  .cid-ugZrXzieBe .offcanvas-body .mbr-text {
    margin-top: 15px;
  }
  .cid-ugZrXzieBe .offcanvas-body .email-text {
    margin-top: 8px;
  }
  .cid-ugZrXzieBe .offcanvas-body .offcanvas_contact {
    margin-top: 60px;
  }
  .cid-ugZrXzieBe .offcanvas-body .text_widget a {
    margin-bottom: 8px;
  }
  .cid-ugZrXzieBe .offcanvas_box {
    width: 75px !important;
    margin-left: 24px !important;
    text-align: right;
  }
  .cid-ugZrXzieBe .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 41px;
    height: 17px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
    color: #ffffff;
  }
  .cid-ugZrXzieBe .offcanvas_box button.btn_offcanvas .hamburger-offcanvas span {
    position: absolute;
    overflow: hidden;
    right: 0;
    width: 39px;
    height: 1px;
    background-image: linear-gradient(-90deg, #000000 0, #000000 33.33333333%, transparent 33.33333333%, transparent 66.66666667%, #000000 66.66666667%, #000000 100%) !important;
    background-size: 300% 100%;
    background-position: left;
    transition: background-position 0.7s ease-out;
  }
  .cid-ugZrXzieBe .offcanvas_box button.btn_offcanvas .hamburger-offcanvas span:nth-child(1) {
    top: 1px;
  }
  .cid-ugZrXzieBe .offcanvas_box button.btn_offcanvas .hamburger-offcanvas span:nth-child(2) {
    width: 24px;
    top: 6px;
    transition: background-position 0.8s ease-out;
  }
  .cid-ugZrXzieBe .offcanvas_box button.btn_offcanvas:hover .hamburger-offcanvas span {
    background-position: right;
  }
}
@media (min-width: 992px) and (max-width: 1280px) {
  .cid-ugZrXzieBe .offcanvas {
    padding: 12% 8% 5% 8%;
  }
}
@media (max-width: 991px) {
  .cid-ugZrXzieBe .offcanvas_box {
    display: none;
  }
}
.cid-ugZrXzieBe .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #ffffff;
}
.cid-ugZrXzieBe .list li {
  display: flex;
  align-items: center;
}
.cid-ugZrXzieBe .list a {
  display: flex;
  align-items: center;
}
.cid-ugZrXzieBe .text_widget {
  color: #000000;
  margin-bottom: 0;
}
.cid-ugZrXzieBe .text_widget a {
  background-position: center !important;
  background-size: 100% !important;
  transition: all 0.2s ease-out !important;
}
.cid-ugZrXzieBe .text_widget a:hover {
  background: linear-gradient(90deg, #5cc2ed 0, #5d62ee 50%, #c298d3 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
}
.cid-ugZrXAj77e {
  background-image: url("../../../assets/images/mbr-2-1920x1280.jpg");
}
.cid-ugZrXAj77e .mbr-section-title {
  color: #000000;
  margin-bottom: 0;
}
.cid-ugZrXAj77e .mbr-section-subtitle {
  margin-top: 20px;
  margin-bottom: 0;
}
.cid-ugZrXAj77e .mbr-section-btn {
  margin-top: 30px;
}
.cid-ugZrXAj77e .mbr-section-title,
.cid-ugZrXAj77e .mbr-section-btn {
  text-align: center;
}
.cid-ugZrXC6HWk {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ugZrXC6HWk .mbr-section-title {
  color: #000000;
  margin-bottom: 0;
  background: linear-gradient(-120deg, rgba(202, 151, 210, 0.94), rgba(94, 94, 240, 0.94) 46%, rgba(92, 195, 238, 0.94));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-ugZrXC6HWk .mbr-section-subtitle {
  margin-top: 32px;
  margin-bottom: 0;
  color: #000000;
  text-align: left;
}
.cid-ugZrXC6HWk .mbr-section-btn {
  margin-top: 20px;
}
.cid-ugZrXC6HWk .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-ugZrXBgaRh {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-ugZrXBgaRh .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugZrXBgaRh .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-ugZrXBgaRh .container {
    padding: 0 22px;
  }
}
.cid-ugZrXBgaRh .card {
  justify-content: center;
}
.cid-ugZrXBgaRh .content-wrapper {
  padding-right: 32px;
}
@media (max-width: 992px) {
  .cid-ugZrXBgaRh .content-wrapper {
    padding: 0;
    margin-bottom: 40px;
  }
}
.cid-ugZrXBgaRh .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-ugZrXBgaRh .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ugZrXBgaRh .image-wrapper {
  display: flex;
  justify-content: center;
}
.cid-ugZrXBgaRh .image-wrapper img {
  height: 600px;
  width: 600px;
  border-radius: 100% !important;
  object-fit: cover;
  box-shadow: 10px 10px 60px #000000;
}
@media (max-width: 1440px) {
  .cid-ugZrXBgaRh .image-wrapper img {
    height: 500px;
    width: 500px;
  }
}
@media (max-width: 1200px) {
  .cid-ugZrXBgaRh .image-wrapper img {
    height: 400px;
    width: 400px;
  }
}
@media (max-width: 992px) {
  .cid-ugZrXBgaRh .image-wrapper img {
    height: 400px;
    width: 400px;
  }
}
@media (max-width: 768px) {
  .cid-ugZrXBgaRh .image-wrapper img {
    height: 260px;
    width: 260px;
  }
}
.cid-ugZrXBgaRh .mbr-section-title {
  color: #ffffff;
}
.cid-ugZrXBgaRh .mbr-text {
  color: #000000;
}
.cid-uN2ihjV92H {
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uN2ihjV92H .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-uN2ihjV92H .mbr-fallback-image.disabled {
  display: none;
}
.cid-uN2ihjV92H .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uN2ihjV92H .card-wrapper {
  display: flex;
  justify-content: center;
  background-color: #8184f4;
  margin: 0 24px;
}
@media (max-width: 992px) {
  .cid-uN2ihjV92H .card-wrapper {
    display: block;
    margin: 0;
  }
}
.cid-uN2ihjV92H .card-wrapper .title-wrapper {
  width: 50%;
  padding: 40px 24px 40px 96px;
  border-right: 1px solid #150764;
}
@media (max-width: 992px) {
  .cid-uN2ihjV92H .card-wrapper .title-wrapper {
    border-right: none;
    border-bottom: 1px solid #150764;
  }
}
@media (max-width: 1640px) {
  .cid-uN2ihjV92H .card-wrapper .title-wrapper {
    padding: 40px 24px;
  }
}
@media (max-width: 992px) {
  .cid-uN2ihjV92H .card-wrapper .title-wrapper {
    padding: 40px 20px;
    width: 100%;
  }
}
.cid-uN2ihjV92H .card-wrapper .title-wrapper .title-wrap {
  margin-bottom: 140px;
}
@media (max-width: 992px) {
  .cid-uN2ihjV92H .card-wrapper .title-wrapper .title-wrap {
    margin-bottom: 40px;
  }
}
.cid-uN2ihjV92H .card-wrapper .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uN2ihjV92H .card-wrapper .title-wrapper .logo-wrapper img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  display: inline-flex;
}
.cid-uN2ihjV92H .card-wrapper .content-wrap {
  width: 50%;
  padding: 40px 96px 40px 24px;
}
@media (max-width: 1640px) {
  .cid-uN2ihjV92H .card-wrapper .content-wrap {
    padding: 40px 24px;
  }
}
@media (max-width: 992px) {
  .cid-uN2ihjV92H .card-wrapper .content-wrap {
    padding: 40px 20px;
    width: 100%;
  }
}
.cid-uN2ihjV92H .card-wrapper .content-wrap .lists-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 140px;
}
@media (max-width: 992px) {
  .cid-uN2ihjV92H .card-wrapper .content-wrap .lists-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .cid-uN2ihjV92H .card-wrapper .content-wrap .lists-wrapper {
    grid-template-columns: 1fr;
  }
}
.cid-uN2ihjV92H .card-wrapper .content-wrap .lists-wrapper .list-wrapper .mbr-desc {
  margin-bottom: 14px;
}
.cid-uN2ihjV92H .card-wrapper .content-wrap .lists-wrapper .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uN2ihjV92H .card-wrapper .content-wrap .lists-wrapper .list-wrapper .list .item-wrap {
  margin-bottom: 6px;
  transition: all 0.3s ease-in-out;
}
.cid-uN2ihjV92H .card-wrapper .content-wrap .lists-wrapper .list-wrapper .list .item-wrap:hover,
.cid-uN2ihjV92H .card-wrapper .content-wrap .lists-wrapper .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-uN2ihjV92H .card-wrapper .content-wrap .lists-wrapper .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uN2ihjV92H .card-wrapper .content-wrap .mbr-copy {
  margin-bottom: 0;
}
.cid-uN2ihjV92H .mbr-section-title {
  color: #150764;
}
.cid-uN2ihjV92H .mbr-desc {
  color: #000000;
}
.cid-uN2ihjV92H .list {
  color: #150764;
}
.cid-uN2ihjV92H .mbr-section-title,
.cid-uN2ihjV92H .mbr-section-btn,
.cid-uN2ihjV92H .logo-wrapper {
  color: #000000;
}
.cid-uN2ihjV92H .mbr-copy {
  color: #000000;
}
.cid-uMXFiba3lQ .navbar-dropdown {
  position: relative !important;
}
.cid-uMXFiba3lQ .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-uMXFiba3lQ .dropdown-menu {
  background: #ffffff !important;
}
@media (max-width: 991px) {
  .cid-uMXFiba3lQ .dropdown-menu {
    padding: 0 !important;
  }
}
@media (min-width: 992px) {
  .cid-uMXFiba3lQ .dropdown-menu {
    padding: 23px 0;
    box-shadow: -0.968px 3.881px 24.94px 4.06px rgba(195, 196, 249, 0.28);
  }
}
.cid-uMXFiba3lQ .dropdown-item {
  padding: 0 28px 0 38px !important;
  min-width: 240px;
  color: transparent;
  background: transparent !important;
  background-image: linear-gradient(-90deg, #5cc2ed 0, #5d62ee 25%, #c298d3 50%, currentColor 51%, currentColor 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-size: 200% 100% !important;
  background-position: left !important;
  transition: background-position 0.4s ease;
}
@media (max-width: 991px) {
  .cid-uMXFiba3lQ .dropdown-item {
    padding: 4px 0 4px 15px !important;
    text-align: left !important;
  }
}
.cid-uMXFiba3lQ .dropdown-item:hover {
  background-position: right !important;
}
.cid-uMXFiba3lQ .dropdown-item:hover:after {
  color: #f0a66e;
}
.cid-uMXFiba3lQ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uMXFiba3lQ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uMXFiba3lQ .nav-link {
  position: relative;
}
.cid-uMXFiba3lQ .container {
  display: flex;
  margin: auto;
  flex-wrap: wrap;
}
.cid-uMXFiba3lQ .dropdown-menu,
.cid-uMXFiba3lQ .navbar.opened {
  background: #ffffff !important;
}
.cid-uMXFiba3lQ .nav-item:focus,
.cid-uMXFiba3lQ .nav-link:focus {
  outline: none;
}
.cid-uMXFiba3lQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uMXFiba3lQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uMXFiba3lQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uMXFiba3lQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uMXFiba3lQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uMXFiba3lQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uMXFiba3lQ .navbar {
  transition: all 0.4s ease-out;
  box-sizing: content-box;
  min-height: 60px;
  position: static !important;
  background-color: #ffffff;
}
.cid-uMXFiba3lQ .navbar.opened {
  transition: all 0.3s;
}
@media (max-width: 991px) {
  .cid-uMXFiba3lQ .navbar.opened {
    border-bottom: 1px solid #F3F3F3;
  }
}
.cid-uMXFiba3lQ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uMXFiba3lQ .navbar .navbar-logo img {
  width: auto;
}
.cid-uMXFiba3lQ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uMXFiba3lQ .navbar.collapsed {
  justify-content: center;
}
.cid-uMXFiba3lQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uMXFiba3lQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uMXFiba3lQ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uMXFiba3lQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uMXFiba3lQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uMXFiba3lQ .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-uMXFiba3lQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uMXFiba3lQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uMXFiba3lQ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uMXFiba3lQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uMXFiba3lQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uMXFiba3lQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uMXFiba3lQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uMXFiba3lQ .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-uMXFiba3lQ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uMXFiba3lQ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uMXFiba3lQ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uMXFiba3lQ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uMXFiba3lQ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uMXFiba3lQ .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uMXFiba3lQ .navbar.navbar-short {
  min-height: 60px;
}
.cid-uMXFiba3lQ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uMXFiba3lQ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0 2rem 0 0;
}
@media (max-width: 480px) {
  .cid-uMXFiba3lQ .navbar {
    padding: 5px 7% !important;
  }
}
@media (min-width: 481px) {
  .cid-uMXFiba3lQ .navbar {
    padding: 5px 40px !important;
  }
}
@media (min-width: 992px) {
  .cid-uMXFiba3lQ .navbar {
    padding: 5px 73px !important;
  }
}
.cid-uMXFiba3lQ .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0 2rem 0 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uMXFiba3lQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uMXFiba3lQ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uMXFiba3lQ .dropdown-item.active,
.cid-uMXFiba3lQ .dropdown-item:active {
  background-color: transparent;
}
.cid-uMXFiba3lQ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uMXFiba3lQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uMXFiba3lQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uMXFiba3lQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uMXFiba3lQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uMXFiba3lQ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uMXFiba3lQ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uMXFiba3lQ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uMXFiba3lQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uMXFiba3lQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uMXFiba3lQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMXFiba3lQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMXFiba3lQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uMXFiba3lQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMXFiba3lQ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uMXFiba3lQ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uMXFiba3lQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMXFiba3lQ .navbar-dropdown {
  padding: 0;
}
.cid-uMXFiba3lQ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uMXFiba3lQ .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-uMXFiba3lQ .navbar {
    height: 70px;
  }
  .cid-uMXFiba3lQ .navbar.opened {
    height: auto;
  }
  .cid-uMXFiba3lQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uMXFiba3lQ .navbar-short {
  background-color: #ffffff !important;
  min-height: 60px;
}
@media (max-width: 480px) {
  .cid-uMXFiba3lQ .navbar-short {
    padding: 5px 7% !important;
  }
}
@media (min-width: 481px) {
  .cid-uMXFiba3lQ .navbar-short {
    padding: 5px 40px !important;
  }
}
@media (min-width: 992px) {
  .cid-uMXFiba3lQ .navbar-short {
    padding: 5px 73px !important;
    box-shadow: 0 2px 25px 4px rgba(195, 196, 249, 0.35) !important;
  }
}
.cid-uMXFiba3lQ .container-fluid {
  padding: 0 !important;
}
@media (max-width: 991px) {
  .cid-uMXFiba3lQ .container-fluid {
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  .cid-uMXFiba3lQ .container-fluid .show {
    padding-bottom: 30px;
  }
}
.cid-uMXFiba3lQ .navbar-collapse {
  margin-left: auto;
  flex-grow: 0;
}
@media (max-width: 991px) {
  .cid-uMXFiba3lQ .navbar-collapse.show {
    padding: 0 0 24px;
  }
}
@media (max-width: 991px) {
  .cid-uMXFiba3lQ .navbar-nav {
    padding-top: 18px;
  }
}
.cid-uMXFiba3lQ .nav-item .nav-link {
  color: transparent;
  margin: 12px 22px !important;
  background-image: linear-gradient(-90deg, #5cc2ed 0, #5d62ee 25%, #c298d3 50%, currentColor 51%, currentColor 100%) !important;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 100%;
  background-position: left;
  transition: background-position 0.4s ease;
}
.cid-uMXFiba3lQ .nav-item .nav-link:hover {
  background-position: right;
}
.cid-uMXFiba3lQ .nav-item .nav-link:hover:after {
  color: #f0a66e;
}
@media (max-width: 991px) {
  .cid-uMXFiba3lQ .nav-item .show {
    padding-bottom: 0;
  }
}
@media (min-width: 992px) {
  .cid-uMXFiba3lQ .nav-item:last-child .nav-link {
    margin-right: 0 !important;
  }
  .cid-uMXFiba3lQ .nav-item:first-child .nav-link {
    margin-left: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-uMXFiba3lQ .nav-item {
    width: 100%;
  }
  .cid-uMXFiba3lQ .nav-item .nav-link {
    margin: 0 !important;
    padding: 12px 0 !important;
    justify-content: flex-start;
  }
  .cid-uMXFiba3lQ .nav-item .nav-link:after {
    margin-left: auto !important;
  }
  .cid-uMXFiba3lQ .nav-item .nav-link .dropdown-item {
    text-align: left;
  }
}
.cid-uMXFiba3lQ .mbr-section-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-uMXFiba3lQ .mbr-section-btn {
    margin-left: 36px !important;
    margin-right: -0.6rem;
    max-width: 50%;
  }
}
@media (max-width: 575px) {
  .cid-uMXFiba3lQ .mbr-section-btn .btn {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-uMXFiba3lQ .navbar-toggler:not(.collapsed) .hamburger span {
    background-color: #57b8e0 !important;
  }
}
.cid-uMXFiba3lQ .navbar-toggler[aria-expanded="false"] .hamburger span {
  background-color: #000000 !important;
}
@media (min-width: 992px) {
  .cid-uMXFiba3lQ nav.navbar {
    flex-wrap: nowrap;
    border-radius: 0 !important;
  }
  .cid-uMXFiba3lQ .offcanvas {
    padding: 178px 5% 35px 122px;
    width: 557px;
    background-color: #ffffff;
  }
  .cid-uMXFiba3lQ .offcanvas .btn-close {
    position: absolute;
    top: 58px;
    right: 87px;
    width: 30px;
    height: 30px;
    padding: 0;
    background-size: 100%;
  }
  .cid-uMXFiba3lQ .offcanvas-body {
    text-align: left;
    padding: 0;
  }
  .cid-uMXFiba3lQ .offcanvas-body .mbr-text {
    margin-top: 15px;
  }
  .cid-uMXFiba3lQ .offcanvas-body .email-text {
    margin-top: 8px;
  }
  .cid-uMXFiba3lQ .offcanvas-body .offcanvas_contact {
    margin-top: 60px;
  }
  .cid-uMXFiba3lQ .offcanvas-body .text_widget a {
    margin-bottom: 8px;
  }
  .cid-uMXFiba3lQ .offcanvas_box {
    width: 75px !important;
    margin-left: 24px !important;
    text-align: right;
  }
  .cid-uMXFiba3lQ .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 41px;
    height: 17px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
    color: #ffffff;
  }
  .cid-uMXFiba3lQ .offcanvas_box button.btn_offcanvas .hamburger-offcanvas span {
    position: absolute;
    overflow: hidden;
    right: 0;
    width: 39px;
    height: 1px;
    background-image: linear-gradient(-90deg, #000000 0, #000000 33.33333333%, transparent 33.33333333%, transparent 66.66666667%, #000000 66.66666667%, #000000 100%) !important;
    background-size: 300% 100%;
    background-position: left;
    transition: background-position 0.7s ease-out;
  }
  .cid-uMXFiba3lQ .offcanvas_box button.btn_offcanvas .hamburger-offcanvas span:nth-child(1) {
    top: 1px;
  }
  .cid-uMXFiba3lQ .offcanvas_box button.btn_offcanvas .hamburger-offcanvas span:nth-child(2) {
    width: 24px;
    top: 6px;
    transition: background-position 0.8s ease-out;
  }
  .cid-uMXFiba3lQ .offcanvas_box button.btn_offcanvas:hover .hamburger-offcanvas span {
    background-position: right;
  }
}
@media (min-width: 992px) and (max-width: 1280px) {
  .cid-uMXFiba3lQ .offcanvas {
    padding: 12% 8% 5% 8%;
  }
}
@media (max-width: 991px) {
  .cid-uMXFiba3lQ .offcanvas_box {
    display: none;
  }
}
.cid-uMXFiba3lQ .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #ffffff;
}
.cid-uMXFiba3lQ .list li {
  display: flex;
  align-items: center;
}
.cid-uMXFiba3lQ .list a {
  display: flex;
  align-items: center;
}
.cid-uMXFiba3lQ .text_widget {
  color: #000000;
  margin-bottom: 0;
}
.cid-uMXFiba3lQ .text_widget a {
  background-position: center !important;
  background-size: 100% !important;
  transition: all 0.2s ease-out !important;
}
.cid-uMXFiba3lQ .text_widget a:hover {
  background: linear-gradient(90deg, #5cc2ed 0, #5d62ee 50%, #c298d3 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
}
.cid-uMXFibTRdZ {
  background-image: url("../../../assets/images/modern-technology-and-communication.jpg-1366x768.jpg");
}
.cid-uMXFibTRdZ .mbr-section-title {
  color: #000000;
  margin-bottom: 0;
}
.cid-uMXFibTRdZ .mbr-section-subtitle {
  margin-top: 20px;
  margin-bottom: 0;
}
.cid-uMXFibTRdZ .mbr-section-btn {
  margin-top: 30px;
}
.cid-uMXFibTRdZ .mbr-section-title,
.cid-uMXFibTRdZ .mbr-section-btn {
  text-align: center;
}
.cid-uMXFiczL2R {
  padding-top: 9rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uMXFiczL2R .mbr-section-title {
  color: #000000;
  margin-bottom: 0;
  background: linear-gradient(-120deg, rgba(202, 151, 210, 0.94), rgba(94, 94, 240, 0.94) 46%, rgba(92, 195, 238, 0.94));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-uMXFiczL2R .mbr-section-subtitle {
  margin-top: 32px;
  margin-bottom: 0;
  color: #000000;
  text-align: left;
}
.cid-uMXFiczL2R .mbr-section-btn {
  margin-top: 20px;
}
.cid-uMXFiczL2R .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-uN2ihjV92H {
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uN2ihjV92H .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-uN2ihjV92H .mbr-fallback-image.disabled {
  display: none;
}
.cid-uN2ihjV92H .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uN2ihjV92H .card-wrapper {
  display: flex;
  justify-content: center;
  background-color: #8184f4;
  margin: 0 24px;
}
@media (max-width: 992px) {
  .cid-uN2ihjV92H .card-wrapper {
    display: block;
    margin: 0;
  }
}
.cid-uN2ihjV92H .card-wrapper .title-wrapper {
  width: 50%;
  padding: 40px 24px 40px 96px;
  border-right: 1px solid #150764;
}
@media (max-width: 992px) {
  .cid-uN2ihjV92H .card-wrapper .title-wrapper {
    border-right: none;
    border-bottom: 1px solid #150764;
  }
}
@media (max-width: 1640px) {
  .cid-uN2ihjV92H .card-wrapper .title-wrapper {
    padding: 40px 24px;
  }
}
@media (max-width: 992px) {
  .cid-uN2ihjV92H .card-wrapper .title-wrapper {
    padding: 40px 20px;
    width: 100%;
  }
}
.cid-uN2ihjV92H .card-wrapper .title-wrapper .title-wrap {
  margin-bottom: 140px;
}
@media (max-width: 992px) {
  .cid-uN2ihjV92H .card-wrapper .title-wrapper .title-wrap {
    margin-bottom: 40px;
  }
}
.cid-uN2ihjV92H .card-wrapper .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uN2ihjV92H .card-wrapper .title-wrapper .logo-wrapper img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  display: inline-flex;
}
.cid-uN2ihjV92H .card-wrapper .content-wrap {
  width: 50%;
  padding: 40px 96px 40px 24px;
}
@media (max-width: 1640px) {
  .cid-uN2ihjV92H .card-wrapper .content-wrap {
    padding: 40px 24px;
  }
}
@media (max-width: 992px) {
  .cid-uN2ihjV92H .card-wrapper .content-wrap {
    padding: 40px 20px;
    width: 100%;
  }
}
.cid-uN2ihjV92H .card-wrapper .content-wrap .lists-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 140px;
}
@media (max-width: 992px) {
  .cid-uN2ihjV92H .card-wrapper .content-wrap .lists-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .cid-uN2ihjV92H .card-wrapper .content-wrap .lists-wrapper {
    grid-template-columns: 1fr;
  }
}
.cid-uN2ihjV92H .card-wrapper .content-wrap .lists-wrapper .list-wrapper .mbr-desc {
  margin-bottom: 14px;
}
.cid-uN2ihjV92H .card-wrapper .content-wrap .lists-wrapper .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uN2ihjV92H .card-wrapper .content-wrap .lists-wrapper .list-wrapper .list .item-wrap {
  margin-bottom: 6px;
  transition: all 0.3s ease-in-out;
}
.cid-uN2ihjV92H .card-wrapper .content-wrap .lists-wrapper .list-wrapper .list .item-wrap:hover,
.cid-uN2ihjV92H .card-wrapper .content-wrap .lists-wrapper .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-uN2ihjV92H .card-wrapper .content-wrap .lists-wrapper .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uN2ihjV92H .card-wrapper .content-wrap .mbr-copy {
  margin-bottom: 0;
}
.cid-uN2ihjV92H .mbr-section-title {
  color: #150764;
}
.cid-uN2ihjV92H .mbr-desc {
  color: #000000;
}
.cid-uN2ihjV92H .list {
  color: #150764;
}
.cid-uN2ihjV92H .mbr-section-title,
.cid-uN2ihjV92H .mbr-section-btn,
.cid-uN2ihjV92H .logo-wrapper {
  color: #000000;
}
.cid-uN2ihjV92H .mbr-copy {
  color: #000000;
}
.cid-uMXHs403nM .navbar-dropdown {
  position: relative !important;
}
.cid-uMXHs403nM .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-uMXHs403nM .dropdown-menu {
  background: #ffffff !important;
}
@media (max-width: 991px) {
  .cid-uMXHs403nM .dropdown-menu {
    padding: 0 !important;
  }
}
@media (min-width: 992px) {
  .cid-uMXHs403nM .dropdown-menu {
    padding: 23px 0;
    box-shadow: -0.968px 3.881px 24.94px 4.06px rgba(195, 196, 249, 0.28);
  }
}
.cid-uMXHs403nM .dropdown-item {
  padding: 0 28px 0 38px !important;
  min-width: 240px;
  color: transparent;
  background: transparent !important;
  background-image: linear-gradient(-90deg, #5cc2ed 0, #5d62ee 25%, #c298d3 50%, currentColor 51%, currentColor 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-size: 200% 100% !important;
  background-position: left !important;
  transition: background-position 0.4s ease;
}
@media (max-width: 991px) {
  .cid-uMXHs403nM .dropdown-item {
    padding: 4px 0 4px 15px !important;
    text-align: left !important;
  }
}
.cid-uMXHs403nM .dropdown-item:hover {
  background-position: right !important;
}
.cid-uMXHs403nM .dropdown-item:hover:after {
  color: #f0a66e;
}
.cid-uMXHs403nM .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uMXHs403nM .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uMXHs403nM .nav-link {
  position: relative;
}
.cid-uMXHs403nM .container {
  display: flex;
  margin: auto;
  flex-wrap: wrap;
}
.cid-uMXHs403nM .dropdown-menu,
.cid-uMXHs403nM .navbar.opened {
  background: #ffffff !important;
}
.cid-uMXHs403nM .nav-item:focus,
.cid-uMXHs403nM .nav-link:focus {
  outline: none;
}
.cid-uMXHs403nM .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uMXHs403nM .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uMXHs403nM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uMXHs403nM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uMXHs403nM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uMXHs403nM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uMXHs403nM .navbar {
  transition: all 0.4s ease-out;
  box-sizing: content-box;
  min-height: 60px;
  position: static !important;
  background-color: #ffffff;
}
.cid-uMXHs403nM .navbar.opened {
  transition: all 0.3s;
}
@media (max-width: 991px) {
  .cid-uMXHs403nM .navbar.opened {
    border-bottom: 1px solid #F3F3F3;
  }
}
.cid-uMXHs403nM .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uMXHs403nM .navbar .navbar-logo img {
  width: auto;
}
.cid-uMXHs403nM .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uMXHs403nM .navbar.collapsed {
  justify-content: center;
}
.cid-uMXHs403nM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uMXHs403nM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uMXHs403nM .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uMXHs403nM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uMXHs403nM .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uMXHs403nM .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-uMXHs403nM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uMXHs403nM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uMXHs403nM .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uMXHs403nM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uMXHs403nM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uMXHs403nM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uMXHs403nM .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uMXHs403nM .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-uMXHs403nM .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uMXHs403nM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uMXHs403nM .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uMXHs403nM .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uMXHs403nM .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uMXHs403nM .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uMXHs403nM .navbar.navbar-short {
  min-height: 60px;
}
.cid-uMXHs403nM .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uMXHs403nM .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0 2rem 0 0;
}
@media (max-width: 480px) {
  .cid-uMXHs403nM .navbar {
    padding: 5px 7% !important;
  }
}
@media (min-width: 481px) {
  .cid-uMXHs403nM .navbar {
    padding: 5px 40px !important;
  }
}
@media (min-width: 992px) {
  .cid-uMXHs403nM .navbar {
    padding: 5px 73px !important;
  }
}
.cid-uMXHs403nM .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0 2rem 0 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uMXHs403nM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uMXHs403nM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uMXHs403nM .dropdown-item.active,
.cid-uMXHs403nM .dropdown-item:active {
  background-color: transparent;
}
.cid-uMXHs403nM .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uMXHs403nM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uMXHs403nM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uMXHs403nM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uMXHs403nM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uMXHs403nM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uMXHs403nM ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uMXHs403nM button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uMXHs403nM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uMXHs403nM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uMXHs403nM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMXHs403nM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMXHs403nM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uMXHs403nM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMXHs403nM nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uMXHs403nM nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uMXHs403nM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMXHs403nM .navbar-dropdown {
  padding: 0;
}
.cid-uMXHs403nM a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uMXHs403nM .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-uMXHs403nM .navbar {
    height: 70px;
  }
  .cid-uMXHs403nM .navbar.opened {
    height: auto;
  }
  .cid-uMXHs403nM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uMXHs403nM .navbar-short {
  background-color: #ffffff !important;
  min-height: 60px;
}
@media (max-width: 480px) {
  .cid-uMXHs403nM .navbar-short {
    padding: 5px 7% !important;
  }
}
@media (min-width: 481px) {
  .cid-uMXHs403nM .navbar-short {
    padding: 5px 40px !important;
  }
}
@media (min-width: 992px) {
  .cid-uMXHs403nM .navbar-short {
    padding: 5px 73px !important;
    box-shadow: 0 2px 25px 4px rgba(195, 196, 249, 0.35) !important;
  }
}
.cid-uMXHs403nM .container-fluid {
  padding: 0 !important;
}
@media (max-width: 991px) {
  .cid-uMXHs403nM .container-fluid {
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  .cid-uMXHs403nM .container-fluid .show {
    padding-bottom: 30px;
  }
}
.cid-uMXHs403nM .navbar-collapse {
  margin-left: auto;
  flex-grow: 0;
}
@media (max-width: 991px) {
  .cid-uMXHs403nM .navbar-collapse.show {
    padding: 0 0 24px;
  }
}
@media (max-width: 991px) {
  .cid-uMXHs403nM .navbar-nav {
    padding-top: 18px;
  }
}
.cid-uMXHs403nM .nav-item .nav-link {
  color: transparent;
  margin: 12px 22px !important;
  background-image: linear-gradient(-90deg, #5cc2ed 0, #5d62ee 25%, #c298d3 50%, currentColor 51%, currentColor 100%) !important;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 100%;
  background-position: left;
  transition: background-position 0.4s ease;
}
.cid-uMXHs403nM .nav-item .nav-link:hover {
  background-position: right;
}
.cid-uMXHs403nM .nav-item .nav-link:hover:after {
  color: #f0a66e;
}
@media (max-width: 991px) {
  .cid-uMXHs403nM .nav-item .show {
    padding-bottom: 0;
  }
}
@media (min-width: 992px) {
  .cid-uMXHs403nM .nav-item:last-child .nav-link {
    margin-right: 0 !important;
  }
  .cid-uMXHs403nM .nav-item:first-child .nav-link {
    margin-left: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-uMXHs403nM .nav-item {
    width: 100%;
  }
  .cid-uMXHs403nM .nav-item .nav-link {
    margin: 0 !important;
    padding: 12px 0 !important;
    justify-content: flex-start;
  }
  .cid-uMXHs403nM .nav-item .nav-link:after {
    margin-left: auto !important;
  }
  .cid-uMXHs403nM .nav-item .nav-link .dropdown-item {
    text-align: left;
  }
}
.cid-uMXHs403nM .mbr-section-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-uMXHs403nM .mbr-section-btn {
    margin-left: 36px !important;
    margin-right: -0.6rem;
    max-width: 50%;
  }
}
@media (max-width: 575px) {
  .cid-uMXHs403nM .mbr-section-btn .btn {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-uMXHs403nM .navbar-toggler:not(.collapsed) .hamburger span {
    background-color: #57b8e0 !important;
  }
}
.cid-uMXHs403nM .navbar-toggler[aria-expanded="false"] .hamburger span {
  background-color: #000000 !important;
}
@media (min-width: 992px) {
  .cid-uMXHs403nM nav.navbar {
    flex-wrap: nowrap;
    border-radius: 0 !important;
  }
  .cid-uMXHs403nM .offcanvas {
    padding: 178px 5% 35px 122px;
    width: 557px;
    background-color: #ffffff;
  }
  .cid-uMXHs403nM .offcanvas .btn-close {
    position: absolute;
    top: 58px;
    right: 87px;
    width: 30px;
    height: 30px;
    padding: 0;
    background-size: 100%;
  }
  .cid-uMXHs403nM .offcanvas-body {
    text-align: left;
    padding: 0;
  }
  .cid-uMXHs403nM .offcanvas-body .mbr-text {
    margin-top: 15px;
  }
  .cid-uMXHs403nM .offcanvas-body .email-text {
    margin-top: 8px;
  }
  .cid-uMXHs403nM .offcanvas-body .offcanvas_contact {
    margin-top: 60px;
  }
  .cid-uMXHs403nM .offcanvas-body .text_widget a {
    margin-bottom: 8px;
  }
  .cid-uMXHs403nM .offcanvas_box {
    width: 75px !important;
    margin-left: 24px !important;
    text-align: right;
  }
  .cid-uMXHs403nM .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 41px;
    height: 17px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
    color: #ffffff;
  }
  .cid-uMXHs403nM .offcanvas_box button.btn_offcanvas .hamburger-offcanvas span {
    position: absolute;
    overflow: hidden;
    right: 0;
    width: 39px;
    height: 1px;
    background-image: linear-gradient(-90deg, #000000 0, #000000 33.33333333%, transparent 33.33333333%, transparent 66.66666667%, #000000 66.66666667%, #000000 100%) !important;
    background-size: 300% 100%;
    background-position: left;
    transition: background-position 0.7s ease-out;
  }
  .cid-uMXHs403nM .offcanvas_box button.btn_offcanvas .hamburger-offcanvas span:nth-child(1) {
    top: 1px;
  }
  .cid-uMXHs403nM .offcanvas_box button.btn_offcanvas .hamburger-offcanvas span:nth-child(2) {
    width: 24px;
    top: 6px;
    transition: background-position 0.8s ease-out;
  }
  .cid-uMXHs403nM .offcanvas_box button.btn_offcanvas:hover .hamburger-offcanvas span {
    background-position: right;
  }
}
@media (min-width: 992px) and (max-width: 1280px) {
  .cid-uMXHs403nM .offcanvas {
    padding: 12% 8% 5% 8%;
  }
}
@media (max-width: 991px) {
  .cid-uMXHs403nM .offcanvas_box {
    display: none;
  }
}
.cid-uMXHs403nM .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #ffffff;
}
.cid-uMXHs403nM .list li {
  display: flex;
  align-items: center;
}
.cid-uMXHs403nM .list a {
  display: flex;
  align-items: center;
}
.cid-uMXHs403nM .text_widget {
  color: #000000;
  margin-bottom: 0;
}
.cid-uMXHs403nM .text_widget a {
  background-position: center !important;
  background-size: 100% !important;
  transition: all 0.2s ease-out !important;
}
.cid-uMXHs403nM .text_widget a:hover {
  background: linear-gradient(90deg, #5cc2ed 0, #5d62ee 50%, #c298d3 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
}
.cid-uMXHs5VVGL {
  background-image: url("../../../assets/images/discuss-the-modern-technology-used-in-business-1024x576.jpg-1024x576.jpg");
}
.cid-uMXHs5VVGL .mbr-section-title {
  color: #000000;
  margin-bottom: 0;
}
.cid-uMXHs5VVGL .mbr-section-subtitle {
  margin-top: 20px;
  margin-bottom: 0;
}
.cid-uMXHs5VVGL .mbr-section-btn {
  margin-top: 30px;
}
.cid-uMXHs5VVGL .mbr-section-title,
.cid-uMXHs5VVGL .mbr-section-btn {
  text-align: center;
}
.cid-uMXIuzaZxP {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uMXIuzaZxP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMXIuzaZxP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMXIuzaZxP .content-wrapper {
  position: sticky;
  top: 40px;
}
@media (max-width: 992px) {
  .cid-uMXIuzaZxP .content-wrapper {
    margin-bottom: 40px;
    position: static;
  }
}
.cid-uMXIuzaZxP .panel-group .card {
  position: relative;
  border-radius: 0 !important;
  padding: 30px 0;
  background-color: transparent;
  border-bottom: 1px solid #dddddd;
}
@media (max-width: 992px) {
  .cid-uMXIuzaZxP .panel-group .card {
    padding: 20px 0;
  }
}
.cid-uMXIuzaZxP .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uMXIuzaZxP .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-uMXIuzaZxP .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uMXIuzaZxP .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  color: #19171c;
  margin-top: 4px;
  margin-left: 20px;
}
.cid-uMXIuzaZxP .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-uMXIuzaZxP .panel-group .card .panel-collapse .panel-body {
  padding-top: 20px;
}
.cid-uMXIuzaZxP .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uMXIuzaZxP .mbr-section-title {
  color: #19171c;
}
.cid-uMXIuzaZxP .panel-title {
  color: #19171c;
}
.cid-uMXIuzaZxP .panel-text {
  color: #000000;
}
.cid-uN2ihjV92H {
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uN2ihjV92H .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-uN2ihjV92H .mbr-fallback-image.disabled {
  display: none;
}
.cid-uN2ihjV92H .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uN2ihjV92H .card-wrapper {
  display: flex;
  justify-content: center;
  background-color: #8184f4;
  margin: 0 24px;
}
@media (max-width: 992px) {
  .cid-uN2ihjV92H .card-wrapper {
    display: block;
    margin: 0;
  }
}
.cid-uN2ihjV92H .card-wrapper .title-wrapper {
  width: 50%;
  padding: 40px 24px 40px 96px;
  border-right: 1px solid #150764;
}
@media (max-width: 992px) {
  .cid-uN2ihjV92H .card-wrapper .title-wrapper {
    border-right: none;
    border-bottom: 1px solid #150764;
  }
}
@media (max-width: 1640px) {
  .cid-uN2ihjV92H .card-wrapper .title-wrapper {
    padding: 40px 24px;
  }
}
@media (max-width: 992px) {
  .cid-uN2ihjV92H .card-wrapper .title-wrapper {
    padding: 40px 20px;
    width: 100%;
  }
}
.cid-uN2ihjV92H .card-wrapper .title-wrapper .title-wrap {
  margin-bottom: 140px;
}
@media (max-width: 992px) {
  .cid-uN2ihjV92H .card-wrapper .title-wrapper .title-wrap {
    margin-bottom: 40px;
  }
}
.cid-uN2ihjV92H .card-wrapper .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uN2ihjV92H .card-wrapper .title-wrapper .logo-wrapper img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  display: inline-flex;
}
.cid-uN2ihjV92H .card-wrapper .content-wrap {
  width: 50%;
  padding: 40px 96px 40px 24px;
}
@media (max-width: 1640px) {
  .cid-uN2ihjV92H .card-wrapper .content-wrap {
    padding: 40px 24px;
  }
}
@media (max-width: 992px) {
  .cid-uN2ihjV92H .card-wrapper .content-wrap {
    padding: 40px 20px;
    width: 100%;
  }
}
.cid-uN2ihjV92H .card-wrapper .content-wrap .lists-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 140px;
}
@media (max-width: 992px) {
  .cid-uN2ihjV92H .card-wrapper .content-wrap .lists-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .cid-uN2ihjV92H .card-wrapper .content-wrap .lists-wrapper {
    grid-template-columns: 1fr;
  }
}
.cid-uN2ihjV92H .card-wrapper .content-wrap .lists-wrapper .list-wrapper .mbr-desc {
  margin-bottom: 14px;
}
.cid-uN2ihjV92H .card-wrapper .content-wrap .lists-wrapper .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uN2ihjV92H .card-wrapper .content-wrap .lists-wrapper .list-wrapper .list .item-wrap {
  margin-bottom: 6px;
  transition: all 0.3s ease-in-out;
}
.cid-uN2ihjV92H .card-wrapper .content-wrap .lists-wrapper .list-wrapper .list .item-wrap:hover,
.cid-uN2ihjV92H .card-wrapper .content-wrap .lists-wrapper .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-uN2ihjV92H .card-wrapper .content-wrap .lists-wrapper .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uN2ihjV92H .card-wrapper .content-wrap .mbr-copy {
  margin-bottom: 0;
}
.cid-uN2ihjV92H .mbr-section-title {
  color: #150764;
}
.cid-uN2ihjV92H .mbr-desc {
  color: #000000;
}
.cid-uN2ihjV92H .list {
  color: #150764;
}
.cid-uN2ihjV92H .mbr-section-title,
.cid-uN2ihjV92H .mbr-section-btn,
.cid-uN2ihjV92H .logo-wrapper {
  color: #000000;
}
.cid-uN2ihjV92H .mbr-copy {
  color: #000000;
}
