body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Oswald', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.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: #ff2d55 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #000000 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #ff2d55 !important;
  border-color: #ff2d55 !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: #d50029 !important;
  border-color: #d50029 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #d50029 !important;
  border-color: #d50029 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !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: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !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: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !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: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger: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-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.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-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !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: #232323 !important;
  border-color: #232323 !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: #ff2d55;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #d50029 !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: #ff2d55 !important;
  border-color: #ff2d55 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !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: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !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: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !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: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #000000;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #000000 !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: #000000 !important;
  border-color: #000000 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #ff2d55 !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #000000 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #c60026 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #000000 !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: #ff2d55;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #000000;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ff2d55;
  border-color: #ff2d55;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #ff2d55;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fff9fa;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.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: #b3b3b3;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #ff2d55 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #ff2d55;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ff2d55;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #ff2d55;
}
.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: #ff2d55;
  border-bottom-color: #ff2d55;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #ff2d55 !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: #ff6666 !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='%23ff2d55' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-upGWVkji5p .navbar-dropdown {
  background-color: #d2bfe3 !important;
  padding: 0;
}
.cid-upGWVkji5p .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #d2bfe3 !important;
  background: #ffffff;
  background-color: #ffffff !important;
}
.cid-upGWVkji5p .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-upGWVkji5p .menu_box .navbar.opened,
  .cid-upGWVkji5p .menu_box .navbar-collapse {
    background-color: #d2bfe3 !important;
    transition: all 0s ease 0s;
  }
}
.cid-upGWVkji5p .navbar-dropdown {
  position: relative !important;
}
.cid-upGWVkji5p .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-upGWVkji5p .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-upGWVkji5p .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-upGWVkji5p .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-upGWVkji5p .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-upGWVkji5p .offcanvas {
    padding: 12rem 64px 0;
    width: 50%;
    background-color: #8a9198;
  }
  .cid-upGWVkji5p .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-upGWVkji5p .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-upGWVkji5p .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-upGWVkji5p .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-upGWVkji5p .offcanvas-body .mbr-text,
  .cid-upGWVkji5p .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-upGWVkji5p .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-upGWVkji5p .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-upGWVkji5p .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #ed9b82;
  }
  .cid-upGWVkji5p .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-upGWVkji5p .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-upGWVkji5p .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-upGWVkji5p .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-upGWVkji5p ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-upGWVkji5p .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-upGWVkji5p .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-upGWVkji5p .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-upGWVkji5p li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-upGWVkji5p .lg_brand {
    margin: 0 1rem;
  }
}
.cid-upGWVkji5p .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-upGWVkji5p .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-upGWVkji5p .nav-item {
    margin: 0 !important;
  }
}
.cid-upGWVkji5p .nav-item .nav-link {
  transition: all 0.3s ease-out;
}
.cid-upGWVkji5p .nav-item .nav-link:hover {
  text-decoration: underline;
}
.cid-upGWVkji5p .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-upGWVkji5p .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-upGWVkji5p .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-upGWVkji5p .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-upGWVkji5p .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-upGWVkji5p .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-upGWVkji5p .offcanvas_box {
    display: none;
  }
}
.cid-upGWVkji5p .dropdown-item {
  border: none;
  font-weight: 700 !important;
}
.cid-upGWVkji5p .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-upGWVkji5p .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-upGWVkji5p .container {
  display: flex;
  margin: auto;
}
.cid-upGWVkji5p .container,
.cid-upGWVkji5p .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-upGWVkji5p .container,
  .cid-upGWVkji5p .container-fluid {
    padding: 0 20px;
  }
}
.cid-upGWVkji5p .iconfont-wrapper {
  color: #ffffff;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-upGWVkji5p .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-upGWVkji5p .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-upGWVkji5p .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-upGWVkji5p .navbar-nav {
    margin: 0;
  }
}
.cid-upGWVkji5p .dropdown-menu,
.cid-upGWVkji5p .navbar.opened {
  background-color: false !important;
}
.cid-upGWVkji5p .nav-item:focus,
.cid-upGWVkji5p .nav-link:focus {
  outline: none;
}
.cid-upGWVkji5p .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-upGWVkji5p .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-upGWVkji5p .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-upGWVkji5p .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-upGWVkji5p .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-upGWVkji5p .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-upGWVkji5p .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-upGWVkji5p .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-upGWVkji5p .navbar.opened {
  transition: all 0.3s;
}
.cid-upGWVkji5p .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-upGWVkji5p .navbar .navbar-logo img {
  max-width: 53px;
  max-height: 53px;
  object-fit: contain;
  border-radius: 10px;
}
.cid-upGWVkji5p .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-upGWVkji5p .navbar.collapsed {
  justify-content: center;
}
.cid-upGWVkji5p .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-upGWVkji5p .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-upGWVkji5p .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-upGWVkji5p .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-upGWVkji5p .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-upGWVkji5p .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-upGWVkji5p .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-upGWVkji5p .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-upGWVkji5p .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-upGWVkji5p .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-upGWVkji5p .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-upGWVkji5p .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-upGWVkji5p .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-upGWVkji5p .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-upGWVkji5p .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-upGWVkji5p .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-upGWVkji5p .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-upGWVkji5p .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-upGWVkji5p .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-upGWVkji5p .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-upGWVkji5p .navbar .icons-menu {
    padding: 0;
  }
}
.cid-upGWVkji5p .navbar.navbar-short {
  min-height: 60px;
}
.cid-upGWVkji5p .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-upGWVkji5p .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-upGWVkji5p .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-upGWVkji5p .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-upGWVkji5p .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-upGWVkji5p .dropdown-item.active,
.cid-upGWVkji5p .dropdown-item:active {
  background-color: transparent;
}
.cid-upGWVkji5p .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-upGWVkji5p .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-upGWVkji5p .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-upGWVkji5p .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-upGWVkji5p ul.navbar-nav {
  flex-wrap: wrap;
  background-color: #ffffff;
  border-radius: 10px;
  padding: 8px 0;
}
@media (max-width: 992px) {
  .cid-upGWVkji5p ul.navbar-nav {
    padding: 8px;
  }
}
.cid-upGWVkji5p .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-upGWVkji5p button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #d2bfe3;
  background: #ffffff;
}
.cid-upGWVkji5p button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ed9b82;
}
.cid-upGWVkji5p button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-upGWVkji5p button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-upGWVkji5p button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-upGWVkji5p button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-upGWVkji5p nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-upGWVkji5p nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-upGWVkji5p nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-upGWVkji5p nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-upGWVkji5p a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-upGWVkji5p .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upGWVkji5p .navbar {
    height: 70px;
  }
  .cid-upGWVkji5p .navbar.opened {
    height: auto;
  }
  .cid-upGWVkji5p .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-upGWVkji5p .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-upGWVkji5p .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-upGWVkji5p .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-upGWVkji5p .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
}
@media (max-width: 992px) {
  .cid-upGWVkji5p .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-upGWVkji5p .navbar-caption:hover {
  color: #ff6666;
}
@media (min-width: 992px) {
  .cid-upGWVkji5p .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-upGWVkji5p .text_widget {
  margin-bottom: 32px;
  color: #ffffff;
}
.cid-upGWVkji5p .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-upGWVkji5p .text_widget a:hover {
  color: #ff6666 !important;
}
.cid-upGWVkji5p .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-upGWVkji5p .navbar-caption {
  color: #ffffff;
}
.cid-upGWVkji5p .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-upGWVkji5p .mbr-section-subtitle,
.cid-upGWVkji5p .text_widget,
.cid-upGWVkji5p .mbr-section-btn {
  text-align: left;
}
.cid-upGWVkji5p a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-upGXASkXU0 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #d57df7;
  background: linear-gradient(to right top, #d57df7, #2a1669);
}
.cid-upGXASkXU0 .img-wrap {
  width: 100%;
  margin-bottom: 3rem;
}
.cid-upGXASkXU0 .img-wrap img {
  width: 80%;
  margin: auto;
}
.cid-upGXASkXU0 .mbr-text,
.cid-upGXASkXU0 .mbr-section-btn {
  color: #ffffff;
}
.cid-upGXASkXU0 .mbr-section-title {
  color: #ffffff;
}
.cid-upGXASkXU0 .buttons-wrap .link {
  display: flex;
}
.cid-upGXASkXU0 .mbr-arrow {
  bottom: 0;
}
.cid-upGXASkXU0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-upGXASkXU0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upH2iMkSbI {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d2bfe3;
}
.cid-upH2iMkSbI .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-upH2iMkSbI .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-upH2iMkSbI .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #2a1669;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-upAihnnL54 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
  background-color: #2a1669;
}
.cid-upAihnnL54 .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-upAihnnL54 .mbr-fallback-image.disabled {
  display: none;
}
.cid-upAihnnL54 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upAihnnL54 .content-wrap {
  align-items: center;
  justify-content: space-between;
}
.cid-upAihnnL54 .content-wrap .card {
  justify-content: space-between;
}
.cid-upAihnnL54 .content-wrapper {
  padding: 0 24px;
}
@media (max-width: 992px) {
  .cid-upAihnnL54 .content-wrapper {
    padding: 0;
  }
}
.cid-upAihnnL54 .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-upAihnnL54 .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  margin-bottom: 0;
  padding: 10px;
  -webkit-text-stroke-color: #150764;
  box-shadow: 4px 4px 0 0 #150764;
  border: 2px solid #150764;
  background-color: #4188ff;
  -webkit-text-stroke-width: .15rem;
}
@media (max-width: 992px) {
  .cid-upAihnnL54 .content-wrapper .desc-wrapper .mbr-desc {
    -webkit-text-stroke-width: .12rem;
  }
}
.cid-upAihnnL54 .mbr-section-title {
  color: #150764;
  text-align: center;
}
.cid-upAihnnL54 .mbr-desc,
.cid-upAihnnL54 .desc-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-upAihnnL54 .mbr-section-title,
.cid-upAihnnL54 .mbr-section-btn {
  color: #fafafa;
}
.cid-upFROOZhKY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d2bfe3;
}
.cid-upFROOZhKY .mbr-fallback-image.disabled {
  display: none;
}
.cid-upFROOZhKY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upFROOZhKY .items-wrapper {
  justify-content: flex-end;
}
.cid-upFROOZhKY .items-wrapper .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-upFROOZhKY .image-wrapper {
    margin-bottom: 32px;
  }
}
.cid-upFROOZhKY .image-wrapper img {
  height: 720px;
  width: 720px;
  object-fit: cover;
  border-radius: 100% !important;
}
@media (max-width: 1700px) {
  .cid-upFROOZhKY .image-wrapper img {
    width: 600px;
    height: 600px;
  }
}
@media (max-width: 1440px) {
  .cid-upFROOZhKY .image-wrapper img {
    width: 500px;
    height: 500px;
  }
}
@media (max-width: 1200px) {
  .cid-upFROOZhKY .image-wrapper img {
    width: 400px;
    height: 400px;
  }
}
@media (max-width: 768px) {
  .cid-upFROOZhKY .image-wrapper img {
    width: 260px;
    height: 260px;
  }
}
.cid-upFROOZhKY .content-wrapper {
  padding-left: 120px;
}
@media (max-width: 1200px) {
  .cid-upFROOZhKY .content-wrapper {
    padding-left: 60px;
  }
}
@media (max-width: 992px) {
  .cid-upFROOZhKY .content-wrapper {
    padding-left: 0;
  }
}
.cid-upFROOZhKY .content-wrapper .mbr-desc {
  margin-bottom: 8px;
}
.cid-upFROOZhKY .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-upFROOZhKY .content-wrapper .mbr-text {
  margin-bottom: 24px;
}
.cid-upFROOZhKY .mbr-desc {
  color: #272b2e;
}
.cid-upFROOZhKY .mbr-section-title {
  color: #272b2e;
}
.cid-upFROOZhKY .mbr-text,
.cid-upFROOZhKY .text-wrapper {
  color: #272b2e;
}
.cid-upAiotcool {
  padding-top: 0rem;
  padding-bottom: 0rem;
  position: relative;
  overflow: hidden;
  background-color: #2a1669;
}
.cid-upAiotcool .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-upAiotcool .mbr-fallback-image.disabled {
  display: none;
}
.cid-upAiotcool .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upAiotcool .content-wrap {
  margin: 0;
}
.cid-upAiotcool .content-wrap .card {
  padding: 0;
}
.cid-upAiotcool .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  overflow: hidden;
  background-color: #d57df7;
  padding: 40px 32px;
  border-right: 1px solid #150764;
  border-right: none;
  border-left: 1px solid #150764;
}
@media (max-width: 1640px) {
  .cid-upAiotcool .image-wrapper {
    padding: 40px 24px;
  }
}
@media (max-width: 992px) {
  .cid-upAiotcool .image-wrapper {
    padding: 40px 0;
  }
}
@media (max-width: 992px) {
  .cid-upAiotcool .image-wrapper {
    border-right: none;
    border-bottom: 1px solid #150764;
  }
}
@media (max-width: 992px) {
  .cid-upAiotcool .image-wrapper {
    border-left: none;
    border-bottom: 1px solid #150764;
  }
}
.cid-upAiotcool .image-wrapper img {
  height: 620px;
  width: 620px;
  object-fit: cover;
  border-radius: 100% !important;
}
@media (max-width: 1640px) {
  .cid-upAiotcool .image-wrapper img {
    height: 550px;
    width: 550px;
  }
}
@media (max-width: 1200px) {
  .cid-upAiotcool .image-wrapper img {
    height: 350px;
    width: 350px;
  }
}
@media (max-width: 768px) {
  .cid-upAiotcool .image-wrapper img {
    height: 250px;
    width: 250px;
  }
}
.cid-upAiotcool .content-wrapper {
  padding: 40px 72px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
@media (max-width: 1640px) {
  .cid-upAiotcool .content-wrapper {
    padding: 40px 24px;
  }
}
@media (max-width: 992px) {
  .cid-upAiotcool .content-wrapper {
    padding: 40px 0;
  }
}
.cid-upAiotcool .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-upAiotcool .content-wrapper .text-wrapper .text-wrap .mbr-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-upAiotcool .content-wrapper .text-wrapper .text-wrap .mbr-text {
    width: 100%;
    margin-bottom: 16px;
  }
}
.cid-upAiotcool .mbr-section-title {
  color: #150764;
}
.cid-upAiotcool .mbr-text {
  color: #150764;
}
.cid-upAiotcool .mbr-section-title,
.cid-upAiotcool .mbr-section-btn {
  color: #fafafa;
}
.cid-upAiotcool .mbr-text,
.cid-upAiotcool .text-wrap {
  color: #fafafa;
}
.cid-upH36VsdoJ {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #d2bfe3;
}
.cid-upH36VsdoJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-upH36VsdoJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upJ3FqRRiN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #2a1669;
}
.cid-upJ3FqRRiN .mbr-fallback-image.disabled {
  display: none;
}
.cid-upJ3FqRRiN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upJ3FqRRiN .row {
  justify-content: center;
}
.cid-upJ3FqRRiN .content-wrapper {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-upJ3FqRRiN .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-upJ3FqRRiN .content-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-upJ3FqRRiN .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-upJ3FqRRiN .item {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-upJ3FqRRiN .item {
    margin-bottom: 35px;
  }
}
.cid-upJ3FqRRiN .item .item-wrapper .card-box .icon-wrapper {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upJ3FqRRiN .item .item-wrapper .card-box .icon-wrapper {
    margin-bottom: 15px;
  }
}
.cid-upJ3FqRRiN .item .item-wrapper .card-box .icon-wrapper .mbr-iconfont {
  width: 95px;
  height: 95px;
  border-radius: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #000000;
  color: #ffffff;
  font-size: 60px;
}
.cid-upJ3FqRRiN .item .item-wrapper .card-box .item-title {
  margin-bottom: 10px;
}
.cid-upJ3FqRRiN .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-upJ3FqRRiN .border-wrapper {
  width: 100%;
  height: 1px;
  background-color: #fafafa;
}
.cid-upJ3FqRRiN .mbr-section-title {
  color: #fafafa;
}
.cid-upJ3FqRRiN .mbr-text {
  color: #000000;
}
.cid-upJ3FqRRiN .item-title {
  color: #000000;
}
.cid-upJ3FqRRiN .item-text {
  color: #000000;
}
.cid-upH3gMhzoO {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d57df7;
}
.cid-upH3gMhzoO .mbr-fallback-image.disabled {
  display: none;
}
.cid-upH3gMhzoO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upH3gMhzoO .content-wrapper {
  position: relative;
  padding: 80px 60px;
  display: flex;
  justify-content: center;
  border: 2px solid #87ceeb;
}
@media (max-width: 992px) {
  .cid-upH3gMhzoO .content-wrapper {
    display: block;
    padding: 32px 16px;
  }
}
.cid-upH3gMhzoO .content-wrapper .image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-upH3gMhzoO .content-wrapper .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .5;
}
.cid-upH3gMhzoO .content-wrapper .card-wrapper {
  position: relative;
  z-index: 1;
  width: 75%;
  padding: 48px;
  background-color: #2a1669;
  border: 3px solid #000000;
  box-shadow: 4px 4px 0 0 #000000;
  -webkit-flex: inherit;
}
@media (max-width: 992px) {
  .cid-upH3gMhzoO .content-wrapper .card-wrapper {
    width: 100%;
    padding: 32px 16px;
  }
}
.cid-upH3gMhzoO .content-wrapper .card-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-upH3gMhzoO .content-wrapper .card-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-upH3gMhzoO .content-wrapper .card-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-upH3gMhzoO .mbr-section-title {
  color: #ff9063;
  text-align: center;
}
.cid-upH3gMhzoO .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-upH3gMhzoO .mbr-section-title,
.cid-upH3gMhzoO .mbr-section-btn {
  color: #fafafa;
}
.cid-upFSUG5iCj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d2bfe3;
}
.cid-upFSUG5iCj .mbr-fallback-image.disabled {
  display: none;
}
.cid-upFSUG5iCj .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-upFSUG5iCj .container {
    padding: 0 16px;
  }
}
.cid-upFSUG5iCj .row {
  position: relative;
  z-index: 1;
}
.cid-upFSUG5iCj .card {
  justify-content: flex-end;
}
.cid-upFSUG5iCj .card-wrapper {
  margin-right: 64px;
  margin-right: 0;
  margin-left: 64px;
}
@media (max-width: 1440px) {
  .cid-upFSUG5iCj .card-wrapper {
    margin-right: 0;
  }
}
@media (max-width: 1440px) {
  .cid-upFSUG5iCj .card-wrapper {
    margin-left: 0;
  }
}
@media (max-width: 992px) {
  .cid-upFSUG5iCj .card-wrapper {
    margin-bottom: 32px;
  }
}
.cid-upFSUG5iCj .card-wrapper .image-wrapper {
  position: relative;
  margin-bottom: -8rem;
}
.cid-upFSUG5iCj .card-wrapper .image-wrapper img {
  width: 520px;
  height: 520px;
  object-fit: cover;
  border-radius: 100% !important;
}
@media (max-width: 1200px) {
  .cid-upFSUG5iCj .card-wrapper .image-wrapper img {
    width: 420px;
    height: 420px;
  }
}
@media (max-width: 768px) {
  .cid-upFSUG5iCj .card-wrapper .image-wrapper img {
    width: 260px;
    height: 260px;
  }
}
.cid-upFSUG5iCj .card-wrapper .image-wrapper .card-desc {
  position: absolute;
  top: 55%;
  left: -1rem;
  display: inline-flex;
  margin-bottom: 0;
  padding: 6px 16px;
  border-radius: 4rem !important;
  box-shadow: 4px 6px 0 0 #000000;
  background-color: #c6f15c;
  transform: rotate(-4deg);
}
@media (max-width: 992px) {
  .cid-upFSUG5iCj .card-wrapper .image-wrapper .card-desc {
    left: .5rem;
  }
}
.cid-upFSUG5iCj .card-wrapper .card-wrap {
  background-color: #d57df7;
  box-shadow: 4px 6px 0 0 #2a1669;
  border-radius: 16px;
  padding: 175px 48px 36px;
  margin: 0 50px;
}
@media (max-width: 992px) {
  .cid-upFSUG5iCj .card-wrapper .card-wrap {
    margin: 0;
    padding: 150px 24px 24px;
  }
}
.cid-upFSUG5iCj .card-wrapper .card-wrap .card-text {
  margin-bottom: 16px;
}
.cid-upFSUG5iCj .card-wrapper .card-wrap .person-wrap .card-name {
  margin-bottom: 0;
}
.cid-upFSUG5iCj .card-wrapper .card-wrap .person-wrap .card-role {
  margin-bottom: 0;
}
.cid-upFSUG5iCj .title-wrapper {
  margin-bottom: 96px;
}
@media (max-width: 992px) {
  .cid-upFSUG5iCj .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-upFSUG5iCj .title-wrapper .mbr-section-subtitle {
  margin-bottom: 32px;
}
.cid-upFSUG5iCj .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-upFSUG5iCj .text-wrapper {
  margin-left: 104px;
  margin-left: 0;
  margin-right: 104px;
}
@media (max-width: 1440px) {
  .cid-upFSUG5iCj .text-wrapper {
    margin-left: 48px;
  }
}
@media (max-width: 992px) {
  .cid-upFSUG5iCj .text-wrapper {
    margin-left: 0;
  }
}
@media (max-width: 1440px) {
  .cid-upFSUG5iCj .text-wrapper {
    margin-right: 48px;
  }
}
@media (max-width: 992px) {
  .cid-upFSUG5iCj .text-wrapper {
    margin-right: 0;
  }
}
.cid-upFSUG5iCj .text-wrapper .mbr-text {
  margin-bottom: 32px;
}
.cid-upFSUG5iCj .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-upFSUG5iCj .mbr-section-subtitle {
  color: #000000;
  text-align: right;
}
.cid-upFSUG5iCj .mbr-text {
  color: #000000;
}
.cid-upFSUG5iCj .card-desc {
  color: #000000;
}
.cid-upFSUG5iCj .card-text {
  color: #ffffff;
}
.cid-upFSUG5iCj .card-name {
  color: #ffffff;
}
.cid-upFSUG5iCj .card-role {
  color: #ffffff;
}
.cid-upFSUG5iCj .mbr-text,
.cid-upFSUG5iCj .mbr-section-btn {
  color: #000000;
}
.cid-upAN18eCRf {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #2a1669;
}
.cid-upAN18eCRf .mbr-fallback-image.disabled {
  display: none;
}
.cid-upAN18eCRf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upAN18eCRf .content-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  padding: 80px 60px;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .cid-upAN18eCRf .content-wrapper {
    gap: 16px;
  }
}
@media (max-width: 1199px) {
  .cid-upAN18eCRf .content-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 992px) {
  .cid-upAN18eCRf .content-wrapper {
    display: block;
    padding: 32px 16px;
  }
}
.cid-upAN18eCRf .content-wrapper .image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-upAN18eCRf .content-wrapper .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .5;
}
@media (max-width: 992px) {
  .cid-upAN18eCRf .content-wrapper .item {
    margin-bottom: 16px;
  }
  .cid-upAN18eCRf .content-wrapper .item:last-child {
    margin-bottom: 0;
  }
}
.cid-upAN18eCRf .content-wrapper .item .item-wrapper {
  position: relative;
  height: 100%;
  border: 3px solid #050f0f;
  box-shadow: 4px 4px 0 0 #050f0f;
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background-color: #d57df7;
}
.cid-upAN18eCRf .content-wrapper .item .item-wrapper:hover,
.cid-upAN18eCRf .content-wrapper .item .item-wrapper:focus {
  transform: translate(0.2rem, 0.2rem);
  box-shadow: none;
}
.cid-upAN18eCRf .content-wrapper .item .item-wrapper .item-content .item-img {
  border-bottom: 3px solid #050f0f;
}
.cid-upAN18eCRf .content-wrapper .item .item-wrapper .item-content .item-img img {
  height: 390px;
  width: 100%;
  object-fit: cover;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-upAN18eCRf .content-wrapper .item .item-wrapper .item-content .item-img img {
    height: 350px;
  }
}
.cid-upAN18eCRf .content-wrapper .item .item-wrapper .item-content .item-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: .8;
}
.cid-upAN18eCRf .content-wrapper .item .item-wrapper .item-content .text-wrapper {
  padding: 32px;
}
@media (max-width: 1440px) {
  .cid-upAN18eCRf .content-wrapper .item .item-wrapper .item-content .text-wrapper {
    padding: 32px 24px;
  }
}
@media (max-width: 992px) {
  .cid-upAN18eCRf .content-wrapper .item .item-wrapper .item-content .text-wrapper {
    padding: 32px 16px;
  }
}
.cid-upAN18eCRf .content-wrapper .item .item-wrapper .item-content .text-wrapper .item-title {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-upAN18eCRf .content-wrapper .item .item-wrapper .item-content .text-wrapper .item-title {
    margin-bottom: 24px;
  }
}
.cid-upAN18eCRf .content-wrapper .item .item-wrapper .item-content .text-wrapper .item-text {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-upAN18eCRf .content-wrapper .item .item-wrapper .item-content .text-wrapper .item-text {
    margin-bottom: 0;
  }
}
.cid-upAN18eCRf .content-wrapper .item .item-wrapper .tags-wrapper {
  padding: 0 32px 24px 32px;
}
@media (max-width: 1440px) {
  .cid-upAN18eCRf .content-wrapper .item .item-wrapper .tags-wrapper {
    padding: 0 24px 24px 24px;
  }
}
@media (max-width: 992px) {
  .cid-upAN18eCRf .content-wrapper .item .item-wrapper .tags-wrapper {
    padding: 0 16px 24px 16px;
  }
}
.cid-upAN18eCRf .content-wrapper .item .item-wrapper .tags-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-upAN18eCRf .content-wrapper .item .item-wrapper .tags-wrapper .list .item-wrap {
  display: inline-flex;
  padding: 11px 20px;
  margin: 0 8px 8px 0;
  background-color: #d3f2ff;
}
.cid-upAN18eCRf .content-wrapper .item .item-wrapper .tags-wrapper .list .item-wrap:nth-child(2n) {
  background-color: #bafca2;
}
.cid-upAN18eCRf .content-wrapper .item .item-wrapper .tags-wrapper .list .item-wrap:nth-child(3n) {
  background-color: #fdfd96;
}
.cid-upAN18eCRf .item-title {
  color: #050f0f;
}
.cid-upAN18eCRf .item-text {
  color: #050f0f;
}
.cid-upAN18eCRf .list {
  color: #050f0f;
}
.cid-upG140q9db {
  padding-top: 60px;
  padding-bottom: 60px;
  background: #d2bfe3;
}
.cid-upG140q9db .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-upG140q9db .video-block {
  margin: auto;
}
@media (max-width: 767px) {
  .cid-upG140q9db .video-block {
    width: 100% !important;
  }
}
.cid-upG140q9db .mbr-section-title {
  color: #000000;
}
.cid-upG1GtSgFR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #2a1669;
}
.cid-upG1GtSgFR blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #d57df7;
}
.cid-upG1GtSgFR .mbr-section-title {
  color: #000000;
}
.cid-upG1GtSgFR .mbr-text {
  color: #000000;
}
.cid-upALH4eW69 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
  background-color: #d2bfe3;
}
.cid-upALH4eW69 .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-upALH4eW69 .mbr-fallback-image.disabled {
  display: none;
}
.cid-upALH4eW69 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upALH4eW69 .content-wrap {
  justify-content: center;
}
.cid-upALH4eW69 .card-wrapper {
  background-color: #2a1669;
  display: flex;
  border: 1px solid #150764;
}
@media (max-width: 1200px) {
  .cid-upALH4eW69 .card-wrapper {
    display: block;
  }
}
.cid-upALH4eW69 .card-wrapper .title-wrapper {
  width: 35%;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid #150764;
}
@media (max-width: 1640px) {
  .cid-upALH4eW69 .card-wrapper .title-wrapper {
    padding: 40px 24px;
  }
}
@media (max-width: 1200px) {
  .cid-upALH4eW69 .card-wrapper .title-wrapper {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #150764;
  }
}
@media (max-width: 992px) {
  .cid-upALH4eW69 .card-wrapper .title-wrapper {
    padding: 40px 20px;
  }
}
.cid-upALH4eW69 .card-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-upALH4eW69 .card-wrapper .title-wrapper .icon-wrapper .mbr-iconfont {
  font-size: 100px;
  color: #000000;
  display: inline-flex;
}
@media (max-width: 992px) {
  .cid-upALH4eW69 .card-wrapper .title-wrapper .icon-wrapper .mbr-iconfont {
    font-size: 80px;
  }
}
.cid-upALH4eW69 .card-wrapper .list-wrapper {
  width: 65%;
}
@media (max-width: 1200px) {
  .cid-upALH4eW69 .card-wrapper .list-wrapper {
    width: 100%;
  }
}
.cid-upALH4eW69 .card-wrapper .list-wrapper .panel-group .card {
  position: relative;
  padding: 0;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  background-color: transparent;
  border-radius: 0 !important;
}
.cid-upALH4eW69 .card-wrapper .list-wrapper .panel-group .card:first-child .card-header {
  border-top: none !important;
}
.cid-upALH4eW69 .card-wrapper .list-wrapper .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 32px;
  border-top: 1px solid #bbbbbb;
}
@media (max-width: 1940px) {
  .cid-upALH4eW69 .card-wrapper .list-wrapper .panel-group .card .card-header {
    padding: 32px 24px;
  }
}
@media (max-width: 992px) {
  .cid-upALH4eW69 .card-wrapper .list-wrapper .panel-group .card .card-header {
    padding: 32px 20px;
  }
}
.cid-upALH4eW69 .card-wrapper .list-wrapper .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-upALH4eW69 .card-wrapper .list-wrapper .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-upALH4eW69 .card-wrapper .list-wrapper .panel-group .card .card-header .panel-title .icon-wrapper {
  width: 28px;
  height: 28px;
  min-width: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 16px;
  transition: all 0.3s ease-in-out;
}
.cid-upALH4eW69 .card-wrapper .list-wrapper .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  transition: all 0.3s ease-in-out;
  font-size: 28px;
  color: #000000;
}
.cid-upALH4eW69 .card-wrapper .list-wrapper .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper {
  transform: rotate(180deg);
}
.cid-upALH4eW69 .card-wrapper .list-wrapper .panel-group .card .panel-collapse .panel-body {
  padding: 0 32px 64px 32px;
}
@media (max-width: 1940px) {
  .cid-upALH4eW69 .card-wrapper .list-wrapper .panel-group .card .panel-collapse .panel-body {
    padding: 0 24px 64px 24px;
  }
}
@media (max-width: 992px) {
  .cid-upALH4eW69 .card-wrapper .list-wrapper .panel-group .card .panel-collapse .panel-body {
    padding: 0 20px 32px 20px;
  }
}
.cid-upALH4eW69 .card-wrapper .list-wrapper .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-upALH4eW69 .mbr-section-title {
  color: #fafafa;
}
.cid-upALH4eW69 .panel-title-edit {
  color: #150764;
}
.cid-upALH4eW69 .panel-text {
  color: #150764;
}
.cid-upALH4eW69 .panel-title-edit,
.cid-upALH4eW69 .icon-wrapper {
  color: #fafafa;
}
.cid-upIX5eKLz0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #2a1669;
}
.cid-upIX5eKLz0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-upIX5eKLz0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upIX5eKLz0 .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-upIX5eKLz0 .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-upIX5eKLz0 .container {
    padding: 0 30px;
  }
}
.cid-upIX5eKLz0 .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-upIX5eKLz0 .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-upIX5eKLz0 .card-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 70px 70px 70px 230px;
  background-color: #d2bfe3;
  border-radius: 16em 3em;
}
@media (max-width: 992px) {
  .cid-upIX5eKLz0 .card-wrapper {
    border-radius: 3em 0 3em 0;
    padding: 30px 20px;
    display: block;
  }
}
.cid-upIX5eKLz0 .card-wrapper .mbr-number {
  margin: 0 0 0 50px;
  width: 100%;
  white-space: nowrap;
}
@media (max-width: 992px) {
  .cid-upIX5eKLz0 .card-wrapper .mbr-number {
    margin: 0 0 16px 0;
  }
}
.cid-upIX5eKLz0 .card-wrapper .content-wrap .mbr-card-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upIX5eKLz0 .card-wrapper .content-wrap .mbr-card-title {
    margin-bottom: 20px;
  }
}
.cid-upIX5eKLz0 .card-wrapper .content-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-upIX5eKLz0 .mbr-section-title {
  color: #ffffff;
}
.cid-upIX5eKLz0 .mbr-card-title {
  color: #2b2b2b;
}
.cid-upIX5eKLz0 .mbr-text {
  color: #000000;
}
.cid-upIX5eKLz0 .mbr-number {
  color: #FE5115;
}
.cid-upAjEeMrmw {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d57df7;
}
.cid-upAjEeMrmw .mbr-fallback-image.disabled {
  display: none;
}
.cid-upAjEeMrmw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upAjEeMrmw .content-wrapper {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-upAjEeMrmw .content-wrapper {
    padding: 0;
  }
}
.cid-upAjEeMrmw .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-upAjEeMrmw .content-wrapper .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-upAjEeMrmw .content-wrapper .google-map {
  border: 3px solid #050f0f;
  box-shadow: 4px 4px 0 0 #050f0f;
}
.cid-upAjEeMrmw .content-wrapper .google-map iframe {
  height: 600px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-upAjEeMrmw .content-wrapper .google-map iframe {
    height: 350px;
  }
}
.cid-upAjEeMrmw .mbr-section-title {
  color: #050f0f;
}
.cid-upAjEeMrmw .mbr-section-title,
.cid-upAjEeMrmw .mbr-section-btn {
  text-align: center;
}
.cid-upAjxif2Ho {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #2a1669;
}
.cid-upAjxif2Ho .mbr-fallback-image.disabled {
  display: none;
}
.cid-upAjxif2Ho .item-wrapper {
  display: flex;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-upAjxif2Ho .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-upAjxif2Ho .item-wrapper:hover .iconfont-wrapper:after {
  width: 70px;
  height: 70px;
}
.cid-upAjxif2Ho a {
  font-weight: 600;
}
.cid-upAjxif2Ho a:hover {
  background: none !important;
}
@media (min-width: 1400px) {
  .cid-upAjxif2Ho .col-lg-3,
  .cid-upAjxif2Ho .col-xl-3 {
    max-width: 20%;
  }
}
@media (max-width: 1200px) {
  .cid-upAjxif2Ho .col-lg-12 {
    min-width: 100% !important;
  }
}
.cid-upAjxif2Ho .card-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-upAjxif2Ho h5 {
  margin: 0;
}
.cid-upAjxif2Ho .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upAjxif2Ho .iconfont-wrapper {
  position: relative;
}
.cid-upAjxif2Ho .mbr-iconfont {
  display: flex;
  padding-right: 1rem;
  font-size: 2rem;
  color: #000000;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 2;
  position: relative;
}
.cid-upAjxif2Ho .socicon {
  font-size: 1rem;
  width: 30px;
  height: 30px;
}
.cid-upAjxif2Ho .sociconfont-wrapper {
  display: flex;
}
.cid-upAjxif2Ho .card-title,
.cid-upAjxif2Ho .iconfont-wrapper {
  color: #fafafa;
}
.cid-upAjxif2Ho .card-text {
  color: #ffffff;
}
.cid-upAjxif2Ho .mbr-section-title {
  color: #000000;
}
.cid-upAjxif2Ho .main-title,
.cid-upAjxif2Ho .iconfont-wrapper {
  text-align: left;
}
.cid-upAR4uwR3u {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #2a1669;
  overflow: hidden;
}
.cid-upH62VXqNp {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d57df7;
}
.cid-upH62VXqNp .mbr-fallback-image.disabled {
  display: none;
}
.cid-upH62VXqNp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upH62VXqNp .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-upH62VXqNp .items-wrapper .card {
  padding: 0 32px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-upH62VXqNp .title-wrapper {
    margin-bottom: 48px;
  }
}
.cid-upH62VXqNp .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-upH62VXqNp .title-wrapper .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-upH62VXqNp .title-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-upH62VXqNp .image-wrapper img {
  height: 480px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-upH62VXqNp .image-wrapper img {
    height: 350px;
  }
}
.cid-upH62VXqNp .mbr-section-title {
  color: #ffffff;
}
.cid-upH62VXqNp .mbr-text,
.cid-upH62VXqNp .text-wrapper {
  color: #000000;
}
.cid-upH62VXqNp .mbr-section-title,
.cid-upH62VXqNp .mbr-section-btn {
  color: #000000;
}
.cid-upD7xbhdev {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-upD7xbhdev .mbr-fallback-image.disabled {
  display: none;
}
.cid-upD7xbhdev .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upD7xbhdev .card-wrapper {
  background: #2a1669;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-upD7xbhdev .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-upD7xbhdev .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-upD7xbhdev .card-wrapper {
    padding: 4rem;
  }
}
.cid-upD7xbhdev .mbr-text,
.cid-upD7xbhdev .mbr-section-btn {
  color: #fafafa;
}
.cid-upD8RDvkZv {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d2bfe3;
}
.cid-upD8RDvkZv .mbr-fallback-image.disabled {
  display: none;
}
.cid-upD8RDvkZv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upD8RDvkZv .content-wrapper {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-upD8RDvkZv .content-wrapper {
    padding: 0;
  }
}
.cid-upD8RDvkZv .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-upD8RDvkZv .content-wrapper .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-upD8RDvkZv .content-wrapper .google-map {
  border: 3px solid #050f0f;
  box-shadow: 4px 4px 0 0 #050f0f;
}
.cid-upD8RDvkZv .content-wrapper .google-map iframe {
  height: 600px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-upD8RDvkZv .content-wrapper .google-map iframe {
    height: 350px;
  }
}
.cid-upD8RDvkZv .mbr-section-title {
  color: #050f0f;
}
.cid-upD8S9Lvsu {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #2a1669;
}
.cid-upD8S9Lvsu .mbr-fallback-image.disabled {
  display: none;
}
.cid-upD8S9Lvsu .item-wrapper {
  display: flex;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-upD8S9Lvsu .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-upD8S9Lvsu .item-wrapper:hover .iconfont-wrapper:after {
  width: 70px;
  height: 70px;
}
.cid-upD8S9Lvsu a {
  font-weight: 600;
}
.cid-upD8S9Lvsu a:hover {
  background: none !important;
}
@media (min-width: 1400px) {
  .cid-upD8S9Lvsu .col-lg-3,
  .cid-upD8S9Lvsu .col-xl-3 {
    max-width: 20%;
  }
}
@media (max-width: 1200px) {
  .cid-upD8S9Lvsu .col-lg-12 {
    min-width: 100% !important;
  }
}
.cid-upD8S9Lvsu .card-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-upD8S9Lvsu h5 {
  margin: 0;
}
.cid-upD8S9Lvsu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upD8S9Lvsu .iconfont-wrapper {
  position: relative;
}
.cid-upD8S9Lvsu .mbr-iconfont {
  display: flex;
  padding-right: 1rem;
  font-size: 2rem;
  color: #000000;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 2;
  position: relative;
}
.cid-upD8S9Lvsu .socicon {
  font-size: 1rem;
  width: 30px;
  height: 30px;
}
.cid-upD8S9Lvsu .sociconfont-wrapper {
  display: flex;
}
.cid-upD8S9Lvsu .card-title,
.cid-upD8S9Lvsu .iconfont-wrapper {
  color: #ffffff;
}
.cid-upD8S9Lvsu .card-text {
  color: #fafafa;
}
.cid-upD8S9Lvsu .mbr-section-title {
  color: #000000;
}
.cid-upD8S9Lvsu .main-title,
.cid-upD8S9Lvsu .iconfont-wrapper {
  text-align: left;
}
.cid-upAR4uwR3u {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-upGWVkji5p .navbar-dropdown {
  background-color: #d2bfe3 !important;
  padding: 0;
}
.cid-upGWVkji5p .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #d2bfe3 !important;
  background: #ffffff;
  background-color: #ffffff !important;
}
.cid-upGWVkji5p .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-upGWVkji5p .menu_box .navbar.opened,
  .cid-upGWVkji5p .menu_box .navbar-collapse {
    background-color: #d2bfe3 !important;
    transition: all 0s ease 0s;
  }
}
.cid-upGWVkji5p .navbar-dropdown {
  position: relative !important;
}
.cid-upGWVkji5p .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-upGWVkji5p .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-upGWVkji5p .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-upGWVkji5p .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-upGWVkji5p .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-upGWVkji5p .offcanvas {
    padding: 12rem 64px 0;
    width: 50%;
    background-color: #8a9198;
  }
  .cid-upGWVkji5p .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-upGWVkji5p .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-upGWVkji5p .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-upGWVkji5p .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-upGWVkji5p .offcanvas-body .mbr-text,
  .cid-upGWVkji5p .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-upGWVkji5p .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-upGWVkji5p .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-upGWVkji5p .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #ed9b82;
  }
  .cid-upGWVkji5p .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-upGWVkji5p .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-upGWVkji5p .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-upGWVkji5p .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-upGWVkji5p ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-upGWVkji5p .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-upGWVkji5p .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-upGWVkji5p .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-upGWVkji5p li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-upGWVkji5p .lg_brand {
    margin: 0 1rem;
  }
}
.cid-upGWVkji5p .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-upGWVkji5p .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-upGWVkji5p .nav-item {
    margin: 0 !important;
  }
}
.cid-upGWVkji5p .nav-item .nav-link {
  transition: all 0.3s ease-out;
}
.cid-upGWVkji5p .nav-item .nav-link:hover {
  text-decoration: underline;
}
.cid-upGWVkji5p .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-upGWVkji5p .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-upGWVkji5p .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-upGWVkji5p .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-upGWVkji5p .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-upGWVkji5p .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-upGWVkji5p .offcanvas_box {
    display: none;
  }
}
.cid-upGWVkji5p .dropdown-item {
  border: none;
  font-weight: 700 !important;
}
.cid-upGWVkji5p .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-upGWVkji5p .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-upGWVkji5p .container {
  display: flex;
  margin: auto;
}
.cid-upGWVkji5p .container,
.cid-upGWVkji5p .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-upGWVkji5p .container,
  .cid-upGWVkji5p .container-fluid {
    padding: 0 20px;
  }
}
.cid-upGWVkji5p .iconfont-wrapper {
  color: #ffffff;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-upGWVkji5p .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-upGWVkji5p .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-upGWVkji5p .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-upGWVkji5p .navbar-nav {
    margin: 0;
  }
}
.cid-upGWVkji5p .dropdown-menu,
.cid-upGWVkji5p .navbar.opened {
  background-color: false !important;
}
.cid-upGWVkji5p .nav-item:focus,
.cid-upGWVkji5p .nav-link:focus {
  outline: none;
}
.cid-upGWVkji5p .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-upGWVkji5p .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-upGWVkji5p .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-upGWVkji5p .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-upGWVkji5p .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-upGWVkji5p .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-upGWVkji5p .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-upGWVkji5p .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-upGWVkji5p .navbar.opened {
  transition: all 0.3s;
}
.cid-upGWVkji5p .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-upGWVkji5p .navbar .navbar-logo img {
  max-width: 53px;
  max-height: 53px;
  object-fit: contain;
  border-radius: 10px;
}
.cid-upGWVkji5p .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-upGWVkji5p .navbar.collapsed {
  justify-content: center;
}
.cid-upGWVkji5p .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-upGWVkji5p .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-upGWVkji5p .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-upGWVkji5p .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-upGWVkji5p .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-upGWVkji5p .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-upGWVkji5p .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-upGWVkji5p .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-upGWVkji5p .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-upGWVkji5p .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-upGWVkji5p .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-upGWVkji5p .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-upGWVkji5p .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-upGWVkji5p .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-upGWVkji5p .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-upGWVkji5p .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-upGWVkji5p .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-upGWVkji5p .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-upGWVkji5p .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-upGWVkji5p .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-upGWVkji5p .navbar .icons-menu {
    padding: 0;
  }
}
.cid-upGWVkji5p .navbar.navbar-short {
  min-height: 60px;
}
.cid-upGWVkji5p .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-upGWVkji5p .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-upGWVkji5p .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-upGWVkji5p .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-upGWVkji5p .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-upGWVkji5p .dropdown-item.active,
.cid-upGWVkji5p .dropdown-item:active {
  background-color: transparent;
}
.cid-upGWVkji5p .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-upGWVkji5p .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-upGWVkji5p .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-upGWVkji5p .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-upGWVkji5p ul.navbar-nav {
  flex-wrap: wrap;
  background-color: #ffffff;
  border-radius: 10px;
  padding: 8px 0;
}
@media (max-width: 992px) {
  .cid-upGWVkji5p ul.navbar-nav {
    padding: 8px;
  }
}
.cid-upGWVkji5p .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-upGWVkji5p button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #d2bfe3;
  background: #ffffff;
}
.cid-upGWVkji5p button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ed9b82;
}
.cid-upGWVkji5p button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-upGWVkji5p button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-upGWVkji5p button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-upGWVkji5p button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-upGWVkji5p nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-upGWVkji5p nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-upGWVkji5p nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-upGWVkji5p nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-upGWVkji5p a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-upGWVkji5p .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upGWVkji5p .navbar {
    height: 70px;
  }
  .cid-upGWVkji5p .navbar.opened {
    height: auto;
  }
  .cid-upGWVkji5p .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-upGWVkji5p .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-upGWVkji5p .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-upGWVkji5p .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-upGWVkji5p .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
}
@media (max-width: 992px) {
  .cid-upGWVkji5p .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-upGWVkji5p .navbar-caption:hover {
  color: #ff6666;
}
@media (min-width: 992px) {
  .cid-upGWVkji5p .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-upGWVkji5p .text_widget {
  margin-bottom: 32px;
  color: #ffffff;
}
.cid-upGWVkji5p .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-upGWVkji5p .text_widget a:hover {
  color: #ff6666 !important;
}
.cid-upGWVkji5p .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-upGWVkji5p .navbar-caption {
  color: #ffffff;
}
.cid-upGWVkji5p .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-upGWVkji5p .mbr-section-subtitle,
.cid-upGWVkji5p .text_widget,
.cid-upGWVkji5p .mbr-section-btn {
  text-align: left;
}
.cid-upGWVkji5p a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-upH6N8wBhX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d57df7;
}
.cid-upH6N8wBhX .mbr-fallback-image.disabled {
  display: none;
}
.cid-upH6N8wBhX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upH6N8wBhX .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-upH6N8wBhX .items-wrapper .card {
  padding: 0 32px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-upH6N8wBhX .title-wrapper {
    margin-bottom: 48px;
  }
}
.cid-upH6N8wBhX .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-upH6N8wBhX .title-wrapper .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-upH6N8wBhX .title-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-upH6N8wBhX .image-wrapper img {
  height: 480px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-upH6N8wBhX .image-wrapper img {
    height: 350px;
  }
}
.cid-upH6N8wBhX .mbr-section-title {
  color: #ffffff;
}
.cid-upH6N8wBhX .mbr-text,
.cid-upH6N8wBhX .text-wrapper {
  color: #000000;
}
.cid-upH6N8wBhX .mbr-section-title,
.cid-upH6N8wBhX .mbr-section-btn {
  color: #000000;
}
.cid-upG8gAHV9N {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-upG8gAHV9N .mbr-fallback-image.disabled {
  display: none;
}
.cid-upG8gAHV9N .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upG8gAHV9N .card-wrapper {
  background: #2a1669;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-upG8gAHV9N .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-upG8gAHV9N .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-upG8gAHV9N .card-wrapper {
    padding: 4rem;
  }
}
.cid-upG8gAHV9N .mbr-text,
.cid-upG8gAHV9N .mbr-section-btn {
  color: #fafafa;
}
.cid-upG8gB0hgX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d2bfe3;
}
.cid-upG8gB0hgX .mbr-fallback-image.disabled {
  display: none;
}
.cid-upG8gB0hgX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upG8gB0hgX .content-wrapper {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-upG8gB0hgX .content-wrapper {
    padding: 0;
  }
}
.cid-upG8gB0hgX .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-upG8gB0hgX .content-wrapper .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-upG8gB0hgX .content-wrapper .google-map {
  border: 3px solid #050f0f;
  box-shadow: 4px 4px 0 0 #050f0f;
}
.cid-upG8gB0hgX .content-wrapper .google-map iframe {
  height: 600px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-upG8gB0hgX .content-wrapper .google-map iframe {
    height: 350px;
  }
}
.cid-upG8gB0hgX .mbr-section-title {
  color: #050f0f;
}
.cid-upG8gBsej8 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #2a1669;
}
.cid-upG8gBsej8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-upG8gBsej8 .item-wrapper {
  display: flex;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-upG8gBsej8 .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-upG8gBsej8 .item-wrapper:hover .iconfont-wrapper:after {
  width: 70px;
  height: 70px;
}
.cid-upG8gBsej8 a {
  font-weight: 600;
}
.cid-upG8gBsej8 a:hover {
  background: none !important;
}
@media (min-width: 1400px) {
  .cid-upG8gBsej8 .col-lg-3,
  .cid-upG8gBsej8 .col-xl-3 {
    max-width: 20%;
  }
}
@media (max-width: 1200px) {
  .cid-upG8gBsej8 .col-lg-12 {
    min-width: 100% !important;
  }
}
.cid-upG8gBsej8 .card-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-upG8gBsej8 h5 {
  margin: 0;
}
.cid-upG8gBsej8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upG8gBsej8 .iconfont-wrapper {
  position: relative;
}
.cid-upG8gBsej8 .mbr-iconfont {
  display: flex;
  padding-right: 1rem;
  font-size: 2rem;
  color: #000000;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 2;
  position: relative;
}
.cid-upG8gBsej8 .socicon {
  font-size: 1rem;
  width: 30px;
  height: 30px;
}
.cid-upG8gBsej8 .sociconfont-wrapper {
  display: flex;
}
.cid-upG8gBsej8 .card-title,
.cid-upG8gBsej8 .iconfont-wrapper {
  color: #fafafa;
}
.cid-upG8gBsej8 .card-text {
  color: #fafafa;
}
.cid-upG8gBsej8 .mbr-section-title {
  color: #000000;
}
.cid-upG8gBsej8 .main-title,
.cid-upG8gBsej8 .iconfont-wrapper {
  text-align: left;
}
.cid-upG8gBWyYd {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-upGWVkji5p .navbar-dropdown {
  background-color: #d2bfe3 !important;
  padding: 0;
}
.cid-upGWVkji5p .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #d2bfe3 !important;
  background: #ffffff;
  background-color: #ffffff !important;
}
.cid-upGWVkji5p .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-upGWVkji5p .menu_box .navbar.opened,
  .cid-upGWVkji5p .menu_box .navbar-collapse {
    background-color: #d2bfe3 !important;
    transition: all 0s ease 0s;
  }
}
.cid-upGWVkji5p .navbar-dropdown {
  position: relative !important;
}
.cid-upGWVkji5p .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-upGWVkji5p .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-upGWVkji5p .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-upGWVkji5p .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-upGWVkji5p .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-upGWVkji5p .offcanvas {
    padding: 12rem 64px 0;
    width: 50%;
    background-color: #8a9198;
  }
  .cid-upGWVkji5p .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-upGWVkji5p .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-upGWVkji5p .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-upGWVkji5p .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-upGWVkji5p .offcanvas-body .mbr-text,
  .cid-upGWVkji5p .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-upGWVkji5p .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-upGWVkji5p .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-upGWVkji5p .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #ed9b82;
  }
  .cid-upGWVkji5p .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-upGWVkji5p .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-upGWVkji5p .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-upGWVkji5p .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-upGWVkji5p ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-upGWVkji5p .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-upGWVkji5p .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-upGWVkji5p .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-upGWVkji5p li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-upGWVkji5p .lg_brand {
    margin: 0 1rem;
  }
}
.cid-upGWVkji5p .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-upGWVkji5p .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-upGWVkji5p .nav-item {
    margin: 0 !important;
  }
}
.cid-upGWVkji5p .nav-item .nav-link {
  transition: all 0.3s ease-out;
}
.cid-upGWVkji5p .nav-item .nav-link:hover {
  text-decoration: underline;
}
.cid-upGWVkji5p .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-upGWVkji5p .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-upGWVkji5p .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-upGWVkji5p .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-upGWVkji5p .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-upGWVkji5p .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-upGWVkji5p .offcanvas_box {
    display: none;
  }
}
.cid-upGWVkji5p .dropdown-item {
  border: none;
  font-weight: 700 !important;
}
.cid-upGWVkji5p .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-upGWVkji5p .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-upGWVkji5p .container {
  display: flex;
  margin: auto;
}
.cid-upGWVkji5p .container,
.cid-upGWVkji5p .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-upGWVkji5p .container,
  .cid-upGWVkji5p .container-fluid {
    padding: 0 20px;
  }
}
.cid-upGWVkji5p .iconfont-wrapper {
  color: #ffffff;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-upGWVkji5p .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-upGWVkji5p .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-upGWVkji5p .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-upGWVkji5p .navbar-nav {
    margin: 0;
  }
}
.cid-upGWVkji5p .dropdown-menu,
.cid-upGWVkji5p .navbar.opened {
  background-color: false !important;
}
.cid-upGWVkji5p .nav-item:focus,
.cid-upGWVkji5p .nav-link:focus {
  outline: none;
}
.cid-upGWVkji5p .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-upGWVkji5p .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-upGWVkji5p .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-upGWVkji5p .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-upGWVkji5p .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-upGWVkji5p .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-upGWVkji5p .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-upGWVkji5p .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-upGWVkji5p .navbar.opened {
  transition: all 0.3s;
}
.cid-upGWVkji5p .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-upGWVkji5p .navbar .navbar-logo img {
  max-width: 53px;
  max-height: 53px;
  object-fit: contain;
  border-radius: 10px;
}
.cid-upGWVkji5p .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-upGWVkji5p .navbar.collapsed {
  justify-content: center;
}
.cid-upGWVkji5p .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-upGWVkji5p .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-upGWVkji5p .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-upGWVkji5p .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-upGWVkji5p .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-upGWVkji5p .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-upGWVkji5p .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-upGWVkji5p .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-upGWVkji5p .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-upGWVkji5p .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-upGWVkji5p .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-upGWVkji5p .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-upGWVkji5p .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-upGWVkji5p .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-upGWVkji5p .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-upGWVkji5p .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-upGWVkji5p .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-upGWVkji5p .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-upGWVkji5p .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-upGWVkji5p .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-upGWVkji5p .navbar .icons-menu {
    padding: 0;
  }
}
.cid-upGWVkji5p .navbar.navbar-short {
  min-height: 60px;
}
.cid-upGWVkji5p .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-upGWVkji5p .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-upGWVkji5p .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-upGWVkji5p .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-upGWVkji5p .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-upGWVkji5p .dropdown-item.active,
.cid-upGWVkji5p .dropdown-item:active {
  background-color: transparent;
}
.cid-upGWVkji5p .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-upGWVkji5p .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-upGWVkji5p .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-upGWVkji5p .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-upGWVkji5p ul.navbar-nav {
  flex-wrap: wrap;
  background-color: #ffffff;
  border-radius: 10px;
  padding: 8px 0;
}
@media (max-width: 992px) {
  .cid-upGWVkji5p ul.navbar-nav {
    padding: 8px;
  }
}
.cid-upGWVkji5p .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-upGWVkji5p button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #d2bfe3;
  background: #ffffff;
}
.cid-upGWVkji5p button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ed9b82;
}
.cid-upGWVkji5p button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-upGWVkji5p button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-upGWVkji5p button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-upGWVkji5p button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-upGWVkji5p nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-upGWVkji5p nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-upGWVkji5p nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-upGWVkji5p nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-upGWVkji5p a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-upGWVkji5p .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upGWVkji5p .navbar {
    height: 70px;
  }
  .cid-upGWVkji5p .navbar.opened {
    height: auto;
  }
  .cid-upGWVkji5p .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-upGWVkji5p .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-upGWVkji5p .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-upGWVkji5p .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-upGWVkji5p .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
}
@media (max-width: 992px) {
  .cid-upGWVkji5p .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-upGWVkji5p .navbar-caption:hover {
  color: #ff6666;
}
@media (min-width: 992px) {
  .cid-upGWVkji5p .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-upGWVkji5p .text_widget {
  margin-bottom: 32px;
  color: #ffffff;
}
.cid-upGWVkji5p .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-upGWVkji5p .text_widget a:hover {
  color: #ff6666 !important;
}
.cid-upGWVkji5p .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-upGWVkji5p .navbar-caption {
  color: #ffffff;
}
.cid-upGWVkji5p .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-upGWVkji5p .mbr-section-subtitle,
.cid-upGWVkji5p .text_widget,
.cid-upGWVkji5p .mbr-section-btn {
  text-align: left;
}
.cid-upGWVkji5p a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-upIXpnXSBf .navbar-dropdown {
  background-color: #d2bfe3 !important;
  padding: 0;
}
.cid-upIXpnXSBf .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #d2bfe3 !important;
  background: #ffffff;
  background-color: #ffffff !important;
}
.cid-upIXpnXSBf .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-upIXpnXSBf .menu_box .navbar.opened,
  .cid-upIXpnXSBf .menu_box .navbar-collapse {
    background-color: #d2bfe3 !important;
    transition: all 0s ease 0s;
  }
}
.cid-upIXpnXSBf .navbar-dropdown {
  position: relative !important;
}
.cid-upIXpnXSBf .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-upIXpnXSBf .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-upIXpnXSBf .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-upIXpnXSBf .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-upIXpnXSBf .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-upIXpnXSBf .offcanvas {
    padding: 12rem 64px 0;
    width: 50%;
    background-color: #8a9198;
  }
  .cid-upIXpnXSBf .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-upIXpnXSBf .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-upIXpnXSBf .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-upIXpnXSBf .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-upIXpnXSBf .offcanvas-body .mbr-text,
  .cid-upIXpnXSBf .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-upIXpnXSBf .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-upIXpnXSBf .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-upIXpnXSBf .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #ed9b82;
  }
  .cid-upIXpnXSBf .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-upIXpnXSBf .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-upIXpnXSBf .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-upIXpnXSBf .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-upIXpnXSBf ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-upIXpnXSBf .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-upIXpnXSBf .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-upIXpnXSBf .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-upIXpnXSBf li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-upIXpnXSBf .lg_brand {
    margin: 0 1rem;
  }
}
.cid-upIXpnXSBf .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-upIXpnXSBf .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-upIXpnXSBf .nav-item {
    margin: 0 !important;
  }
}
.cid-upIXpnXSBf .nav-item .nav-link {
  transition: all 0.3s ease-out;
}
.cid-upIXpnXSBf .nav-item .nav-link:hover {
  text-decoration: underline;
}
.cid-upIXpnXSBf .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-upIXpnXSBf .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-upIXpnXSBf .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-upIXpnXSBf .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-upIXpnXSBf .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-upIXpnXSBf .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-upIXpnXSBf .offcanvas_box {
    display: none;
  }
}
.cid-upIXpnXSBf .dropdown-item {
  border: none;
  font-weight: 700 !important;
}
.cid-upIXpnXSBf .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-upIXpnXSBf .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-upIXpnXSBf .container {
  display: flex;
  margin: auto;
}
.cid-upIXpnXSBf .container,
.cid-upIXpnXSBf .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-upIXpnXSBf .container,
  .cid-upIXpnXSBf .container-fluid {
    padding: 0 20px;
  }
}
.cid-upIXpnXSBf .iconfont-wrapper {
  color: #ffffff;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-upIXpnXSBf .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-upIXpnXSBf .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-upIXpnXSBf .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-upIXpnXSBf .navbar-nav {
    margin: 0;
  }
}
.cid-upIXpnXSBf .dropdown-menu,
.cid-upIXpnXSBf .navbar.opened {
  background-color: false !important;
}
.cid-upIXpnXSBf .nav-item:focus,
.cid-upIXpnXSBf .nav-link:focus {
  outline: none;
}
.cid-upIXpnXSBf .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-upIXpnXSBf .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-upIXpnXSBf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-upIXpnXSBf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-upIXpnXSBf .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-upIXpnXSBf .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-upIXpnXSBf .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-upIXpnXSBf .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-upIXpnXSBf .navbar.opened {
  transition: all 0.3s;
}
.cid-upIXpnXSBf .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-upIXpnXSBf .navbar .navbar-logo img {
  max-width: 53px;
  max-height: 53px;
  object-fit: contain;
  border-radius: 10px;
}
.cid-upIXpnXSBf .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-upIXpnXSBf .navbar.collapsed {
  justify-content: center;
}
.cid-upIXpnXSBf .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-upIXpnXSBf .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-upIXpnXSBf .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-upIXpnXSBf .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-upIXpnXSBf .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-upIXpnXSBf .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-upIXpnXSBf .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-upIXpnXSBf .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-upIXpnXSBf .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-upIXpnXSBf .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-upIXpnXSBf .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-upIXpnXSBf .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-upIXpnXSBf .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-upIXpnXSBf .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-upIXpnXSBf .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-upIXpnXSBf .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-upIXpnXSBf .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-upIXpnXSBf .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-upIXpnXSBf .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-upIXpnXSBf .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-upIXpnXSBf .navbar .icons-menu {
    padding: 0;
  }
}
.cid-upIXpnXSBf .navbar.navbar-short {
  min-height: 60px;
}
.cid-upIXpnXSBf .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-upIXpnXSBf .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-upIXpnXSBf .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-upIXpnXSBf .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-upIXpnXSBf .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-upIXpnXSBf .dropdown-item.active,
.cid-upIXpnXSBf .dropdown-item:active {
  background-color: transparent;
}
.cid-upIXpnXSBf .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-upIXpnXSBf .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-upIXpnXSBf .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-upIXpnXSBf .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-upIXpnXSBf ul.navbar-nav {
  flex-wrap: wrap;
  background-color: #ffffff;
  border-radius: 10px;
  padding: 8px 0;
}
@media (max-width: 992px) {
  .cid-upIXpnXSBf ul.navbar-nav {
    padding: 8px;
  }
}
.cid-upIXpnXSBf .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-upIXpnXSBf button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #d2bfe3;
  background: #ffffff;
}
.cid-upIXpnXSBf button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ed9b82;
}
.cid-upIXpnXSBf button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-upIXpnXSBf button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-upIXpnXSBf button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-upIXpnXSBf button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-upIXpnXSBf nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-upIXpnXSBf nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-upIXpnXSBf nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-upIXpnXSBf nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-upIXpnXSBf a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-upIXpnXSBf .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upIXpnXSBf .navbar {
    height: 70px;
  }
  .cid-upIXpnXSBf .navbar.opened {
    height: auto;
  }
  .cid-upIXpnXSBf .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-upIXpnXSBf .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-upIXpnXSBf .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-upIXpnXSBf .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-upIXpnXSBf .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
}
@media (max-width: 992px) {
  .cid-upIXpnXSBf .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-upIXpnXSBf .navbar-caption:hover {
  color: #ff6666;
}
@media (min-width: 992px) {
  .cid-upIXpnXSBf .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-upIXpnXSBf .text_widget {
  margin-bottom: 32px;
  color: #ffffff;
}
.cid-upIXpnXSBf .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-upIXpnXSBf .text_widget a:hover {
  color: #ff6666 !important;
}
.cid-upIXpnXSBf .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-upIXpnXSBf .navbar-caption {
  color: #ffffff;
}
.cid-upIXpnXSBf .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-upIXpnXSBf .mbr-section-subtitle,
.cid-upIXpnXSBf .text_widget,
.cid-upIXpnXSBf .mbr-section-btn {
  text-align: left;
}
.cid-upIXpnXSBf a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-upIXppfMjx {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #d57df7;
  background: linear-gradient(to right top, #d57df7, #2a1669);
}
.cid-upIXppfMjx .img-wrap {
  width: 100%;
  margin-bottom: 3rem;
}
.cid-upIXppfMjx .img-wrap img {
  width: 80%;
  margin: auto;
}
.cid-upIXppfMjx .mbr-text,
.cid-upIXppfMjx .mbr-section-btn {
  color: #fafafa;
}
.cid-upIXppfMjx .mbr-section-title {
  color: #fafafa;
}
.cid-upIXppfMjx .buttons-wrap .link {
  display: flex;
}
.cid-upIXppfMjx .mbr-arrow {
  bottom: 0;
}
.cid-upIXppfMjx .mbr-fallback-image.disabled {
  display: none;
}
.cid-upIXppfMjx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upIXpqenys {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d2bfe3;
}
.cid-upIXpqenys .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-upIXpqenys .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-upIXpqenys .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #2a1669;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-upIXpr4KcC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
  background-color: #2a1669;
}
.cid-upIXpr4KcC .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-upIXpr4KcC .mbr-fallback-image.disabled {
  display: none;
}
.cid-upIXpr4KcC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upIXpr4KcC .content-wrap {
  align-items: center;
  justify-content: space-between;
}
.cid-upIXpr4KcC .content-wrap .card {
  justify-content: space-between;
}
.cid-upIXpr4KcC .content-wrapper {
  padding: 0 24px;
}
@media (max-width: 992px) {
  .cid-upIXpr4KcC .content-wrapper {
    padding: 0;
  }
}
.cid-upIXpr4KcC .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-upIXpr4KcC .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  margin-bottom: 0;
  padding: 10px;
  -webkit-text-stroke-color: #150764;
  box-shadow: 4px 4px 0 0 #150764;
  border: 2px solid #150764;
  background-color: #4188ff;
  -webkit-text-stroke-width: .15rem;
}
@media (max-width: 992px) {
  .cid-upIXpr4KcC .content-wrapper .desc-wrapper .mbr-desc {
    -webkit-text-stroke-width: .12rem;
  }
}
.cid-upIXpr4KcC .mbr-section-title {
  color: #150764;
  text-align: center;
}
.cid-upIXpr4KcC .mbr-desc,
.cid-upIXpr4KcC .desc-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-upIXpr4KcC .mbr-section-title,
.cid-upIXpr4KcC .mbr-section-btn {
  color: #fafafa;
}
.cid-upIXprYTea {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d2bfe3;
}
.cid-upIXprYTea .mbr-fallback-image.disabled {
  display: none;
}
.cid-upIXprYTea .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upIXprYTea .items-wrapper {
  justify-content: flex-end;
}
.cid-upIXprYTea .items-wrapper .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-upIXprYTea .image-wrapper {
    margin-bottom: 32px;
  }
}
.cid-upIXprYTea .image-wrapper img {
  height: 720px;
  width: 720px;
  object-fit: cover;
  border-radius: 100% !important;
}
@media (max-width: 1700px) {
  .cid-upIXprYTea .image-wrapper img {
    width: 600px;
    height: 600px;
  }
}
@media (max-width: 1440px) {
  .cid-upIXprYTea .image-wrapper img {
    width: 500px;
    height: 500px;
  }
}
@media (max-width: 1200px) {
  .cid-upIXprYTea .image-wrapper img {
    width: 400px;
    height: 400px;
  }
}
@media (max-width: 768px) {
  .cid-upIXprYTea .image-wrapper img {
    width: 260px;
    height: 260px;
  }
}
.cid-upIXprYTea .content-wrapper {
  padding-left: 120px;
}
@media (max-width: 1200px) {
  .cid-upIXprYTea .content-wrapper {
    padding-left: 60px;
  }
}
@media (max-width: 992px) {
  .cid-upIXprYTea .content-wrapper {
    padding-left: 0;
  }
}
.cid-upIXprYTea .content-wrapper .mbr-desc {
  margin-bottom: 8px;
}
.cid-upIXprYTea .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-upIXprYTea .content-wrapper .mbr-text {
  margin-bottom: 24px;
}
.cid-upIXprYTea .mbr-desc {
  color: #272b2e;
}
.cid-upIXprYTea .mbr-section-title {
  color: #272b2e;
}
.cid-upIXprYTea .mbr-text,
.cid-upIXprYTea .text-wrapper {
  color: #272b2e;
}
.cid-upIXpsOzv6 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  position: relative;
  overflow: hidden;
  background-color: #2a1669;
}
.cid-upIXpsOzv6 .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-upIXpsOzv6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-upIXpsOzv6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upIXpsOzv6 .content-wrap {
  margin: 0;
}
.cid-upIXpsOzv6 .content-wrap .card {
  padding: 0;
}
.cid-upIXpsOzv6 .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  overflow: hidden;
  background-color: #d57df7;
  padding: 40px 32px;
  border-right: 1px solid #150764;
  border-right: none;
  border-left: 1px solid #150764;
}
@media (max-width: 1640px) {
  .cid-upIXpsOzv6 .image-wrapper {
    padding: 40px 24px;
  }
}
@media (max-width: 992px) {
  .cid-upIXpsOzv6 .image-wrapper {
    padding: 40px 0;
  }
}
@media (max-width: 992px) {
  .cid-upIXpsOzv6 .image-wrapper {
    border-right: none;
    border-bottom: 1px solid #150764;
  }
}
@media (max-width: 992px) {
  .cid-upIXpsOzv6 .image-wrapper {
    border-left: none;
    border-bottom: 1px solid #150764;
  }
}
.cid-upIXpsOzv6 .image-wrapper img {
  height: 620px;
  width: 620px;
  object-fit: cover;
  border-radius: 100% !important;
}
@media (max-width: 1640px) {
  .cid-upIXpsOzv6 .image-wrapper img {
    height: 550px;
    width: 550px;
  }
}
@media (max-width: 1200px) {
  .cid-upIXpsOzv6 .image-wrapper img {
    height: 350px;
    width: 350px;
  }
}
@media (max-width: 768px) {
  .cid-upIXpsOzv6 .image-wrapper img {
    height: 250px;
    width: 250px;
  }
}
.cid-upIXpsOzv6 .content-wrapper {
  padding: 40px 72px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
@media (max-width: 1640px) {
  .cid-upIXpsOzv6 .content-wrapper {
    padding: 40px 24px;
  }
}
@media (max-width: 992px) {
  .cid-upIXpsOzv6 .content-wrapper {
    padding: 40px 0;
  }
}
.cid-upIXpsOzv6 .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-upIXpsOzv6 .content-wrapper .text-wrapper .text-wrap .mbr-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-upIXpsOzv6 .content-wrapper .text-wrapper .text-wrap .mbr-text {
    width: 100%;
    margin-bottom: 16px;
  }
}
.cid-upIXpsOzv6 .mbr-section-title {
  color: #150764;
}
.cid-upIXpsOzv6 .mbr-text {
  color: #150764;
}
.cid-upIXpsOzv6 .mbr-section-title,
.cid-upIXpsOzv6 .mbr-section-btn {
  color: #fafafa;
}
.cid-upIXpsOzv6 .mbr-text,
.cid-upIXpsOzv6 .text-wrap {
  color: #fafafa;
}
.cid-upIXptS9VX {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #d2bfe3;
}
.cid-upIXptS9VX .mbr-fallback-image.disabled {
  display: none;
}
.cid-upIXptS9VX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upIXpuU46N {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #2a1669;
}
.cid-upIXpuU46N .mbr-fallback-image.disabled {
  display: none;
}
.cid-upIXpuU46N .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upIXpuU46N .row {
  justify-content: center;
}
.cid-upIXpuU46N .content-wrapper {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-upIXpuU46N .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-upIXpuU46N .content-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-upIXpuU46N .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-upIXpuU46N .item {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-upIXpuU46N .item {
    margin-bottom: 35px;
  }
}
.cid-upIXpuU46N .item .item-wrapper .card-box .icon-wrapper {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upIXpuU46N .item .item-wrapper .card-box .icon-wrapper {
    margin-bottom: 15px;
  }
}
.cid-upIXpuU46N .item .item-wrapper .card-box .icon-wrapper .mbr-iconfont {
  width: 95px;
  height: 95px;
  border-radius: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #000000;
  color: #ffffff;
  font-size: 60px;
}
.cid-upIXpuU46N .item .item-wrapper .card-box .item-title {
  margin-bottom: 10px;
}
.cid-upIXpuU46N .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-upIXpuU46N .border-wrapper {
  width: 100%;
  height: 1px;
  background-color: #fafafa;
}
.cid-upIXpuU46N .mbr-section-title {
  color: #fafafa;
}
.cid-upIXpuU46N .mbr-text {
  color: #000000;
}
.cid-upIXpuU46N .item-title {
  color: #000000;
}
.cid-upIXpuU46N .item-text {
  color: #000000;
}
.cid-upIXpw9ABn {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d57df7;
}
.cid-upIXpw9ABn .mbr-fallback-image.disabled {
  display: none;
}
.cid-upIXpw9ABn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upIXpw9ABn .content-wrapper {
  position: relative;
  padding: 80px 60px;
  display: flex;
  justify-content: center;
  border: 2px solid #87ceeb;
}
@media (max-width: 992px) {
  .cid-upIXpw9ABn .content-wrapper {
    display: block;
    padding: 32px 16px;
  }
}
.cid-upIXpw9ABn .content-wrapper .image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-upIXpw9ABn .content-wrapper .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .5;
}
.cid-upIXpw9ABn .content-wrapper .card-wrapper {
  position: relative;
  z-index: 1;
  width: 75%;
  padding: 48px;
  background-color: #2a1669;
  border: 3px solid #000000;
  box-shadow: 4px 4px 0 0 #000000;
  -webkit-flex: inherit;
}
@media (max-width: 992px) {
  .cid-upIXpw9ABn .content-wrapper .card-wrapper {
    width: 100%;
    padding: 32px 16px;
  }
}
.cid-upIXpw9ABn .content-wrapper .card-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-upIXpw9ABn .content-wrapper .card-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-upIXpw9ABn .content-wrapper .card-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-upIXpw9ABn .mbr-section-title {
  color: #ff9063;
  text-align: center;
}
.cid-upIXpw9ABn .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-upIXpw9ABn .mbr-section-title,
.cid-upIXpw9ABn .mbr-section-btn {
  color: #fafafa;
}
.cid-upIXpx6Vn2 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d2bfe3;
}
.cid-upIXpx6Vn2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-upIXpx6Vn2 .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-upIXpx6Vn2 .container {
    padding: 0 16px;
  }
}
.cid-upIXpx6Vn2 .row {
  position: relative;
  z-index: 1;
}
.cid-upIXpx6Vn2 .card {
  justify-content: flex-end;
}
.cid-upIXpx6Vn2 .card-wrapper {
  margin-right: 64px;
  margin-right: 0;
  margin-left: 64px;
}
@media (max-width: 1440px) {
  .cid-upIXpx6Vn2 .card-wrapper {
    margin-right: 0;
  }
}
@media (max-width: 1440px) {
  .cid-upIXpx6Vn2 .card-wrapper {
    margin-left: 0;
  }
}
@media (max-width: 992px) {
  .cid-upIXpx6Vn2 .card-wrapper {
    margin-bottom: 32px;
  }
}
.cid-upIXpx6Vn2 .card-wrapper .image-wrapper {
  position: relative;
  margin-bottom: -8rem;
}
.cid-upIXpx6Vn2 .card-wrapper .image-wrapper img {
  width: 520px;
  height: 520px;
  object-fit: cover;
  border-radius: 100% !important;
}
@media (max-width: 1200px) {
  .cid-upIXpx6Vn2 .card-wrapper .image-wrapper img {
    width: 420px;
    height: 420px;
  }
}
@media (max-width: 768px) {
  .cid-upIXpx6Vn2 .card-wrapper .image-wrapper img {
    width: 260px;
    height: 260px;
  }
}
.cid-upIXpx6Vn2 .card-wrapper .image-wrapper .card-desc {
  position: absolute;
  top: 55%;
  left: -1rem;
  display: inline-flex;
  margin-bottom: 0;
  padding: 6px 16px;
  border-radius: 4rem !important;
  box-shadow: 4px 6px 0 0 #000000;
  background-color: #c6f15c;
  transform: rotate(-4deg);
}
@media (max-width: 992px) {
  .cid-upIXpx6Vn2 .card-wrapper .image-wrapper .card-desc {
    left: .5rem;
  }
}
.cid-upIXpx6Vn2 .card-wrapper .card-wrap {
  background-color: #d57df7;
  box-shadow: 4px 6px 0 0 #2a1669;
  border-radius: 16px;
  padding: 175px 48px 36px;
  margin: 0 50px;
}
@media (max-width: 992px) {
  .cid-upIXpx6Vn2 .card-wrapper .card-wrap {
    margin: 0;
    padding: 150px 24px 24px;
  }
}
.cid-upIXpx6Vn2 .card-wrapper .card-wrap .card-text {
  margin-bottom: 16px;
}
.cid-upIXpx6Vn2 .card-wrapper .card-wrap .person-wrap .card-name {
  margin-bottom: 0;
}
.cid-upIXpx6Vn2 .card-wrapper .card-wrap .person-wrap .card-role {
  margin-bottom: 0;
}
.cid-upIXpx6Vn2 .title-wrapper {
  margin-bottom: 96px;
}
@media (max-width: 992px) {
  .cid-upIXpx6Vn2 .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-upIXpx6Vn2 .title-wrapper .mbr-section-subtitle {
  margin-bottom: 32px;
}
.cid-upIXpx6Vn2 .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-upIXpx6Vn2 .text-wrapper {
  margin-left: 104px;
  margin-left: 0;
  margin-right: 104px;
}
@media (max-width: 1440px) {
  .cid-upIXpx6Vn2 .text-wrapper {
    margin-left: 48px;
  }
}
@media (max-width: 992px) {
  .cid-upIXpx6Vn2 .text-wrapper {
    margin-left: 0;
  }
}
@media (max-width: 1440px) {
  .cid-upIXpx6Vn2 .text-wrapper {
    margin-right: 48px;
  }
}
@media (max-width: 992px) {
  .cid-upIXpx6Vn2 .text-wrapper {
    margin-right: 0;
  }
}
.cid-upIXpx6Vn2 .text-wrapper .mbr-text {
  margin-bottom: 32px;
}
.cid-upIXpx6Vn2 .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-upIXpx6Vn2 .mbr-section-subtitle {
  color: #000000;
  text-align: right;
}
.cid-upIXpx6Vn2 .mbr-text {
  color: #000000;
}
.cid-upIXpx6Vn2 .card-desc {
  color: #000000;
}
.cid-upIXpx6Vn2 .card-text {
  color: #ffffff;
}
.cid-upIXpx6Vn2 .card-name {
  color: #ffffff;
}
.cid-upIXpx6Vn2 .card-role {
  color: #ffffff;
}
.cid-upIXpx6Vn2 .mbr-text,
.cid-upIXpx6Vn2 .mbr-section-btn {
  color: #000000;
}
.cid-upIXpyaGiM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #2a1669;
}
.cid-upIXpyaGiM .mbr-fallback-image.disabled {
  display: none;
}
.cid-upIXpyaGiM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upIXpyaGiM .content-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  padding: 80px 60px;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .cid-upIXpyaGiM .content-wrapper {
    gap: 16px;
  }
}
@media (max-width: 1199px) {
  .cid-upIXpyaGiM .content-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 992px) {
  .cid-upIXpyaGiM .content-wrapper {
    display: block;
    padding: 32px 16px;
  }
}
.cid-upIXpyaGiM .content-wrapper .image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-upIXpyaGiM .content-wrapper .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .5;
}
@media (max-width: 992px) {
  .cid-upIXpyaGiM .content-wrapper .item {
    margin-bottom: 16px;
  }
  .cid-upIXpyaGiM .content-wrapper .item:last-child {
    margin-bottom: 0;
  }
}
.cid-upIXpyaGiM .content-wrapper .item .item-wrapper {
  position: relative;
  height: 100%;
  border: 3px solid #050f0f;
  box-shadow: 4px 4px 0 0 #050f0f;
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background-color: #d57df7;
}
.cid-upIXpyaGiM .content-wrapper .item .item-wrapper:hover,
.cid-upIXpyaGiM .content-wrapper .item .item-wrapper:focus {
  transform: translate(0.2rem, 0.2rem);
  box-shadow: none;
}
.cid-upIXpyaGiM .content-wrapper .item .item-wrapper .item-content .item-img {
  border-bottom: 3px solid #050f0f;
}
.cid-upIXpyaGiM .content-wrapper .item .item-wrapper .item-content .item-img img {
  height: 390px;
  width: 100%;
  object-fit: cover;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-upIXpyaGiM .content-wrapper .item .item-wrapper .item-content .item-img img {
    height: 350px;
  }
}
.cid-upIXpyaGiM .content-wrapper .item .item-wrapper .item-content .item-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: .8;
}
.cid-upIXpyaGiM .content-wrapper .item .item-wrapper .item-content .text-wrapper {
  padding: 32px;
}
@media (max-width: 1440px) {
  .cid-upIXpyaGiM .content-wrapper .item .item-wrapper .item-content .text-wrapper {
    padding: 32px 24px;
  }
}
@media (max-width: 992px) {
  .cid-upIXpyaGiM .content-wrapper .item .item-wrapper .item-content .text-wrapper {
    padding: 32px 16px;
  }
}
.cid-upIXpyaGiM .content-wrapper .item .item-wrapper .item-content .text-wrapper .item-title {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-upIXpyaGiM .content-wrapper .item .item-wrapper .item-content .text-wrapper .item-title {
    margin-bottom: 24px;
  }
}
.cid-upIXpyaGiM .content-wrapper .item .item-wrapper .item-content .text-wrapper .item-text {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-upIXpyaGiM .content-wrapper .item .item-wrapper .item-content .text-wrapper .item-text {
    margin-bottom: 0;
  }
}
.cid-upIXpyaGiM .content-wrapper .item .item-wrapper .tags-wrapper {
  padding: 0 32px 24px 32px;
}
@media (max-width: 1440px) {
  .cid-upIXpyaGiM .content-wrapper .item .item-wrapper .tags-wrapper {
    padding: 0 24px 24px 24px;
  }
}
@media (max-width: 992px) {
  .cid-upIXpyaGiM .content-wrapper .item .item-wrapper .tags-wrapper {
    padding: 0 16px 24px 16px;
  }
}
.cid-upIXpyaGiM .content-wrapper .item .item-wrapper .tags-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-upIXpyaGiM .content-wrapper .item .item-wrapper .tags-wrapper .list .item-wrap {
  display: inline-flex;
  padding: 11px 20px;
  margin: 0 8px 8px 0;
  background-color: #d3f2ff;
}
.cid-upIXpyaGiM .content-wrapper .item .item-wrapper .tags-wrapper .list .item-wrap:nth-child(2n) {
  background-color: #bafca2;
}
.cid-upIXpyaGiM .content-wrapper .item .item-wrapper .tags-wrapper .list .item-wrap:nth-child(3n) {
  background-color: #fdfd96;
}
.cid-upIXpyaGiM .item-title {
  color: #050f0f;
}
.cid-upIXpyaGiM .item-text {
  color: #050f0f;
}
.cid-upIXpyaGiM .list {
  color: #050f0f;
}
.cid-upIXpzfreZ {
  padding-top: 60px;
  padding-bottom: 60px;
  background: #d2bfe3;
}
.cid-upIXpzfreZ .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-upIXpzfreZ .video-block {
  margin: auto;
}
@media (max-width: 767px) {
  .cid-upIXpzfreZ .video-block {
    width: 100% !important;
  }
}
.cid-upIXpzfreZ .mbr-section-title {
  color: #000000;
}
.cid-upIXpAgQkz {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #2a1669;
}
.cid-upIXpAgQkz blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #d57df7;
}
.cid-upIXpAgQkz .mbr-section-title {
  color: #000000;
}
.cid-upIXpAgQkz .mbr-text {
  color: #000000;
}
.cid-upIXpBdrF7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
  background-color: #d2bfe3;
}
.cid-upIXpBdrF7 .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-upIXpBdrF7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-upIXpBdrF7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upIXpBdrF7 .content-wrap {
  justify-content: center;
}
.cid-upIXpBdrF7 .card-wrapper {
  background-color: #2a1669;
  display: flex;
  border: 1px solid #150764;
}
@media (max-width: 1200px) {
  .cid-upIXpBdrF7 .card-wrapper {
    display: block;
  }
}
.cid-upIXpBdrF7 .card-wrapper .title-wrapper {
  width: 35%;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid #150764;
}
@media (max-width: 1640px) {
  .cid-upIXpBdrF7 .card-wrapper .title-wrapper {
    padding: 40px 24px;
  }
}
@media (max-width: 1200px) {
  .cid-upIXpBdrF7 .card-wrapper .title-wrapper {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #150764;
  }
}
@media (max-width: 992px) {
  .cid-upIXpBdrF7 .card-wrapper .title-wrapper {
    padding: 40px 20px;
  }
}
.cid-upIXpBdrF7 .card-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-upIXpBdrF7 .card-wrapper .title-wrapper .icon-wrapper .mbr-iconfont {
  font-size: 100px;
  color: #000000;
  display: inline-flex;
}
@media (max-width: 992px) {
  .cid-upIXpBdrF7 .card-wrapper .title-wrapper .icon-wrapper .mbr-iconfont {
    font-size: 80px;
  }
}
.cid-upIXpBdrF7 .card-wrapper .list-wrapper {
  width: 65%;
}
@media (max-width: 1200px) {
  .cid-upIXpBdrF7 .card-wrapper .list-wrapper {
    width: 100%;
  }
}
.cid-upIXpBdrF7 .card-wrapper .list-wrapper .panel-group .card {
  position: relative;
  padding: 0;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  background-color: transparent;
  border-radius: 0 !important;
}
.cid-upIXpBdrF7 .card-wrapper .list-wrapper .panel-group .card:first-child .card-header {
  border-top: none !important;
}
.cid-upIXpBdrF7 .card-wrapper .list-wrapper .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 32px;
  border-top: 1px solid #bbbbbb;
}
@media (max-width: 1940px) {
  .cid-upIXpBdrF7 .card-wrapper .list-wrapper .panel-group .card .card-header {
    padding: 32px 24px;
  }
}
@media (max-width: 992px) {
  .cid-upIXpBdrF7 .card-wrapper .list-wrapper .panel-group .card .card-header {
    padding: 32px 20px;
  }
}
.cid-upIXpBdrF7 .card-wrapper .list-wrapper .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-upIXpBdrF7 .card-wrapper .list-wrapper .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-upIXpBdrF7 .card-wrapper .list-wrapper .panel-group .card .card-header .panel-title .icon-wrapper {
  width: 28px;
  height: 28px;
  min-width: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 16px;
  transition: all 0.3s ease-in-out;
}
.cid-upIXpBdrF7 .card-wrapper .list-wrapper .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  transition: all 0.3s ease-in-out;
  font-size: 28px;
  color: #000000;
}
.cid-upIXpBdrF7 .card-wrapper .list-wrapper .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper {
  transform: rotate(180deg);
}
.cid-upIXpBdrF7 .card-wrapper .list-wrapper .panel-group .card .panel-collapse .panel-body {
  padding: 0 32px 64px 32px;
}
@media (max-width: 1940px) {
  .cid-upIXpBdrF7 .card-wrapper .list-wrapper .panel-group .card .panel-collapse .panel-body {
    padding: 0 24px 64px 24px;
  }
}
@media (max-width: 992px) {
  .cid-upIXpBdrF7 .card-wrapper .list-wrapper .panel-group .card .panel-collapse .panel-body {
    padding: 0 20px 32px 20px;
  }
}
.cid-upIXpBdrF7 .card-wrapper .list-wrapper .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-upIXpBdrF7 .mbr-section-title {
  color: #fafafa;
}
.cid-upIXpBdrF7 .panel-title-edit {
  color: #150764;
}
.cid-upIXpBdrF7 .panel-text {
  color: #150764;
}
.cid-upIXpBdrF7 .panel-title-edit,
.cid-upIXpBdrF7 .icon-wrapper {
  color: #fafafa;
}
.cid-upIXpCuhTy {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #2a1669;
}
.cid-upIXpCuhTy .mbr-fallback-image.disabled {
  display: none;
}
.cid-upIXpCuhTy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upIXpCuhTy .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-upIXpCuhTy .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-upIXpCuhTy .container {
    padding: 0 30px;
  }
}
.cid-upIXpCuhTy .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-upIXpCuhTy .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-upIXpCuhTy .card-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 70px 70px 70px 230px;
  background-color: #d2bfe3;
  border-radius: 16em 3em;
}
@media (max-width: 992px) {
  .cid-upIXpCuhTy .card-wrapper {
    border-radius: 3em 0 3em 0;
    padding: 30px 20px;
    display: block;
  }
}
.cid-upIXpCuhTy .card-wrapper .mbr-number {
  margin: 0 0 0 50px;
  width: 100%;
  white-space: nowrap;
}
@media (max-width: 992px) {
  .cid-upIXpCuhTy .card-wrapper .mbr-number {
    margin: 0 0 16px 0;
  }
}
.cid-upIXpCuhTy .card-wrapper .content-wrap .mbr-card-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upIXpCuhTy .card-wrapper .content-wrap .mbr-card-title {
    margin-bottom: 20px;
  }
}
.cid-upIXpCuhTy .card-wrapper .content-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-upIXpCuhTy .mbr-section-title {
  color: #ffffff;
}
.cid-upIXpCuhTy .mbr-card-title {
  color: #2b2b2b;
}
.cid-upIXpCuhTy .mbr-text {
  color: #000000;
}
.cid-upIXpCuhTy .mbr-number {
  color: #FE5115;
}
.cid-upJCDK8jCN {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-upJCDK8jCN .mbr-fallback-image.disabled {
  display: none;
}
.cid-upJCDK8jCN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upJCDK8jCN .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-upJCDK8jCN .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-upJCDK8jCN .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #ff2d55;
}
.cid-upJCDK8jCN .panel-body,
.cid-upJCDK8jCN .card-header {
  padding: 1rem 0;
}
.cid-upJCDK8jCN .panel-title-edit {
  color: #000000;
}
.cid-upIXpDvOYP {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d57df7;
}
.cid-upIXpDvOYP .mbr-fallback-image.disabled {
  display: none;
}
.cid-upIXpDvOYP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upIXpDvOYP .content-wrapper {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-upIXpDvOYP .content-wrapper {
    padding: 0;
  }
}
.cid-upIXpDvOYP .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-upIXpDvOYP .content-wrapper .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-upIXpDvOYP .content-wrapper .google-map {
  border: 3px solid #050f0f;
  box-shadow: 4px 4px 0 0 #050f0f;
}
.cid-upIXpDvOYP .content-wrapper .google-map iframe {
  height: 600px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-upIXpDvOYP .content-wrapper .google-map iframe {
    height: 350px;
  }
}
.cid-upIXpDvOYP .mbr-section-title {
  color: #050f0f;
}
.cid-upIXpDvOYP .mbr-section-title,
.cid-upIXpDvOYP .mbr-section-btn {
  text-align: center;
}
.cid-upIXpEEnfB {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #2a1669;
}
.cid-upIXpEEnfB .mbr-fallback-image.disabled {
  display: none;
}
.cid-upIXpEEnfB .item-wrapper {
  display: flex;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-upIXpEEnfB .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-upIXpEEnfB .item-wrapper:hover .iconfont-wrapper:after {
  width: 70px;
  height: 70px;
}
.cid-upIXpEEnfB a {
  font-weight: 600;
}
.cid-upIXpEEnfB a:hover {
  background: none !important;
}
@media (min-width: 1400px) {
  .cid-upIXpEEnfB .col-lg-3,
  .cid-upIXpEEnfB .col-xl-3 {
    max-width: 20%;
  }
}
@media (max-width: 1200px) {
  .cid-upIXpEEnfB .col-lg-12 {
    min-width: 100% !important;
  }
}
.cid-upIXpEEnfB .card-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-upIXpEEnfB h5 {
  margin: 0;
}
.cid-upIXpEEnfB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upIXpEEnfB .iconfont-wrapper {
  position: relative;
}
.cid-upIXpEEnfB .mbr-iconfont {
  display: flex;
  padding-right: 1rem;
  font-size: 2rem;
  color: #000000;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 2;
  position: relative;
}
.cid-upIXpEEnfB .socicon {
  font-size: 1rem;
  width: 30px;
  height: 30px;
}
.cid-upIXpEEnfB .sociconfont-wrapper {
  display: flex;
}
.cid-upIXpEEnfB .card-title,
.cid-upIXpEEnfB .iconfont-wrapper {
  color: #fafafa;
}
.cid-upIXpEEnfB .card-text {
  color: #ffffff;
}
.cid-upIXpEEnfB .mbr-section-title {
  color: #000000;
}
.cid-upIXpEEnfB .main-title,
.cid-upIXpEEnfB .iconfont-wrapper {
  text-align: left;
}
.cid-upIXpFP676 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #2a1669;
  overflow: hidden;
}
.cid-upIXqhLA1F .navbar-dropdown {
  background-color: #d2bfe3 !important;
  padding: 0;
}
.cid-upIXqhLA1F .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #d2bfe3 !important;
  background: #ffffff;
  background-color: #ffffff !important;
}
.cid-upIXqhLA1F .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-upIXqhLA1F .menu_box .navbar.opened,
  .cid-upIXqhLA1F .menu_box .navbar-collapse {
    background-color: #d2bfe3 !important;
    transition: all 0s ease 0s;
  }
}
.cid-upIXqhLA1F .navbar-dropdown {
  position: relative !important;
}
.cid-upIXqhLA1F .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-upIXqhLA1F .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-upIXqhLA1F .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-upIXqhLA1F .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-upIXqhLA1F .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-upIXqhLA1F .offcanvas {
    padding: 12rem 64px 0;
    width: 50%;
    background-color: #8a9198;
  }
  .cid-upIXqhLA1F .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-upIXqhLA1F .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-upIXqhLA1F .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-upIXqhLA1F .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-upIXqhLA1F .offcanvas-body .mbr-text,
  .cid-upIXqhLA1F .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-upIXqhLA1F .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-upIXqhLA1F .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-upIXqhLA1F .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #ed9b82;
  }
  .cid-upIXqhLA1F .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-upIXqhLA1F .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-upIXqhLA1F .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-upIXqhLA1F .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-upIXqhLA1F ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-upIXqhLA1F .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-upIXqhLA1F .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-upIXqhLA1F .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-upIXqhLA1F li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-upIXqhLA1F .lg_brand {
    margin: 0 1rem;
  }
}
.cid-upIXqhLA1F .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-upIXqhLA1F .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-upIXqhLA1F .nav-item {
    margin: 0 !important;
  }
}
.cid-upIXqhLA1F .nav-item .nav-link {
  transition: all 0.3s ease-out;
}
.cid-upIXqhLA1F .nav-item .nav-link:hover {
  text-decoration: underline;
}
.cid-upIXqhLA1F .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-upIXqhLA1F .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-upIXqhLA1F .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-upIXqhLA1F .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-upIXqhLA1F .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-upIXqhLA1F .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-upIXqhLA1F .offcanvas_box {
    display: none;
  }
}
.cid-upIXqhLA1F .dropdown-item {
  border: none;
  font-weight: 700 !important;
}
.cid-upIXqhLA1F .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-upIXqhLA1F .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-upIXqhLA1F .container {
  display: flex;
  margin: auto;
}
.cid-upIXqhLA1F .container,
.cid-upIXqhLA1F .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-upIXqhLA1F .container,
  .cid-upIXqhLA1F .container-fluid {
    padding: 0 20px;
  }
}
.cid-upIXqhLA1F .iconfont-wrapper {
  color: #ffffff;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-upIXqhLA1F .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-upIXqhLA1F .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-upIXqhLA1F .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-upIXqhLA1F .navbar-nav {
    margin: 0;
  }
}
.cid-upIXqhLA1F .dropdown-menu,
.cid-upIXqhLA1F .navbar.opened {
  background-color: false !important;
}
.cid-upIXqhLA1F .nav-item:focus,
.cid-upIXqhLA1F .nav-link:focus {
  outline: none;
}
.cid-upIXqhLA1F .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-upIXqhLA1F .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-upIXqhLA1F .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-upIXqhLA1F .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-upIXqhLA1F .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-upIXqhLA1F .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-upIXqhLA1F .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-upIXqhLA1F .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-upIXqhLA1F .navbar.opened {
  transition: all 0.3s;
}
.cid-upIXqhLA1F .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-upIXqhLA1F .navbar .navbar-logo img {
  max-width: 53px;
  max-height: 53px;
  object-fit: contain;
  border-radius: 10px;
}
.cid-upIXqhLA1F .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-upIXqhLA1F .navbar.collapsed {
  justify-content: center;
}
.cid-upIXqhLA1F .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-upIXqhLA1F .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-upIXqhLA1F .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-upIXqhLA1F .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-upIXqhLA1F .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-upIXqhLA1F .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-upIXqhLA1F .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-upIXqhLA1F .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-upIXqhLA1F .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-upIXqhLA1F .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-upIXqhLA1F .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-upIXqhLA1F .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-upIXqhLA1F .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-upIXqhLA1F .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-upIXqhLA1F .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-upIXqhLA1F .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-upIXqhLA1F .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-upIXqhLA1F .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-upIXqhLA1F .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-upIXqhLA1F .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-upIXqhLA1F .navbar .icons-menu {
    padding: 0;
  }
}
.cid-upIXqhLA1F .navbar.navbar-short {
  min-height: 60px;
}
.cid-upIXqhLA1F .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-upIXqhLA1F .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-upIXqhLA1F .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-upIXqhLA1F .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-upIXqhLA1F .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-upIXqhLA1F .dropdown-item.active,
.cid-upIXqhLA1F .dropdown-item:active {
  background-color: transparent;
}
.cid-upIXqhLA1F .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-upIXqhLA1F .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-upIXqhLA1F .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-upIXqhLA1F .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-upIXqhLA1F ul.navbar-nav {
  flex-wrap: wrap;
  background-color: #ffffff;
  border-radius: 10px;
  padding: 8px 0;
}
@media (max-width: 992px) {
  .cid-upIXqhLA1F ul.navbar-nav {
    padding: 8px;
  }
}
.cid-upIXqhLA1F .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-upIXqhLA1F button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #d2bfe3;
  background: #ffffff;
}
.cid-upIXqhLA1F button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ed9b82;
}
.cid-upIXqhLA1F button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-upIXqhLA1F button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-upIXqhLA1F button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-upIXqhLA1F button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-upIXqhLA1F nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-upIXqhLA1F nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-upIXqhLA1F nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-upIXqhLA1F nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-upIXqhLA1F a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-upIXqhLA1F .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upIXqhLA1F .navbar {
    height: 70px;
  }
  .cid-upIXqhLA1F .navbar.opened {
    height: auto;
  }
  .cid-upIXqhLA1F .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-upIXqhLA1F .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-upIXqhLA1F .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-upIXqhLA1F .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-upIXqhLA1F .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
}
@media (max-width: 992px) {
  .cid-upIXqhLA1F .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-upIXqhLA1F .navbar-caption:hover {
  color: #ff6666;
}
@media (min-width: 992px) {
  .cid-upIXqhLA1F .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-upIXqhLA1F .text_widget {
  margin-bottom: 32px;
  color: #ffffff;
}
.cid-upIXqhLA1F .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-upIXqhLA1F .text_widget a:hover {
  color: #ff6666 !important;
}
.cid-upIXqhLA1F .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-upIXqhLA1F .navbar-caption {
  color: #ffffff;
}
.cid-upIXqhLA1F .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-upIXqhLA1F .mbr-section-subtitle,
.cid-upIXqhLA1F .text_widget,
.cid-upIXqhLA1F .mbr-section-btn {
  text-align: left;
}
.cid-upIXqhLA1F a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-upIXqjAGMn {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #d57df7;
  background: linear-gradient(to right top, #d57df7, #2a1669);
}
.cid-upIXqjAGMn .img-wrap {
  width: 100%;
  margin-bottom: 3rem;
}
.cid-upIXqjAGMn .img-wrap img {
  width: 80%;
  margin: auto;
}
.cid-upIXqjAGMn .mbr-text,
.cid-upIXqjAGMn .mbr-section-btn {
  color: #ffffff;
}
.cid-upIXqjAGMn .mbr-section-title {
  color: #ffffff;
}
.cid-upIXqjAGMn .buttons-wrap .link {
  display: flex;
}
.cid-upIXqjAGMn .mbr-arrow {
  bottom: 0;
}
.cid-upIXqjAGMn .mbr-fallback-image.disabled {
  display: none;
}
.cid-upIXqjAGMn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upIXqkM927 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d2bfe3;
}
.cid-upIXqkM927 .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-upIXqkM927 .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-upIXqkM927 .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #2a1669;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-upIXqlBw1y {
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
  background-color: #2a1669;
}
.cid-upIXqlBw1y .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-upIXqlBw1y .mbr-fallback-image.disabled {
  display: none;
}
.cid-upIXqlBw1y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upIXqlBw1y .content-wrap {
  align-items: center;
  justify-content: space-between;
}
.cid-upIXqlBw1y .content-wrap .card {
  justify-content: space-between;
}
.cid-upIXqlBw1y .content-wrapper {
  padding: 0 24px;
}
@media (max-width: 992px) {
  .cid-upIXqlBw1y .content-wrapper {
    padding: 0;
  }
}
.cid-upIXqlBw1y .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-upIXqlBw1y .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  margin-bottom: 0;
  padding: 10px;
  -webkit-text-stroke-color: #150764;
  box-shadow: 4px 4px 0 0 #150764;
  border: 2px solid #150764;
  background-color: #4188ff;
  -webkit-text-stroke-width: .15rem;
}
@media (max-width: 992px) {
  .cid-upIXqlBw1y .content-wrapper .desc-wrapper .mbr-desc {
    -webkit-text-stroke-width: .12rem;
  }
}
.cid-upIXqlBw1y .mbr-section-title {
  color: #150764;
  text-align: center;
}
.cid-upIXqlBw1y .mbr-desc,
.cid-upIXqlBw1y .desc-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-upIXqlBw1y .mbr-section-title,
.cid-upIXqlBw1y .mbr-section-btn {
  color: #fafafa;
}
.cid-upIXqmsL2Y {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d2bfe3;
}
.cid-upIXqmsL2Y .mbr-fallback-image.disabled {
  display: none;
}
.cid-upIXqmsL2Y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upIXqmsL2Y .items-wrapper {
  justify-content: flex-end;
}
.cid-upIXqmsL2Y .items-wrapper .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-upIXqmsL2Y .image-wrapper {
    margin-bottom: 32px;
  }
}
.cid-upIXqmsL2Y .image-wrapper img {
  height: 720px;
  width: 720px;
  object-fit: cover;
  border-radius: 100% !important;
}
@media (max-width: 1700px) {
  .cid-upIXqmsL2Y .image-wrapper img {
    width: 600px;
    height: 600px;
  }
}
@media (max-width: 1440px) {
  .cid-upIXqmsL2Y .image-wrapper img {
    width: 500px;
    height: 500px;
  }
}
@media (max-width: 1200px) {
  .cid-upIXqmsL2Y .image-wrapper img {
    width: 400px;
    height: 400px;
  }
}
@media (max-width: 768px) {
  .cid-upIXqmsL2Y .image-wrapper img {
    width: 260px;
    height: 260px;
  }
}
.cid-upIXqmsL2Y .content-wrapper {
  padding-left: 120px;
}
@media (max-width: 1200px) {
  .cid-upIXqmsL2Y .content-wrapper {
    padding-left: 60px;
  }
}
@media (max-width: 992px) {
  .cid-upIXqmsL2Y .content-wrapper {
    padding-left: 0;
  }
}
.cid-upIXqmsL2Y .content-wrapper .mbr-desc {
  margin-bottom: 8px;
}
.cid-upIXqmsL2Y .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-upIXqmsL2Y .content-wrapper .mbr-text {
  margin-bottom: 24px;
}
.cid-upIXqmsL2Y .mbr-desc {
  color: #272b2e;
}
.cid-upIXqmsL2Y .mbr-section-title {
  color: #272b2e;
}
.cid-upIXqmsL2Y .mbr-text,
.cid-upIXqmsL2Y .text-wrapper {
  color: #272b2e;
}
.cid-upIXqnn424 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  position: relative;
  overflow: hidden;
  background-color: #2a1669;
}
.cid-upIXqnn424 .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-upIXqnn424 .mbr-fallback-image.disabled {
  display: none;
}
.cid-upIXqnn424 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upIXqnn424 .content-wrap {
  margin: 0;
}
.cid-upIXqnn424 .content-wrap .card {
  padding: 0;
}
.cid-upIXqnn424 .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  overflow: hidden;
  background-color: #d57df7;
  padding: 40px 32px;
  border-right: 1px solid #150764;
  border-right: none;
  border-left: 1px solid #150764;
}
@media (max-width: 1640px) {
  .cid-upIXqnn424 .image-wrapper {
    padding: 40px 24px;
  }
}
@media (max-width: 992px) {
  .cid-upIXqnn424 .image-wrapper {
    padding: 40px 0;
  }
}
@media (max-width: 992px) {
  .cid-upIXqnn424 .image-wrapper {
    border-right: none;
    border-bottom: 1px solid #150764;
  }
}
@media (max-width: 992px) {
  .cid-upIXqnn424 .image-wrapper {
    border-left: none;
    border-bottom: 1px solid #150764;
  }
}
.cid-upIXqnn424 .image-wrapper img {
  height: 620px;
  width: 620px;
  object-fit: cover;
  border-radius: 100% !important;
}
@media (max-width: 1640px) {
  .cid-upIXqnn424 .image-wrapper img {
    height: 550px;
    width: 550px;
  }
}
@media (max-width: 1200px) {
  .cid-upIXqnn424 .image-wrapper img {
    height: 350px;
    width: 350px;
  }
}
@media (max-width: 768px) {
  .cid-upIXqnn424 .image-wrapper img {
    height: 250px;
    width: 250px;
  }
}
.cid-upIXqnn424 .content-wrapper {
  padding: 40px 72px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
@media (max-width: 1640px) {
  .cid-upIXqnn424 .content-wrapper {
    padding: 40px 24px;
  }
}
@media (max-width: 992px) {
  .cid-upIXqnn424 .content-wrapper {
    padding: 40px 0;
  }
}
.cid-upIXqnn424 .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-upIXqnn424 .content-wrapper .text-wrapper .text-wrap .mbr-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-upIXqnn424 .content-wrapper .text-wrapper .text-wrap .mbr-text {
    width: 100%;
    margin-bottom: 16px;
  }
}
.cid-upIXqnn424 .mbr-section-title {
  color: #150764;
}
.cid-upIXqnn424 .mbr-text {
  color: #150764;
}
.cid-upIXqnn424 .mbr-section-title,
.cid-upIXqnn424 .mbr-section-btn {
  color: #fafafa;
}
.cid-upIXqnn424 .mbr-text,
.cid-upIXqnn424 .text-wrap {
  color: #fafafa;
}
.cid-upIXqohVE1 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #d2bfe3;
}
.cid-upIXqohVE1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-upIXqohVE1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upJ3OSlQL9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #2a1669;
}
.cid-upJ3OSlQL9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-upJ3OSlQL9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upJ3OSlQL9 .row {
  justify-content: center;
}
.cid-upJ3OSlQL9 .content-wrapper {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-upJ3OSlQL9 .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-upJ3OSlQL9 .content-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-upJ3OSlQL9 .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-upJ3OSlQL9 .item {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-upJ3OSlQL9 .item {
    margin-bottom: 35px;
  }
}
.cid-upJ3OSlQL9 .item .item-wrapper .card-box .icon-wrapper {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upJ3OSlQL9 .item .item-wrapper .card-box .icon-wrapper {
    margin-bottom: 15px;
  }
}
.cid-upJ3OSlQL9 .item .item-wrapper .card-box .icon-wrapper .mbr-iconfont {
  width: 95px;
  height: 95px;
  border-radius: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #000000;
  color: #ffffff;
  font-size: 60px;
}
.cid-upJ3OSlQL9 .item .item-wrapper .card-box .item-title {
  margin-bottom: 10px;
}
.cid-upJ3OSlQL9 .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-upJ3OSlQL9 .border-wrapper {
  width: 100%;
  height: 1px;
  background-color: #fafafa;
}
.cid-upJ3OSlQL9 .mbr-section-title {
  color: #fafafa;
}
.cid-upJ3OSlQL9 .mbr-text {
  color: #000000;
}
.cid-upJ3OSlQL9 .item-title {
  color: #000000;
}
.cid-upJ3OSlQL9 .item-text {
  color: #000000;
}
.cid-upIXqqixQq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d57df7;
}
.cid-upIXqqixQq .mbr-fallback-image.disabled {
  display: none;
}
.cid-upIXqqixQq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upIXqqixQq .content-wrapper {
  position: relative;
  padding: 80px 60px;
  display: flex;
  justify-content: center;
  border: 2px solid #87ceeb;
}
@media (max-width: 992px) {
  .cid-upIXqqixQq .content-wrapper {
    display: block;
    padding: 32px 16px;
  }
}
.cid-upIXqqixQq .content-wrapper .image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-upIXqqixQq .content-wrapper .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .5;
}
.cid-upIXqqixQq .content-wrapper .card-wrapper {
  position: relative;
  z-index: 1;
  width: 75%;
  padding: 48px;
  background-color: #2a1669;
  border: 3px solid #000000;
  box-shadow: 4px 4px 0 0 #000000;
  -webkit-flex: inherit;
}
@media (max-width: 992px) {
  .cid-upIXqqixQq .content-wrapper .card-wrapper {
    width: 100%;
    padding: 32px 16px;
  }
}
.cid-upIXqqixQq .content-wrapper .card-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-upIXqqixQq .content-wrapper .card-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-upIXqqixQq .content-wrapper .card-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-upIXqqixQq .mbr-section-title {
  color: #ff9063;
  text-align: center;
}
.cid-upIXqqixQq .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-upIXqqixQq .mbr-section-title,
.cid-upIXqqixQq .mbr-section-btn {
  color: #fafafa;
}
.cid-upIXqr6qho {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d2bfe3;
}
.cid-upIXqr6qho .mbr-fallback-image.disabled {
  display: none;
}
.cid-upIXqr6qho .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-upIXqr6qho .container {
    padding: 0 16px;
  }
}
.cid-upIXqr6qho .row {
  position: relative;
  z-index: 1;
}
.cid-upIXqr6qho .card {
  justify-content: flex-end;
}
.cid-upIXqr6qho .card-wrapper {
  margin-right: 64px;
  margin-right: 0;
  margin-left: 64px;
}
@media (max-width: 1440px) {
  .cid-upIXqr6qho .card-wrapper {
    margin-right: 0;
  }
}
@media (max-width: 1440px) {
  .cid-upIXqr6qho .card-wrapper {
    margin-left: 0;
  }
}
@media (max-width: 992px) {
  .cid-upIXqr6qho .card-wrapper {
    margin-bottom: 32px;
  }
}
.cid-upIXqr6qho .card-wrapper .image-wrapper {
  position: relative;
  margin-bottom: -8rem;
}
.cid-upIXqr6qho .card-wrapper .image-wrapper img {
  width: 520px;
  height: 520px;
  object-fit: cover;
  border-radius: 100% !important;
}
@media (max-width: 1200px) {
  .cid-upIXqr6qho .card-wrapper .image-wrapper img {
    width: 420px;
    height: 420px;
  }
}
@media (max-width: 768px) {
  .cid-upIXqr6qho .card-wrapper .image-wrapper img {
    width: 260px;
    height: 260px;
  }
}
.cid-upIXqr6qho .card-wrapper .image-wrapper .card-desc {
  position: absolute;
  top: 55%;
  left: -1rem;
  display: inline-flex;
  margin-bottom: 0;
  padding: 6px 16px;
  border-radius: 4rem !important;
  box-shadow: 4px 6px 0 0 #000000;
  background-color: #c6f15c;
  transform: rotate(-4deg);
}
@media (max-width: 992px) {
  .cid-upIXqr6qho .card-wrapper .image-wrapper .card-desc {
    left: .5rem;
  }
}
.cid-upIXqr6qho .card-wrapper .card-wrap {
  background-color: #d57df7;
  box-shadow: 4px 6px 0 0 #2a1669;
  border-radius: 16px;
  padding: 175px 48px 36px;
  margin: 0 50px;
}
@media (max-width: 992px) {
  .cid-upIXqr6qho .card-wrapper .card-wrap {
    margin: 0;
    padding: 150px 24px 24px;
  }
}
.cid-upIXqr6qho .card-wrapper .card-wrap .card-text {
  margin-bottom: 16px;
}
.cid-upIXqr6qho .card-wrapper .card-wrap .person-wrap .card-name {
  margin-bottom: 0;
}
.cid-upIXqr6qho .card-wrapper .card-wrap .person-wrap .card-role {
  margin-bottom: 0;
}
.cid-upIXqr6qho .title-wrapper {
  margin-bottom: 96px;
}
@media (max-width: 992px) {
  .cid-upIXqr6qho .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-upIXqr6qho .title-wrapper .mbr-section-subtitle {
  margin-bottom: 32px;
}
.cid-upIXqr6qho .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-upIXqr6qho .text-wrapper {
  margin-left: 104px;
  margin-left: 0;
  margin-right: 104px;
}
@media (max-width: 1440px) {
  .cid-upIXqr6qho .text-wrapper {
    margin-left: 48px;
  }
}
@media (max-width: 992px) {
  .cid-upIXqr6qho .text-wrapper {
    margin-left: 0;
  }
}
@media (max-width: 1440px) {
  .cid-upIXqr6qho .text-wrapper {
    margin-right: 48px;
  }
}
@media (max-width: 992px) {
  .cid-upIXqr6qho .text-wrapper {
    margin-right: 0;
  }
}
.cid-upIXqr6qho .text-wrapper .mbr-text {
  margin-bottom: 32px;
}
.cid-upIXqr6qho .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-upIXqr6qho .mbr-section-subtitle {
  color: #000000;
  text-align: right;
}
.cid-upIXqr6qho .mbr-text {
  color: #000000;
}
.cid-upIXqr6qho .card-desc {
  color: #000000;
}
.cid-upIXqr6qho .card-text {
  color: #ffffff;
}
.cid-upIXqr6qho .card-name {
  color: #ffffff;
}
.cid-upIXqr6qho .card-role {
  color: #ffffff;
}
.cid-upIXqr6qho .mbr-text,
.cid-upIXqr6qho .mbr-section-btn {
  color: #000000;
}
.cid-upIXqs3ydk {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #2a1669;
}
.cid-upIXqs3ydk .mbr-fallback-image.disabled {
  display: none;
}
.cid-upIXqs3ydk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upIXqs3ydk .content-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  padding: 80px 60px;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .cid-upIXqs3ydk .content-wrapper {
    gap: 16px;
  }
}
@media (max-width: 1199px) {
  .cid-upIXqs3ydk .content-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 992px) {
  .cid-upIXqs3ydk .content-wrapper {
    display: block;
    padding: 32px 16px;
  }
}
.cid-upIXqs3ydk .content-wrapper .image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-upIXqs3ydk .content-wrapper .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .5;
}
@media (max-width: 992px) {
  .cid-upIXqs3ydk .content-wrapper .item {
    margin-bottom: 16px;
  }
  .cid-upIXqs3ydk .content-wrapper .item:last-child {
    margin-bottom: 0;
  }
}
.cid-upIXqs3ydk .content-wrapper .item .item-wrapper {
  position: relative;
  height: 100%;
  border: 3px solid #050f0f;
  box-shadow: 4px 4px 0 0 #050f0f;
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background-color: #d57df7;
}
.cid-upIXqs3ydk .content-wrapper .item .item-wrapper:hover,
.cid-upIXqs3ydk .content-wrapper .item .item-wrapper:focus {
  transform: translate(0.2rem, 0.2rem);
  box-shadow: none;
}
.cid-upIXqs3ydk .content-wrapper .item .item-wrapper .item-content .item-img {
  border-bottom: 3px solid #050f0f;
}
.cid-upIXqs3ydk .content-wrapper .item .item-wrapper .item-content .item-img img {
  height: 390px;
  width: 100%;
  object-fit: cover;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-upIXqs3ydk .content-wrapper .item .item-wrapper .item-content .item-img img {
    height: 350px;
  }
}
.cid-upIXqs3ydk .content-wrapper .item .item-wrapper .item-content .item-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: .8;
}
.cid-upIXqs3ydk .content-wrapper .item .item-wrapper .item-content .text-wrapper {
  padding: 32px;
}
@media (max-width: 1440px) {
  .cid-upIXqs3ydk .content-wrapper .item .item-wrapper .item-content .text-wrapper {
    padding: 32px 24px;
  }
}
@media (max-width: 992px) {
  .cid-upIXqs3ydk .content-wrapper .item .item-wrapper .item-content .text-wrapper {
    padding: 32px 16px;
  }
}
.cid-upIXqs3ydk .content-wrapper .item .item-wrapper .item-content .text-wrapper .item-title {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-upIXqs3ydk .content-wrapper .item .item-wrapper .item-content .text-wrapper .item-title {
    margin-bottom: 24px;
  }
}
.cid-upIXqs3ydk .content-wrapper .item .item-wrapper .item-content .text-wrapper .item-text {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-upIXqs3ydk .content-wrapper .item .item-wrapper .item-content .text-wrapper .item-text {
    margin-bottom: 0;
  }
}
.cid-upIXqs3ydk .content-wrapper .item .item-wrapper .tags-wrapper {
  padding: 0 32px 24px 32px;
}
@media (max-width: 1440px) {
  .cid-upIXqs3ydk .content-wrapper .item .item-wrapper .tags-wrapper {
    padding: 0 24px 24px 24px;
  }
}
@media (max-width: 992px) {
  .cid-upIXqs3ydk .content-wrapper .item .item-wrapper .tags-wrapper {
    padding: 0 16px 24px 16px;
  }
}
.cid-upIXqs3ydk .content-wrapper .item .item-wrapper .tags-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-upIXqs3ydk .content-wrapper .item .item-wrapper .tags-wrapper .list .item-wrap {
  display: inline-flex;
  padding: 11px 20px;
  margin: 0 8px 8px 0;
  background-color: #d3f2ff;
}
.cid-upIXqs3ydk .content-wrapper .item .item-wrapper .tags-wrapper .list .item-wrap:nth-child(2n) {
  background-color: #bafca2;
}
.cid-upIXqs3ydk .content-wrapper .item .item-wrapper .tags-wrapper .list .item-wrap:nth-child(3n) {
  background-color: #fdfd96;
}
.cid-upIXqs3ydk .item-title {
  color: #050f0f;
}
.cid-upIXqs3ydk .item-text {
  color: #050f0f;
}
.cid-upIXqs3ydk .list {
  color: #050f0f;
}
.cid-upIXqtcLjO {
  padding-top: 60px;
  padding-bottom: 60px;
  background: #d2bfe3;
}
.cid-upIXqtcLjO .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-upIXqtcLjO .video-block {
  margin: auto;
}
@media (max-width: 767px) {
  .cid-upIXqtcLjO .video-block {
    width: 100% !important;
  }
}
.cid-upIXqtcLjO .mbr-section-title {
  color: #000000;
}
.cid-upIXqu415M {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #2a1669;
}
.cid-upIXqu415M blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #d57df7;
}
.cid-upIXqu415M .mbr-section-title {
  color: #000000;
}
.cid-upIXqu415M .mbr-text {
  color: #000000;
}
.cid-upIXquVI2F {
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
  background-color: #d2bfe3;
}
.cid-upIXquVI2F .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-upIXquVI2F .mbr-fallback-image.disabled {
  display: none;
}
.cid-upIXquVI2F .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upIXquVI2F .content-wrap {
  justify-content: center;
}
.cid-upIXquVI2F .card-wrapper {
  background-color: #2a1669;
  display: flex;
  border: 1px solid #150764;
}
@media (max-width: 1200px) {
  .cid-upIXquVI2F .card-wrapper {
    display: block;
  }
}
.cid-upIXquVI2F .card-wrapper .title-wrapper {
  width: 35%;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid #150764;
}
@media (max-width: 1640px) {
  .cid-upIXquVI2F .card-wrapper .title-wrapper {
    padding: 40px 24px;
  }
}
@media (max-width: 1200px) {
  .cid-upIXquVI2F .card-wrapper .title-wrapper {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #150764;
  }
}
@media (max-width: 992px) {
  .cid-upIXquVI2F .card-wrapper .title-wrapper {
    padding: 40px 20px;
  }
}
.cid-upIXquVI2F .card-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-upIXquVI2F .card-wrapper .title-wrapper .icon-wrapper .mbr-iconfont {
  font-size: 100px;
  color: #000000;
  display: inline-flex;
}
@media (max-width: 992px) {
  .cid-upIXquVI2F .card-wrapper .title-wrapper .icon-wrapper .mbr-iconfont {
    font-size: 80px;
  }
}
.cid-upIXquVI2F .card-wrapper .list-wrapper {
  width: 65%;
}
@media (max-width: 1200px) {
  .cid-upIXquVI2F .card-wrapper .list-wrapper {
    width: 100%;
  }
}
.cid-upIXquVI2F .card-wrapper .list-wrapper .panel-group .card {
  position: relative;
  padding: 0;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  background-color: transparent;
  border-radius: 0 !important;
}
.cid-upIXquVI2F .card-wrapper .list-wrapper .panel-group .card:first-child .card-header {
  border-top: none !important;
}
.cid-upIXquVI2F .card-wrapper .list-wrapper .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 32px;
  border-top: 1px solid #bbbbbb;
}
@media (max-width: 1940px) {
  .cid-upIXquVI2F .card-wrapper .list-wrapper .panel-group .card .card-header {
    padding: 32px 24px;
  }
}
@media (max-width: 992px) {
  .cid-upIXquVI2F .card-wrapper .list-wrapper .panel-group .card .card-header {
    padding: 32px 20px;
  }
}
.cid-upIXquVI2F .card-wrapper .list-wrapper .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-upIXquVI2F .card-wrapper .list-wrapper .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-upIXquVI2F .card-wrapper .list-wrapper .panel-group .card .card-header .panel-title .icon-wrapper {
  width: 28px;
  height: 28px;
  min-width: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 16px;
  transition: all 0.3s ease-in-out;
}
.cid-upIXquVI2F .card-wrapper .list-wrapper .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  transition: all 0.3s ease-in-out;
  font-size: 28px;
  color: #000000;
}
.cid-upIXquVI2F .card-wrapper .list-wrapper .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper {
  transform: rotate(180deg);
}
.cid-upIXquVI2F .card-wrapper .list-wrapper .panel-group .card .panel-collapse .panel-body {
  padding: 0 32px 64px 32px;
}
@media (max-width: 1940px) {
  .cid-upIXquVI2F .card-wrapper .list-wrapper .panel-group .card .panel-collapse .panel-body {
    padding: 0 24px 64px 24px;
  }
}
@media (max-width: 992px) {
  .cid-upIXquVI2F .card-wrapper .list-wrapper .panel-group .card .panel-collapse .panel-body {
    padding: 0 20px 32px 20px;
  }
}
.cid-upIXquVI2F .card-wrapper .list-wrapper .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-upIXquVI2F .mbr-section-title {
  color: #fafafa;
}
.cid-upIXquVI2F .panel-title-edit {
  color: #150764;
}
.cid-upIXquVI2F .panel-text {
  color: #150764;
}
.cid-upIXquVI2F .panel-title-edit,
.cid-upIXquVI2F .icon-wrapper {
  color: #fafafa;
}
.cid-upIXqwcyFq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #2a1669;
}
.cid-upIXqwcyFq .mbr-fallback-image.disabled {
  display: none;
}
.cid-upIXqwcyFq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upIXqwcyFq .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-upIXqwcyFq .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-upIXqwcyFq .container {
    padding: 0 30px;
  }
}
.cid-upIXqwcyFq .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-upIXqwcyFq .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-upIXqwcyFq .card-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 70px 70px 70px 230px;
  background-color: #d2bfe3;
  border-radius: 16em 3em;
}
@media (max-width: 992px) {
  .cid-upIXqwcyFq .card-wrapper {
    border-radius: 3em 0 3em 0;
    padding: 30px 20px;
    display: block;
  }
}
.cid-upIXqwcyFq .card-wrapper .mbr-number {
  margin: 0 0 0 50px;
  width: 100%;
  white-space: nowrap;
}
@media (max-width: 992px) {
  .cid-upIXqwcyFq .card-wrapper .mbr-number {
    margin: 0 0 16px 0;
  }
}
.cid-upIXqwcyFq .card-wrapper .content-wrap .mbr-card-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upIXqwcyFq .card-wrapper .content-wrap .mbr-card-title {
    margin-bottom: 20px;
  }
}
.cid-upIXqwcyFq .card-wrapper .content-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-upIXqwcyFq .mbr-section-title {
  color: #ffffff;
}
.cid-upIXqwcyFq .mbr-card-title {
  color: #2b2b2b;
}
.cid-upIXqwcyFq .mbr-text {
  color: #000000;
}
.cid-upIXqwcyFq .mbr-number {
  color: #FE5115;
}
.cid-upJDbtQJF9 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-upJDbtQJF9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-upJDbtQJF9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upJDbtQJF9 .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-upJDbtQJF9 .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-upJDbtQJF9 .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #ff2d55;
}
.cid-upJDbtQJF9 .panel-body,
.cid-upJDbtQJF9 .card-header {
  padding: 1rem 0;
}
.cid-upJDbtQJF9 .panel-title-edit {
  color: #000000;
}
.cid-upIXqx6VVT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d57df7;
}
.cid-upIXqx6VVT .mbr-fallback-image.disabled {
  display: none;
}
.cid-upIXqx6VVT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upIXqx6VVT .content-wrapper {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-upIXqx6VVT .content-wrapper {
    padding: 0;
  }
}
.cid-upIXqx6VVT .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-upIXqx6VVT .content-wrapper .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-upIXqx6VVT .content-wrapper .google-map {
  border: 3px solid #050f0f;
  box-shadow: 4px 4px 0 0 #050f0f;
}
.cid-upIXqx6VVT .content-wrapper .google-map iframe {
  height: 600px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-upIXqx6VVT .content-wrapper .google-map iframe {
    height: 350px;
  }
}
.cid-upIXqx6VVT .mbr-section-title {
  color: #050f0f;
}
.cid-upIXqx6VVT .mbr-section-title,
.cid-upIXqx6VVT .mbr-section-btn {
  text-align: center;
}
.cid-upIXqybLMO {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #2a1669;
}
.cid-upIXqybLMO .mbr-fallback-image.disabled {
  display: none;
}
.cid-upIXqybLMO .item-wrapper {
  display: flex;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-upIXqybLMO .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-upIXqybLMO .item-wrapper:hover .iconfont-wrapper:after {
  width: 70px;
  height: 70px;
}
.cid-upIXqybLMO a {
  font-weight: 600;
}
.cid-upIXqybLMO a:hover {
  background: none !important;
}
@media (min-width: 1400px) {
  .cid-upIXqybLMO .col-lg-3,
  .cid-upIXqybLMO .col-xl-3 {
    max-width: 20%;
  }
}
@media (max-width: 1200px) {
  .cid-upIXqybLMO .col-lg-12 {
    min-width: 100% !important;
  }
}
.cid-upIXqybLMO .card-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-upIXqybLMO h5 {
  margin: 0;
}
.cid-upIXqybLMO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upIXqybLMO .iconfont-wrapper {
  position: relative;
}
.cid-upIXqybLMO .mbr-iconfont {
  display: flex;
  padding-right: 1rem;
  font-size: 2rem;
  color: #000000;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 2;
  position: relative;
}
.cid-upIXqybLMO .socicon {
  font-size: 1rem;
  width: 30px;
  height: 30px;
}
.cid-upIXqybLMO .sociconfont-wrapper {
  display: flex;
}
.cid-upIXqybLMO .card-title,
.cid-upIXqybLMO .iconfont-wrapper {
  color: #fafafa;
}
.cid-upIXqybLMO .card-text {
  color: #ffffff;
}
.cid-upIXqybLMO .mbr-section-title {
  color: #000000;
}
.cid-upIXqybLMO .main-title,
.cid-upIXqybLMO .iconfont-wrapper {
  text-align: left;
}
.cid-upIXqzkF0u {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #2a1669;
  overflow: hidden;
}
.cid-upJ3Q7Tily .navbar-dropdown {
  background-color: #d2bfe3 !important;
  padding: 0;
}
.cid-upJ3Q7Tily .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #d2bfe3 !important;
  background: #ffffff;
  background-color: #ffffff !important;
}
.cid-upJ3Q7Tily .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-upJ3Q7Tily .menu_box .navbar.opened,
  .cid-upJ3Q7Tily .menu_box .navbar-collapse {
    background-color: #d2bfe3 !important;
    transition: all 0s ease 0s;
  }
}
.cid-upJ3Q7Tily .navbar-dropdown {
  position: relative !important;
}
.cid-upJ3Q7Tily .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-upJ3Q7Tily .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-upJ3Q7Tily .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-upJ3Q7Tily .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-upJ3Q7Tily .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-upJ3Q7Tily .offcanvas {
    padding: 12rem 64px 0;
    width: 50%;
    background-color: #8a9198;
  }
  .cid-upJ3Q7Tily .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-upJ3Q7Tily .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-upJ3Q7Tily .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-upJ3Q7Tily .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-upJ3Q7Tily .offcanvas-body .mbr-text,
  .cid-upJ3Q7Tily .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-upJ3Q7Tily .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-upJ3Q7Tily .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-upJ3Q7Tily .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #ed9b82;
  }
  .cid-upJ3Q7Tily .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-upJ3Q7Tily .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-upJ3Q7Tily .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-upJ3Q7Tily .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-upJ3Q7Tily ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-upJ3Q7Tily .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-upJ3Q7Tily .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-upJ3Q7Tily .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-upJ3Q7Tily li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-upJ3Q7Tily .lg_brand {
    margin: 0 1rem;
  }
}
.cid-upJ3Q7Tily .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-upJ3Q7Tily .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-upJ3Q7Tily .nav-item {
    margin: 0 !important;
  }
}
.cid-upJ3Q7Tily .nav-item .nav-link {
  transition: all 0.3s ease-out;
}
.cid-upJ3Q7Tily .nav-item .nav-link:hover {
  text-decoration: underline;
}
.cid-upJ3Q7Tily .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-upJ3Q7Tily .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-upJ3Q7Tily .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-upJ3Q7Tily .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-upJ3Q7Tily .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-upJ3Q7Tily .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-upJ3Q7Tily .offcanvas_box {
    display: none;
  }
}
.cid-upJ3Q7Tily .dropdown-item {
  border: none;
  font-weight: 700 !important;
}
.cid-upJ3Q7Tily .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-upJ3Q7Tily .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-upJ3Q7Tily .container {
  display: flex;
  margin: auto;
}
.cid-upJ3Q7Tily .container,
.cid-upJ3Q7Tily .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-upJ3Q7Tily .container,
  .cid-upJ3Q7Tily .container-fluid {
    padding: 0 20px;
  }
}
.cid-upJ3Q7Tily .iconfont-wrapper {
  color: #ffffff;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-upJ3Q7Tily .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-upJ3Q7Tily .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-upJ3Q7Tily .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-upJ3Q7Tily .navbar-nav {
    margin: 0;
  }
}
.cid-upJ3Q7Tily .dropdown-menu,
.cid-upJ3Q7Tily .navbar.opened {
  background-color: false !important;
}
.cid-upJ3Q7Tily .nav-item:focus,
.cid-upJ3Q7Tily .nav-link:focus {
  outline: none;
}
.cid-upJ3Q7Tily .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-upJ3Q7Tily .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-upJ3Q7Tily .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-upJ3Q7Tily .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-upJ3Q7Tily .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-upJ3Q7Tily .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-upJ3Q7Tily .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-upJ3Q7Tily .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-upJ3Q7Tily .navbar.opened {
  transition: all 0.3s;
}
.cid-upJ3Q7Tily .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-upJ3Q7Tily .navbar .navbar-logo img {
  max-width: 53px;
  max-height: 53px;
  object-fit: contain;
  border-radius: 10px;
}
.cid-upJ3Q7Tily .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-upJ3Q7Tily .navbar.collapsed {
  justify-content: center;
}
.cid-upJ3Q7Tily .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-upJ3Q7Tily .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-upJ3Q7Tily .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-upJ3Q7Tily .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-upJ3Q7Tily .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-upJ3Q7Tily .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-upJ3Q7Tily .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-upJ3Q7Tily .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-upJ3Q7Tily .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-upJ3Q7Tily .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-upJ3Q7Tily .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-upJ3Q7Tily .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-upJ3Q7Tily .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-upJ3Q7Tily .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-upJ3Q7Tily .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-upJ3Q7Tily .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-upJ3Q7Tily .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-upJ3Q7Tily .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-upJ3Q7Tily .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-upJ3Q7Tily .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-upJ3Q7Tily .navbar .icons-menu {
    padding: 0;
  }
}
.cid-upJ3Q7Tily .navbar.navbar-short {
  min-height: 60px;
}
.cid-upJ3Q7Tily .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-upJ3Q7Tily .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-upJ3Q7Tily .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-upJ3Q7Tily .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-upJ3Q7Tily .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-upJ3Q7Tily .dropdown-item.active,
.cid-upJ3Q7Tily .dropdown-item:active {
  background-color: transparent;
}
.cid-upJ3Q7Tily .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-upJ3Q7Tily .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-upJ3Q7Tily .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-upJ3Q7Tily .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-upJ3Q7Tily ul.navbar-nav {
  flex-wrap: wrap;
  background-color: #ffffff;
  border-radius: 10px;
  padding: 8px 0;
}
@media (max-width: 992px) {
  .cid-upJ3Q7Tily ul.navbar-nav {
    padding: 8px;
  }
}
.cid-upJ3Q7Tily .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-upJ3Q7Tily button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #d2bfe3;
  background: #ffffff;
}
.cid-upJ3Q7Tily button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ed9b82;
}
.cid-upJ3Q7Tily button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-upJ3Q7Tily button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-upJ3Q7Tily button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-upJ3Q7Tily button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-upJ3Q7Tily nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-upJ3Q7Tily nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-upJ3Q7Tily nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-upJ3Q7Tily nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-upJ3Q7Tily a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-upJ3Q7Tily .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upJ3Q7Tily .navbar {
    height: 70px;
  }
  .cid-upJ3Q7Tily .navbar.opened {
    height: auto;
  }
  .cid-upJ3Q7Tily .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-upJ3Q7Tily .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-upJ3Q7Tily .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-upJ3Q7Tily .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-upJ3Q7Tily .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
}
@media (max-width: 992px) {
  .cid-upJ3Q7Tily .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-upJ3Q7Tily .navbar-caption:hover {
  color: #ff6666;
}
@media (min-width: 992px) {
  .cid-upJ3Q7Tily .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-upJ3Q7Tily .text_widget {
  margin-bottom: 32px;
  color: #ffffff;
}
.cid-upJ3Q7Tily .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-upJ3Q7Tily .text_widget a:hover {
  color: #ff6666 !important;
}
.cid-upJ3Q7Tily .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-upJ3Q7Tily .navbar-caption {
  color: #ffffff;
}
.cid-upJ3Q7Tily .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-upJ3Q7Tily .mbr-section-subtitle,
.cid-upJ3Q7Tily .text_widget,
.cid-upJ3Q7Tily .mbr-section-btn {
  text-align: left;
}
.cid-upJ3Q7Tily a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-upJ3Q8D66q {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #d57df7;
  background: linear-gradient(to right top, #d57df7, #2a1669);
}
.cid-upJ3Q8D66q .img-wrap {
  width: 100%;
  margin-bottom: 3rem;
}
.cid-upJ3Q8D66q .img-wrap img {
  width: 80%;
  margin: auto;
}
.cid-upJ3Q8D66q .mbr-text,
.cid-upJ3Q8D66q .mbr-section-btn {
  color: #ffffff;
}
.cid-upJ3Q8D66q .mbr-section-title {
  color: #ffffff;
}
.cid-upJ3Q8D66q .buttons-wrap .link {
  display: flex;
}
.cid-upJ3Q8D66q .mbr-arrow {
  bottom: 0;
}
.cid-upJ3Q8D66q .mbr-fallback-image.disabled {
  display: none;
}
.cid-upJ3Q8D66q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upJ3Q9sb6t {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d2bfe3;
}
.cid-upJ3Q9sb6t .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-upJ3Q9sb6t .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-upJ3Q9sb6t .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #2a1669;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-upJ3Qa1lPm {
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
  background-color: #2a1669;
}
.cid-upJ3Qa1lPm .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-upJ3Qa1lPm .mbr-fallback-image.disabled {
  display: none;
}
.cid-upJ3Qa1lPm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upJ3Qa1lPm .content-wrap {
  align-items: center;
  justify-content: space-between;
}
.cid-upJ3Qa1lPm .content-wrap .card {
  justify-content: space-between;
}
.cid-upJ3Qa1lPm .content-wrapper {
  padding: 0 24px;
}
@media (max-width: 992px) {
  .cid-upJ3Qa1lPm .content-wrapper {
    padding: 0;
  }
}
.cid-upJ3Qa1lPm .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-upJ3Qa1lPm .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  margin-bottom: 0;
  padding: 10px;
  -webkit-text-stroke-color: #150764;
  box-shadow: 4px 4px 0 0 #150764;
  border: 2px solid #150764;
  background-color: #4188ff;
  -webkit-text-stroke-width: .15rem;
}
@media (max-width: 992px) {
  .cid-upJ3Qa1lPm .content-wrapper .desc-wrapper .mbr-desc {
    -webkit-text-stroke-width: .12rem;
  }
}
.cid-upJ3Qa1lPm .mbr-section-title {
  color: #150764;
  text-align: center;
}
.cid-upJ3Qa1lPm .mbr-desc,
.cid-upJ3Qa1lPm .desc-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-upJ3Qa1lPm .mbr-section-title,
.cid-upJ3Qa1lPm .mbr-section-btn {
  color: #fafafa;
}
.cid-upJ3QaEKv7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d2bfe3;
}
.cid-upJ3QaEKv7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-upJ3QaEKv7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upJ3QaEKv7 .items-wrapper {
  justify-content: flex-end;
}
.cid-upJ3QaEKv7 .items-wrapper .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-upJ3QaEKv7 .image-wrapper {
    margin-bottom: 32px;
  }
}
.cid-upJ3QaEKv7 .image-wrapper img {
  height: 720px;
  width: 720px;
  object-fit: cover;
  border-radius: 100% !important;
}
@media (max-width: 1700px) {
  .cid-upJ3QaEKv7 .image-wrapper img {
    width: 600px;
    height: 600px;
  }
}
@media (max-width: 1440px) {
  .cid-upJ3QaEKv7 .image-wrapper img {
    width: 500px;
    height: 500px;
  }
}
@media (max-width: 1200px) {
  .cid-upJ3QaEKv7 .image-wrapper img {
    width: 400px;
    height: 400px;
  }
}
@media (max-width: 768px) {
  .cid-upJ3QaEKv7 .image-wrapper img {
    width: 260px;
    height: 260px;
  }
}
.cid-upJ3QaEKv7 .content-wrapper {
  padding-left: 120px;
}
@media (max-width: 1200px) {
  .cid-upJ3QaEKv7 .content-wrapper {
    padding-left: 60px;
  }
}
@media (max-width: 992px) {
  .cid-upJ3QaEKv7 .content-wrapper {
    padding-left: 0;
  }
}
.cid-upJ3QaEKv7 .content-wrapper .mbr-desc {
  margin-bottom: 8px;
}
.cid-upJ3QaEKv7 .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-upJ3QaEKv7 .content-wrapper .mbr-text {
  margin-bottom: 24px;
}
.cid-upJ3QaEKv7 .mbr-desc {
  color: #272b2e;
}
.cid-upJ3QaEKv7 .mbr-section-title {
  color: #272b2e;
}
.cid-upJ3QaEKv7 .mbr-text,
.cid-upJ3QaEKv7 .text-wrapper {
  color: #272b2e;
}
.cid-upJ3QblS6v {
  padding-top: 0rem;
  padding-bottom: 0rem;
  position: relative;
  overflow: hidden;
  background-color: #2a1669;
}
.cid-upJ3QblS6v .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-upJ3QblS6v .mbr-fallback-image.disabled {
  display: none;
}
.cid-upJ3QblS6v .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upJ3QblS6v .content-wrap {
  margin: 0;
}
.cid-upJ3QblS6v .content-wrap .card {
  padding: 0;
}
.cid-upJ3QblS6v .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  overflow: hidden;
  background-color: #d57df7;
  padding: 40px 32px;
  border-right: 1px solid #150764;
  border-right: none;
  border-left: 1px solid #150764;
}
@media (max-width: 1640px) {
  .cid-upJ3QblS6v .image-wrapper {
    padding: 40px 24px;
  }
}
@media (max-width: 992px) {
  .cid-upJ3QblS6v .image-wrapper {
    padding: 40px 0;
  }
}
@media (max-width: 992px) {
  .cid-upJ3QblS6v .image-wrapper {
    border-right: none;
    border-bottom: 1px solid #150764;
  }
}
@media (max-width: 992px) {
  .cid-upJ3QblS6v .image-wrapper {
    border-left: none;
    border-bottom: 1px solid #150764;
  }
}
.cid-upJ3QblS6v .image-wrapper img {
  height: 620px;
  width: 620px;
  object-fit: cover;
  border-radius: 100% !important;
}
@media (max-width: 1640px) {
  .cid-upJ3QblS6v .image-wrapper img {
    height: 550px;
    width: 550px;
  }
}
@media (max-width: 1200px) {
  .cid-upJ3QblS6v .image-wrapper img {
    height: 350px;
    width: 350px;
  }
}
@media (max-width: 768px) {
  .cid-upJ3QblS6v .image-wrapper img {
    height: 250px;
    width: 250px;
  }
}
.cid-upJ3QblS6v .content-wrapper {
  padding: 40px 72px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
@media (max-width: 1640px) {
  .cid-upJ3QblS6v .content-wrapper {
    padding: 40px 24px;
  }
}
@media (max-width: 992px) {
  .cid-upJ3QblS6v .content-wrapper {
    padding: 40px 0;
  }
}
.cid-upJ3QblS6v .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-upJ3QblS6v .content-wrapper .text-wrapper .text-wrap .mbr-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-upJ3QblS6v .content-wrapper .text-wrapper .text-wrap .mbr-text {
    width: 100%;
    margin-bottom: 16px;
  }
}
.cid-upJ3QblS6v .mbr-section-title {
  color: #150764;
}
.cid-upJ3QblS6v .mbr-text {
  color: #150764;
}
.cid-upJ3QblS6v .mbr-section-title,
.cid-upJ3QblS6v .mbr-section-btn {
  color: #fafafa;
}
.cid-upJ3QblS6v .mbr-text,
.cid-upJ3QblS6v .text-wrap {
  color: #fafafa;
}
.cid-upJ3QcgzCj {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #d2bfe3;
}
.cid-upJ3QcgzCj .mbr-fallback-image.disabled {
  display: none;
}
.cid-upJ3QcgzCj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upJ3SdPOXd {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #2a1669;
}
.cid-upJ3SdPOXd .mbr-fallback-image.disabled {
  display: none;
}
.cid-upJ3SdPOXd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upJ3SdPOXd .row {
  justify-content: center;
}
.cid-upJ3SdPOXd .content-wrapper {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-upJ3SdPOXd .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-upJ3SdPOXd .content-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-upJ3SdPOXd .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-upJ3SdPOXd .item {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-upJ3SdPOXd .item {
    margin-bottom: 35px;
  }
}
.cid-upJ3SdPOXd .item .item-wrapper .card-box .icon-wrapper {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upJ3SdPOXd .item .item-wrapper .card-box .icon-wrapper {
    margin-bottom: 15px;
  }
}
.cid-upJ3SdPOXd .item .item-wrapper .card-box .icon-wrapper .mbr-iconfont {
  width: 95px;
  height: 95px;
  border-radius: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #000000;
  color: #ffffff;
  font-size: 60px;
}
.cid-upJ3SdPOXd .item .item-wrapper .card-box .item-title {
  margin-bottom: 10px;
}
.cid-upJ3SdPOXd .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-upJ3SdPOXd .border-wrapper {
  width: 100%;
  height: 1px;
  background-color: #fafafa;
}
.cid-upJ3SdPOXd .mbr-section-title {
  color: #fafafa;
}
.cid-upJ3SdPOXd .mbr-text {
  color: #000000;
}
.cid-upJ3SdPOXd .item-title {
  color: #000000;
}
.cid-upJ3SdPOXd .item-text {
  color: #000000;
}
.cid-upJ3QdLdD4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d57df7;
}
.cid-upJ3QdLdD4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-upJ3QdLdD4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upJ3QdLdD4 .content-wrapper {
  position: relative;
  padding: 80px 60px;
  display: flex;
  justify-content: center;
  border: 2px solid #87ceeb;
}
@media (max-width: 992px) {
  .cid-upJ3QdLdD4 .content-wrapper {
    display: block;
    padding: 32px 16px;
  }
}
.cid-upJ3QdLdD4 .content-wrapper .image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-upJ3QdLdD4 .content-wrapper .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .5;
}
.cid-upJ3QdLdD4 .content-wrapper .card-wrapper {
  position: relative;
  z-index: 1;
  width: 75%;
  padding: 48px;
  background-color: #2a1669;
  border: 3px solid #000000;
  box-shadow: 4px 4px 0 0 #000000;
  -webkit-flex: inherit;
}
@media (max-width: 992px) {
  .cid-upJ3QdLdD4 .content-wrapper .card-wrapper {
    width: 100%;
    padding: 32px 16px;
  }
}
.cid-upJ3QdLdD4 .content-wrapper .card-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-upJ3QdLdD4 .content-wrapper .card-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-upJ3QdLdD4 .content-wrapper .card-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-upJ3QdLdD4 .mbr-section-title {
  color: #ff9063;
  text-align: center;
}
.cid-upJ3QdLdD4 .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-upJ3QdLdD4 .mbr-section-title,
.cid-upJ3QdLdD4 .mbr-section-btn {
  color: #fafafa;
}
.cid-upJ3QemjHy {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d2bfe3;
}
.cid-upJ3QemjHy .mbr-fallback-image.disabled {
  display: none;
}
.cid-upJ3QemjHy .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-upJ3QemjHy .container {
    padding: 0 16px;
  }
}
.cid-upJ3QemjHy .row {
  position: relative;
  z-index: 1;
}
.cid-upJ3QemjHy .card {
  justify-content: flex-end;
}
.cid-upJ3QemjHy .card-wrapper {
  margin-right: 64px;
  margin-right: 0;
  margin-left: 64px;
}
@media (max-width: 1440px) {
  .cid-upJ3QemjHy .card-wrapper {
    margin-right: 0;
  }
}
@media (max-width: 1440px) {
  .cid-upJ3QemjHy .card-wrapper {
    margin-left: 0;
  }
}
@media (max-width: 992px) {
  .cid-upJ3QemjHy .card-wrapper {
    margin-bottom: 32px;
  }
}
.cid-upJ3QemjHy .card-wrapper .image-wrapper {
  position: relative;
  margin-bottom: -8rem;
}
.cid-upJ3QemjHy .card-wrapper .image-wrapper img {
  width: 520px;
  height: 520px;
  object-fit: cover;
  border-radius: 100% !important;
}
@media (max-width: 1200px) {
  .cid-upJ3QemjHy .card-wrapper .image-wrapper img {
    width: 420px;
    height: 420px;
  }
}
@media (max-width: 768px) {
  .cid-upJ3QemjHy .card-wrapper .image-wrapper img {
    width: 260px;
    height: 260px;
  }
}
.cid-upJ3QemjHy .card-wrapper .image-wrapper .card-desc {
  position: absolute;
  top: 55%;
  left: -1rem;
  display: inline-flex;
  margin-bottom: 0;
  padding: 6px 16px;
  border-radius: 4rem !important;
  box-shadow: 4px 6px 0 0 #000000;
  background-color: #c6f15c;
  transform: rotate(-4deg);
}
@media (max-width: 992px) {
  .cid-upJ3QemjHy .card-wrapper .image-wrapper .card-desc {
    left: .5rem;
  }
}
.cid-upJ3QemjHy .card-wrapper .card-wrap {
  background-color: #d57df7;
  box-shadow: 4px 6px 0 0 #2a1669;
  border-radius: 16px;
  padding: 175px 48px 36px;
  margin: 0 50px;
}
@media (max-width: 992px) {
  .cid-upJ3QemjHy .card-wrapper .card-wrap {
    margin: 0;
    padding: 150px 24px 24px;
  }
}
.cid-upJ3QemjHy .card-wrapper .card-wrap .card-text {
  margin-bottom: 16px;
}
.cid-upJ3QemjHy .card-wrapper .card-wrap .person-wrap .card-name {
  margin-bottom: 0;
}
.cid-upJ3QemjHy .card-wrapper .card-wrap .person-wrap .card-role {
  margin-bottom: 0;
}
.cid-upJ3QemjHy .title-wrapper {
  margin-bottom: 96px;
}
@media (max-width: 992px) {
  .cid-upJ3QemjHy .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-upJ3QemjHy .title-wrapper .mbr-section-subtitle {
  margin-bottom: 32px;
}
.cid-upJ3QemjHy .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-upJ3QemjHy .text-wrapper {
  margin-left: 104px;
  margin-left: 0;
  margin-right: 104px;
}
@media (max-width: 1440px) {
  .cid-upJ3QemjHy .text-wrapper {
    margin-left: 48px;
  }
}
@media (max-width: 992px) {
  .cid-upJ3QemjHy .text-wrapper {
    margin-left: 0;
  }
}
@media (max-width: 1440px) {
  .cid-upJ3QemjHy .text-wrapper {
    margin-right: 48px;
  }
}
@media (max-width: 992px) {
  .cid-upJ3QemjHy .text-wrapper {
    margin-right: 0;
  }
}
.cid-upJ3QemjHy .text-wrapper .mbr-text {
  margin-bottom: 32px;
}
.cid-upJ3QemjHy .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-upJ3QemjHy .mbr-section-subtitle {
  color: #000000;
  text-align: right;
}
.cid-upJ3QemjHy .mbr-text {
  color: #000000;
}
.cid-upJ3QemjHy .card-desc {
  color: #000000;
}
.cid-upJ3QemjHy .card-text {
  color: #ffffff;
}
.cid-upJ3QemjHy .card-name {
  color: #ffffff;
}
.cid-upJ3QemjHy .card-role {
  color: #ffffff;
}
.cid-upJ3QemjHy .mbr-text,
.cid-upJ3QemjHy .mbr-section-btn {
  color: #000000;
}
.cid-upJ3Qf1ud7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #2a1669;
}
.cid-upJ3Qf1ud7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-upJ3Qf1ud7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upJ3Qf1ud7 .content-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  padding: 80px 60px;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .cid-upJ3Qf1ud7 .content-wrapper {
    gap: 16px;
  }
}
@media (max-width: 1199px) {
  .cid-upJ3Qf1ud7 .content-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 992px) {
  .cid-upJ3Qf1ud7 .content-wrapper {
    display: block;
    padding: 32px 16px;
  }
}
.cid-upJ3Qf1ud7 .content-wrapper .image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-upJ3Qf1ud7 .content-wrapper .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .5;
}
@media (max-width: 992px) {
  .cid-upJ3Qf1ud7 .content-wrapper .item {
    margin-bottom: 16px;
  }
  .cid-upJ3Qf1ud7 .content-wrapper .item:last-child {
    margin-bottom: 0;
  }
}
.cid-upJ3Qf1ud7 .content-wrapper .item .item-wrapper {
  position: relative;
  height: 100%;
  border: 3px solid #050f0f;
  box-shadow: 4px 4px 0 0 #050f0f;
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background-color: #d57df7;
}
.cid-upJ3Qf1ud7 .content-wrapper .item .item-wrapper:hover,
.cid-upJ3Qf1ud7 .content-wrapper .item .item-wrapper:focus {
  transform: translate(0.2rem, 0.2rem);
  box-shadow: none;
}
.cid-upJ3Qf1ud7 .content-wrapper .item .item-wrapper .item-content .item-img {
  border-bottom: 3px solid #050f0f;
}
.cid-upJ3Qf1ud7 .content-wrapper .item .item-wrapper .item-content .item-img img {
  height: 390px;
  width: 100%;
  object-fit: cover;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-upJ3Qf1ud7 .content-wrapper .item .item-wrapper .item-content .item-img img {
    height: 350px;
  }
}
.cid-upJ3Qf1ud7 .content-wrapper .item .item-wrapper .item-content .item-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: .8;
}
.cid-upJ3Qf1ud7 .content-wrapper .item .item-wrapper .item-content .text-wrapper {
  padding: 32px;
}
@media (max-width: 1440px) {
  .cid-upJ3Qf1ud7 .content-wrapper .item .item-wrapper .item-content .text-wrapper {
    padding: 32px 24px;
  }
}
@media (max-width: 992px) {
  .cid-upJ3Qf1ud7 .content-wrapper .item .item-wrapper .item-content .text-wrapper {
    padding: 32px 16px;
  }
}
.cid-upJ3Qf1ud7 .content-wrapper .item .item-wrapper .item-content .text-wrapper .item-title {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-upJ3Qf1ud7 .content-wrapper .item .item-wrapper .item-content .text-wrapper .item-title {
    margin-bottom: 24px;
  }
}
.cid-upJ3Qf1ud7 .content-wrapper .item .item-wrapper .item-content .text-wrapper .item-text {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-upJ3Qf1ud7 .content-wrapper .item .item-wrapper .item-content .text-wrapper .item-text {
    margin-bottom: 0;
  }
}
.cid-upJ3Qf1ud7 .content-wrapper .item .item-wrapper .tags-wrapper {
  padding: 0 32px 24px 32px;
}
@media (max-width: 1440px) {
  .cid-upJ3Qf1ud7 .content-wrapper .item .item-wrapper .tags-wrapper {
    padding: 0 24px 24px 24px;
  }
}
@media (max-width: 992px) {
  .cid-upJ3Qf1ud7 .content-wrapper .item .item-wrapper .tags-wrapper {
    padding: 0 16px 24px 16px;
  }
}
.cid-upJ3Qf1ud7 .content-wrapper .item .item-wrapper .tags-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-upJ3Qf1ud7 .content-wrapper .item .item-wrapper .tags-wrapper .list .item-wrap {
  display: inline-flex;
  padding: 11px 20px;
  margin: 0 8px 8px 0;
  background-color: #d3f2ff;
}
.cid-upJ3Qf1ud7 .content-wrapper .item .item-wrapper .tags-wrapper .list .item-wrap:nth-child(2n) {
  background-color: #bafca2;
}
.cid-upJ3Qf1ud7 .content-wrapper .item .item-wrapper .tags-wrapper .list .item-wrap:nth-child(3n) {
  background-color: #fdfd96;
}
.cid-upJ3Qf1ud7 .item-title {
  color: #050f0f;
}
.cid-upJ3Qf1ud7 .item-text {
  color: #050f0f;
}
.cid-upJ3Qf1ud7 .list {
  color: #050f0f;
}
.cid-upJ3QfQR5Z {
  padding-top: 60px;
  padding-bottom: 60px;
  background: #d2bfe3;
}
.cid-upJ3QfQR5Z .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-upJ3QfQR5Z .video-block {
  margin: auto;
}
@media (max-width: 767px) {
  .cid-upJ3QfQR5Z .video-block {
    width: 100% !important;
  }
}
.cid-upJ3QfQR5Z .mbr-section-title {
  color: #000000;
}
.cid-upJ3QgrzUj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #2a1669;
}
.cid-upJ3QgrzUj blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #d57df7;
}
.cid-upJ3QgrzUj .mbr-section-title {
  color: #000000;
}
.cid-upJ3QgrzUj .mbr-text {
  color: #000000;
}
.cid-upJ3Qh3z1U {
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
  background-color: #d2bfe3;
}
.cid-upJ3Qh3z1U .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-upJ3Qh3z1U .mbr-fallback-image.disabled {
  display: none;
}
.cid-upJ3Qh3z1U .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upJ3Qh3z1U .content-wrap {
  justify-content: center;
}
.cid-upJ3Qh3z1U .card-wrapper {
  background-color: #2a1669;
  display: flex;
  border: 1px solid #150764;
}
@media (max-width: 1200px) {
  .cid-upJ3Qh3z1U .card-wrapper {
    display: block;
  }
}
.cid-upJ3Qh3z1U .card-wrapper .title-wrapper {
  width: 35%;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid #150764;
}
@media (max-width: 1640px) {
  .cid-upJ3Qh3z1U .card-wrapper .title-wrapper {
    padding: 40px 24px;
  }
}
@media (max-width: 1200px) {
  .cid-upJ3Qh3z1U .card-wrapper .title-wrapper {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #150764;
  }
}
@media (max-width: 992px) {
  .cid-upJ3Qh3z1U .card-wrapper .title-wrapper {
    padding: 40px 20px;
  }
}
.cid-upJ3Qh3z1U .card-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-upJ3Qh3z1U .card-wrapper .title-wrapper .icon-wrapper .mbr-iconfont {
  font-size: 100px;
  color: #000000;
  display: inline-flex;
}
@media (max-width: 992px) {
  .cid-upJ3Qh3z1U .card-wrapper .title-wrapper .icon-wrapper .mbr-iconfont {
    font-size: 80px;
  }
}
.cid-upJ3Qh3z1U .card-wrapper .list-wrapper {
  width: 65%;
}
@media (max-width: 1200px) {
  .cid-upJ3Qh3z1U .card-wrapper .list-wrapper {
    width: 100%;
  }
}
.cid-upJ3Qh3z1U .card-wrapper .list-wrapper .panel-group .card {
  position: relative;
  padding: 0;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  background-color: transparent;
  border-radius: 0 !important;
}
.cid-upJ3Qh3z1U .card-wrapper .list-wrapper .panel-group .card:first-child .card-header {
  border-top: none !important;
}
.cid-upJ3Qh3z1U .card-wrapper .list-wrapper .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 32px;
  border-top: 1px solid #bbbbbb;
}
@media (max-width: 1940px) {
  .cid-upJ3Qh3z1U .card-wrapper .list-wrapper .panel-group .card .card-header {
    padding: 32px 24px;
  }
}
@media (max-width: 992px) {
  .cid-upJ3Qh3z1U .card-wrapper .list-wrapper .panel-group .card .card-header {
    padding: 32px 20px;
  }
}
.cid-upJ3Qh3z1U .card-wrapper .list-wrapper .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-upJ3Qh3z1U .card-wrapper .list-wrapper .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-upJ3Qh3z1U .card-wrapper .list-wrapper .panel-group .card .card-header .panel-title .icon-wrapper {
  width: 28px;
  height: 28px;
  min-width: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 16px;
  transition: all 0.3s ease-in-out;
}
.cid-upJ3Qh3z1U .card-wrapper .list-wrapper .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  transition: all 0.3s ease-in-out;
  font-size: 28px;
  color: #000000;
}
.cid-upJ3Qh3z1U .card-wrapper .list-wrapper .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper {
  transform: rotate(180deg);
}
.cid-upJ3Qh3z1U .card-wrapper .list-wrapper .panel-group .card .panel-collapse .panel-body {
  padding: 0 32px 64px 32px;
}
@media (max-width: 1940px) {
  .cid-upJ3Qh3z1U .card-wrapper .list-wrapper .panel-group .card .panel-collapse .panel-body {
    padding: 0 24px 64px 24px;
  }
}
@media (max-width: 992px) {
  .cid-upJ3Qh3z1U .card-wrapper .list-wrapper .panel-group .card .panel-collapse .panel-body {
    padding: 0 20px 32px 20px;
  }
}
.cid-upJ3Qh3z1U .card-wrapper .list-wrapper .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-upJ3Qh3z1U .mbr-section-title {
  color: #fafafa;
}
.cid-upJ3Qh3z1U .panel-title-edit {
  color: #150764;
}
.cid-upJ3Qh3z1U .panel-text {
  color: #150764;
}
.cid-upJ3Qh3z1U .panel-title-edit,
.cid-upJ3Qh3z1U .icon-wrapper {
  color: #fafafa;
}
.cid-upJ3Qi2zWz {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #2a1669;
}
.cid-upJ3Qi2zWz .mbr-fallback-image.disabled {
  display: none;
}
.cid-upJ3Qi2zWz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upJ3Qi2zWz .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-upJ3Qi2zWz .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-upJ3Qi2zWz .container {
    padding: 0 30px;
  }
}
.cid-upJ3Qi2zWz .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-upJ3Qi2zWz .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-upJ3Qi2zWz .card-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 70px 70px 70px 230px;
  background-color: #d2bfe3;
  border-radius: 16em 3em;
}
@media (max-width: 992px) {
  .cid-upJ3Qi2zWz .card-wrapper {
    border-radius: 3em 0 3em 0;
    padding: 30px 20px;
    display: block;
  }
}
.cid-upJ3Qi2zWz .card-wrapper .mbr-number {
  margin: 0 0 0 50px;
  width: 100%;
  white-space: nowrap;
}
@media (max-width: 992px) {
  .cid-upJ3Qi2zWz .card-wrapper .mbr-number {
    margin: 0 0 16px 0;
  }
}
.cid-upJ3Qi2zWz .card-wrapper .content-wrap .mbr-card-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upJ3Qi2zWz .card-wrapper .content-wrap .mbr-card-title {
    margin-bottom: 20px;
  }
}
.cid-upJ3Qi2zWz .card-wrapper .content-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-upJ3Qi2zWz .mbr-section-title {
  color: #ffffff;
}
.cid-upJ3Qi2zWz .mbr-card-title {
  color: #2b2b2b;
}
.cid-upJ3Qi2zWz .mbr-text {
  color: #000000;
}
.cid-upJ3Qi2zWz .mbr-number {
  color: #FE5115;
}
.cid-upJDyB3RiO {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-upJDyB3RiO .mbr-fallback-image.disabled {
  display: none;
}
.cid-upJDyB3RiO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upJDyB3RiO .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-upJDyB3RiO .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-upJDyB3RiO .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #ff2d55;
}
.cid-upJDyB3RiO .panel-body,
.cid-upJDyB3RiO .card-header {
  padding: 1rem 0;
}
.cid-upJDyB3RiO .panel-title-edit {
  color: #000000;
}
.cid-upJ3QiGYDK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d57df7;
}
.cid-upJ3QiGYDK .mbr-fallback-image.disabled {
  display: none;
}
.cid-upJ3QiGYDK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upJ3QiGYDK .content-wrapper {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-upJ3QiGYDK .content-wrapper {
    padding: 0;
  }
}
.cid-upJ3QiGYDK .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-upJ3QiGYDK .content-wrapper .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-upJ3QiGYDK .content-wrapper .google-map {
  border: 3px solid #050f0f;
  box-shadow: 4px 4px 0 0 #050f0f;
}
.cid-upJ3QiGYDK .content-wrapper .google-map iframe {
  height: 600px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-upJ3QiGYDK .content-wrapper .google-map iframe {
    height: 350px;
  }
}
.cid-upJ3QiGYDK .mbr-section-title {
  color: #050f0f;
}
.cid-upJ3QiGYDK .mbr-section-title,
.cid-upJ3QiGYDK .mbr-section-btn {
  text-align: center;
}
.cid-upJ3Qjpc7Q {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #2a1669;
}
.cid-upJ3Qjpc7Q .mbr-fallback-image.disabled {
  display: none;
}
.cid-upJ3Qjpc7Q .item-wrapper {
  display: flex;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-upJ3Qjpc7Q .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-upJ3Qjpc7Q .item-wrapper:hover .iconfont-wrapper:after {
  width: 70px;
  height: 70px;
}
.cid-upJ3Qjpc7Q a {
  font-weight: 600;
}
.cid-upJ3Qjpc7Q a:hover {
  background: none !important;
}
@media (min-width: 1400px) {
  .cid-upJ3Qjpc7Q .col-lg-3,
  .cid-upJ3Qjpc7Q .col-xl-3 {
    max-width: 20%;
  }
}
@media (max-width: 1200px) {
  .cid-upJ3Qjpc7Q .col-lg-12 {
    min-width: 100% !important;
  }
}
.cid-upJ3Qjpc7Q .card-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-upJ3Qjpc7Q h5 {
  margin: 0;
}
.cid-upJ3Qjpc7Q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upJ3Qjpc7Q .iconfont-wrapper {
  position: relative;
}
.cid-upJ3Qjpc7Q .mbr-iconfont {
  display: flex;
  padding-right: 1rem;
  font-size: 2rem;
  color: #000000;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 2;
  position: relative;
}
.cid-upJ3Qjpc7Q .socicon {
  font-size: 1rem;
  width: 30px;
  height: 30px;
}
.cid-upJ3Qjpc7Q .sociconfont-wrapper {
  display: flex;
}
.cid-upJ3Qjpc7Q .card-title,
.cid-upJ3Qjpc7Q .iconfont-wrapper {
  color: #fafafa;
}
.cid-upJ3Qjpc7Q .card-text {
  color: #ffffff;
}
.cid-upJ3Qjpc7Q .mbr-section-title {
  color: #000000;
}
.cid-upJ3Qjpc7Q .main-title,
.cid-upJ3Qjpc7Q .iconfont-wrapper {
  text-align: left;
}
.cid-upJ3QksSwj {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #2a1669;
  overflow: hidden;
}
