body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Noto Sans', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Jost', 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: #39f514 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #39f514 !important;
  border-color: #39f514 !important;
  color: #020a00 !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: #22ab07 !important;
  border-color: #22ab07 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #020a00 !important;
  background-color: #22ab07 !important;
  border-color: #22ab07 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #f2480b !important;
  border-color: #f2480b !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: #9f2f07 !important;
  border-color: #9f2f07 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #9f2f07 !important;
  border-color: #9f2f07 !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: #ff9966 !important;
  border-color: #ff9966 !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: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !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: #39f514;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #22ab07 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #020a00 !important;
  background-color: #39f514 !important;
  border-color: #39f514 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #f2480b;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #9f2f07 !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: #f2480b !important;
  border-color: #f2480b !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: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #39f514 !important;
}
.text-secondary {
  color: #f2480b !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #1f9c07 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #902b07 !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: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #39f514;
}
.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: #ff9966;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #39f514;
  border-color: #39f514;
  color: #072201;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #39f514;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #defdd8;
}
.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: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Jost', 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: #39f514 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', 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: #39f514;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #39f514;
  color: #000000;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #39f514;
}
.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: #39f514;
  border-bottom-color: #39f514;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #39f514 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #f2480b !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='%2339f514' %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-snpTf1CxMf {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-snpTf1CxMf nav.navbar {
  position: fixed;
}
.cid-snpTf1CxMf .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-snpTf1CxMf .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-snpTf1CxMf .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-snpTf1CxMf .dropdown-item:hover,
.cid-snpTf1CxMf .dropdown-item:focus {
  background: #39f514 !important;
  color: white !important;
}
.cid-snpTf1CxMf .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-snpTf1CxMf .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-snpTf1CxMf .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-snpTf1CxMf .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-snpTf1CxMf .nav-link {
  position: relative;
}
.cid-snpTf1CxMf .container {
  display: flex;
  margin: auto;
}
.cid-snpTf1CxMf .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-snpTf1CxMf .dropdown-menu,
.cid-snpTf1CxMf .navbar.opened {
  background: #ffffff !important;
}
.cid-snpTf1CxMf .nav-item:focus,
.cid-snpTf1CxMf .nav-link:focus {
  outline: none;
}
.cid-snpTf1CxMf .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-snpTf1CxMf .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-snpTf1CxMf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-snpTf1CxMf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-snpTf1CxMf .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-snpTf1CxMf .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-snpTf1CxMf .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-snpTf1CxMf .navbar.opened {
  transition: all 0.3s;
}
.cid-snpTf1CxMf .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-snpTf1CxMf .navbar .navbar-logo img {
  width: auto;
}
.cid-snpTf1CxMf .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-snpTf1CxMf .navbar.collapsed {
  justify-content: center;
}
.cid-snpTf1CxMf .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-snpTf1CxMf .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-snpTf1CxMf .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-snpTf1CxMf .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-snpTf1CxMf .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-snpTf1CxMf .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-snpTf1CxMf .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-snpTf1CxMf .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-snpTf1CxMf .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-snpTf1CxMf .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-snpTf1CxMf .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-snpTf1CxMf .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-snpTf1CxMf .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-snpTf1CxMf .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-snpTf1CxMf .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-snpTf1CxMf .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-snpTf1CxMf .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-snpTf1CxMf .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-snpTf1CxMf .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-snpTf1CxMf .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-snpTf1CxMf .navbar.navbar-short {
  min-height: 60px;
}
.cid-snpTf1CxMf .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-snpTf1CxMf .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-snpTf1CxMf .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-snpTf1CxMf .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-snpTf1CxMf .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-snpTf1CxMf .dropdown-item.active,
.cid-snpTf1CxMf .dropdown-item:active {
  background-color: transparent;
}
.cid-snpTf1CxMf .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-snpTf1CxMf .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-snpTf1CxMf .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-snpTf1CxMf .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-snpTf1CxMf .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-snpTf1CxMf .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-snpTf1CxMf ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-snpTf1CxMf .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-snpTf1CxMf button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-snpTf1CxMf button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-snpTf1CxMf button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-snpTf1CxMf button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-snpTf1CxMf button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-snpTf1CxMf button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-snpTf1CxMf nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-snpTf1CxMf nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-snpTf1CxMf nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-snpTf1CxMf nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-snpTf1CxMf .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-snpTf1CxMf a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-snpTf1CxMf .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-snpTf1CxMf .navbar {
    height: 70px;
  }
  .cid-snpTf1CxMf .navbar.opened {
    height: auto;
  }
  .cid-snpTf1CxMf .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uzkxH6axwj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzkxH6axwj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/background13.webp");
}
.cid-uzkxH6axwj .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-uzkxH6axwj .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-uzkxH6axwj .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-uzkxH6axwj .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-uzkytl8ZFB {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uzkytl8ZFB img,
.cid-uzkytl8ZFB .item-img {
  width: 100%;
}
.cid-uzkytl8ZFB .item:focus,
.cid-uzkytl8ZFB span:focus {
  outline: none;
}
.cid-uzkytl8ZFB .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uzkytl8ZFB .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uzkytl8ZFB .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uzkytl8ZFB .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uzkytl8ZFB .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uzkytl8ZFB .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uzkytl8ZFB .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uzkytl8ZFB .mbr-section-title {
  color: #232323;
}
.cid-uzkytl8ZFB .mbr-text,
.cid-uzkytl8ZFB .mbr-section-btn {
  text-align: left;
}
.cid-uzkytl8ZFB .item-title {
  text-align: left;
}
.cid-uzkytl8ZFB .item-subtitle {
  text-align: center;
}
.cid-uzkyWdEBX3 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f3f2f2;
}
.cid-uzkyWdEBX3 img,
.cid-uzkyWdEBX3 .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uzkyWdEBX3 .item:focus,
.cid-uzkyWdEBX3 span:focus {
  outline: none;
}
.cid-uzkyWdEBX3 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uzkyWdEBX3 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uzkyWdEBX3 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uzkyWdEBX3 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uzkyWdEBX3 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uzkyWdEBX3 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uzkyWdEBX3 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uzkyWdEBX3 .mbr-section-title {
  color: #232323;
}
.cid-uzkyWdEBX3 .mbr-text,
.cid-uzkyWdEBX3 .mbr-section-btn {
  text-align: left;
}
.cid-uzkyWdEBX3 .item-title {
  text-align: left;
}
.cid-uzkyWdEBX3 .item-subtitle {
  text-align: center;
}
.cid-uzkzmAzVfx {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #f3f2f2;
}
.cid-uzkzmAzVfx img,
.cid-uzkzmAzVfx .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uzkzmAzVfx .item:focus,
.cid-uzkzmAzVfx span:focus {
  outline: none;
}
.cid-uzkzmAzVfx .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uzkzmAzVfx .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uzkzmAzVfx .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uzkzmAzVfx .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uzkzmAzVfx .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uzkzmAzVfx .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uzkzmAzVfx .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uzkzmAzVfx .mbr-section-title {
  color: #232323;
}
.cid-uzkzmAzVfx .mbr-text,
.cid-uzkzmAzVfx .mbr-section-btn {
  text-align: left;
}
.cid-uzkzmAzVfx .item-title {
  text-align: left;
}
.cid-uzkzmAzVfx .item-subtitle {
  text-align: center;
}
.cid-uzkzFdkmHJ {
  padding-top: 2rem;
  padding-bottom: 3rem;
}
@media (min-width: 992px) {
  .cid-uzkzFdkmHJ .text-wrapper {
    padding: 2rem;
  }
}
.cid-uzkzFdkmHJ .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uzkzFdkmHJ .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uzkzSYixcp {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #f3f2f2;
}
.cid-uzkzSYixcp img,
.cid-uzkzSYixcp .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uzkzSYixcp .item:focus,
.cid-uzkzSYixcp span:focus {
  outline: none;
}
.cid-uzkzSYixcp .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uzkzSYixcp .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uzkzSYixcp .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uzkzSYixcp .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uzkzSYixcp .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uzkzSYixcp .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uzkzSYixcp .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uzkzSYixcp .mbr-section-title {
  color: #232323;
}
.cid-uzkzSYixcp .mbr-text,
.cid-uzkzSYixcp .mbr-section-btn {
  text-align: left;
}
.cid-uzkzSYixcp .item-title {
  text-align: left;
}
.cid-uzkzSYixcp .item-subtitle {
  text-align: center;
}
.cid-uzkAaVOtrT {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #c1dfe3;
}
.cid-uzkAaVOtrT img,
.cid-uzkAaVOtrT .item-img {
  width: 100%;
}
.cid-uzkAaVOtrT .item:focus,
.cid-uzkAaVOtrT span:focus {
  outline: none;
}
.cid-uzkAaVOtrT .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uzkAaVOtrT .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uzkAaVOtrT .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uzkAaVOtrT .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uzkAaVOtrT .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uzkAaVOtrT .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uzkAaVOtrT .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uzkAaVOtrT .mbr-section-title {
  color: #232323;
}
.cid-uzkAaVOtrT .mbr-text,
.cid-uzkAaVOtrT .mbr-section-btn {
  text-align: left;
}
.cid-uzkAaVOtrT .item-title {
  text-align: left;
}
.cid-uzkAaVOtrT .item-subtitle {
  text-align: center;
}
.cid-uzkAqp6OpN {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #bddfe4;
}
.cid-uzkAqp6OpN img,
.cid-uzkAqp6OpN .item-img {
  width: 100%;
}
.cid-uzkAqp6OpN .item:focus,
.cid-uzkAqp6OpN span:focus {
  outline: none;
}
.cid-uzkAqp6OpN .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uzkAqp6OpN .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uzkAqp6OpN .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uzkAqp6OpN .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uzkAqp6OpN .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uzkAqp6OpN .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uzkAqp6OpN .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uzkAqp6OpN .mbr-section-title {
  color: #232323;
}
.cid-uzkAqp6OpN .mbr-text,
.cid-uzkAqp6OpN .mbr-section-btn {
  text-align: left;
}
.cid-uzkAqp6OpN .item-title {
  text-align: left;
}
.cid-uzkAqp6OpN .item-subtitle {
  text-align: center;
}
.cid-spp5Bganfo {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #5f337d;
}
.cid-spp5Bganfo .row-links {
  width: 100%;
  justify-content: center;
}
.cid-spp5Bganfo .social-row {
  width: 100%;
  justify-content: center;
}
.cid-spp5Bganfo .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-spp5Bganfo .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-spp5Bganfo .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-spp5Bganfo .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-spp5Bganfo .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-spp5Bganfo .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-spp5Bganfo .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-spp5Bganfo .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-spp5Bganfo .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-spp5Bganfo .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-spp5Bganfo .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-spp5Bganfo .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-spp5Bganfo .media-container-row .mbr-text {
  text-align: center;
}
.cid-ubxHTpHNSf.popup-builder {
  background-color: #ffffff;
}
.cid-ubxHTpHNSf.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-ubxHTpHNSf.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-ubxHTpHNSf .modal-content,
.cid-ubxHTpHNSf .modal-dialog {
  height: auto;
}
.cid-ubxHTpHNSf .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-ubxHTpHNSf .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-ubxHTpHNSf .form-wrapper .mbr-form .form-group,
  .cid-ubxHTpHNSf .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-ubxHTpHNSf .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-ubxHTpHNSf .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-ubxHTpHNSf .mbr-text {
  text-align: center;
}
.cid-ubxHTpHNSf .pt-0 {
  padding-top: 0 !important;
}
.cid-ubxHTpHNSf .pb-0 {
  padding-bottom: 0 !important;
}
.cid-ubxHTpHNSf .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-ubxHTpHNSf .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-ubxHTpHNSf .modal-open {
  overflow: hidden;
}
.cid-ubxHTpHNSf .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-ubxHTpHNSf .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-ubxHTpHNSf .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-ubxHTpHNSf .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-ubxHTpHNSf .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-ubxHTpHNSf .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-ubxHTpHNSf .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-ubxHTpHNSf .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-ubxHTpHNSf .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-ubxHTpHNSf .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-ubxHTpHNSf .modal-backdrop.fade {
  opacity: 0;
}
.cid-ubxHTpHNSf .modal-backdrop.show {
  opacity: .5;
}
.cid-ubxHTpHNSf .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-ubxHTpHNSf .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-ubxHTpHNSf .modal-header {
    padding: 1rem;
  }
}
.cid-ubxHTpHNSf .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-ubxHTpHNSf .modal-header .close svg {
  fill: #353535;
}
.cid-ubxHTpHNSf .modal-header .close:hover {
  opacity: 1;
}
.cid-ubxHTpHNSf .modal-header .close:focus {
  outline: none;
}
.cid-ubxHTpHNSf .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-ubxHTpHNSf .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-ubxHTpHNSf .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ubxHTpHNSf .modal-body {
    padding: 1rem;
  }
}
.cid-ubxHTpHNSf .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-ubxHTpHNSf .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ubxHTpHNSf .modal-footer {
    padding: 1rem;
  }
}
.cid-ubxHTpHNSf .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-ubxHTpHNSf .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-ubxHTpHNSf .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-ubxHTpHNSf .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-ubxHTpHNSf .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-ubxHTpHNSf .modal-lg,
  .cid-ubxHTpHNSf .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-ubxHTpHNSf .modal-xl {
    max-width: 1140px;
  }
}
.cid-ubxHTpHNSf .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-ubxHTpHNSf .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-ubxHTpHNSf .form-group {
  margin-bottom: 1rem;
}
.cid-ubxHTpHNSf .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-ubxHTpHNSf .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-ubxHTpHNSf .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-ubxHTpHNSf .mbr-section-btn {
  margin: 0;
}
.cid-ubxHTpHNSf .mbr-section-btn .btn {
  margin: 0;
}
.cid-snpTf1CxMf {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-snpTf1CxMf nav.navbar {
  position: fixed;
}
.cid-snpTf1CxMf .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-snpTf1CxMf .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-snpTf1CxMf .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-snpTf1CxMf .dropdown-item:hover,
.cid-snpTf1CxMf .dropdown-item:focus {
  background: #39f514 !important;
  color: white !important;
}
.cid-snpTf1CxMf .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-snpTf1CxMf .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-snpTf1CxMf .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-snpTf1CxMf .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-snpTf1CxMf .nav-link {
  position: relative;
}
.cid-snpTf1CxMf .container {
  display: flex;
  margin: auto;
}
.cid-snpTf1CxMf .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-snpTf1CxMf .dropdown-menu,
.cid-snpTf1CxMf .navbar.opened {
  background: #ffffff !important;
}
.cid-snpTf1CxMf .nav-item:focus,
.cid-snpTf1CxMf .nav-link:focus {
  outline: none;
}
.cid-snpTf1CxMf .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-snpTf1CxMf .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-snpTf1CxMf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-snpTf1CxMf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-snpTf1CxMf .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-snpTf1CxMf .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-snpTf1CxMf .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-snpTf1CxMf .navbar.opened {
  transition: all 0.3s;
}
.cid-snpTf1CxMf .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-snpTf1CxMf .navbar .navbar-logo img {
  width: auto;
}
.cid-snpTf1CxMf .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-snpTf1CxMf .navbar.collapsed {
  justify-content: center;
}
.cid-snpTf1CxMf .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-snpTf1CxMf .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-snpTf1CxMf .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-snpTf1CxMf .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-snpTf1CxMf .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-snpTf1CxMf .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-snpTf1CxMf .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-snpTf1CxMf .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-snpTf1CxMf .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-snpTf1CxMf .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-snpTf1CxMf .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-snpTf1CxMf .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-snpTf1CxMf .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-snpTf1CxMf .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-snpTf1CxMf .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-snpTf1CxMf .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-snpTf1CxMf .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-snpTf1CxMf .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-snpTf1CxMf .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-snpTf1CxMf .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-snpTf1CxMf .navbar.navbar-short {
  min-height: 60px;
}
.cid-snpTf1CxMf .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-snpTf1CxMf .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-snpTf1CxMf .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-snpTf1CxMf .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-snpTf1CxMf .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-snpTf1CxMf .dropdown-item.active,
.cid-snpTf1CxMf .dropdown-item:active {
  background-color: transparent;
}
.cid-snpTf1CxMf .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-snpTf1CxMf .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-snpTf1CxMf .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-snpTf1CxMf .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-snpTf1CxMf .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-snpTf1CxMf .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-snpTf1CxMf ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-snpTf1CxMf .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-snpTf1CxMf button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-snpTf1CxMf button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-snpTf1CxMf button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-snpTf1CxMf button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-snpTf1CxMf button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-snpTf1CxMf button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-snpTf1CxMf nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-snpTf1CxMf nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-snpTf1CxMf nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-snpTf1CxMf nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-snpTf1CxMf .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-snpTf1CxMf a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-snpTf1CxMf .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-snpTf1CxMf .navbar {
    height: 70px;
  }
  .cid-snpTf1CxMf .navbar.opened {
    height: auto;
  }
  .cid-snpTf1CxMf .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uk9xa2d3Fw {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #ffffff;
}
.cid-uk9xa2d3Fw .row {
  flex-direction: row-reverse;
}
.cid-uk9xa2d3Fw p {
  margin: 0;
}
.cid-uk9xa2d3Fw .mbr-section-head {
  margin-bottom: 2rem;
}
.cid-uk9xa2d3Fw .mbr-section-title {
  text-align: center;
}
.cid-uk9xa2d3Fw .mbr-section-subtitle {
  text-align: center;
}
.cid-uk9xa2d3Fw .card-container {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uk9xa2d3Fw .card-container {
    margin-bottom: 2rem;
  }
}
.cid-uk9xa2d3Fw .card-wrapper {
  width: 50%;
  display: flex;
  flex: auto;
  flex-grow: 0;
  padding: 1rem 1rem 2rem 0;
  align-items: baseline;
}
@media (max-width: 991px) {
  .cid-uk9xa2d3Fw .card-wrapper {
    width: 100%;
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .cid-uk9xa2d3Fw .card-wrapper {
    padding-bottom: 1rem;
  }
}
.cid-uk9xa2d3Fw .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #33d5ad;
}
.cid-uk9xa2d3Fw .google-map {
  height: 100%;
  position: relative;
}
.cid-uk9xa2d3Fw .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uk9xa2d3Fw .google-map [data-state-details] {
  color: #1f1437;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uk9xa2d3Fw .google-map[data-state] {
  background: #f3edf7;
}
.cid-uk9xa2d3Fw .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uk9xa2d3Fw .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-spp5Bganfo {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #5f337d;
}
.cid-spp5Bganfo .row-links {
  width: 100%;
  justify-content: center;
}
.cid-spp5Bganfo .social-row {
  width: 100%;
  justify-content: center;
}
.cid-spp5Bganfo .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-spp5Bganfo .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-spp5Bganfo .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-spp5Bganfo .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-spp5Bganfo .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-spp5Bganfo .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-spp5Bganfo .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-spp5Bganfo .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-spp5Bganfo .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-spp5Bganfo .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-spp5Bganfo .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-spp5Bganfo .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-spp5Bganfo .media-container-row .mbr-text {
  text-align: center;
}
.cid-snpTf1CxMf {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-snpTf1CxMf nav.navbar {
  position: fixed;
}
.cid-snpTf1CxMf .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-snpTf1CxMf .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-snpTf1CxMf .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-snpTf1CxMf .dropdown-item:hover,
.cid-snpTf1CxMf .dropdown-item:focus {
  background: #39f514 !important;
  color: white !important;
}
.cid-snpTf1CxMf .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-snpTf1CxMf .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-snpTf1CxMf .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-snpTf1CxMf .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-snpTf1CxMf .nav-link {
  position: relative;
}
.cid-snpTf1CxMf .container {
  display: flex;
  margin: auto;
}
.cid-snpTf1CxMf .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-snpTf1CxMf .dropdown-menu,
.cid-snpTf1CxMf .navbar.opened {
  background: #ffffff !important;
}
.cid-snpTf1CxMf .nav-item:focus,
.cid-snpTf1CxMf .nav-link:focus {
  outline: none;
}
.cid-snpTf1CxMf .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-snpTf1CxMf .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-snpTf1CxMf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-snpTf1CxMf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-snpTf1CxMf .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-snpTf1CxMf .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-snpTf1CxMf .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-snpTf1CxMf .navbar.opened {
  transition: all 0.3s;
}
.cid-snpTf1CxMf .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-snpTf1CxMf .navbar .navbar-logo img {
  width: auto;
}
.cid-snpTf1CxMf .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-snpTf1CxMf .navbar.collapsed {
  justify-content: center;
}
.cid-snpTf1CxMf .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-snpTf1CxMf .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-snpTf1CxMf .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-snpTf1CxMf .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-snpTf1CxMf .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-snpTf1CxMf .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-snpTf1CxMf .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-snpTf1CxMf .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-snpTf1CxMf .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-snpTf1CxMf .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-snpTf1CxMf .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-snpTf1CxMf .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-snpTf1CxMf .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-snpTf1CxMf .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-snpTf1CxMf .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-snpTf1CxMf .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-snpTf1CxMf .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-snpTf1CxMf .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-snpTf1CxMf .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-snpTf1CxMf .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-snpTf1CxMf .navbar.navbar-short {
  min-height: 60px;
}
.cid-snpTf1CxMf .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-snpTf1CxMf .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-snpTf1CxMf .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-snpTf1CxMf .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-snpTf1CxMf .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-snpTf1CxMf .dropdown-item.active,
.cid-snpTf1CxMf .dropdown-item:active {
  background-color: transparent;
}
.cid-snpTf1CxMf .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-snpTf1CxMf .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-snpTf1CxMf .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-snpTf1CxMf .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-snpTf1CxMf .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-snpTf1CxMf .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-snpTf1CxMf ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-snpTf1CxMf .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-snpTf1CxMf button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-snpTf1CxMf button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-snpTf1CxMf button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-snpTf1CxMf button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-snpTf1CxMf button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-snpTf1CxMf button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-snpTf1CxMf nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-snpTf1CxMf nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-snpTf1CxMf nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-snpTf1CxMf nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-snpTf1CxMf .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-snpTf1CxMf a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-snpTf1CxMf .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-snpTf1CxMf .navbar {
    height: 70px;
  }
  .cid-snpTf1CxMf .navbar.opened {
    height: auto;
  }
  .cid-snpTf1CxMf .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sqDsy9xX6c {
  background-color: #efede7;
}
.cid-sqDsy9xX6c ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-sqDsy9xX6c li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-sqDsy9xX6c ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #6592e6;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-sqDsy9xX6c H3 {
  text-align: center;
}
.cid-sqDsyWP3xh {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #efede7;
}
.cid-tTJLm3cCxq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-spp5Bganfo {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #5f337d;
}
.cid-spp5Bganfo .row-links {
  width: 100%;
  justify-content: center;
}
.cid-spp5Bganfo .social-row {
  width: 100%;
  justify-content: center;
}
.cid-spp5Bganfo .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-spp5Bganfo .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-spp5Bganfo .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-spp5Bganfo .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-spp5Bganfo .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-spp5Bganfo .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-spp5Bganfo .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-spp5Bganfo .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-spp5Bganfo .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-spp5Bganfo .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-spp5Bganfo .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-spp5Bganfo .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-spp5Bganfo .media-container-row .mbr-text {
  text-align: center;
}
.cid-snpTf1CxMf {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-snpTf1CxMf nav.navbar {
  position: fixed;
}
.cid-snpTf1CxMf .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-snpTf1CxMf .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-snpTf1CxMf .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-snpTf1CxMf .dropdown-item:hover,
.cid-snpTf1CxMf .dropdown-item:focus {
  background: #39f514 !important;
  color: white !important;
}
.cid-snpTf1CxMf .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-snpTf1CxMf .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-snpTf1CxMf .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-snpTf1CxMf .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-snpTf1CxMf .nav-link {
  position: relative;
}
.cid-snpTf1CxMf .container {
  display: flex;
  margin: auto;
}
.cid-snpTf1CxMf .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-snpTf1CxMf .dropdown-menu,
.cid-snpTf1CxMf .navbar.opened {
  background: #ffffff !important;
}
.cid-snpTf1CxMf .nav-item:focus,
.cid-snpTf1CxMf .nav-link:focus {
  outline: none;
}
.cid-snpTf1CxMf .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-snpTf1CxMf .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-snpTf1CxMf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-snpTf1CxMf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-snpTf1CxMf .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-snpTf1CxMf .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-snpTf1CxMf .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-snpTf1CxMf .navbar.opened {
  transition: all 0.3s;
}
.cid-snpTf1CxMf .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-snpTf1CxMf .navbar .navbar-logo img {
  width: auto;
}
.cid-snpTf1CxMf .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-snpTf1CxMf .navbar.collapsed {
  justify-content: center;
}
.cid-snpTf1CxMf .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-snpTf1CxMf .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-snpTf1CxMf .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-snpTf1CxMf .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-snpTf1CxMf .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-snpTf1CxMf .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-snpTf1CxMf .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-snpTf1CxMf .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-snpTf1CxMf .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-snpTf1CxMf .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-snpTf1CxMf .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-snpTf1CxMf .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-snpTf1CxMf .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-snpTf1CxMf .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-snpTf1CxMf .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-snpTf1CxMf .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-snpTf1CxMf .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-snpTf1CxMf .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-snpTf1CxMf .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-snpTf1CxMf .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-snpTf1CxMf .navbar.navbar-short {
  min-height: 60px;
}
.cid-snpTf1CxMf .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-snpTf1CxMf .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-snpTf1CxMf .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-snpTf1CxMf .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-snpTf1CxMf .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-snpTf1CxMf .dropdown-item.active,
.cid-snpTf1CxMf .dropdown-item:active {
  background-color: transparent;
}
.cid-snpTf1CxMf .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-snpTf1CxMf .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-snpTf1CxMf .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-snpTf1CxMf .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-snpTf1CxMf .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-snpTf1CxMf .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-snpTf1CxMf ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-snpTf1CxMf .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-snpTf1CxMf button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-snpTf1CxMf button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-snpTf1CxMf button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-snpTf1CxMf button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-snpTf1CxMf button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-snpTf1CxMf button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-snpTf1CxMf nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-snpTf1CxMf nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-snpTf1CxMf nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-snpTf1CxMf nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-snpTf1CxMf .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-snpTf1CxMf a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-snpTf1CxMf .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-snpTf1CxMf .navbar {
    height: 70px;
  }
  .cid-snpTf1CxMf .navbar.opened {
    height: auto;
  }
  .cid-snpTf1CxMf .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sqPppwUGlx {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #efede7;
}
.cid-sqPppwUGlx ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-sqPppwUGlx li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-sqPppwUGlx ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #6592e6;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-sqPppwUGlx H3 {
  text-align: center;
}
.cid-sqPpqryAe8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #efede7;
}
.cid-spp5Bganfo {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #5f337d;
}
.cid-spp5Bganfo .row-links {
  width: 100%;
  justify-content: center;
}
.cid-spp5Bganfo .social-row {
  width: 100%;
  justify-content: center;
}
.cid-spp5Bganfo .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-spp5Bganfo .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-spp5Bganfo .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-spp5Bganfo .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-spp5Bganfo .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-spp5Bganfo .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-spp5Bganfo .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-spp5Bganfo .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-spp5Bganfo .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-spp5Bganfo .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-spp5Bganfo .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-spp5Bganfo .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-spp5Bganfo .media-container-row .mbr-text {
  text-align: center;
}
.cid-snpTf1CxMf {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-snpTf1CxMf nav.navbar {
  position: fixed;
}
.cid-snpTf1CxMf .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-snpTf1CxMf .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-snpTf1CxMf .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-snpTf1CxMf .dropdown-item:hover,
.cid-snpTf1CxMf .dropdown-item:focus {
  background: #39f514 !important;
  color: white !important;
}
.cid-snpTf1CxMf .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-snpTf1CxMf .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-snpTf1CxMf .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-snpTf1CxMf .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-snpTf1CxMf .nav-link {
  position: relative;
}
.cid-snpTf1CxMf .container {
  display: flex;
  margin: auto;
}
.cid-snpTf1CxMf .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-snpTf1CxMf .dropdown-menu,
.cid-snpTf1CxMf .navbar.opened {
  background: #ffffff !important;
}
.cid-snpTf1CxMf .nav-item:focus,
.cid-snpTf1CxMf .nav-link:focus {
  outline: none;
}
.cid-snpTf1CxMf .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-snpTf1CxMf .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-snpTf1CxMf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-snpTf1CxMf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-snpTf1CxMf .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-snpTf1CxMf .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-snpTf1CxMf .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-snpTf1CxMf .navbar.opened {
  transition: all 0.3s;
}
.cid-snpTf1CxMf .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-snpTf1CxMf .navbar .navbar-logo img {
  width: auto;
}
.cid-snpTf1CxMf .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-snpTf1CxMf .navbar.collapsed {
  justify-content: center;
}
.cid-snpTf1CxMf .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-snpTf1CxMf .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-snpTf1CxMf .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-snpTf1CxMf .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-snpTf1CxMf .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-snpTf1CxMf .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-snpTf1CxMf .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-snpTf1CxMf .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-snpTf1CxMf .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-snpTf1CxMf .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-snpTf1CxMf .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-snpTf1CxMf .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-snpTf1CxMf .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-snpTf1CxMf .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-snpTf1CxMf .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-snpTf1CxMf .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-snpTf1CxMf .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-snpTf1CxMf .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-snpTf1CxMf .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-snpTf1CxMf .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-snpTf1CxMf .navbar.navbar-short {
  min-height: 60px;
}
.cid-snpTf1CxMf .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-snpTf1CxMf .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-snpTf1CxMf .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-snpTf1CxMf .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-snpTf1CxMf .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-snpTf1CxMf .dropdown-item.active,
.cid-snpTf1CxMf .dropdown-item:active {
  background-color: transparent;
}
.cid-snpTf1CxMf .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-snpTf1CxMf .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-snpTf1CxMf .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-snpTf1CxMf .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-snpTf1CxMf .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-snpTf1CxMf .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-snpTf1CxMf ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-snpTf1CxMf .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-snpTf1CxMf button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-snpTf1CxMf button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-snpTf1CxMf button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-snpTf1CxMf button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-snpTf1CxMf button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-snpTf1CxMf button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-snpTf1CxMf nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-snpTf1CxMf nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-snpTf1CxMf nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-snpTf1CxMf nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-snpTf1CxMf .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-snpTf1CxMf a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-snpTf1CxMf .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-snpTf1CxMf .navbar {
    height: 70px;
  }
  .cid-snpTf1CxMf .navbar.opened {
    height: auto;
  }
  .cid-snpTf1CxMf .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ug3WHhSbXo {
  overflow: hidden;
  background-color: #262642;
}
.cid-ug3WHhSbXo .mbr-fallback-image.disabled {
  display: none;
}
.cid-ug3WHhSbXo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ug3WHhSbXo .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-ug3WHhSbXo .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-ug3WHhSbXo .container {
    padding: 0 24px;
  }
}
.cid-ug3WHhSbXo .row {
  position: relative;
}
.cid-ug3WHhSbXo .row .card {
  justify-content: center;
}
.cid-ug3WHhSbXo .row .decor-wrapper {
  position: absolute;
  bottom: -16rem;
  right: -58rem;
  border: 120px solid #ff3399;
  width: 2000px;
  height: 1000px;
  border-radius: 100%;
}
@media (max-width: 992px) {
  .cid-ug3WHhSbXo .row .decor-wrapper {
    right: -20rem;
  }
}
@media (max-width: 768px) {
  .cid-ug3WHhSbXo .row .decor-wrapper {
    height: 500px;
    right: -10rem;
  }
}
.cid-ug3WHhSbXo .title-wrapper {
  position: relative;
}
@media (max-width: 992px) {
  .cid-ug3WHhSbXo .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-ug3WHhSbXo .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-ug3WHhSbXo .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-ug3WHhSbXo .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ug3WHhSbXo .title-wrapper .mbr-section-btn {
  margin-top: 64px;
}
@media (max-width: 992px) {
  .cid-ug3WHhSbXo .title-wrapper .mbr-section-btn {
    margin-top: 32px;
  }
}
.cid-ug3WHhSbXo .image-wrapper {
  position: relative;
}
.cid-ug3WHhSbXo .image-wrapper img {
  height: 500px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-ug3WHhSbXo .image-wrapper img {
    height: 350px;
  }
}
.cid-ug3WHhSbXo .mbr-section-title {
  color: #F5DF4D;
}
.cid-ug3WHhSbXo .mbr-text {
  color: #FF3399;
}
.cid-ug3WHhSbXo .mbr-text,
.cid-ug3WHhSbXo .mbr-section-btn {
  color: #fafafa;
}
.cid-ug3YXlIyvi {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #e9e9e9;
}
.cid-ug3YXlIyvi .mbr-fallback-image.disabled {
  display: none;
}
.cid-ug3YXlIyvi .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-ug3YXlIyvi .container {
    padding: 0 22px;
  }
}
.cid-ug3YXlIyvi .row {
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0 -6px;
}
.cid-ug3YXlIyvi .row .card {
  padding: 0 6px;
  justify-content: center;
}
.cid-ug3YXlIyvi .row .title-wrapper {
  position: absolute;
  z-index: 1;
  background-color: #f63df9;
  padding: 24px 80px;
  border-radius: 80px;
  width: fit-content;
}
@media (max-width: 992px) {
  .cid-ug3YXlIyvi .row .title-wrapper {
    position: static;
    padding: 32px;
    width: 100%;
  }
}
.cid-ug3YXlIyvi .row .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-ug3YXlIyvi .image-wrapper {
  margin-bottom: 12px;
}
.cid-ug3YXlIyvi .image-wrapper img {
  height: 560px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-ug3YXlIyvi .image-wrapper img {
    height: 350px;
  }
}
.cid-ug3YXlIyvi .image-wrap {
  margin-bottom: 12px;
}
.cid-ug3YXlIyvi .image-wrap img {
  height: 560px;
  object-fit: cover;
  width: 65%;
}
@media (max-width: 992px) {
  .cid-ug3YXlIyvi .image-wrap img {
    height: 350px;
  }
}
.cid-ug3YXlIyvi .content-wrapper {
  padding: 55px 0;
}
@media (max-width: 992px) {
  .cid-ug3YXlIyvi .content-wrapper {
    padding: 32px 0;
  }
}
.cid-ug3YXlIyvi .content-wrapper .mbr-desc {
  margin-bottom: 32px;
}
.cid-ug3YXlIyvi .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-ug3YXlIyvi .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-ug3YXlIyvi .mbr-desc {
  color: #000000;
}
.cid-ug3YXlIyvi .mbr-text {
  color: #000000;
}
.cid-ug42rcyUm4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #6a2be9;
}
.cid-ug42rcyUm4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ug42rcyUm4 .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-ug42rcyUm4 .container {
    padding: 0 16px;
  }
}
.cid-ug42rcyUm4 .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-ug42rcyUm4 .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-ug42rcyUm4 .content-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-ug42rcyUm4 .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-ug42rcyUm4 .content-wrapper .text-wrapper .mbr-text {
  display: inline-flex;
  width: 60%;
  margin-bottom: 32px;
}
@media (max-width: 1200px) {
  .cid-ug42rcyUm4 .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-ug42rcyUm4 .image-wrapper {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-ug42rcyUm4 .image-wrapper {
    margin-left: 0;
  }
}
.cid-ug42rcyUm4 .image-wrapper img {
  height: 660px;
  object-fit: cover;
  box-shadow: 6px 8px 0 0 #000000;
  border-radius: 24px !important;
}
@media (max-width: 992px) {
  .cid-ug42rcyUm4 .image-wrapper img {
    height: 350px;
  }
}
.cid-ug42rcyUm4 .mbr-section-title {
  color: #ffffff;
}
.cid-ug42rcyUm4 .mbr-text {
  color: #ffffff;
}
.cid-ug44ApT7Bj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f7f5f6;
}
.cid-ug44ApT7Bj .mbr-fallback-image.disabled {
  display: none;
}
.cid-ug44ApT7Bj .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-ug44ApT7Bj .container {
    padding: 0 15px;
  }
}
.cid-ug44ApT7Bj .row {
  justify-content: space-between;
}
.cid-ug44ApT7Bj .row .card {
  justify-content: flex-end;
}
.cid-ug44ApT7Bj .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-ug44ApT7Bj .text-wrapper .mbr-text {
  margin-bottom: 40px;
}
.cid-ug44ApT7Bj .content-wrapper .border-wrap {
  margin-bottom: 100px;
  position: relative;
  display: flex;
  align-items: center;
  height: 1px;
  background-color: #68707c;
}
.cid-ug44ApT7Bj .content-wrapper .border-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 1px;
  height: 15px;
  background-color: #68707c;
  transform: rotate(20deg);
}
@media (max-width: 992px) {
  .cid-ug44ApT7Bj .content-wrapper .border-wrap {
    margin-bottom: 40px;
  }
}
.cid-ug44ApT7Bj .content-wrapper .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}
@media (max-width: 992px) {
  .cid-ug44ApT7Bj .content-wrapper .items-wrapper {
    grid-template-columns: 1fr;
  }
}
.cid-ug44ApT7Bj .content-wrapper .items-wrapper .item .item-wrapper .item-content .icon-wrapper {
  margin-bottom: 30px;
}
.cid-ug44ApT7Bj .content-wrapper .items-wrapper .item .item-wrapper .item-content .icon-wrapper .mbr-iconfont {
  font-size: 50px;
  display: inline-flex;
  color: #6e88ab;
}
.cid-ug44ApT7Bj .content-wrapper .items-wrapper .item .item-wrapper .item-content .item-text {
  padding-right: 50px;
  margin-bottom: 65px;
}
@media (max-width: 1440px) {
  .cid-ug44ApT7Bj .content-wrapper .items-wrapper .item .item-wrapper .item-content .item-text {
    padding-right: 25px;
  }
}
@media (max-width: 1200px) {
  .cid-ug44ApT7Bj .content-wrapper .items-wrapper .item .item-wrapper .item-content .item-text {
    padding-right: 0;
  }
}
.cid-ug44ApT7Bj .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.cid-ug44ApT7Bj .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper::before {
  content: '';
  position: absolute;
  top: -26px;
  left: -20px;
  width: 75px;
  height: 68px;
  background-color: #6e88ab;
  transform: skewX(-20deg);
}
@media (max-width: 992px) {
  .cid-ug44ApT7Bj .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper::before {
    left: 0;
  }
}
.cid-ug44ApT7Bj .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper img {
  position: relative;
  z-index: 1;
  height: 85px;
  width: 85px;
  min-width: 85px;
  border-radius: 100% !important;
  object-fit: cover;
  margin-right: 20px;
}
.cid-ug44ApT7Bj .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper a {
  height: 85px;
  width: 85px;
  min-width: 85px;
}
.cid-ug44ApT7Bj .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper .name-wrap {
  position: relative;
  z-index: 1;
}
.cid-ug44ApT7Bj .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper .name-wrap .item-name {
  margin-bottom: 0;
}
.cid-ug44ApT7Bj .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper .name-wrap .item-role {
  margin-bottom: 0;
}
.cid-ug44ApT7Bj .mbr-section-title {
  color: #30262b;
}
.cid-ug44ApT7Bj .mbr-text {
  color: #30262b;
}
.cid-ug44ApT7Bj .item-text {
  color: #30262b;
}
.cid-ug44ApT7Bj .item-name {
  color: #30262b;
}
.cid-ug44ApT7Bj .item-role {
  color: #30262b;
}
.cid-ug47gmJ88c {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-ug47gmJ88c .mbr-fallback-image.disabled {
  display: none;
}
.cid-ug47gmJ88c .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ug47gmJ88c .media-container-row {
  justify-content: space-between;
}
.cid-ug47gmJ88c .text-content {
  max-width: 50%;
}
@media (max-width: 768px) {
  .cid-ug47gmJ88c .text-content {
    max-width: none;
  }
}
.cid-ug47gmJ88c .mbr-iconfont-social {
  margin: 0.5rem;
  font-size: 32px;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #6592e6;
  border: 2px solid #6592e6;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-ug47gmJ88c .mbr-iconfont-social:before {
  padding: 0.6rem;
}
.cid-ug47gmJ88c .mbr-iconfont-social:hover {
  background-color: #6592e6;
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-ug47gmJ88c .icons {
    justify-content: center !important;
  }
  .cid-ug47gmJ88c .text-content * {
    text-align: center;
  }
}
.cid-spp5Bganfo {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #5f337d;
}
.cid-spp5Bganfo .row-links {
  width: 100%;
  justify-content: center;
}
.cid-spp5Bganfo .social-row {
  width: 100%;
  justify-content: center;
}
.cid-spp5Bganfo .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-spp5Bganfo .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-spp5Bganfo .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-spp5Bganfo .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-spp5Bganfo .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-spp5Bganfo .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-spp5Bganfo .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-spp5Bganfo .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-spp5Bganfo .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-spp5Bganfo .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-spp5Bganfo .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-spp5Bganfo .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-spp5Bganfo .media-container-row .mbr-text {
  text-align: center;
}
.cid-ug4R3deYFm {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ug4R3deYFm nav.navbar {
  position: fixed;
}
.cid-ug4R3deYFm .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ug4R3deYFm .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ug4R3deYFm .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ug4R3deYFm .dropdown-item:hover,
.cid-ug4R3deYFm .dropdown-item:focus {
  background: #39f514 !important;
  color: white !important;
}
.cid-ug4R3deYFm .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ug4R3deYFm .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ug4R3deYFm .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ug4R3deYFm .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ug4R3deYFm .nav-link {
  position: relative;
}
.cid-ug4R3deYFm .container {
  display: flex;
  margin: auto;
}
.cid-ug4R3deYFm .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ug4R3deYFm .dropdown-menu,
.cid-ug4R3deYFm .navbar.opened {
  background: #ffffff !important;
}
.cid-ug4R3deYFm .nav-item:focus,
.cid-ug4R3deYFm .nav-link:focus {
  outline: none;
}
.cid-ug4R3deYFm .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ug4R3deYFm .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ug4R3deYFm .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ug4R3deYFm .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ug4R3deYFm .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ug4R3deYFm .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ug4R3deYFm .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-ug4R3deYFm .navbar.opened {
  transition: all 0.3s;
}
.cid-ug4R3deYFm .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ug4R3deYFm .navbar .navbar-logo img {
  width: auto;
}
.cid-ug4R3deYFm .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ug4R3deYFm .navbar.collapsed {
  justify-content: center;
}
.cid-ug4R3deYFm .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ug4R3deYFm .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ug4R3deYFm .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-ug4R3deYFm .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ug4R3deYFm .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ug4R3deYFm .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-ug4R3deYFm .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ug4R3deYFm .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ug4R3deYFm .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ug4R3deYFm .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ug4R3deYFm .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ug4R3deYFm .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ug4R3deYFm .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ug4R3deYFm .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-ug4R3deYFm .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ug4R3deYFm .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ug4R3deYFm .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ug4R3deYFm .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ug4R3deYFm .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ug4R3deYFm .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ug4R3deYFm .navbar.navbar-short {
  min-height: 60px;
}
.cid-ug4R3deYFm .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ug4R3deYFm .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ug4R3deYFm .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ug4R3deYFm .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ug4R3deYFm .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ug4R3deYFm .dropdown-item.active,
.cid-ug4R3deYFm .dropdown-item:active {
  background-color: transparent;
}
.cid-ug4R3deYFm .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ug4R3deYFm .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ug4R3deYFm .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ug4R3deYFm .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ug4R3deYFm .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ug4R3deYFm .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ug4R3deYFm ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ug4R3deYFm .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ug4R3deYFm button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ug4R3deYFm button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-ug4R3deYFm button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ug4R3deYFm button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ug4R3deYFm button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ug4R3deYFm button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ug4R3deYFm nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ug4R3deYFm nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ug4R3deYFm nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ug4R3deYFm nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ug4R3deYFm .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ug4R3deYFm a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ug4R3deYFm .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ug4R3deYFm .navbar {
    height: 70px;
  }
  .cid-ug4R3deYFm .navbar.opened {
    height: auto;
  }
  .cid-ug4R3deYFm .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ug4R3bSxDh {
  overflow: hidden;
  background-color: #262642;
}
.cid-ug4R3bSxDh .mbr-fallback-image.disabled {
  display: none;
}
.cid-ug4R3bSxDh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ug4R3bSxDh .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-ug4R3bSxDh .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-ug4R3bSxDh .container {
    padding: 0 24px;
  }
}
.cid-ug4R3bSxDh .row {
  position: relative;
}
.cid-ug4R3bSxDh .row .card {
  justify-content: center;
}
.cid-ug4R3bSxDh .row .decor-wrapper {
  position: absolute;
  bottom: -16rem;
  right: -58rem;
  border: 120px solid #ff3399;
  width: 2000px;
  height: 1000px;
  border-radius: 100%;
}
@media (max-width: 992px) {
  .cid-ug4R3bSxDh .row .decor-wrapper {
    right: -20rem;
  }
}
@media (max-width: 768px) {
  .cid-ug4R3bSxDh .row .decor-wrapper {
    height: 500px;
    right: -10rem;
  }
}
.cid-ug4R3bSxDh .title-wrapper {
  position: relative;
}
@media (max-width: 992px) {
  .cid-ug4R3bSxDh .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-ug4R3bSxDh .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-ug4R3bSxDh .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-ug4R3bSxDh .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ug4R3bSxDh .title-wrapper .mbr-section-btn {
  margin-top: 64px;
}
@media (max-width: 992px) {
  .cid-ug4R3bSxDh .title-wrapper .mbr-section-btn {
    margin-top: 32px;
  }
}
.cid-ug4R3bSxDh .image-wrapper {
  position: relative;
}
.cid-ug4R3bSxDh .image-wrapper img {
  height: 500px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-ug4R3bSxDh .image-wrapper img {
    height: 350px;
  }
}
.cid-ug4R3bSxDh .mbr-section-title {
  color: #F5DF4D;
}
.cid-ug4R3bSxDh .mbr-text {
  color: #FF3399;
}
.cid-ug4R3bSxDh .mbr-text,
.cid-ug4R3bSxDh .mbr-section-btn {
  color: #fafafa;
}
.cid-ug4R3enuKf {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #e9e9e9;
}
.cid-ug4R3enuKf .mbr-fallback-image.disabled {
  display: none;
}
.cid-ug4R3enuKf .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-ug4R3enuKf .container {
    padding: 0 22px;
  }
}
.cid-ug4R3enuKf .row {
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0 -6px;
}
.cid-ug4R3enuKf .row .card {
  padding: 0 6px;
  justify-content: center;
}
.cid-ug4R3enuKf .row .title-wrapper {
  position: absolute;
  z-index: 1;
  background-color: #f63df9;
  padding: 24px 80px;
  border-radius: 80px;
  width: fit-content;
}
@media (max-width: 992px) {
  .cid-ug4R3enuKf .row .title-wrapper {
    position: static;
    padding: 32px;
    width: 100%;
  }
}
.cid-ug4R3enuKf .row .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-ug4R3enuKf .image-wrapper {
  margin-bottom: 12px;
}
.cid-ug4R3enuKf .image-wrapper img {
  height: 560px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-ug4R3enuKf .image-wrapper img {
    height: 350px;
  }
}
.cid-ug4R3enuKf .image-wrap {
  margin-bottom: 12px;
}
.cid-ug4R3enuKf .image-wrap img {
  height: 560px;
  object-fit: cover;
  width: 65%;
}
@media (max-width: 992px) {
  .cid-ug4R3enuKf .image-wrap img {
    height: 350px;
  }
}
.cid-ug4R3enuKf .content-wrapper {
  padding: 55px 0;
}
@media (max-width: 992px) {
  .cid-ug4R3enuKf .content-wrapper {
    padding: 32px 0;
  }
}
.cid-ug4R3enuKf .content-wrapper .mbr-desc {
  margin-bottom: 32px;
}
.cid-ug4R3enuKf .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-ug4R3enuKf .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-ug4R3enuKf .mbr-desc {
  color: #000000;
}
.cid-ug4R3enuKf .mbr-text {
  color: #000000;
}
.cid-ug4R3fuhKj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #6a2be9;
}
.cid-ug4R3fuhKj .mbr-fallback-image.disabled {
  display: none;
}
.cid-ug4R3fuhKj .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-ug4R3fuhKj .container {
    padding: 0 16px;
  }
}
.cid-ug4R3fuhKj .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-ug4R3fuhKj .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-ug4R3fuhKj .content-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-ug4R3fuhKj .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-ug4R3fuhKj .content-wrapper .text-wrapper .mbr-text {
  display: inline-flex;
  width: 60%;
  margin-bottom: 32px;
}
@media (max-width: 1200px) {
  .cid-ug4R3fuhKj .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-ug4R3fuhKj .image-wrapper {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-ug4R3fuhKj .image-wrapper {
    margin-left: 0;
  }
}
.cid-ug4R3fuhKj .image-wrapper img {
  height: 660px;
  object-fit: cover;
  box-shadow: 6px 8px 0 0 #000000;
  border-radius: 24px !important;
}
@media (max-width: 992px) {
  .cid-ug4R3fuhKj .image-wrapper img {
    height: 350px;
  }
}
.cid-ug4R3fuhKj .mbr-section-title {
  color: #ffffff;
}
.cid-ug4R3fuhKj .mbr-text {
  color: #ffffff;
}
.cid-ug4R3gytO1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f7f5f6;
}
.cid-ug4R3gytO1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ug4R3gytO1 .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-ug4R3gytO1 .container {
    padding: 0 15px;
  }
}
.cid-ug4R3gytO1 .row {
  justify-content: space-between;
}
.cid-ug4R3gytO1 .row .card {
  justify-content: flex-end;
}
.cid-ug4R3gytO1 .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-ug4R3gytO1 .text-wrapper .mbr-text {
  margin-bottom: 40px;
}
.cid-ug4R3gytO1 .content-wrapper .border-wrap {
  margin-bottom: 100px;
  position: relative;
  display: flex;
  align-items: center;
  height: 1px;
  background-color: #68707c;
}
.cid-ug4R3gytO1 .content-wrapper .border-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 1px;
  height: 15px;
  background-color: #68707c;
  transform: rotate(20deg);
}
@media (max-width: 992px) {
  .cid-ug4R3gytO1 .content-wrapper .border-wrap {
    margin-bottom: 40px;
  }
}
.cid-ug4R3gytO1 .content-wrapper .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}
@media (max-width: 992px) {
  .cid-ug4R3gytO1 .content-wrapper .items-wrapper {
    grid-template-columns: 1fr;
  }
}
.cid-ug4R3gytO1 .content-wrapper .items-wrapper .item .item-wrapper .item-content .icon-wrapper {
  margin-bottom: 30px;
}
.cid-ug4R3gytO1 .content-wrapper .items-wrapper .item .item-wrapper .item-content .icon-wrapper .mbr-iconfont {
  font-size: 50px;
  display: inline-flex;
  color: #6e88ab;
}
.cid-ug4R3gytO1 .content-wrapper .items-wrapper .item .item-wrapper .item-content .item-text {
  padding-right: 50px;
  margin-bottom: 65px;
}
@media (max-width: 1440px) {
  .cid-ug4R3gytO1 .content-wrapper .items-wrapper .item .item-wrapper .item-content .item-text {
    padding-right: 25px;
  }
}
@media (max-width: 1200px) {
  .cid-ug4R3gytO1 .content-wrapper .items-wrapper .item .item-wrapper .item-content .item-text {
    padding-right: 0;
  }
}
.cid-ug4R3gytO1 .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.cid-ug4R3gytO1 .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper::before {
  content: '';
  position: absolute;
  top: -26px;
  left: -20px;
  width: 75px;
  height: 68px;
  background-color: #6e88ab;
  transform: skewX(-20deg);
}
@media (max-width: 992px) {
  .cid-ug4R3gytO1 .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper::before {
    left: 0;
  }
}
.cid-ug4R3gytO1 .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper img {
  position: relative;
  z-index: 1;
  height: 85px;
  width: 85px;
  min-width: 85px;
  border-radius: 100% !important;
  object-fit: cover;
  margin-right: 20px;
}
.cid-ug4R3gytO1 .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper a {
  height: 85px;
  width: 85px;
  min-width: 85px;
}
.cid-ug4R3gytO1 .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper .name-wrap {
  position: relative;
  z-index: 1;
}
.cid-ug4R3gytO1 .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper .name-wrap .item-name {
  margin-bottom: 0;
}
.cid-ug4R3gytO1 .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper .name-wrap .item-role {
  margin-bottom: 0;
}
.cid-ug4R3gytO1 .mbr-section-title {
  color: #30262b;
}
.cid-ug4R3gytO1 .mbr-text {
  color: #30262b;
}
.cid-ug4R3gytO1 .item-text {
  color: #30262b;
}
.cid-ug4R3gytO1 .item-name {
  color: #30262b;
}
.cid-ug4R3gytO1 .item-role {
  color: #30262b;
}
.cid-ug4R3hOUZG {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-ug4R3hOUZG .mbr-fallback-image.disabled {
  display: none;
}
.cid-ug4R3hOUZG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ug4R3hOUZG .media-container-row {
  justify-content: space-between;
}
.cid-ug4R3hOUZG .text-content {
  max-width: 50%;
}
@media (max-width: 768px) {
  .cid-ug4R3hOUZG .text-content {
    max-width: none;
  }
}
.cid-ug4R3hOUZG .mbr-iconfont-social {
  margin: 0.5rem;
  font-size: 32px;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #6592e6;
  border: 2px solid #6592e6;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-ug4R3hOUZG .mbr-iconfont-social:before {
  padding: 0.6rem;
}
.cid-ug4R3hOUZG .mbr-iconfont-social:hover {
  background-color: #6592e6;
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-ug4R3hOUZG .icons {
    justify-content: center !important;
  }
  .cid-ug4R3hOUZG .text-content * {
    text-align: center;
  }
}
.cid-ug4R3j3GLH {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #5f337d;
}
.cid-ug4R3j3GLH .row-links {
  width: 100%;
  justify-content: center;
}
.cid-ug4R3j3GLH .social-row {
  width: 100%;
  justify-content: center;
}
.cid-ug4R3j3GLH .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-ug4R3j3GLH .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-ug4R3j3GLH .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-ug4R3j3GLH .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-ug4R3j3GLH .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-ug4R3j3GLH .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-ug4R3j3GLH .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-ug4R3j3GLH .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-ug4R3j3GLH .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-ug4R3j3GLH .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-ug4R3j3GLH .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-ug4R3j3GLH .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-ug4R3j3GLH .media-container-row .mbr-text {
  text-align: center;
}
.cid-ug50ci4uxn {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ug50ci4uxn nav.navbar {
  position: fixed;
}
.cid-ug50ci4uxn .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ug50ci4uxn .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ug50ci4uxn .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ug50ci4uxn .dropdown-item:hover,
.cid-ug50ci4uxn .dropdown-item:focus {
  background: #39f514 !important;
  color: white !important;
}
.cid-ug50ci4uxn .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ug50ci4uxn .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ug50ci4uxn .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ug50ci4uxn .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ug50ci4uxn .nav-link {
  position: relative;
}
.cid-ug50ci4uxn .container {
  display: flex;
  margin: auto;
}
.cid-ug50ci4uxn .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ug50ci4uxn .dropdown-menu,
.cid-ug50ci4uxn .navbar.opened {
  background: #ffffff !important;
}
.cid-ug50ci4uxn .nav-item:focus,
.cid-ug50ci4uxn .nav-link:focus {
  outline: none;
}
.cid-ug50ci4uxn .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ug50ci4uxn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ug50ci4uxn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ug50ci4uxn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ug50ci4uxn .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ug50ci4uxn .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ug50ci4uxn .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-ug50ci4uxn .navbar.opened {
  transition: all 0.3s;
}
.cid-ug50ci4uxn .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ug50ci4uxn .navbar .navbar-logo img {
  width: auto;
}
.cid-ug50ci4uxn .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ug50ci4uxn .navbar.collapsed {
  justify-content: center;
}
.cid-ug50ci4uxn .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ug50ci4uxn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ug50ci4uxn .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-ug50ci4uxn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ug50ci4uxn .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ug50ci4uxn .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-ug50ci4uxn .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ug50ci4uxn .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ug50ci4uxn .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ug50ci4uxn .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ug50ci4uxn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ug50ci4uxn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ug50ci4uxn .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ug50ci4uxn .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-ug50ci4uxn .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ug50ci4uxn .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ug50ci4uxn .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ug50ci4uxn .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ug50ci4uxn .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ug50ci4uxn .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ug50ci4uxn .navbar.navbar-short {
  min-height: 60px;
}
.cid-ug50ci4uxn .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ug50ci4uxn .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ug50ci4uxn .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ug50ci4uxn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ug50ci4uxn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ug50ci4uxn .dropdown-item.active,
.cid-ug50ci4uxn .dropdown-item:active {
  background-color: transparent;
}
.cid-ug50ci4uxn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ug50ci4uxn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ug50ci4uxn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ug50ci4uxn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ug50ci4uxn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ug50ci4uxn .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ug50ci4uxn ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ug50ci4uxn .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ug50ci4uxn button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ug50ci4uxn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-ug50ci4uxn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ug50ci4uxn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ug50ci4uxn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ug50ci4uxn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ug50ci4uxn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ug50ci4uxn nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ug50ci4uxn nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ug50ci4uxn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ug50ci4uxn .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ug50ci4uxn a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ug50ci4uxn .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ug50ci4uxn .navbar {
    height: 70px;
  }
  .cid-ug50ci4uxn .navbar.opened {
    height: auto;
  }
  .cid-ug50ci4uxn .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ug50cgONJC {
  overflow: hidden;
  background-color: #262642;
}
.cid-ug50cgONJC .mbr-fallback-image.disabled {
  display: none;
}
.cid-ug50cgONJC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ug50cgONJC .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-ug50cgONJC .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-ug50cgONJC .container {
    padding: 0 24px;
  }
}
.cid-ug50cgONJC .row {
  position: relative;
}
.cid-ug50cgONJC .row .card {
  justify-content: center;
}
.cid-ug50cgONJC .row .decor-wrapper {
  position: absolute;
  bottom: -16rem;
  right: -58rem;
  border: 120px solid #ff3399;
  width: 2000px;
  height: 1000px;
  border-radius: 100%;
}
@media (max-width: 992px) {
  .cid-ug50cgONJC .row .decor-wrapper {
    right: -20rem;
  }
}
@media (max-width: 768px) {
  .cid-ug50cgONJC .row .decor-wrapper {
    height: 500px;
    right: -10rem;
  }
}
.cid-ug50cgONJC .title-wrapper {
  position: relative;
}
@media (max-width: 992px) {
  .cid-ug50cgONJC .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-ug50cgONJC .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-ug50cgONJC .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-ug50cgONJC .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ug50cgONJC .title-wrapper .mbr-section-btn {
  margin-top: 64px;
}
@media (max-width: 992px) {
  .cid-ug50cgONJC .title-wrapper .mbr-section-btn {
    margin-top: 32px;
  }
}
.cid-ug50cgONJC .image-wrapper {
  position: relative;
}
.cid-ug50cgONJC .image-wrapper img {
  height: 500px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-ug50cgONJC .image-wrapper img {
    height: 350px;
  }
}
.cid-ug50cgONJC .mbr-section-title {
  color: #F5DF4D;
}
.cid-ug50cgONJC .mbr-text {
  color: #FF3399;
}
.cid-ug50cgONJC .mbr-text,
.cid-ug50cgONJC .mbr-section-btn {
  color: #fafafa;
}
.cid-ug50cjf4xL {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #e9e9e9;
}
.cid-ug50cjf4xL .mbr-fallback-image.disabled {
  display: none;
}
.cid-ug50cjf4xL .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-ug50cjf4xL .container {
    padding: 0 22px;
  }
}
.cid-ug50cjf4xL .row {
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0 -6px;
}
.cid-ug50cjf4xL .row .card {
  padding: 0 6px;
  justify-content: center;
}
.cid-ug50cjf4xL .row .title-wrapper {
  position: absolute;
  z-index: 1;
  background-color: #f63df9;
  padding: 24px 80px;
  border-radius: 80px;
  width: fit-content;
}
@media (max-width: 992px) {
  .cid-ug50cjf4xL .row .title-wrapper {
    position: static;
    padding: 32px;
    width: 100%;
  }
}
.cid-ug50cjf4xL .row .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-ug50cjf4xL .image-wrapper {
  margin-bottom: 12px;
}
.cid-ug50cjf4xL .image-wrapper img {
  height: 560px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-ug50cjf4xL .image-wrapper img {
    height: 350px;
  }
}
.cid-ug50cjf4xL .image-wrap {
  margin-bottom: 12px;
}
.cid-ug50cjf4xL .image-wrap img {
  height: 560px;
  object-fit: cover;
  width: 65%;
}
@media (max-width: 992px) {
  .cid-ug50cjf4xL .image-wrap img {
    height: 350px;
  }
}
.cid-ug50cjf4xL .content-wrapper {
  padding: 55px 0;
}
@media (max-width: 992px) {
  .cid-ug50cjf4xL .content-wrapper {
    padding: 32px 0;
  }
}
.cid-ug50cjf4xL .content-wrapper .mbr-desc {
  margin-bottom: 32px;
}
.cid-ug50cjf4xL .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-ug50cjf4xL .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-ug50cjf4xL .mbr-desc {
  color: #000000;
}
.cid-ug50cjf4xL .mbr-text {
  color: #000000;
}
.cid-ug50cklAEx {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #6a2be9;
}
.cid-ug50cklAEx .mbr-fallback-image.disabled {
  display: none;
}
.cid-ug50cklAEx .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-ug50cklAEx .container {
    padding: 0 16px;
  }
}
.cid-ug50cklAEx .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-ug50cklAEx .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-ug50cklAEx .content-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-ug50cklAEx .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-ug50cklAEx .content-wrapper .text-wrapper .mbr-text {
  display: inline-flex;
  width: 60%;
  margin-bottom: 32px;
}
@media (max-width: 1200px) {
  .cid-ug50cklAEx .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-ug50cklAEx .image-wrapper {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-ug50cklAEx .image-wrapper {
    margin-left: 0;
  }
}
.cid-ug50cklAEx .image-wrapper img {
  height: 660px;
  object-fit: cover;
  box-shadow: 6px 8px 0 0 #000000;
  border-radius: 24px !important;
}
@media (max-width: 992px) {
  .cid-ug50cklAEx .image-wrapper img {
    height: 350px;
  }
}
.cid-ug50cklAEx .mbr-section-title {
  color: #ffffff;
}
.cid-ug50cklAEx .mbr-text {
  color: #ffffff;
}
.cid-ug50clpkD7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f7f5f6;
}
.cid-ug50clpkD7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ug50clpkD7 .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-ug50clpkD7 .container {
    padding: 0 15px;
  }
}
.cid-ug50clpkD7 .row {
  justify-content: space-between;
}
.cid-ug50clpkD7 .row .card {
  justify-content: flex-end;
}
.cid-ug50clpkD7 .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-ug50clpkD7 .text-wrapper .mbr-text {
  margin-bottom: 40px;
}
.cid-ug50clpkD7 .content-wrapper .border-wrap {
  margin-bottom: 100px;
  position: relative;
  display: flex;
  align-items: center;
  height: 1px;
  background-color: #68707c;
}
.cid-ug50clpkD7 .content-wrapper .border-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 1px;
  height: 15px;
  background-color: #68707c;
  transform: rotate(20deg);
}
@media (max-width: 992px) {
  .cid-ug50clpkD7 .content-wrapper .border-wrap {
    margin-bottom: 40px;
  }
}
.cid-ug50clpkD7 .content-wrapper .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}
@media (max-width: 992px) {
  .cid-ug50clpkD7 .content-wrapper .items-wrapper {
    grid-template-columns: 1fr;
  }
}
.cid-ug50clpkD7 .content-wrapper .items-wrapper .item .item-wrapper .item-content .icon-wrapper {
  margin-bottom: 30px;
}
.cid-ug50clpkD7 .content-wrapper .items-wrapper .item .item-wrapper .item-content .icon-wrapper .mbr-iconfont {
  font-size: 50px;
  display: inline-flex;
  color: #6e88ab;
}
.cid-ug50clpkD7 .content-wrapper .items-wrapper .item .item-wrapper .item-content .item-text {
  padding-right: 50px;
  margin-bottom: 65px;
}
@media (max-width: 1440px) {
  .cid-ug50clpkD7 .content-wrapper .items-wrapper .item .item-wrapper .item-content .item-text {
    padding-right: 25px;
  }
}
@media (max-width: 1200px) {
  .cid-ug50clpkD7 .content-wrapper .items-wrapper .item .item-wrapper .item-content .item-text {
    padding-right: 0;
  }
}
.cid-ug50clpkD7 .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.cid-ug50clpkD7 .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper::before {
  content: '';
  position: absolute;
  top: -26px;
  left: -20px;
  width: 75px;
  height: 68px;
  background-color: #6e88ab;
  transform: skewX(-20deg);
}
@media (max-width: 992px) {
  .cid-ug50clpkD7 .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper::before {
    left: 0;
  }
}
.cid-ug50clpkD7 .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper img {
  position: relative;
  z-index: 1;
  height: 85px;
  width: 85px;
  min-width: 85px;
  border-radius: 100% !important;
  object-fit: cover;
  margin-right: 20px;
}
.cid-ug50clpkD7 .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper a {
  height: 85px;
  width: 85px;
  min-width: 85px;
}
.cid-ug50clpkD7 .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper .name-wrap {
  position: relative;
  z-index: 1;
}
.cid-ug50clpkD7 .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper .name-wrap .item-name {
  margin-bottom: 0;
}
.cid-ug50clpkD7 .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper .name-wrap .item-role {
  margin-bottom: 0;
}
.cid-ug50clpkD7 .mbr-section-title {
  color: #30262b;
}
.cid-ug50clpkD7 .mbr-text {
  color: #30262b;
}
.cid-ug50clpkD7 .item-text {
  color: #30262b;
}
.cid-ug50clpkD7 .item-name {
  color: #30262b;
}
.cid-ug50clpkD7 .item-role {
  color: #30262b;
}
.cid-ug50cmIdsK {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-ug50cmIdsK .mbr-fallback-image.disabled {
  display: none;
}
.cid-ug50cmIdsK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ug50cmIdsK .media-container-row {
  justify-content: space-between;
}
.cid-ug50cmIdsK .text-content {
  max-width: 50%;
}
@media (max-width: 768px) {
  .cid-ug50cmIdsK .text-content {
    max-width: none;
  }
}
.cid-ug50cmIdsK .mbr-iconfont-social {
  margin: 0.5rem;
  font-size: 32px;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #6592e6;
  border: 2px solid #6592e6;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-ug50cmIdsK .mbr-iconfont-social:before {
  padding: 0.6rem;
}
.cid-ug50cmIdsK .mbr-iconfont-social:hover {
  background-color: #6592e6;
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-ug50cmIdsK .icons {
    justify-content: center !important;
  }
  .cid-ug50cmIdsK .text-content * {
    text-align: center;
  }
}
.cid-ug50cnZYYa {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #5f337d;
}
.cid-ug50cnZYYa .row-links {
  width: 100%;
  justify-content: center;
}
.cid-ug50cnZYYa .social-row {
  width: 100%;
  justify-content: center;
}
.cid-ug50cnZYYa .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-ug50cnZYYa .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-ug50cnZYYa .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-ug50cnZYYa .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-ug50cnZYYa .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-ug50cnZYYa .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-ug50cnZYYa .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-ug50cnZYYa .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-ug50cnZYYa .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-ug50cnZYYa .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-ug50cnZYYa .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-ug50cnZYYa .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-ug50cnZYYa .media-container-row .mbr-text {
  text-align: center;
}
.cid-ugaHxIGWkM {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ugaHxIGWkM nav.navbar {
  position: fixed;
}
.cid-ugaHxIGWkM .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ugaHxIGWkM .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ugaHxIGWkM .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ugaHxIGWkM .dropdown-item:hover,
.cid-ugaHxIGWkM .dropdown-item:focus {
  background: #39f514 !important;
  color: white !important;
}
.cid-ugaHxIGWkM .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ugaHxIGWkM .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ugaHxIGWkM .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ugaHxIGWkM .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ugaHxIGWkM .nav-link {
  position: relative;
}
.cid-ugaHxIGWkM .container {
  display: flex;
  margin: auto;
}
.cid-ugaHxIGWkM .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ugaHxIGWkM .dropdown-menu,
.cid-ugaHxIGWkM .navbar.opened {
  background: #ffffff !important;
}
.cid-ugaHxIGWkM .nav-item:focus,
.cid-ugaHxIGWkM .nav-link:focus {
  outline: none;
}
.cid-ugaHxIGWkM .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ugaHxIGWkM .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ugaHxIGWkM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ugaHxIGWkM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ugaHxIGWkM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ugaHxIGWkM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ugaHxIGWkM .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-ugaHxIGWkM .navbar.opened {
  transition: all 0.3s;
}
.cid-ugaHxIGWkM .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ugaHxIGWkM .navbar .navbar-logo img {
  width: auto;
}
.cid-ugaHxIGWkM .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ugaHxIGWkM .navbar.collapsed {
  justify-content: center;
}
.cid-ugaHxIGWkM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ugaHxIGWkM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ugaHxIGWkM .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-ugaHxIGWkM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ugaHxIGWkM .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ugaHxIGWkM .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-ugaHxIGWkM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ugaHxIGWkM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ugaHxIGWkM .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ugaHxIGWkM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ugaHxIGWkM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ugaHxIGWkM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ugaHxIGWkM .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ugaHxIGWkM .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-ugaHxIGWkM .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ugaHxIGWkM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ugaHxIGWkM .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ugaHxIGWkM .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ugaHxIGWkM .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ugaHxIGWkM .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ugaHxIGWkM .navbar.navbar-short {
  min-height: 60px;
}
.cid-ugaHxIGWkM .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ugaHxIGWkM .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ugaHxIGWkM .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ugaHxIGWkM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ugaHxIGWkM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ugaHxIGWkM .dropdown-item.active,
.cid-ugaHxIGWkM .dropdown-item:active {
  background-color: transparent;
}
.cid-ugaHxIGWkM .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ugaHxIGWkM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ugaHxIGWkM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ugaHxIGWkM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ugaHxIGWkM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ugaHxIGWkM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ugaHxIGWkM ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ugaHxIGWkM .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ugaHxIGWkM button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ugaHxIGWkM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-ugaHxIGWkM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ugaHxIGWkM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugaHxIGWkM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugaHxIGWkM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ugaHxIGWkM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugaHxIGWkM nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ugaHxIGWkM nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ugaHxIGWkM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugaHxIGWkM .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ugaHxIGWkM a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ugaHxIGWkM .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ugaHxIGWkM .navbar {
    height: 70px;
  }
  .cid-ugaHxIGWkM .navbar.opened {
    height: auto;
  }
  .cid-ugaHxIGWkM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ugaHxJtSzV {
  overflow: hidden;
  background-color: #262642;
}
.cid-ugaHxJtSzV .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugaHxJtSzV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugaHxJtSzV .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-ugaHxJtSzV .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-ugaHxJtSzV .container {
    padding: 0 24px;
  }
}
.cid-ugaHxJtSzV .row {
  position: relative;
}
.cid-ugaHxJtSzV .row .card {
  justify-content: center;
}
.cid-ugaHxJtSzV .row .decor-wrapper {
  position: absolute;
  bottom: -16rem;
  right: -58rem;
  border: 120px solid #ff3399;
  width: 2000px;
  height: 1000px;
  border-radius: 100%;
}
@media (max-width: 992px) {
  .cid-ugaHxJtSzV .row .decor-wrapper {
    right: -20rem;
  }
}
@media (max-width: 768px) {
  .cid-ugaHxJtSzV .row .decor-wrapper {
    height: 500px;
    right: -10rem;
  }
}
.cid-ugaHxJtSzV .title-wrapper {
  position: relative;
}
@media (max-width: 992px) {
  .cid-ugaHxJtSzV .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-ugaHxJtSzV .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-ugaHxJtSzV .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-ugaHxJtSzV .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ugaHxJtSzV .title-wrapper .mbr-section-btn {
  margin-top: 64px;
}
@media (max-width: 992px) {
  .cid-ugaHxJtSzV .title-wrapper .mbr-section-btn {
    margin-top: 32px;
  }
}
.cid-ugaHxJtSzV .image-wrapper {
  position: relative;
}
.cid-ugaHxJtSzV .image-wrapper img {
  height: 500px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-ugaHxJtSzV .image-wrapper img {
    height: 350px;
  }
}
.cid-ugaHxJtSzV .mbr-section-title {
  color: #F5DF4D;
}
.cid-ugaHxJtSzV .mbr-text {
  color: #FF3399;
}
.cid-ugaHxJtSzV .mbr-text,
.cid-ugaHxJtSzV .mbr-section-btn {
  color: #fafafa;
}
.cid-ugaHxK5DM3 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #e9e9e9;
}
.cid-ugaHxK5DM3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugaHxK5DM3 .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-ugaHxK5DM3 .container {
    padding: 0 22px;
  }
}
.cid-ugaHxK5DM3 .row {
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0 -6px;
}
.cid-ugaHxK5DM3 .row .card {
  padding: 0 6px;
  justify-content: center;
}
.cid-ugaHxK5DM3 .row .title-wrapper {
  position: absolute;
  z-index: 1;
  background-color: #f63df9;
  padding: 24px 80px;
  border-radius: 80px;
  width: fit-content;
}
@media (max-width: 992px) {
  .cid-ugaHxK5DM3 .row .title-wrapper {
    position: static;
    padding: 32px;
    width: 100%;
  }
}
.cid-ugaHxK5DM3 .row .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-ugaHxK5DM3 .image-wrapper {
  margin-bottom: 12px;
}
.cid-ugaHxK5DM3 .image-wrapper img {
  height: 560px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-ugaHxK5DM3 .image-wrapper img {
    height: 350px;
  }
}
.cid-ugaHxK5DM3 .image-wrap {
  margin-bottom: 12px;
}
.cid-ugaHxK5DM3 .image-wrap img {
  height: 560px;
  object-fit: cover;
  width: 65%;
}
@media (max-width: 992px) {
  .cid-ugaHxK5DM3 .image-wrap img {
    height: 350px;
  }
}
.cid-ugaHxK5DM3 .content-wrapper {
  padding: 55px 0;
}
@media (max-width: 992px) {
  .cid-ugaHxK5DM3 .content-wrapper {
    padding: 32px 0;
  }
}
.cid-ugaHxK5DM3 .content-wrapper .mbr-desc {
  margin-bottom: 32px;
}
.cid-ugaHxK5DM3 .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-ugaHxK5DM3 .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-ugaHxK5DM3 .mbr-desc {
  color: #000000;
}
.cid-ugaHxK5DM3 .mbr-text {
  color: #000000;
}
.cid-ugaHxKR4AM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #6a2be9;
}
.cid-ugaHxKR4AM .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugaHxKR4AM .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-ugaHxKR4AM .container {
    padding: 0 16px;
  }
}
.cid-ugaHxKR4AM .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-ugaHxKR4AM .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-ugaHxKR4AM .content-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-ugaHxKR4AM .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-ugaHxKR4AM .content-wrapper .text-wrapper .mbr-text {
  display: inline-flex;
  width: 60%;
  margin-bottom: 32px;
}
@media (max-width: 1200px) {
  .cid-ugaHxKR4AM .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-ugaHxKR4AM .image-wrapper {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-ugaHxKR4AM .image-wrapper {
    margin-left: 0;
  }
}
.cid-ugaHxKR4AM .image-wrapper img {
  height: 660px;
  object-fit: cover;
  box-shadow: 6px 8px 0 0 #000000;
  border-radius: 24px !important;
}
@media (max-width: 992px) {
  .cid-ugaHxKR4AM .image-wrapper img {
    height: 350px;
  }
}
.cid-ugaHxKR4AM .mbr-section-title {
  color: #ffffff;
}
.cid-ugaHxKR4AM .mbr-text {
  color: #ffffff;
}
.cid-ugaHxLvbuy {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f7f5f6;
}
.cid-ugaHxLvbuy .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugaHxLvbuy .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-ugaHxLvbuy .container {
    padding: 0 15px;
  }
}
.cid-ugaHxLvbuy .row {
  justify-content: space-between;
}
.cid-ugaHxLvbuy .row .card {
  justify-content: flex-end;
}
.cid-ugaHxLvbuy .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-ugaHxLvbuy .text-wrapper .mbr-text {
  margin-bottom: 40px;
}
.cid-ugaHxLvbuy .content-wrapper .border-wrap {
  margin-bottom: 100px;
  position: relative;
  display: flex;
  align-items: center;
  height: 1px;
  background-color: #68707c;
}
.cid-ugaHxLvbuy .content-wrapper .border-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 1px;
  height: 15px;
  background-color: #68707c;
  transform: rotate(20deg);
}
@media (max-width: 992px) {
  .cid-ugaHxLvbuy .content-wrapper .border-wrap {
    margin-bottom: 40px;
  }
}
.cid-ugaHxLvbuy .content-wrapper .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}
@media (max-width: 992px) {
  .cid-ugaHxLvbuy .content-wrapper .items-wrapper {
    grid-template-columns: 1fr;
  }
}
.cid-ugaHxLvbuy .content-wrapper .items-wrapper .item .item-wrapper .item-content .icon-wrapper {
  margin-bottom: 30px;
}
.cid-ugaHxLvbuy .content-wrapper .items-wrapper .item .item-wrapper .item-content .icon-wrapper .mbr-iconfont {
  font-size: 50px;
  display: inline-flex;
  color: #6e88ab;
}
.cid-ugaHxLvbuy .content-wrapper .items-wrapper .item .item-wrapper .item-content .item-text {
  padding-right: 50px;
  margin-bottom: 65px;
}
@media (max-width: 1440px) {
  .cid-ugaHxLvbuy .content-wrapper .items-wrapper .item .item-wrapper .item-content .item-text {
    padding-right: 25px;
  }
}
@media (max-width: 1200px) {
  .cid-ugaHxLvbuy .content-wrapper .items-wrapper .item .item-wrapper .item-content .item-text {
    padding-right: 0;
  }
}
.cid-ugaHxLvbuy .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.cid-ugaHxLvbuy .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper::before {
  content: '';
  position: absolute;
  top: -26px;
  left: -20px;
  width: 75px;
  height: 68px;
  background-color: #6e88ab;
  transform: skewX(-20deg);
}
@media (max-width: 992px) {
  .cid-ugaHxLvbuy .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper::before {
    left: 0;
  }
}
.cid-ugaHxLvbuy .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper img {
  position: relative;
  z-index: 1;
  height: 85px;
  width: 85px;
  min-width: 85px;
  border-radius: 100% !important;
  object-fit: cover;
  margin-right: 20px;
}
.cid-ugaHxLvbuy .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper a {
  height: 85px;
  width: 85px;
  min-width: 85px;
}
.cid-ugaHxLvbuy .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper .name-wrap {
  position: relative;
  z-index: 1;
}
.cid-ugaHxLvbuy .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper .name-wrap .item-name {
  margin-bottom: 0;
}
.cid-ugaHxLvbuy .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper .name-wrap .item-role {
  margin-bottom: 0;
}
.cid-ugaHxLvbuy .mbr-section-title {
  color: #30262b;
}
.cid-ugaHxLvbuy .mbr-text {
  color: #30262b;
}
.cid-ugaHxLvbuy .item-text {
  color: #30262b;
}
.cid-ugaHxLvbuy .item-name {
  color: #30262b;
}
.cid-ugaHxLvbuy .item-role {
  color: #30262b;
}
.cid-ugaHxMrlAh {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-ugaHxMrlAh .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugaHxMrlAh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugaHxMrlAh .media-container-row {
  justify-content: space-between;
}
.cid-ugaHxMrlAh .text-content {
  max-width: 50%;
}
@media (max-width: 768px) {
  .cid-ugaHxMrlAh .text-content {
    max-width: none;
  }
}
.cid-ugaHxMrlAh .mbr-iconfont-social {
  margin: 0.5rem;
  font-size: 32px;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #6592e6;
  border: 2px solid #6592e6;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-ugaHxMrlAh .mbr-iconfont-social:before {
  padding: 0.6rem;
}
.cid-ugaHxMrlAh .mbr-iconfont-social:hover {
  background-color: #6592e6;
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-ugaHxMrlAh .icons {
    justify-content: center !important;
  }
  .cid-ugaHxMrlAh .text-content * {
    text-align: center;
  }
}
.cid-ugaLfmZlOf {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-ugaHxNjbjx {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #5f337d;
}
.cid-ugaHxNjbjx .row-links {
  width: 100%;
  justify-content: center;
}
.cid-ugaHxNjbjx .social-row {
  width: 100%;
  justify-content: center;
}
.cid-ugaHxNjbjx .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-ugaHxNjbjx .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-ugaHxNjbjx .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-ugaHxNjbjx .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-ugaHxNjbjx .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-ugaHxNjbjx .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-ugaHxNjbjx .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-ugaHxNjbjx .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-ugaHxNjbjx .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-ugaHxNjbjx .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-ugaHxNjbjx .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-ugaHxNjbjx .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-ugaHxNjbjx .media-container-row .mbr-text {
  text-align: center;
}
.cid-ugaOOZvPvC {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ugaOOZvPvC nav.navbar {
  position: fixed;
}
.cid-ugaOOZvPvC .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ugaOOZvPvC .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ugaOOZvPvC .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ugaOOZvPvC .dropdown-item:hover,
.cid-ugaOOZvPvC .dropdown-item:focus {
  background: #39f514 !important;
  color: white !important;
}
.cid-ugaOOZvPvC .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ugaOOZvPvC .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ugaOOZvPvC .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ugaOOZvPvC .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ugaOOZvPvC .nav-link {
  position: relative;
}
.cid-ugaOOZvPvC .container {
  display: flex;
  margin: auto;
}
.cid-ugaOOZvPvC .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ugaOOZvPvC .dropdown-menu,
.cid-ugaOOZvPvC .navbar.opened {
  background: #ffffff !important;
}
.cid-ugaOOZvPvC .nav-item:focus,
.cid-ugaOOZvPvC .nav-link:focus {
  outline: none;
}
.cid-ugaOOZvPvC .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ugaOOZvPvC .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ugaOOZvPvC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ugaOOZvPvC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ugaOOZvPvC .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ugaOOZvPvC .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ugaOOZvPvC .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-ugaOOZvPvC .navbar.opened {
  transition: all 0.3s;
}
.cid-ugaOOZvPvC .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ugaOOZvPvC .navbar .navbar-logo img {
  width: auto;
}
.cid-ugaOOZvPvC .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ugaOOZvPvC .navbar.collapsed {
  justify-content: center;
}
.cid-ugaOOZvPvC .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ugaOOZvPvC .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ugaOOZvPvC .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-ugaOOZvPvC .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ugaOOZvPvC .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ugaOOZvPvC .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-ugaOOZvPvC .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ugaOOZvPvC .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ugaOOZvPvC .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ugaOOZvPvC .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ugaOOZvPvC .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ugaOOZvPvC .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ugaOOZvPvC .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ugaOOZvPvC .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-ugaOOZvPvC .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ugaOOZvPvC .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ugaOOZvPvC .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ugaOOZvPvC .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ugaOOZvPvC .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ugaOOZvPvC .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ugaOOZvPvC .navbar.navbar-short {
  min-height: 60px;
}
.cid-ugaOOZvPvC .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ugaOOZvPvC .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ugaOOZvPvC .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ugaOOZvPvC .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ugaOOZvPvC .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ugaOOZvPvC .dropdown-item.active,
.cid-ugaOOZvPvC .dropdown-item:active {
  background-color: transparent;
}
.cid-ugaOOZvPvC .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ugaOOZvPvC .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ugaOOZvPvC .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ugaOOZvPvC .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ugaOOZvPvC .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ugaOOZvPvC .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ugaOOZvPvC ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ugaOOZvPvC .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ugaOOZvPvC button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ugaOOZvPvC button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-ugaOOZvPvC button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ugaOOZvPvC button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugaOOZvPvC button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugaOOZvPvC button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ugaOOZvPvC nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugaOOZvPvC nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ugaOOZvPvC nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ugaOOZvPvC nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugaOOZvPvC .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ugaOOZvPvC a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ugaOOZvPvC .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ugaOOZvPvC .navbar {
    height: 70px;
  }
  .cid-ugaOOZvPvC .navbar.opened {
    height: auto;
  }
  .cid-ugaOOZvPvC .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ugaOP0pXf9 {
  overflow: hidden;
  background-color: #262642;
}
.cid-ugaOP0pXf9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugaOP0pXf9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugaOP0pXf9 .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-ugaOP0pXf9 .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-ugaOP0pXf9 .container {
    padding: 0 24px;
  }
}
.cid-ugaOP0pXf9 .row {
  position: relative;
}
.cid-ugaOP0pXf9 .row .card {
  justify-content: center;
}
.cid-ugaOP0pXf9 .row .decor-wrapper {
  position: absolute;
  bottom: -16rem;
  right: -58rem;
  border: 120px solid #ff3399;
  width: 2000px;
  height: 1000px;
  border-radius: 100%;
}
@media (max-width: 992px) {
  .cid-ugaOP0pXf9 .row .decor-wrapper {
    right: -20rem;
  }
}
@media (max-width: 768px) {
  .cid-ugaOP0pXf9 .row .decor-wrapper {
    height: 500px;
    right: -10rem;
  }
}
.cid-ugaOP0pXf9 .title-wrapper {
  position: relative;
}
@media (max-width: 992px) {
  .cid-ugaOP0pXf9 .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-ugaOP0pXf9 .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-ugaOP0pXf9 .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-ugaOP0pXf9 .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ugaOP0pXf9 .title-wrapper .mbr-section-btn {
  margin-top: 64px;
}
@media (max-width: 992px) {
  .cid-ugaOP0pXf9 .title-wrapper .mbr-section-btn {
    margin-top: 32px;
  }
}
.cid-ugaOP0pXf9 .image-wrapper {
  position: relative;
}
.cid-ugaOP0pXf9 .image-wrapper img {
  height: 500px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-ugaOP0pXf9 .image-wrapper img {
    height: 350px;
  }
}
.cid-ugaOP0pXf9 .mbr-section-title {
  color: #F5DF4D;
}
.cid-ugaOP0pXf9 .mbr-text {
  color: #FF3399;
}
.cid-ugaOP0pXf9 .mbr-text,
.cid-ugaOP0pXf9 .mbr-section-btn {
  color: #fafafa;
}
.cid-ugaOP1cwzF {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #e9e9e9;
}
.cid-ugaOP1cwzF .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugaOP1cwzF .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-ugaOP1cwzF .container {
    padding: 0 22px;
  }
}
.cid-ugaOP1cwzF .row {
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0 -6px;
}
.cid-ugaOP1cwzF .row .card {
  padding: 0 6px;
  justify-content: center;
}
.cid-ugaOP1cwzF .row .title-wrapper {
  position: absolute;
  z-index: 1;
  background-color: #f63df9;
  padding: 24px 80px;
  border-radius: 80px;
  width: fit-content;
}
@media (max-width: 992px) {
  .cid-ugaOP1cwzF .row .title-wrapper {
    position: static;
    padding: 32px;
    width: 100%;
  }
}
.cid-ugaOP1cwzF .row .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-ugaOP1cwzF .image-wrapper {
  margin-bottom: 12px;
}
.cid-ugaOP1cwzF .image-wrapper img {
  height: 560px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-ugaOP1cwzF .image-wrapper img {
    height: 350px;
  }
}
.cid-ugaOP1cwzF .image-wrap {
  margin-bottom: 12px;
}
.cid-ugaOP1cwzF .image-wrap img {
  height: 560px;
  object-fit: cover;
  width: 65%;
}
@media (max-width: 992px) {
  .cid-ugaOP1cwzF .image-wrap img {
    height: 350px;
  }
}
.cid-ugaOP1cwzF .content-wrapper {
  padding: 55px 0;
}
@media (max-width: 992px) {
  .cid-ugaOP1cwzF .content-wrapper {
    padding: 32px 0;
  }
}
.cid-ugaOP1cwzF .content-wrapper .mbr-desc {
  margin-bottom: 32px;
}
.cid-ugaOP1cwzF .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-ugaOP1cwzF .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-ugaOP1cwzF .mbr-desc {
  color: #000000;
}
.cid-ugaOP1cwzF .mbr-text {
  color: #000000;
}
.cid-ugaOP1Xr0H {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #6a2be9;
}
.cid-ugaOP1Xr0H .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugaOP1Xr0H .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-ugaOP1Xr0H .container {
    padding: 0 16px;
  }
}
.cid-ugaOP1Xr0H .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-ugaOP1Xr0H .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-ugaOP1Xr0H .content-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-ugaOP1Xr0H .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-ugaOP1Xr0H .content-wrapper .text-wrapper .mbr-text {
  display: inline-flex;
  width: 60%;
  margin-bottom: 32px;
}
@media (max-width: 1200px) {
  .cid-ugaOP1Xr0H .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-ugaOP1Xr0H .image-wrapper {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-ugaOP1Xr0H .image-wrapper {
    margin-left: 0;
  }
}
.cid-ugaOP1Xr0H .image-wrapper img {
  height: 660px;
  object-fit: cover;
  box-shadow: 6px 8px 0 0 #000000;
  border-radius: 24px !important;
}
@media (max-width: 992px) {
  .cid-ugaOP1Xr0H .image-wrapper img {
    height: 350px;
  }
}
.cid-ugaOP1Xr0H .mbr-section-title {
  color: #ffffff;
}
.cid-ugaOP1Xr0H .mbr-text {
  color: #ffffff;
}
.cid-ugaOP2FHM9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f7f5f6;
}
.cid-ugaOP2FHM9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugaOP2FHM9 .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-ugaOP2FHM9 .container {
    padding: 0 15px;
  }
}
.cid-ugaOP2FHM9 .row {
  justify-content: space-between;
}
.cid-ugaOP2FHM9 .row .card {
  justify-content: flex-end;
}
.cid-ugaOP2FHM9 .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-ugaOP2FHM9 .text-wrapper .mbr-text {
  margin-bottom: 40px;
}
.cid-ugaOP2FHM9 .content-wrapper .border-wrap {
  margin-bottom: 100px;
  position: relative;
  display: flex;
  align-items: center;
  height: 1px;
  background-color: #68707c;
}
.cid-ugaOP2FHM9 .content-wrapper .border-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 1px;
  height: 15px;
  background-color: #68707c;
  transform: rotate(20deg);
}
@media (max-width: 992px) {
  .cid-ugaOP2FHM9 .content-wrapper .border-wrap {
    margin-bottom: 40px;
  }
}
.cid-ugaOP2FHM9 .content-wrapper .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}
@media (max-width: 992px) {
  .cid-ugaOP2FHM9 .content-wrapper .items-wrapper {
    grid-template-columns: 1fr;
  }
}
.cid-ugaOP2FHM9 .content-wrapper .items-wrapper .item .item-wrapper .item-content .icon-wrapper {
  margin-bottom: 30px;
}
.cid-ugaOP2FHM9 .content-wrapper .items-wrapper .item .item-wrapper .item-content .icon-wrapper .mbr-iconfont {
  font-size: 50px;
  display: inline-flex;
  color: #6e88ab;
}
.cid-ugaOP2FHM9 .content-wrapper .items-wrapper .item .item-wrapper .item-content .item-text {
  padding-right: 50px;
  margin-bottom: 65px;
}
@media (max-width: 1440px) {
  .cid-ugaOP2FHM9 .content-wrapper .items-wrapper .item .item-wrapper .item-content .item-text {
    padding-right: 25px;
  }
}
@media (max-width: 1200px) {
  .cid-ugaOP2FHM9 .content-wrapper .items-wrapper .item .item-wrapper .item-content .item-text {
    padding-right: 0;
  }
}
.cid-ugaOP2FHM9 .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.cid-ugaOP2FHM9 .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper::before {
  content: '';
  position: absolute;
  top: -26px;
  left: -20px;
  width: 75px;
  height: 68px;
  background-color: #6e88ab;
  transform: skewX(-20deg);
}
@media (max-width: 992px) {
  .cid-ugaOP2FHM9 .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper::before {
    left: 0;
  }
}
.cid-ugaOP2FHM9 .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper img {
  position: relative;
  z-index: 1;
  height: 85px;
  width: 85px;
  min-width: 85px;
  border-radius: 100% !important;
  object-fit: cover;
  margin-right: 20px;
}
.cid-ugaOP2FHM9 .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper a {
  height: 85px;
  width: 85px;
  min-width: 85px;
}
.cid-ugaOP2FHM9 .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper .name-wrap {
  position: relative;
  z-index: 1;
}
.cid-ugaOP2FHM9 .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper .name-wrap .item-name {
  margin-bottom: 0;
}
.cid-ugaOP2FHM9 .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper .name-wrap .item-role {
  margin-bottom: 0;
}
.cid-ugaOP2FHM9 .mbr-section-title {
  color: #30262b;
}
.cid-ugaOP2FHM9 .mbr-text {
  color: #30262b;
}
.cid-ugaOP2FHM9 .item-text {
  color: #30262b;
}
.cid-ugaOP2FHM9 .item-name {
  color: #30262b;
}
.cid-ugaOP2FHM9 .item-role {
  color: #30262b;
}
.cid-ugaOP3I5rJ {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-ugaOP3I5rJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugaOP3I5rJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugaOP3I5rJ .media-container-row {
  justify-content: space-between;
}
.cid-ugaOP3I5rJ .text-content {
  max-width: 50%;
}
@media (max-width: 768px) {
  .cid-ugaOP3I5rJ .text-content {
    max-width: none;
  }
}
.cid-ugaOP3I5rJ .mbr-iconfont-social {
  margin: 0.5rem;
  font-size: 32px;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #6592e6;
  border: 2px solid #6592e6;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-ugaOP3I5rJ .mbr-iconfont-social:before {
  padding: 0.6rem;
}
.cid-ugaOP3I5rJ .mbr-iconfont-social:hover {
  background-color: #6592e6;
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-ugaOP3I5rJ .icons {
    justify-content: center !important;
  }
  .cid-ugaOP3I5rJ .text-content * {
    text-align: center;
  }
}
.cid-ugaOP4DAQP {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-ugaOP5cRYE {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #5f337d;
}
.cid-ugaOP5cRYE .row-links {
  width: 100%;
  justify-content: center;
}
.cid-ugaOP5cRYE .social-row {
  width: 100%;
  justify-content: center;
}
.cid-ugaOP5cRYE .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-ugaOP5cRYE .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-ugaOP5cRYE .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-ugaOP5cRYE .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-ugaOP5cRYE .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-ugaOP5cRYE .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-ugaOP5cRYE .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-ugaOP5cRYE .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-ugaOP5cRYE .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-ugaOP5cRYE .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-ugaOP5cRYE .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-ugaOP5cRYE .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-ugaOP5cRYE .media-container-row .mbr-text {
  text-align: center;
}
.cid-ugbfmETmDG {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ugbfmETmDG nav.navbar {
  position: fixed;
}
.cid-ugbfmETmDG .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ugbfmETmDG .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ugbfmETmDG .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ugbfmETmDG .dropdown-item:hover,
.cid-ugbfmETmDG .dropdown-item:focus {
  background: #39f514 !important;
  color: white !important;
}
.cid-ugbfmETmDG .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ugbfmETmDG .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ugbfmETmDG .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ugbfmETmDG .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ugbfmETmDG .nav-link {
  position: relative;
}
.cid-ugbfmETmDG .container {
  display: flex;
  margin: auto;
}
.cid-ugbfmETmDG .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ugbfmETmDG .dropdown-menu,
.cid-ugbfmETmDG .navbar.opened {
  background: #ffffff !important;
}
.cid-ugbfmETmDG .nav-item:focus,
.cid-ugbfmETmDG .nav-link:focus {
  outline: none;
}
.cid-ugbfmETmDG .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ugbfmETmDG .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ugbfmETmDG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ugbfmETmDG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ugbfmETmDG .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ugbfmETmDG .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ugbfmETmDG .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-ugbfmETmDG .navbar.opened {
  transition: all 0.3s;
}
.cid-ugbfmETmDG .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ugbfmETmDG .navbar .navbar-logo img {
  width: auto;
}
.cid-ugbfmETmDG .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ugbfmETmDG .navbar.collapsed {
  justify-content: center;
}
.cid-ugbfmETmDG .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ugbfmETmDG .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ugbfmETmDG .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-ugbfmETmDG .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ugbfmETmDG .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ugbfmETmDG .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-ugbfmETmDG .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ugbfmETmDG .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ugbfmETmDG .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ugbfmETmDG .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ugbfmETmDG .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ugbfmETmDG .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ugbfmETmDG .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ugbfmETmDG .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-ugbfmETmDG .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ugbfmETmDG .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ugbfmETmDG .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ugbfmETmDG .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ugbfmETmDG .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ugbfmETmDG .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ugbfmETmDG .navbar.navbar-short {
  min-height: 60px;
}
.cid-ugbfmETmDG .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ugbfmETmDG .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ugbfmETmDG .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ugbfmETmDG .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ugbfmETmDG .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ugbfmETmDG .dropdown-item.active,
.cid-ugbfmETmDG .dropdown-item:active {
  background-color: transparent;
}
.cid-ugbfmETmDG .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ugbfmETmDG .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ugbfmETmDG .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ugbfmETmDG .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ugbfmETmDG .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ugbfmETmDG .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ugbfmETmDG ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ugbfmETmDG .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ugbfmETmDG button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ugbfmETmDG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-ugbfmETmDG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ugbfmETmDG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugbfmETmDG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugbfmETmDG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ugbfmETmDG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugbfmETmDG nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ugbfmETmDG nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ugbfmETmDG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugbfmETmDG .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ugbfmETmDG a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ugbfmETmDG .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ugbfmETmDG .navbar {
    height: 70px;
  }
  .cid-ugbfmETmDG .navbar.opened {
    height: auto;
  }
  .cid-ugbfmETmDG .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ugbfmFMck6 {
  overflow: hidden;
  background-color: #262642;
}
.cid-ugbfmFMck6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugbfmFMck6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugbfmFMck6 .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-ugbfmFMck6 .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-ugbfmFMck6 .container {
    padding: 0 24px;
  }
}
.cid-ugbfmFMck6 .row {
  position: relative;
}
.cid-ugbfmFMck6 .row .card {
  justify-content: center;
}
.cid-ugbfmFMck6 .row .decor-wrapper {
  position: absolute;
  bottom: -16rem;
  right: -58rem;
  border: 120px solid #ff3399;
  width: 2000px;
  height: 1000px;
  border-radius: 100%;
}
@media (max-width: 992px) {
  .cid-ugbfmFMck6 .row .decor-wrapper {
    right: -20rem;
  }
}
@media (max-width: 768px) {
  .cid-ugbfmFMck6 .row .decor-wrapper {
    height: 500px;
    right: -10rem;
  }
}
.cid-ugbfmFMck6 .title-wrapper {
  position: relative;
}
@media (max-width: 992px) {
  .cid-ugbfmFMck6 .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-ugbfmFMck6 .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-ugbfmFMck6 .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-ugbfmFMck6 .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ugbfmFMck6 .title-wrapper .mbr-section-btn {
  margin-top: 64px;
}
@media (max-width: 992px) {
  .cid-ugbfmFMck6 .title-wrapper .mbr-section-btn {
    margin-top: 32px;
  }
}
.cid-ugbfmFMck6 .image-wrapper {
  position: relative;
}
.cid-ugbfmFMck6 .image-wrapper img {
  height: 500px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-ugbfmFMck6 .image-wrapper img {
    height: 350px;
  }
}
.cid-ugbfmFMck6 .mbr-section-title {
  color: #F5DF4D;
}
.cid-ugbfmFMck6 .mbr-text {
  color: #FF3399;
}
.cid-ugbfmFMck6 .mbr-text,
.cid-ugbfmFMck6 .mbr-section-btn {
  color: #fafafa;
}
.cid-ugbfmGz0A4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #e9e9e9;
}
.cid-ugbfmGz0A4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugbfmGz0A4 .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-ugbfmGz0A4 .container {
    padding: 0 22px;
  }
}
.cid-ugbfmGz0A4 .row {
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0 -6px;
}
.cid-ugbfmGz0A4 .row .card {
  padding: 0 6px;
  justify-content: center;
}
.cid-ugbfmGz0A4 .row .title-wrapper {
  position: absolute;
  z-index: 1;
  background-color: #f63df9;
  padding: 24px 80px;
  border-radius: 80px;
  width: fit-content;
}
@media (max-width: 992px) {
  .cid-ugbfmGz0A4 .row .title-wrapper {
    position: static;
    padding: 32px;
    width: 100%;
  }
}
.cid-ugbfmGz0A4 .row .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-ugbfmGz0A4 .image-wrapper {
  margin-bottom: 12px;
}
.cid-ugbfmGz0A4 .image-wrapper img {
  height: 560px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-ugbfmGz0A4 .image-wrapper img {
    height: 350px;
  }
}
.cid-ugbfmGz0A4 .image-wrap {
  margin-bottom: 12px;
}
.cid-ugbfmGz0A4 .image-wrap img {
  height: 560px;
  object-fit: cover;
  width: 65%;
}
@media (max-width: 992px) {
  .cid-ugbfmGz0A4 .image-wrap img {
    height: 350px;
  }
}
.cid-ugbfmGz0A4 .content-wrapper {
  padding: 55px 0;
}
@media (max-width: 992px) {
  .cid-ugbfmGz0A4 .content-wrapper {
    padding: 32px 0;
  }
}
.cid-ugbfmGz0A4 .content-wrapper .mbr-desc {
  margin-bottom: 32px;
}
.cid-ugbfmGz0A4 .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-ugbfmGz0A4 .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-ugbfmGz0A4 .mbr-desc {
  color: #000000;
}
.cid-ugbfmGz0A4 .mbr-text {
  color: #000000;
}
.cid-ugbfmHlBG4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #6a2be9;
}
.cid-ugbfmHlBG4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugbfmHlBG4 .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-ugbfmHlBG4 .container {
    padding: 0 16px;
  }
}
.cid-ugbfmHlBG4 .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-ugbfmHlBG4 .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-ugbfmHlBG4 .content-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-ugbfmHlBG4 .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-ugbfmHlBG4 .content-wrapper .text-wrapper .mbr-text {
  display: inline-flex;
  width: 60%;
  margin-bottom: 32px;
}
@media (max-width: 1200px) {
  .cid-ugbfmHlBG4 .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-ugbfmHlBG4 .image-wrapper {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-ugbfmHlBG4 .image-wrapper {
    margin-left: 0;
  }
}
.cid-ugbfmHlBG4 .image-wrapper img {
  height: 660px;
  object-fit: cover;
  box-shadow: 6px 8px 0 0 #000000;
  border-radius: 24px !important;
}
@media (max-width: 992px) {
  .cid-ugbfmHlBG4 .image-wrapper img {
    height: 350px;
  }
}
.cid-ugbfmHlBG4 .mbr-section-title {
  color: #ffffff;
}
.cid-ugbfmHlBG4 .mbr-text {
  color: #ffffff;
}
.cid-ugbfmI388F {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f7f5f6;
}
.cid-ugbfmI388F .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugbfmI388F .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-ugbfmI388F .container {
    padding: 0 15px;
  }
}
.cid-ugbfmI388F .row {
  justify-content: space-between;
}
.cid-ugbfmI388F .row .card {
  justify-content: flex-end;
}
.cid-ugbfmI388F .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-ugbfmI388F .text-wrapper .mbr-text {
  margin-bottom: 40px;
}
.cid-ugbfmI388F .content-wrapper .border-wrap {
  margin-bottom: 100px;
  position: relative;
  display: flex;
  align-items: center;
  height: 1px;
  background-color: #68707c;
}
.cid-ugbfmI388F .content-wrapper .border-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 1px;
  height: 15px;
  background-color: #68707c;
  transform: rotate(20deg);
}
@media (max-width: 992px) {
  .cid-ugbfmI388F .content-wrapper .border-wrap {
    margin-bottom: 40px;
  }
}
.cid-ugbfmI388F .content-wrapper .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}
@media (max-width: 992px) {
  .cid-ugbfmI388F .content-wrapper .items-wrapper {
    grid-template-columns: 1fr;
  }
}
.cid-ugbfmI388F .content-wrapper .items-wrapper .item .item-wrapper .item-content .icon-wrapper {
  margin-bottom: 30px;
}
.cid-ugbfmI388F .content-wrapper .items-wrapper .item .item-wrapper .item-content .icon-wrapper .mbr-iconfont {
  font-size: 50px;
  display: inline-flex;
  color: #6e88ab;
}
.cid-ugbfmI388F .content-wrapper .items-wrapper .item .item-wrapper .item-content .item-text {
  padding-right: 50px;
  margin-bottom: 65px;
}
@media (max-width: 1440px) {
  .cid-ugbfmI388F .content-wrapper .items-wrapper .item .item-wrapper .item-content .item-text {
    padding-right: 25px;
  }
}
@media (max-width: 1200px) {
  .cid-ugbfmI388F .content-wrapper .items-wrapper .item .item-wrapper .item-content .item-text {
    padding-right: 0;
  }
}
.cid-ugbfmI388F .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.cid-ugbfmI388F .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper::before {
  content: '';
  position: absolute;
  top: -26px;
  left: -20px;
  width: 75px;
  height: 68px;
  background-color: #6e88ab;
  transform: skewX(-20deg);
}
@media (max-width: 992px) {
  .cid-ugbfmI388F .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper::before {
    left: 0;
  }
}
.cid-ugbfmI388F .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper img {
  position: relative;
  z-index: 1;
  height: 85px;
  width: 85px;
  min-width: 85px;
  border-radius: 100% !important;
  object-fit: cover;
  margin-right: 20px;
}
.cid-ugbfmI388F .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper a {
  height: 85px;
  width: 85px;
  min-width: 85px;
}
.cid-ugbfmI388F .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper .name-wrap {
  position: relative;
  z-index: 1;
}
.cid-ugbfmI388F .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper .name-wrap .item-name {
  margin-bottom: 0;
}
.cid-ugbfmI388F .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper .name-wrap .item-role {
  margin-bottom: 0;
}
.cid-ugbfmI388F .mbr-section-title {
  color: #30262b;
}
.cid-ugbfmI388F .mbr-text {
  color: #30262b;
}
.cid-ugbfmI388F .item-text {
  color: #30262b;
}
.cid-ugbfmI388F .item-name {
  color: #30262b;
}
.cid-ugbfmI388F .item-role {
  color: #30262b;
}
.cid-ugbfmJ3ILb {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-ugbfmJ3ILb .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugbfmJ3ILb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugbfmJ3ILb .media-container-row {
  justify-content: space-between;
}
.cid-ugbfmJ3ILb .text-content {
  max-width: 50%;
}
@media (max-width: 768px) {
  .cid-ugbfmJ3ILb .text-content {
    max-width: none;
  }
}
.cid-ugbfmJ3ILb .mbr-iconfont-social {
  margin: 0.5rem;
  font-size: 32px;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #6592e6;
  border: 2px solid #6592e6;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-ugbfmJ3ILb .mbr-iconfont-social:before {
  padding: 0.6rem;
}
.cid-ugbfmJ3ILb .mbr-iconfont-social:hover {
  background-color: #6592e6;
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-ugbfmJ3ILb .icons {
    justify-content: center !important;
  }
  .cid-ugbfmJ3ILb .text-content * {
    text-align: center;
  }
}
.cid-ugbfmJXcF3 {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-ugbfmKzvFx {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #5f337d;
}
.cid-ugbfmKzvFx .row-links {
  width: 100%;
  justify-content: center;
}
.cid-ugbfmKzvFx .social-row {
  width: 100%;
  justify-content: center;
}
.cid-ugbfmKzvFx .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-ugbfmKzvFx .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-ugbfmKzvFx .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-ugbfmKzvFx .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-ugbfmKzvFx .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-ugbfmKzvFx .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-ugbfmKzvFx .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-ugbfmKzvFx .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-ugbfmKzvFx .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-ugbfmKzvFx .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-ugbfmKzvFx .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-ugbfmKzvFx .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-ugbfmKzvFx .media-container-row .mbr-text {
  text-align: center;
}
.cid-ugfnd94eIe {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ugfnd94eIe nav.navbar {
  position: fixed;
}
.cid-ugfnd94eIe .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ugfnd94eIe .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ugfnd94eIe .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ugfnd94eIe .dropdown-item:hover,
.cid-ugfnd94eIe .dropdown-item:focus {
  background: #39f514 !important;
  color: white !important;
}
.cid-ugfnd94eIe .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ugfnd94eIe .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ugfnd94eIe .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ugfnd94eIe .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ugfnd94eIe .nav-link {
  position: relative;
}
.cid-ugfnd94eIe .container {
  display: flex;
  margin: auto;
}
.cid-ugfnd94eIe .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ugfnd94eIe .dropdown-menu,
.cid-ugfnd94eIe .navbar.opened {
  background: #ffffff !important;
}
.cid-ugfnd94eIe .nav-item:focus,
.cid-ugfnd94eIe .nav-link:focus {
  outline: none;
}
.cid-ugfnd94eIe .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ugfnd94eIe .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ugfnd94eIe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ugfnd94eIe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ugfnd94eIe .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ugfnd94eIe .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ugfnd94eIe .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-ugfnd94eIe .navbar.opened {
  transition: all 0.3s;
}
.cid-ugfnd94eIe .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ugfnd94eIe .navbar .navbar-logo img {
  width: auto;
}
.cid-ugfnd94eIe .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ugfnd94eIe .navbar.collapsed {
  justify-content: center;
}
.cid-ugfnd94eIe .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ugfnd94eIe .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ugfnd94eIe .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-ugfnd94eIe .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ugfnd94eIe .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ugfnd94eIe .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-ugfnd94eIe .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ugfnd94eIe .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ugfnd94eIe .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ugfnd94eIe .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ugfnd94eIe .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ugfnd94eIe .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ugfnd94eIe .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ugfnd94eIe .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-ugfnd94eIe .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ugfnd94eIe .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ugfnd94eIe .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ugfnd94eIe .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ugfnd94eIe .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ugfnd94eIe .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ugfnd94eIe .navbar.navbar-short {
  min-height: 60px;
}
.cid-ugfnd94eIe .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ugfnd94eIe .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ugfnd94eIe .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ugfnd94eIe .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ugfnd94eIe .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ugfnd94eIe .dropdown-item.active,
.cid-ugfnd94eIe .dropdown-item:active {
  background-color: transparent;
}
.cid-ugfnd94eIe .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ugfnd94eIe .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ugfnd94eIe .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ugfnd94eIe .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ugfnd94eIe .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ugfnd94eIe .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ugfnd94eIe ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ugfnd94eIe .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ugfnd94eIe button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ugfnd94eIe button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-ugfnd94eIe button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ugfnd94eIe button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugfnd94eIe button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugfnd94eIe button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ugfnd94eIe nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugfnd94eIe nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ugfnd94eIe nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ugfnd94eIe nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugfnd94eIe .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ugfnd94eIe a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ugfnd94eIe .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ugfnd94eIe .navbar {
    height: 70px;
  }
  .cid-ugfnd94eIe .navbar.opened {
    height: auto;
  }
  .cid-ugfnd94eIe .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ugfnda2nSu {
  overflow: hidden;
  background-color: #262642;
}
.cid-ugfnda2nSu .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugfnda2nSu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugfnda2nSu .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-ugfnda2nSu .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-ugfnda2nSu .container {
    padding: 0 24px;
  }
}
.cid-ugfnda2nSu .row {
  position: relative;
}
.cid-ugfnda2nSu .row .card {
  justify-content: center;
}
.cid-ugfnda2nSu .row .decor-wrapper {
  position: absolute;
  bottom: -16rem;
  right: -58rem;
  border: 120px solid #ff3399;
  width: 2000px;
  height: 1000px;
  border-radius: 100%;
}
@media (max-width: 992px) {
  .cid-ugfnda2nSu .row .decor-wrapper {
    right: -20rem;
  }
}
@media (max-width: 768px) {
  .cid-ugfnda2nSu .row .decor-wrapper {
    height: 500px;
    right: -10rem;
  }
}
.cid-ugfnda2nSu .title-wrapper {
  position: relative;
}
@media (max-width: 992px) {
  .cid-ugfnda2nSu .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-ugfnda2nSu .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-ugfnda2nSu .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-ugfnda2nSu .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ugfnda2nSu .title-wrapper .mbr-section-btn {
  margin-top: 64px;
}
@media (max-width: 992px) {
  .cid-ugfnda2nSu .title-wrapper .mbr-section-btn {
    margin-top: 32px;
  }
}
.cid-ugfnda2nSu .image-wrapper {
  position: relative;
}
.cid-ugfnda2nSu .image-wrapper img {
  height: 500px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-ugfnda2nSu .image-wrapper img {
    height: 350px;
  }
}
.cid-ugfnda2nSu .mbr-section-title {
  color: #F5DF4D;
}
.cid-ugfnda2nSu .mbr-text {
  color: #FF3399;
}
.cid-ugfnda2nSu .mbr-text,
.cid-ugfnda2nSu .mbr-section-btn {
  color: #fafafa;
}
.cid-ugfndaH9R5 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #e9e9e9;
}
.cid-ugfndaH9R5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugfndaH9R5 .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-ugfndaH9R5 .container {
    padding: 0 22px;
  }
}
.cid-ugfndaH9R5 .row {
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0 -6px;
}
.cid-ugfndaH9R5 .row .card {
  padding: 0 6px;
  justify-content: center;
}
.cid-ugfndaH9R5 .row .title-wrapper {
  position: absolute;
  z-index: 1;
  background-color: #f63df9;
  padding: 24px 80px;
  border-radius: 80px;
  width: fit-content;
}
@media (max-width: 992px) {
  .cid-ugfndaH9R5 .row .title-wrapper {
    position: static;
    padding: 32px;
    width: 100%;
  }
}
.cid-ugfndaH9R5 .row .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-ugfndaH9R5 .image-wrapper {
  margin-bottom: 12px;
}
.cid-ugfndaH9R5 .image-wrapper img {
  height: 560px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-ugfndaH9R5 .image-wrapper img {
    height: 350px;
  }
}
.cid-ugfndaH9R5 .image-wrap {
  margin-bottom: 12px;
}
.cid-ugfndaH9R5 .image-wrap img {
  height: 560px;
  object-fit: cover;
  width: 65%;
}
@media (max-width: 992px) {
  .cid-ugfndaH9R5 .image-wrap img {
    height: 350px;
  }
}
.cid-ugfndaH9R5 .content-wrapper {
  padding: 55px 0;
}
@media (max-width: 992px) {
  .cid-ugfndaH9R5 .content-wrapper {
    padding: 32px 0;
  }
}
.cid-ugfndaH9R5 .content-wrapper .mbr-desc {
  margin-bottom: 32px;
}
.cid-ugfndaH9R5 .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-ugfndaH9R5 .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-ugfndaH9R5 .mbr-desc {
  color: #000000;
}
.cid-ugfndaH9R5 .mbr-text {
  color: #000000;
}
.cid-ugfndbtYKz {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #6a2be9;
}
.cid-ugfndbtYKz .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugfndbtYKz .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-ugfndbtYKz .container {
    padding: 0 16px;
  }
}
.cid-ugfndbtYKz .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-ugfndbtYKz .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-ugfndbtYKz .content-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-ugfndbtYKz .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-ugfndbtYKz .content-wrapper .text-wrapper .mbr-text {
  display: inline-flex;
  width: 60%;
  margin-bottom: 32px;
}
@media (max-width: 1200px) {
  .cid-ugfndbtYKz .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-ugfndbtYKz .image-wrapper {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-ugfndbtYKz .image-wrapper {
    margin-left: 0;
  }
}
.cid-ugfndbtYKz .image-wrapper img {
  height: 660px;
  object-fit: cover;
  box-shadow: 6px 8px 0 0 #000000;
  border-radius: 24px !important;
}
@media (max-width: 992px) {
  .cid-ugfndbtYKz .image-wrapper img {
    height: 350px;
  }
}
.cid-ugfndbtYKz .mbr-section-title {
  color: #ffffff;
}
.cid-ugfndbtYKz .mbr-text {
  color: #ffffff;
}
.cid-ugfndceNRt {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f7f5f6;
}
.cid-ugfndceNRt .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugfndceNRt .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-ugfndceNRt .container {
    padding: 0 15px;
  }
}
.cid-ugfndceNRt .row {
  justify-content: space-between;
}
.cid-ugfndceNRt .row .card {
  justify-content: flex-end;
}
.cid-ugfndceNRt .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-ugfndceNRt .text-wrapper .mbr-text {
  margin-bottom: 40px;
}
.cid-ugfndceNRt .content-wrapper .border-wrap {
  margin-bottom: 100px;
  position: relative;
  display: flex;
  align-items: center;
  height: 1px;
  background-color: #68707c;
}
.cid-ugfndceNRt .content-wrapper .border-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 1px;
  height: 15px;
  background-color: #68707c;
  transform: rotate(20deg);
}
@media (max-width: 992px) {
  .cid-ugfndceNRt .content-wrapper .border-wrap {
    margin-bottom: 40px;
  }
}
.cid-ugfndceNRt .content-wrapper .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}
@media (max-width: 992px) {
  .cid-ugfndceNRt .content-wrapper .items-wrapper {
    grid-template-columns: 1fr;
  }
}
.cid-ugfndceNRt .content-wrapper .items-wrapper .item .item-wrapper .item-content .icon-wrapper {
  margin-bottom: 30px;
}
.cid-ugfndceNRt .content-wrapper .items-wrapper .item .item-wrapper .item-content .icon-wrapper .mbr-iconfont {
  font-size: 50px;
  display: inline-flex;
  color: #6e88ab;
}
.cid-ugfndceNRt .content-wrapper .items-wrapper .item .item-wrapper .item-content .item-text {
  padding-right: 50px;
  margin-bottom: 65px;
}
@media (max-width: 1440px) {
  .cid-ugfndceNRt .content-wrapper .items-wrapper .item .item-wrapper .item-content .item-text {
    padding-right: 25px;
  }
}
@media (max-width: 1200px) {
  .cid-ugfndceNRt .content-wrapper .items-wrapper .item .item-wrapper .item-content .item-text {
    padding-right: 0;
  }
}
.cid-ugfndceNRt .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.cid-ugfndceNRt .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper::before {
  content: '';
  position: absolute;
  top: -26px;
  left: -20px;
  width: 75px;
  height: 68px;
  background-color: #6e88ab;
  transform: skewX(-20deg);
}
@media (max-width: 992px) {
  .cid-ugfndceNRt .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper::before {
    left: 0;
  }
}
.cid-ugfndceNRt .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper img {
  position: relative;
  z-index: 1;
  height: 85px;
  width: 85px;
  min-width: 85px;
  border-radius: 100% !important;
  object-fit: cover;
  margin-right: 20px;
}
.cid-ugfndceNRt .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper a {
  height: 85px;
  width: 85px;
  min-width: 85px;
}
.cid-ugfndceNRt .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper .name-wrap {
  position: relative;
  z-index: 1;
}
.cid-ugfndceNRt .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper .name-wrap .item-name {
  margin-bottom: 0;
}
.cid-ugfndceNRt .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper .name-wrap .item-role {
  margin-bottom: 0;
}
.cid-ugfndceNRt .mbr-section-title {
  color: #30262b;
}
.cid-ugfndceNRt .mbr-text {
  color: #30262b;
}
.cid-ugfndceNRt .item-text {
  color: #30262b;
}
.cid-ugfndceNRt .item-name {
  color: #30262b;
}
.cid-ugfndceNRt .item-role {
  color: #30262b;
}
.cid-ugfnddd6BX {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-ugfnddd6BX .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugfnddd6BX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugfnddd6BX .media-container-row {
  justify-content: space-between;
}
.cid-ugfnddd6BX .text-content {
  max-width: 50%;
}
@media (max-width: 768px) {
  .cid-ugfnddd6BX .text-content {
    max-width: none;
  }
}
.cid-ugfnddd6BX .mbr-iconfont-social {
  margin: 0.5rem;
  font-size: 32px;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #6592e6;
  border: 2px solid #6592e6;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-ugfnddd6BX .mbr-iconfont-social:before {
  padding: 0.6rem;
}
.cid-ugfnddd6BX .mbr-iconfont-social:hover {
  background-color: #6592e6;
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-ugfnddd6BX .icons {
    justify-content: center !important;
  }
  .cid-ugfnddd6BX .text-content * {
    text-align: center;
  }
}
.cid-ugfnde55US {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-ugfndeE7u1 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #5f337d;
}
.cid-ugfndeE7u1 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-ugfndeE7u1 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-ugfndeE7u1 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-ugfndeE7u1 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-ugfndeE7u1 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-ugfndeE7u1 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-ugfndeE7u1 .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-ugfndeE7u1 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-ugfndeE7u1 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-ugfndeE7u1 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-ugfndeE7u1 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-ugfndeE7u1 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-ugfndeE7u1 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-ugfndeE7u1 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-ugfndeE7u1 .media-container-row .mbr-text {
  text-align: center;
}
.cid-ugfR32kniw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ugfR32kniw nav.navbar {
  position: fixed;
}
.cid-ugfR32kniw .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ugfR32kniw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ugfR32kniw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ugfR32kniw .dropdown-item:hover,
.cid-ugfR32kniw .dropdown-item:focus {
  background: #39f514 !important;
  color: white !important;
}
.cid-ugfR32kniw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ugfR32kniw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ugfR32kniw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ugfR32kniw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ugfR32kniw .nav-link {
  position: relative;
}
.cid-ugfR32kniw .container {
  display: flex;
  margin: auto;
}
.cid-ugfR32kniw .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ugfR32kniw .dropdown-menu,
.cid-ugfR32kniw .navbar.opened {
  background: #ffffff !important;
}
.cid-ugfR32kniw .nav-item:focus,
.cid-ugfR32kniw .nav-link:focus {
  outline: none;
}
.cid-ugfR32kniw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ugfR32kniw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ugfR32kniw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ugfR32kniw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ugfR32kniw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ugfR32kniw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ugfR32kniw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-ugfR32kniw .navbar.opened {
  transition: all 0.3s;
}
.cid-ugfR32kniw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ugfR32kniw .navbar .navbar-logo img {
  width: auto;
}
.cid-ugfR32kniw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ugfR32kniw .navbar.collapsed {
  justify-content: center;
}
.cid-ugfR32kniw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ugfR32kniw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ugfR32kniw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-ugfR32kniw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ugfR32kniw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ugfR32kniw .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-ugfR32kniw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ugfR32kniw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ugfR32kniw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ugfR32kniw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ugfR32kniw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ugfR32kniw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ugfR32kniw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ugfR32kniw .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-ugfR32kniw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ugfR32kniw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ugfR32kniw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ugfR32kniw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ugfR32kniw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ugfR32kniw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ugfR32kniw .navbar.navbar-short {
  min-height: 60px;
}
.cid-ugfR32kniw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ugfR32kniw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ugfR32kniw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ugfR32kniw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ugfR32kniw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ugfR32kniw .dropdown-item.active,
.cid-ugfR32kniw .dropdown-item:active {
  background-color: transparent;
}
.cid-ugfR32kniw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ugfR32kniw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ugfR32kniw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ugfR32kniw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ugfR32kniw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ugfR32kniw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ugfR32kniw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ugfR32kniw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ugfR32kniw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ugfR32kniw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-ugfR32kniw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ugfR32kniw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugfR32kniw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugfR32kniw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ugfR32kniw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugfR32kniw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ugfR32kniw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ugfR32kniw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugfR32kniw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ugfR32kniw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ugfR32kniw .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ugfR32kniw .navbar {
    height: 70px;
  }
  .cid-ugfR32kniw .navbar.opened {
    height: auto;
  }
  .cid-ugfR32kniw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ugfR33syoy {
  overflow: hidden;
  background-color: #262642;
}
.cid-ugfR33syoy .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugfR33syoy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugfR33syoy .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-ugfR33syoy .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-ugfR33syoy .container {
    padding: 0 24px;
  }
}
.cid-ugfR33syoy .row {
  position: relative;
}
.cid-ugfR33syoy .row .card {
  justify-content: center;
}
.cid-ugfR33syoy .row .decor-wrapper {
  position: absolute;
  bottom: -16rem;
  right: -58rem;
  border: 120px solid #ff3399;
  width: 2000px;
  height: 1000px;
  border-radius: 100%;
}
@media (max-width: 992px) {
  .cid-ugfR33syoy .row .decor-wrapper {
    right: -20rem;
  }
}
@media (max-width: 768px) {
  .cid-ugfR33syoy .row .decor-wrapper {
    height: 500px;
    right: -10rem;
  }
}
.cid-ugfR33syoy .title-wrapper {
  position: relative;
}
@media (max-width: 992px) {
  .cid-ugfR33syoy .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-ugfR33syoy .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-ugfR33syoy .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-ugfR33syoy .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ugfR33syoy .title-wrapper .mbr-section-btn {
  margin-top: 64px;
}
@media (max-width: 992px) {
  .cid-ugfR33syoy .title-wrapper .mbr-section-btn {
    margin-top: 32px;
  }
}
.cid-ugfR33syoy .image-wrapper {
  position: relative;
}
.cid-ugfR33syoy .image-wrapper img {
  height: 500px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-ugfR33syoy .image-wrapper img {
    height: 350px;
  }
}
.cid-ugfR33syoy .mbr-section-title {
  color: #F5DF4D;
}
.cid-ugfR33syoy .mbr-text {
  color: #FF3399;
}
.cid-ugfR33syoy .mbr-text,
.cid-ugfR33syoy .mbr-section-btn {
  color: #fafafa;
}
.cid-ugfR34jFfl {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #e9e9e9;
}
.cid-ugfR34jFfl .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugfR34jFfl .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-ugfR34jFfl .container {
    padding: 0 22px;
  }
}
.cid-ugfR34jFfl .row {
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0 -6px;
}
.cid-ugfR34jFfl .row .card {
  padding: 0 6px;
  justify-content: center;
}
.cid-ugfR34jFfl .row .title-wrapper {
  position: absolute;
  z-index: 1;
  background-color: #f63df9;
  padding: 24px 80px;
  border-radius: 80px;
  width: fit-content;
}
@media (max-width: 992px) {
  .cid-ugfR34jFfl .row .title-wrapper {
    position: static;
    padding: 32px;
    width: 100%;
  }
}
.cid-ugfR34jFfl .row .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-ugfR34jFfl .image-wrapper {
  margin-bottom: 12px;
}
.cid-ugfR34jFfl .image-wrapper img {
  height: 560px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-ugfR34jFfl .image-wrapper img {
    height: 350px;
  }
}
.cid-ugfR34jFfl .image-wrap {
  margin-bottom: 12px;
}
.cid-ugfR34jFfl .image-wrap img {
  height: 560px;
  object-fit: cover;
  width: 65%;
}
@media (max-width: 992px) {
  .cid-ugfR34jFfl .image-wrap img {
    height: 350px;
  }
}
.cid-ugfR34jFfl .content-wrapper {
  padding: 55px 0;
}
@media (max-width: 992px) {
  .cid-ugfR34jFfl .content-wrapper {
    padding: 32px 0;
  }
}
.cid-ugfR34jFfl .content-wrapper .mbr-desc {
  margin-bottom: 32px;
}
.cid-ugfR34jFfl .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-ugfR34jFfl .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-ugfR34jFfl .mbr-desc {
  color: #000000;
}
.cid-ugfR34jFfl .mbr-text {
  color: #000000;
}
.cid-ugfR35a9GG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #6a2be9;
}
.cid-ugfR35a9GG .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugfR35a9GG .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-ugfR35a9GG .container {
    padding: 0 16px;
  }
}
.cid-ugfR35a9GG .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-ugfR35a9GG .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-ugfR35a9GG .content-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-ugfR35a9GG .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-ugfR35a9GG .content-wrapper .text-wrapper .mbr-text {
  display: inline-flex;
  width: 60%;
  margin-bottom: 32px;
}
@media (max-width: 1200px) {
  .cid-ugfR35a9GG .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-ugfR35a9GG .image-wrapper {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-ugfR35a9GG .image-wrapper {
    margin-left: 0;
  }
}
.cid-ugfR35a9GG .image-wrapper img {
  height: 660px;
  object-fit: cover;
  box-shadow: 6px 8px 0 0 #000000;
  border-radius: 24px !important;
}
@media (max-width: 992px) {
  .cid-ugfR35a9GG .image-wrapper img {
    height: 350px;
  }
}
.cid-ugfR35a9GG .mbr-section-title {
  color: #ffffff;
}
.cid-ugfR35a9GG .mbr-text {
  color: #ffffff;
}
.cid-ugfR35Sduj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f7f5f6;
}
.cid-ugfR35Sduj .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugfR35Sduj .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-ugfR35Sduj .container {
    padding: 0 15px;
  }
}
.cid-ugfR35Sduj .row {
  justify-content: space-between;
}
.cid-ugfR35Sduj .row .card {
  justify-content: flex-end;
}
.cid-ugfR35Sduj .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-ugfR35Sduj .text-wrapper .mbr-text {
  margin-bottom: 40px;
}
.cid-ugfR35Sduj .content-wrapper .border-wrap {
  margin-bottom: 100px;
  position: relative;
  display: flex;
  align-items: center;
  height: 1px;
  background-color: #68707c;
}
.cid-ugfR35Sduj .content-wrapper .border-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 1px;
  height: 15px;
  background-color: #68707c;
  transform: rotate(20deg);
}
@media (max-width: 992px) {
  .cid-ugfR35Sduj .content-wrapper .border-wrap {
    margin-bottom: 40px;
  }
}
.cid-ugfR35Sduj .content-wrapper .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}
@media (max-width: 992px) {
  .cid-ugfR35Sduj .content-wrapper .items-wrapper {
    grid-template-columns: 1fr;
  }
}
.cid-ugfR35Sduj .content-wrapper .items-wrapper .item .item-wrapper .item-content .icon-wrapper {
  margin-bottom: 30px;
}
.cid-ugfR35Sduj .content-wrapper .items-wrapper .item .item-wrapper .item-content .icon-wrapper .mbr-iconfont {
  font-size: 50px;
  display: inline-flex;
  color: #6e88ab;
}
.cid-ugfR35Sduj .content-wrapper .items-wrapper .item .item-wrapper .item-content .item-text {
  padding-right: 50px;
  margin-bottom: 65px;
}
@media (max-width: 1440px) {
  .cid-ugfR35Sduj .content-wrapper .items-wrapper .item .item-wrapper .item-content .item-text {
    padding-right: 25px;
  }
}
@media (max-width: 1200px) {
  .cid-ugfR35Sduj .content-wrapper .items-wrapper .item .item-wrapper .item-content .item-text {
    padding-right: 0;
  }
}
.cid-ugfR35Sduj .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.cid-ugfR35Sduj .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper::before {
  content: '';
  position: absolute;
  top: -26px;
  left: -20px;
  width: 75px;
  height: 68px;
  background-color: #6e88ab;
  transform: skewX(-20deg);
}
@media (max-width: 992px) {
  .cid-ugfR35Sduj .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper::before {
    left: 0;
  }
}
.cid-ugfR35Sduj .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper img {
  position: relative;
  z-index: 1;
  height: 85px;
  width: 85px;
  min-width: 85px;
  border-radius: 100% !important;
  object-fit: cover;
  margin-right: 20px;
}
.cid-ugfR35Sduj .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper a {
  height: 85px;
  width: 85px;
  min-width: 85px;
}
.cid-ugfR35Sduj .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper .name-wrap {
  position: relative;
  z-index: 1;
}
.cid-ugfR35Sduj .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper .name-wrap .item-name {
  margin-bottom: 0;
}
.cid-ugfR35Sduj .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper .name-wrap .item-role {
  margin-bottom: 0;
}
.cid-ugfR35Sduj .mbr-section-title {
  color: #30262b;
}
.cid-ugfR35Sduj .mbr-text {
  color: #30262b;
}
.cid-ugfR35Sduj .item-text {
  color: #30262b;
}
.cid-ugfR35Sduj .item-name {
  color: #30262b;
}
.cid-ugfR35Sduj .item-role {
  color: #30262b;
}
.cid-ugfR36RIRL {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-ugfR36RIRL .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugfR36RIRL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugfR36RIRL .media-container-row {
  justify-content: space-between;
}
.cid-ugfR36RIRL .text-content {
  max-width: 50%;
}
@media (max-width: 768px) {
  .cid-ugfR36RIRL .text-content {
    max-width: none;
  }
}
.cid-ugfR36RIRL .mbr-iconfont-social {
  margin: 0.5rem;
  font-size: 32px;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #6592e6;
  border: 2px solid #6592e6;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-ugfR36RIRL .mbr-iconfont-social:before {
  padding: 0.6rem;
}
.cid-ugfR36RIRL .mbr-iconfont-social:hover {
  background-color: #6592e6;
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-ugfR36RIRL .icons {
    justify-content: center !important;
  }
  .cid-ugfR36RIRL .text-content * {
    text-align: center;
  }
}
.cid-ugfR37Rb7f {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-ugfR38w3JS {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #5f337d;
}
.cid-ugfR38w3JS .row-links {
  width: 100%;
  justify-content: center;
}
.cid-ugfR38w3JS .social-row {
  width: 100%;
  justify-content: center;
}
.cid-ugfR38w3JS .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-ugfR38w3JS .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-ugfR38w3JS .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-ugfR38w3JS .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-ugfR38w3JS .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-ugfR38w3JS .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-ugfR38w3JS .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-ugfR38w3JS .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-ugfR38w3JS .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-ugfR38w3JS .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-ugfR38w3JS .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-ugfR38w3JS .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-ugfR38w3JS .media-container-row .mbr-text {
  text-align: center;
}
.cid-uggoHrWLhH {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uggoHrWLhH nav.navbar {
  position: fixed;
}
.cid-uggoHrWLhH .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uggoHrWLhH .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uggoHrWLhH .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uggoHrWLhH .dropdown-item:hover,
.cid-uggoHrWLhH .dropdown-item:focus {
  background: #39f514 !important;
  color: white !important;
}
.cid-uggoHrWLhH .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uggoHrWLhH .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uggoHrWLhH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uggoHrWLhH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uggoHrWLhH .nav-link {
  position: relative;
}
.cid-uggoHrWLhH .container {
  display: flex;
  margin: auto;
}
.cid-uggoHrWLhH .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uggoHrWLhH .dropdown-menu,
.cid-uggoHrWLhH .navbar.opened {
  background: #ffffff !important;
}
.cid-uggoHrWLhH .nav-item:focus,
.cid-uggoHrWLhH .nav-link:focus {
  outline: none;
}
.cid-uggoHrWLhH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uggoHrWLhH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uggoHrWLhH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uggoHrWLhH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uggoHrWLhH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uggoHrWLhH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uggoHrWLhH .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uggoHrWLhH .navbar.opened {
  transition: all 0.3s;
}
.cid-uggoHrWLhH .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uggoHrWLhH .navbar .navbar-logo img {
  width: auto;
}
.cid-uggoHrWLhH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uggoHrWLhH .navbar.collapsed {
  justify-content: center;
}
.cid-uggoHrWLhH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uggoHrWLhH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uggoHrWLhH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uggoHrWLhH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uggoHrWLhH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uggoHrWLhH .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uggoHrWLhH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uggoHrWLhH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uggoHrWLhH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uggoHrWLhH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uggoHrWLhH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uggoHrWLhH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uggoHrWLhH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uggoHrWLhH .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uggoHrWLhH .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uggoHrWLhH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uggoHrWLhH .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uggoHrWLhH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uggoHrWLhH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uggoHrWLhH .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uggoHrWLhH .navbar.navbar-short {
  min-height: 60px;
}
.cid-uggoHrWLhH .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uggoHrWLhH .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uggoHrWLhH .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uggoHrWLhH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uggoHrWLhH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uggoHrWLhH .dropdown-item.active,
.cid-uggoHrWLhH .dropdown-item:active {
  background-color: transparent;
}
.cid-uggoHrWLhH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uggoHrWLhH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uggoHrWLhH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uggoHrWLhH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uggoHrWLhH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uggoHrWLhH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uggoHrWLhH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uggoHrWLhH .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uggoHrWLhH button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uggoHrWLhH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uggoHrWLhH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uggoHrWLhH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uggoHrWLhH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uggoHrWLhH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uggoHrWLhH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uggoHrWLhH nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uggoHrWLhH nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uggoHrWLhH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uggoHrWLhH .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uggoHrWLhH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uggoHrWLhH .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uggoHrWLhH .navbar {
    height: 70px;
  }
  .cid-uggoHrWLhH .navbar.opened {
    height: auto;
  }
  .cid-uggoHrWLhH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uggoHt10Gs {
  overflow: hidden;
  background-color: #262642;
}
.cid-uggoHt10Gs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uggoHt10Gs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uggoHt10Gs .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-uggoHt10Gs .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uggoHt10Gs .container {
    padding: 0 24px;
  }
}
.cid-uggoHt10Gs .row {
  position: relative;
}
.cid-uggoHt10Gs .row .card {
  justify-content: center;
}
.cid-uggoHt10Gs .row .decor-wrapper {
  position: absolute;
  bottom: -16rem;
  right: -58rem;
  border: 120px solid #ff3399;
  width: 2000px;
  height: 1000px;
  border-radius: 100%;
}
@media (max-width: 992px) {
  .cid-uggoHt10Gs .row .decor-wrapper {
    right: -20rem;
  }
}
@media (max-width: 768px) {
  .cid-uggoHt10Gs .row .decor-wrapper {
    height: 500px;
    right: -10rem;
  }
}
.cid-uggoHt10Gs .title-wrapper {
  position: relative;
}
@media (max-width: 992px) {
  .cid-uggoHt10Gs .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uggoHt10Gs .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uggoHt10Gs .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uggoHt10Gs .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uggoHt10Gs .title-wrapper .mbr-section-btn {
  margin-top: 64px;
}
@media (max-width: 992px) {
  .cid-uggoHt10Gs .title-wrapper .mbr-section-btn {
    margin-top: 32px;
  }
}
.cid-uggoHt10Gs .image-wrapper {
  position: relative;
}
.cid-uggoHt10Gs .image-wrapper img {
  height: 500px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uggoHt10Gs .image-wrapper img {
    height: 350px;
  }
}
.cid-uggoHt10Gs .mbr-section-title {
  color: #F5DF4D;
}
.cid-uggoHt10Gs .mbr-text {
  color: #FF3399;
}
.cid-uggoHt10Gs .mbr-text,
.cid-uggoHt10Gs .mbr-section-btn {
  color: #fafafa;
}
.cid-uggoHtQlzM {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #e9e9e9;
}
.cid-uggoHtQlzM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uggoHtQlzM .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-uggoHtQlzM .container {
    padding: 0 22px;
  }
}
.cid-uggoHtQlzM .row {
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0 -6px;
}
.cid-uggoHtQlzM .row .card {
  padding: 0 6px;
  justify-content: center;
}
.cid-uggoHtQlzM .row .title-wrapper {
  position: absolute;
  z-index: 1;
  background-color: #f63df9;
  padding: 24px 80px;
  border-radius: 80px;
  width: fit-content;
}
@media (max-width: 992px) {
  .cid-uggoHtQlzM .row .title-wrapper {
    position: static;
    padding: 32px;
    width: 100%;
  }
}
.cid-uggoHtQlzM .row .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uggoHtQlzM .image-wrapper {
  margin-bottom: 12px;
}
.cid-uggoHtQlzM .image-wrapper img {
  height: 560px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uggoHtQlzM .image-wrapper img {
    height: 350px;
  }
}
.cid-uggoHtQlzM .image-wrap {
  margin-bottom: 12px;
}
.cid-uggoHtQlzM .image-wrap img {
  height: 560px;
  object-fit: cover;
  width: 65%;
}
@media (max-width: 992px) {
  .cid-uggoHtQlzM .image-wrap img {
    height: 350px;
  }
}
.cid-uggoHtQlzM .content-wrapper {
  padding: 55px 0;
}
@media (max-width: 992px) {
  .cid-uggoHtQlzM .content-wrapper {
    padding: 32px 0;
  }
}
.cid-uggoHtQlzM .content-wrapper .mbr-desc {
  margin-bottom: 32px;
}
.cid-uggoHtQlzM .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-uggoHtQlzM .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uggoHtQlzM .mbr-desc {
  color: #000000;
}
.cid-uggoHtQlzM .mbr-text {
  color: #000000;
}
.cid-uggoHuH1cF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #6a2be9;
}
.cid-uggoHuH1cF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uggoHuH1cF .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-uggoHuH1cF .container {
    padding: 0 16px;
  }
}
.cid-uggoHuH1cF .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uggoHuH1cF .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uggoHuH1cF .content-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uggoHuH1cF .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uggoHuH1cF .content-wrapper .text-wrapper .mbr-text {
  display: inline-flex;
  width: 60%;
  margin-bottom: 32px;
}
@media (max-width: 1200px) {
  .cid-uggoHuH1cF .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uggoHuH1cF .image-wrapper {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-uggoHuH1cF .image-wrapper {
    margin-left: 0;
  }
}
.cid-uggoHuH1cF .image-wrapper img {
  height: 660px;
  object-fit: cover;
  box-shadow: 6px 8px 0 0 #000000;
  border-radius: 24px !important;
}
@media (max-width: 992px) {
  .cid-uggoHuH1cF .image-wrapper img {
    height: 350px;
  }
}
.cid-uggoHuH1cF .mbr-section-title {
  color: #ffffff;
}
.cid-uggoHuH1cF .mbr-text {
  color: #ffffff;
}
.cid-uggoHvnhON {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f7f5f6;
}
.cid-uggoHvnhON .mbr-fallback-image.disabled {
  display: none;
}
.cid-uggoHvnhON .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-uggoHvnhON .container {
    padding: 0 15px;
  }
}
.cid-uggoHvnhON .row {
  justify-content: space-between;
}
.cid-uggoHvnhON .row .card {
  justify-content: flex-end;
}
.cid-uggoHvnhON .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uggoHvnhON .text-wrapper .mbr-text {
  margin-bottom: 40px;
}
.cid-uggoHvnhON .content-wrapper .border-wrap {
  margin-bottom: 100px;
  position: relative;
  display: flex;
  align-items: center;
  height: 1px;
  background-color: #68707c;
}
.cid-uggoHvnhON .content-wrapper .border-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 1px;
  height: 15px;
  background-color: #68707c;
  transform: rotate(20deg);
}
@media (max-width: 992px) {
  .cid-uggoHvnhON .content-wrapper .border-wrap {
    margin-bottom: 40px;
  }
}
.cid-uggoHvnhON .content-wrapper .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}
@media (max-width: 992px) {
  .cid-uggoHvnhON .content-wrapper .items-wrapper {
    grid-template-columns: 1fr;
  }
}
.cid-uggoHvnhON .content-wrapper .items-wrapper .item .item-wrapper .item-content .icon-wrapper {
  margin-bottom: 30px;
}
.cid-uggoHvnhON .content-wrapper .items-wrapper .item .item-wrapper .item-content .icon-wrapper .mbr-iconfont {
  font-size: 50px;
  display: inline-flex;
  color: #6e88ab;
}
.cid-uggoHvnhON .content-wrapper .items-wrapper .item .item-wrapper .item-content .item-text {
  padding-right: 50px;
  margin-bottom: 65px;
}
@media (max-width: 1440px) {
  .cid-uggoHvnhON .content-wrapper .items-wrapper .item .item-wrapper .item-content .item-text {
    padding-right: 25px;
  }
}
@media (max-width: 1200px) {
  .cid-uggoHvnhON .content-wrapper .items-wrapper .item .item-wrapper .item-content .item-text {
    padding-right: 0;
  }
}
.cid-uggoHvnhON .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.cid-uggoHvnhON .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper::before {
  content: '';
  position: absolute;
  top: -26px;
  left: -20px;
  width: 75px;
  height: 68px;
  background-color: #6e88ab;
  transform: skewX(-20deg);
}
@media (max-width: 992px) {
  .cid-uggoHvnhON .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper::before {
    left: 0;
  }
}
.cid-uggoHvnhON .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper img {
  position: relative;
  z-index: 1;
  height: 85px;
  width: 85px;
  min-width: 85px;
  border-radius: 100% !important;
  object-fit: cover;
  margin-right: 20px;
}
.cid-uggoHvnhON .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper a {
  height: 85px;
  width: 85px;
  min-width: 85px;
}
.cid-uggoHvnhON .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper .name-wrap {
  position: relative;
  z-index: 1;
}
.cid-uggoHvnhON .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper .name-wrap .item-name {
  margin-bottom: 0;
}
.cid-uggoHvnhON .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper .name-wrap .item-role {
  margin-bottom: 0;
}
.cid-uggoHvnhON .mbr-section-title {
  color: #30262b;
}
.cid-uggoHvnhON .mbr-text {
  color: #30262b;
}
.cid-uggoHvnhON .item-text {
  color: #30262b;
}
.cid-uggoHvnhON .item-name {
  color: #30262b;
}
.cid-uggoHvnhON .item-role {
  color: #30262b;
}
.cid-uggoHwhVs0 {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uggoHwhVs0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uggoHwhVs0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uggoHwhVs0 .media-container-row {
  justify-content: space-between;
}
.cid-uggoHwhVs0 .text-content {
  max-width: 50%;
}
@media (max-width: 768px) {
  .cid-uggoHwhVs0 .text-content {
    max-width: none;
  }
}
.cid-uggoHwhVs0 .mbr-iconfont-social {
  margin: 0.5rem;
  font-size: 32px;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #6592e6;
  border: 2px solid #6592e6;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uggoHwhVs0 .mbr-iconfont-social:before {
  padding: 0.6rem;
}
.cid-uggoHwhVs0 .mbr-iconfont-social:hover {
  background-color: #6592e6;
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-uggoHwhVs0 .icons {
    justify-content: center !important;
  }
  .cid-uggoHwhVs0 .text-content * {
    text-align: center;
  }
}
.cid-uggoHxbHrj {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-uggoHxOfrg {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #5f337d;
}
.cid-uggoHxOfrg .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uggoHxOfrg .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uggoHxOfrg .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uggoHxOfrg .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uggoHxOfrg .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uggoHxOfrg .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uggoHxOfrg .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uggoHxOfrg .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uggoHxOfrg .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uggoHxOfrg .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uggoHxOfrg .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uggoHxOfrg .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uggoHxOfrg .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uggoHxOfrg .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uggoHxOfrg .media-container-row .mbr-text {
  text-align: center;
}
.cid-uggw9sJQjR {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uggw9sJQjR nav.navbar {
  position: fixed;
}
.cid-uggw9sJQjR .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uggw9sJQjR .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uggw9sJQjR .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uggw9sJQjR .dropdown-item:hover,
.cid-uggw9sJQjR .dropdown-item:focus {
  background: #39f514 !important;
  color: white !important;
}
.cid-uggw9sJQjR .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uggw9sJQjR .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uggw9sJQjR .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uggw9sJQjR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uggw9sJQjR .nav-link {
  position: relative;
}
.cid-uggw9sJQjR .container {
  display: flex;
  margin: auto;
}
.cid-uggw9sJQjR .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uggw9sJQjR .dropdown-menu,
.cid-uggw9sJQjR .navbar.opened {
  background: #ffffff !important;
}
.cid-uggw9sJQjR .nav-item:focus,
.cid-uggw9sJQjR .nav-link:focus {
  outline: none;
}
.cid-uggw9sJQjR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uggw9sJQjR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uggw9sJQjR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uggw9sJQjR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uggw9sJQjR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uggw9sJQjR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uggw9sJQjR .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uggw9sJQjR .navbar.opened {
  transition: all 0.3s;
}
.cid-uggw9sJQjR .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uggw9sJQjR .navbar .navbar-logo img {
  width: auto;
}
.cid-uggw9sJQjR .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uggw9sJQjR .navbar.collapsed {
  justify-content: center;
}
.cid-uggw9sJQjR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uggw9sJQjR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uggw9sJQjR .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uggw9sJQjR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uggw9sJQjR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uggw9sJQjR .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uggw9sJQjR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uggw9sJQjR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uggw9sJQjR .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uggw9sJQjR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uggw9sJQjR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uggw9sJQjR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uggw9sJQjR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uggw9sJQjR .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uggw9sJQjR .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uggw9sJQjR .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uggw9sJQjR .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uggw9sJQjR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uggw9sJQjR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uggw9sJQjR .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uggw9sJQjR .navbar.navbar-short {
  min-height: 60px;
}
.cid-uggw9sJQjR .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uggw9sJQjR .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uggw9sJQjR .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uggw9sJQjR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uggw9sJQjR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uggw9sJQjR .dropdown-item.active,
.cid-uggw9sJQjR .dropdown-item:active {
  background-color: transparent;
}
.cid-uggw9sJQjR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uggw9sJQjR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uggw9sJQjR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uggw9sJQjR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uggw9sJQjR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uggw9sJQjR .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uggw9sJQjR ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uggw9sJQjR .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uggw9sJQjR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uggw9sJQjR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uggw9sJQjR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uggw9sJQjR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uggw9sJQjR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uggw9sJQjR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uggw9sJQjR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uggw9sJQjR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uggw9sJQjR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uggw9sJQjR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uggw9sJQjR .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uggw9sJQjR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uggw9sJQjR .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uggw9sJQjR .navbar {
    height: 70px;
  }
  .cid-uggw9sJQjR .navbar.opened {
    height: auto;
  }
  .cid-uggw9sJQjR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uggw9tKEFI {
  overflow: hidden;
  background-color: #262642;
}
.cid-uggw9tKEFI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uggw9tKEFI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uggw9tKEFI .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-uggw9tKEFI .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uggw9tKEFI .container {
    padding: 0 24px;
  }
}
.cid-uggw9tKEFI .row {
  position: relative;
}
.cid-uggw9tKEFI .row .card {
  justify-content: center;
}
.cid-uggw9tKEFI .row .decor-wrapper {
  position: absolute;
  bottom: -16rem;
  right: -58rem;
  border: 120px solid #ff3399;
  width: 2000px;
  height: 1000px;
  border-radius: 100%;
}
@media (max-width: 992px) {
  .cid-uggw9tKEFI .row .decor-wrapper {
    right: -20rem;
  }
}
@media (max-width: 768px) {
  .cid-uggw9tKEFI .row .decor-wrapper {
    height: 500px;
    right: -10rem;
  }
}
.cid-uggw9tKEFI .title-wrapper {
  position: relative;
}
@media (max-width: 992px) {
  .cid-uggw9tKEFI .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uggw9tKEFI .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uggw9tKEFI .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uggw9tKEFI .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uggw9tKEFI .title-wrapper .mbr-section-btn {
  margin-top: 64px;
}
@media (max-width: 992px) {
  .cid-uggw9tKEFI .title-wrapper .mbr-section-btn {
    margin-top: 32px;
  }
}
.cid-uggw9tKEFI .image-wrapper {
  position: relative;
}
.cid-uggw9tKEFI .image-wrapper img {
  height: 500px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uggw9tKEFI .image-wrapper img {
    height: 350px;
  }
}
.cid-uggw9tKEFI .mbr-section-title {
  color: #F5DF4D;
}
.cid-uggw9tKEFI .mbr-text {
  color: #FF3399;
}
.cid-uggw9tKEFI .mbr-text,
.cid-uggw9tKEFI .mbr-section-btn {
  color: #fafafa;
}
.cid-uggw9uNPuC {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #e9e9e9;
}
.cid-uggw9uNPuC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uggw9uNPuC .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-uggw9uNPuC .container {
    padding: 0 22px;
  }
}
.cid-uggw9uNPuC .row {
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0 -6px;
}
.cid-uggw9uNPuC .row .card {
  padding: 0 6px;
  justify-content: center;
}
.cid-uggw9uNPuC .row .title-wrapper {
  position: absolute;
  z-index: 1;
  background-color: #f63df9;
  padding: 24px 80px;
  border-radius: 80px;
  width: fit-content;
}
@media (max-width: 992px) {
  .cid-uggw9uNPuC .row .title-wrapper {
    position: static;
    padding: 32px;
    width: 100%;
  }
}
.cid-uggw9uNPuC .row .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uggw9uNPuC .image-wrapper {
  margin-bottom: 12px;
}
.cid-uggw9uNPuC .image-wrapper img {
  height: 560px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uggw9uNPuC .image-wrapper img {
    height: 350px;
  }
}
.cid-uggw9uNPuC .image-wrap {
  margin-bottom: 12px;
}
.cid-uggw9uNPuC .image-wrap img {
  height: 560px;
  object-fit: cover;
  width: 65%;
}
@media (max-width: 992px) {
  .cid-uggw9uNPuC .image-wrap img {
    height: 350px;
  }
}
.cid-uggw9uNPuC .content-wrapper {
  padding: 55px 0;
}
@media (max-width: 992px) {
  .cid-uggw9uNPuC .content-wrapper {
    padding: 32px 0;
  }
}
.cid-uggw9uNPuC .content-wrapper .mbr-desc {
  margin-bottom: 32px;
}
.cid-uggw9uNPuC .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-uggw9uNPuC .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uggw9uNPuC .mbr-desc {
  color: #000000;
}
.cid-uggw9uNPuC .mbr-text {
  color: #000000;
}
.cid-uggw9vDn5s {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #6a2be9;
}
.cid-uggw9vDn5s .mbr-fallback-image.disabled {
  display: none;
}
.cid-uggw9vDn5s .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-uggw9vDn5s .container {
    padding: 0 16px;
  }
}
.cid-uggw9vDn5s .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uggw9vDn5s .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uggw9vDn5s .content-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uggw9vDn5s .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uggw9vDn5s .content-wrapper .text-wrapper .mbr-text {
  display: inline-flex;
  width: 60%;
  margin-bottom: 32px;
}
@media (max-width: 1200px) {
  .cid-uggw9vDn5s .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uggw9vDn5s .image-wrapper {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-uggw9vDn5s .image-wrapper {
    margin-left: 0;
  }
}
.cid-uggw9vDn5s .image-wrapper img {
  height: 660px;
  object-fit: cover;
  box-shadow: 6px 8px 0 0 #000000;
  border-radius: 24px !important;
}
@media (max-width: 992px) {
  .cid-uggw9vDn5s .image-wrapper img {
    height: 350px;
  }
}
.cid-uggw9vDn5s .mbr-section-title {
  color: #ffffff;
}
.cid-uggw9vDn5s .mbr-text {
  color: #ffffff;
}
.cid-uggw9wnUnQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f7f5f6;
}
.cid-uggw9wnUnQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uggw9wnUnQ .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-uggw9wnUnQ .container {
    padding: 0 15px;
  }
}
.cid-uggw9wnUnQ .row {
  justify-content: space-between;
}
.cid-uggw9wnUnQ .row .card {
  justify-content: flex-end;
}
.cid-uggw9wnUnQ .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uggw9wnUnQ .text-wrapper .mbr-text {
  margin-bottom: 40px;
}
.cid-uggw9wnUnQ .content-wrapper .border-wrap {
  margin-bottom: 100px;
  position: relative;
  display: flex;
  align-items: center;
  height: 1px;
  background-color: #68707c;
}
.cid-uggw9wnUnQ .content-wrapper .border-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 1px;
  height: 15px;
  background-color: #68707c;
  transform: rotate(20deg);
}
@media (max-width: 992px) {
  .cid-uggw9wnUnQ .content-wrapper .border-wrap {
    margin-bottom: 40px;
  }
}
.cid-uggw9wnUnQ .content-wrapper .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}
@media (max-width: 992px) {
  .cid-uggw9wnUnQ .content-wrapper .items-wrapper {
    grid-template-columns: 1fr;
  }
}
.cid-uggw9wnUnQ .content-wrapper .items-wrapper .item .item-wrapper .item-content .icon-wrapper {
  margin-bottom: 30px;
}
.cid-uggw9wnUnQ .content-wrapper .items-wrapper .item .item-wrapper .item-content .icon-wrapper .mbr-iconfont {
  font-size: 50px;
  display: inline-flex;
  color: #6e88ab;
}
.cid-uggw9wnUnQ .content-wrapper .items-wrapper .item .item-wrapper .item-content .item-text {
  padding-right: 50px;
  margin-bottom: 65px;
}
@media (max-width: 1440px) {
  .cid-uggw9wnUnQ .content-wrapper .items-wrapper .item .item-wrapper .item-content .item-text {
    padding-right: 25px;
  }
}
@media (max-width: 1200px) {
  .cid-uggw9wnUnQ .content-wrapper .items-wrapper .item .item-wrapper .item-content .item-text {
    padding-right: 0;
  }
}
.cid-uggw9wnUnQ .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.cid-uggw9wnUnQ .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper::before {
  content: '';
  position: absolute;
  top: -26px;
  left: -20px;
  width: 75px;
  height: 68px;
  background-color: #6e88ab;
  transform: skewX(-20deg);
}
@media (max-width: 992px) {
  .cid-uggw9wnUnQ .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper::before {
    left: 0;
  }
}
.cid-uggw9wnUnQ .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper img {
  position: relative;
  z-index: 1;
  height: 85px;
  width: 85px;
  min-width: 85px;
  border-radius: 100% !important;
  object-fit: cover;
  margin-right: 20px;
}
.cid-uggw9wnUnQ .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper a {
  height: 85px;
  width: 85px;
  min-width: 85px;
}
.cid-uggw9wnUnQ .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper .name-wrap {
  position: relative;
  z-index: 1;
}
.cid-uggw9wnUnQ .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper .name-wrap .item-name {
  margin-bottom: 0;
}
.cid-uggw9wnUnQ .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper .name-wrap .item-role {
  margin-bottom: 0;
}
.cid-uggw9wnUnQ .mbr-section-title {
  color: #30262b;
}
.cid-uggw9wnUnQ .mbr-text {
  color: #30262b;
}
.cid-uggw9wnUnQ .item-text {
  color: #30262b;
}
.cid-uggw9wnUnQ .item-name {
  color: #30262b;
}
.cid-uggw9wnUnQ .item-role {
  color: #30262b;
}
.cid-uggw9xpYHY {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uggw9xpYHY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uggw9xpYHY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uggw9xpYHY .media-container-row {
  justify-content: space-between;
}
.cid-uggw9xpYHY .text-content {
  max-width: 50%;
}
@media (max-width: 768px) {
  .cid-uggw9xpYHY .text-content {
    max-width: none;
  }
}
.cid-uggw9xpYHY .mbr-iconfont-social {
  margin: 0.5rem;
  font-size: 32px;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #6592e6;
  border: 2px solid #6592e6;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uggw9xpYHY .mbr-iconfont-social:before {
  padding: 0.6rem;
}
.cid-uggw9xpYHY .mbr-iconfont-social:hover {
  background-color: #6592e6;
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-uggw9xpYHY .icons {
    justify-content: center !important;
  }
  .cid-uggw9xpYHY .text-content * {
    text-align: center;
  }
}
.cid-uggw9ylWOV {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-uggw9z3IQT {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #5f337d;
}
.cid-uggw9z3IQT .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uggw9z3IQT .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uggw9z3IQT .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uggw9z3IQT .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uggw9z3IQT .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uggw9z3IQT .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uggw9z3IQT .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uggw9z3IQT .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uggw9z3IQT .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uggw9z3IQT .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uggw9z3IQT .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uggw9z3IQT .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uggw9z3IQT .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uggw9z3IQT .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uggw9z3IQT .media-container-row .mbr-text {
  text-align: center;
}
.cid-uggEVf4I32 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uggEVf4I32 nav.navbar {
  position: fixed;
}
.cid-uggEVf4I32 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uggEVf4I32 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uggEVf4I32 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uggEVf4I32 .dropdown-item:hover,
.cid-uggEVf4I32 .dropdown-item:focus {
  background: #39f514 !important;
  color: white !important;
}
.cid-uggEVf4I32 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uggEVf4I32 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uggEVf4I32 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uggEVf4I32 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uggEVf4I32 .nav-link {
  position: relative;
}
.cid-uggEVf4I32 .container {
  display: flex;
  margin: auto;
}
.cid-uggEVf4I32 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uggEVf4I32 .dropdown-menu,
.cid-uggEVf4I32 .navbar.opened {
  background: #ffffff !important;
}
.cid-uggEVf4I32 .nav-item:focus,
.cid-uggEVf4I32 .nav-link:focus {
  outline: none;
}
.cid-uggEVf4I32 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uggEVf4I32 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uggEVf4I32 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uggEVf4I32 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uggEVf4I32 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uggEVf4I32 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uggEVf4I32 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uggEVf4I32 .navbar.opened {
  transition: all 0.3s;
}
.cid-uggEVf4I32 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uggEVf4I32 .navbar .navbar-logo img {
  width: auto;
}
.cid-uggEVf4I32 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uggEVf4I32 .navbar.collapsed {
  justify-content: center;
}
.cid-uggEVf4I32 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uggEVf4I32 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uggEVf4I32 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uggEVf4I32 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uggEVf4I32 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uggEVf4I32 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uggEVf4I32 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uggEVf4I32 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uggEVf4I32 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uggEVf4I32 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uggEVf4I32 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uggEVf4I32 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uggEVf4I32 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uggEVf4I32 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uggEVf4I32 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uggEVf4I32 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uggEVf4I32 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uggEVf4I32 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uggEVf4I32 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uggEVf4I32 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uggEVf4I32 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uggEVf4I32 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uggEVf4I32 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uggEVf4I32 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uggEVf4I32 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uggEVf4I32 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uggEVf4I32 .dropdown-item.active,
.cid-uggEVf4I32 .dropdown-item:active {
  background-color: transparent;
}
.cid-uggEVf4I32 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uggEVf4I32 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uggEVf4I32 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uggEVf4I32 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uggEVf4I32 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uggEVf4I32 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uggEVf4I32 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uggEVf4I32 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uggEVf4I32 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uggEVf4I32 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uggEVf4I32 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uggEVf4I32 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uggEVf4I32 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uggEVf4I32 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uggEVf4I32 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uggEVf4I32 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uggEVf4I32 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uggEVf4I32 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uggEVf4I32 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uggEVf4I32 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uggEVf4I32 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uggEVf4I32 .navbar {
    height: 70px;
  }
  .cid-uggEVf4I32 .navbar.opened {
    height: auto;
  }
  .cid-uggEVf4I32 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uggEVgb9DA {
  overflow: hidden;
  background-color: #262642;
}
.cid-uggEVgb9DA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uggEVgb9DA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uggEVgb9DA .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-uggEVgb9DA .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uggEVgb9DA .container {
    padding: 0 24px;
  }
}
.cid-uggEVgb9DA .row {
  position: relative;
}
.cid-uggEVgb9DA .row .card {
  justify-content: center;
}
.cid-uggEVgb9DA .row .decor-wrapper {
  position: absolute;
  bottom: -16rem;
  right: -58rem;
  border: 120px solid #ff3399;
  width: 2000px;
  height: 1000px;
  border-radius: 100%;
}
@media (max-width: 992px) {
  .cid-uggEVgb9DA .row .decor-wrapper {
    right: -20rem;
  }
}
@media (max-width: 768px) {
  .cid-uggEVgb9DA .row .decor-wrapper {
    height: 500px;
    right: -10rem;
  }
}
.cid-uggEVgb9DA .title-wrapper {
  position: relative;
}
@media (max-width: 992px) {
  .cid-uggEVgb9DA .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uggEVgb9DA .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uggEVgb9DA .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uggEVgb9DA .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uggEVgb9DA .title-wrapper .mbr-section-btn {
  margin-top: 64px;
}
@media (max-width: 992px) {
  .cid-uggEVgb9DA .title-wrapper .mbr-section-btn {
    margin-top: 32px;
  }
}
.cid-uggEVgb9DA .image-wrapper {
  position: relative;
}
.cid-uggEVgb9DA .image-wrapper img {
  height: 500px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uggEVgb9DA .image-wrapper img {
    height: 350px;
  }
}
.cid-uggEVgb9DA .mbr-section-title {
  color: #F5DF4D;
}
.cid-uggEVgb9DA .mbr-text {
  color: #FF3399;
}
.cid-uggEVgb9DA .mbr-text,
.cid-uggEVgb9DA .mbr-section-btn {
  color: #fafafa;
}
.cid-uggEVgT6HG {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #e9e9e9;
}
.cid-uggEVgT6HG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uggEVgT6HG .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-uggEVgT6HG .container {
    padding: 0 22px;
  }
}
.cid-uggEVgT6HG .row {
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0 -6px;
}
.cid-uggEVgT6HG .row .card {
  padding: 0 6px;
  justify-content: center;
}
.cid-uggEVgT6HG .row .title-wrapper {
  position: absolute;
  z-index: 1;
  background-color: #f63df9;
  padding: 24px 80px;
  border-radius: 80px;
  width: fit-content;
}
@media (max-width: 992px) {
  .cid-uggEVgT6HG .row .title-wrapper {
    position: static;
    padding: 32px;
    width: 100%;
  }
}
.cid-uggEVgT6HG .row .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uggEVgT6HG .image-wrapper {
  margin-bottom: 12px;
}
.cid-uggEVgT6HG .image-wrapper img {
  height: 560px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uggEVgT6HG .image-wrapper img {
    height: 350px;
  }
}
.cid-uggEVgT6HG .image-wrap {
  margin-bottom: 12px;
}
.cid-uggEVgT6HG .image-wrap img {
  height: 560px;
  object-fit: cover;
  width: 65%;
}
@media (max-width: 992px) {
  .cid-uggEVgT6HG .image-wrap img {
    height: 350px;
  }
}
.cid-uggEVgT6HG .content-wrapper {
  padding: 55px 0;
}
@media (max-width: 992px) {
  .cid-uggEVgT6HG .content-wrapper {
    padding: 32px 0;
  }
}
.cid-uggEVgT6HG .content-wrapper .mbr-desc {
  margin-bottom: 32px;
}
.cid-uggEVgT6HG .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-uggEVgT6HG .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uggEVgT6HG .mbr-desc {
  color: #000000;
}
.cid-uggEVgT6HG .mbr-text {
  color: #000000;
}
.cid-uggEVhJT0p {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #6a2be9;
}
.cid-uggEVhJT0p .mbr-fallback-image.disabled {
  display: none;
}
.cid-uggEVhJT0p .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-uggEVhJT0p .container {
    padding: 0 16px;
  }
}
.cid-uggEVhJT0p .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uggEVhJT0p .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uggEVhJT0p .content-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uggEVhJT0p .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uggEVhJT0p .content-wrapper .text-wrapper .mbr-text {
  display: inline-flex;
  width: 60%;
  margin-bottom: 32px;
}
@media (max-width: 1200px) {
  .cid-uggEVhJT0p .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uggEVhJT0p .image-wrapper {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-uggEVhJT0p .image-wrapper {
    margin-left: 0;
  }
}
.cid-uggEVhJT0p .image-wrapper img {
  height: 660px;
  object-fit: cover;
  box-shadow: 6px 8px 0 0 #000000;
  border-radius: 24px !important;
}
@media (max-width: 992px) {
  .cid-uggEVhJT0p .image-wrapper img {
    height: 350px;
  }
}
.cid-uggEVhJT0p .mbr-section-title {
  color: #ffffff;
}
.cid-uggEVhJT0p .mbr-text {
  color: #ffffff;
}
.cid-uggEVitztV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f7f5f6;
}
.cid-uggEVitztV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uggEVitztV .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-uggEVitztV .container {
    padding: 0 15px;
  }
}
.cid-uggEVitztV .row {
  justify-content: space-between;
}
.cid-uggEVitztV .row .card {
  justify-content: flex-end;
}
.cid-uggEVitztV .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uggEVitztV .text-wrapper .mbr-text {
  margin-bottom: 40px;
}
.cid-uggEVitztV .content-wrapper .border-wrap {
  margin-bottom: 100px;
  position: relative;
  display: flex;
  align-items: center;
  height: 1px;
  background-color: #68707c;
}
.cid-uggEVitztV .content-wrapper .border-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 1px;
  height: 15px;
  background-color: #68707c;
  transform: rotate(20deg);
}
@media (max-width: 992px) {
  .cid-uggEVitztV .content-wrapper .border-wrap {
    margin-bottom: 40px;
  }
}
.cid-uggEVitztV .content-wrapper .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}
@media (max-width: 992px) {
  .cid-uggEVitztV .content-wrapper .items-wrapper {
    grid-template-columns: 1fr;
  }
}
.cid-uggEVitztV .content-wrapper .items-wrapper .item .item-wrapper .item-content .icon-wrapper {
  margin-bottom: 30px;
}
.cid-uggEVitztV .content-wrapper .items-wrapper .item .item-wrapper .item-content .icon-wrapper .mbr-iconfont {
  font-size: 50px;
  display: inline-flex;
  color: #6e88ab;
}
.cid-uggEVitztV .content-wrapper .items-wrapper .item .item-wrapper .item-content .item-text {
  padding-right: 50px;
  margin-bottom: 65px;
}
@media (max-width: 1440px) {
  .cid-uggEVitztV .content-wrapper .items-wrapper .item .item-wrapper .item-content .item-text {
    padding-right: 25px;
  }
}
@media (max-width: 1200px) {
  .cid-uggEVitztV .content-wrapper .items-wrapper .item .item-wrapper .item-content .item-text {
    padding-right: 0;
  }
}
.cid-uggEVitztV .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.cid-uggEVitztV .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper::before {
  content: '';
  position: absolute;
  top: -26px;
  left: -20px;
  width: 75px;
  height: 68px;
  background-color: #6e88ab;
  transform: skewX(-20deg);
}
@media (max-width: 992px) {
  .cid-uggEVitztV .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper::before {
    left: 0;
  }
}
.cid-uggEVitztV .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper img {
  position: relative;
  z-index: 1;
  height: 85px;
  width: 85px;
  min-width: 85px;
  border-radius: 100% !important;
  object-fit: cover;
  margin-right: 20px;
}
.cid-uggEVitztV .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper a {
  height: 85px;
  width: 85px;
  min-width: 85px;
}
.cid-uggEVitztV .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper .name-wrap {
  position: relative;
  z-index: 1;
}
.cid-uggEVitztV .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper .name-wrap .item-name {
  margin-bottom: 0;
}
.cid-uggEVitztV .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper .name-wrap .item-role {
  margin-bottom: 0;
}
.cid-uggEVitztV .mbr-section-title {
  color: #30262b;
}
.cid-uggEVitztV .mbr-text {
  color: #30262b;
}
.cid-uggEVitztV .item-text {
  color: #30262b;
}
.cid-uggEVitztV .item-name {
  color: #30262b;
}
.cid-uggEVitztV .item-role {
  color: #30262b;
}
.cid-uggEVjpEIm {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uggEVjpEIm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uggEVjpEIm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uggEVjpEIm .media-container-row {
  justify-content: space-between;
}
.cid-uggEVjpEIm .text-content {
  max-width: 50%;
}
@media (max-width: 768px) {
  .cid-uggEVjpEIm .text-content {
    max-width: none;
  }
}
.cid-uggEVjpEIm .mbr-iconfont-social {
  margin: 0.5rem;
  font-size: 32px;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #6592e6;
  border: 2px solid #6592e6;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uggEVjpEIm .mbr-iconfont-social:before {
  padding: 0.6rem;
}
.cid-uggEVjpEIm .mbr-iconfont-social:hover {
  background-color: #6592e6;
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-uggEVjpEIm .icons {
    justify-content: center !important;
  }
  .cid-uggEVjpEIm .text-content * {
    text-align: center;
  }
}
.cid-uggEVkmaxE {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-uggEVkYgO3 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #5f337d;
}
.cid-uggEVkYgO3 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uggEVkYgO3 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uggEVkYgO3 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uggEVkYgO3 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uggEVkYgO3 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uggEVkYgO3 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uggEVkYgO3 .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uggEVkYgO3 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uggEVkYgO3 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uggEVkYgO3 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uggEVkYgO3 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uggEVkYgO3 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uggEVkYgO3 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uggEVkYgO3 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uggEVkYgO3 .media-container-row .mbr-text {
  text-align: center;
}
.cid-ugh0NraTHo {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ugh0NraTHo nav.navbar {
  position: fixed;
}
.cid-ugh0NraTHo .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ugh0NraTHo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ugh0NraTHo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ugh0NraTHo .dropdown-item:hover,
.cid-ugh0NraTHo .dropdown-item:focus {
  background: #39f514 !important;
  color: white !important;
}
.cid-ugh0NraTHo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ugh0NraTHo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ugh0NraTHo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ugh0NraTHo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ugh0NraTHo .nav-link {
  position: relative;
}
.cid-ugh0NraTHo .container {
  display: flex;
  margin: auto;
}
.cid-ugh0NraTHo .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ugh0NraTHo .dropdown-menu,
.cid-ugh0NraTHo .navbar.opened {
  background: #ffffff !important;
}
.cid-ugh0NraTHo .nav-item:focus,
.cid-ugh0NraTHo .nav-link:focus {
  outline: none;
}
.cid-ugh0NraTHo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ugh0NraTHo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ugh0NraTHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ugh0NraTHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ugh0NraTHo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ugh0NraTHo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ugh0NraTHo .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-ugh0NraTHo .navbar.opened {
  transition: all 0.3s;
}
.cid-ugh0NraTHo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ugh0NraTHo .navbar .navbar-logo img {
  width: auto;
}
.cid-ugh0NraTHo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ugh0NraTHo .navbar.collapsed {
  justify-content: center;
}
.cid-ugh0NraTHo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ugh0NraTHo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ugh0NraTHo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-ugh0NraTHo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ugh0NraTHo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ugh0NraTHo .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-ugh0NraTHo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ugh0NraTHo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ugh0NraTHo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ugh0NraTHo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ugh0NraTHo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ugh0NraTHo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ugh0NraTHo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ugh0NraTHo .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-ugh0NraTHo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ugh0NraTHo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ugh0NraTHo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ugh0NraTHo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ugh0NraTHo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ugh0NraTHo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ugh0NraTHo .navbar.navbar-short {
  min-height: 60px;
}
.cid-ugh0NraTHo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ugh0NraTHo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ugh0NraTHo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ugh0NraTHo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ugh0NraTHo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ugh0NraTHo .dropdown-item.active,
.cid-ugh0NraTHo .dropdown-item:active {
  background-color: transparent;
}
.cid-ugh0NraTHo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ugh0NraTHo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ugh0NraTHo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ugh0NraTHo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ugh0NraTHo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ugh0NraTHo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ugh0NraTHo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ugh0NraTHo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ugh0NraTHo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ugh0NraTHo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-ugh0NraTHo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ugh0NraTHo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugh0NraTHo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugh0NraTHo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ugh0NraTHo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugh0NraTHo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ugh0NraTHo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ugh0NraTHo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugh0NraTHo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ugh0NraTHo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ugh0NraTHo .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ugh0NraTHo .navbar {
    height: 70px;
  }
  .cid-ugh0NraTHo .navbar.opened {
    height: auto;
  }
  .cid-ugh0NraTHo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ugh0NsaX9Q {
  overflow: hidden;
  background-color: #262642;
}
.cid-ugh0NsaX9Q .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugh0NsaX9Q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugh0NsaX9Q .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-ugh0NsaX9Q .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-ugh0NsaX9Q .container {
    padding: 0 24px;
  }
}
.cid-ugh0NsaX9Q .row {
  position: relative;
}
.cid-ugh0NsaX9Q .row .card {
  justify-content: center;
}
.cid-ugh0NsaX9Q .row .decor-wrapper {
  position: absolute;
  bottom: -16rem;
  right: -58rem;
  border: 120px solid #ff3399;
  width: 2000px;
  height: 1000px;
  border-radius: 100%;
}
@media (max-width: 992px) {
  .cid-ugh0NsaX9Q .row .decor-wrapper {
    right: -20rem;
  }
}
@media (max-width: 768px) {
  .cid-ugh0NsaX9Q .row .decor-wrapper {
    height: 500px;
    right: -10rem;
  }
}
.cid-ugh0NsaX9Q .title-wrapper {
  position: relative;
}
@media (max-width: 992px) {
  .cid-ugh0NsaX9Q .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-ugh0NsaX9Q .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-ugh0NsaX9Q .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-ugh0NsaX9Q .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ugh0NsaX9Q .title-wrapper .mbr-section-btn {
  margin-top: 64px;
}
@media (max-width: 992px) {
  .cid-ugh0NsaX9Q .title-wrapper .mbr-section-btn {
    margin-top: 32px;
  }
}
.cid-ugh0NsaX9Q .image-wrapper {
  position: relative;
}
.cid-ugh0NsaX9Q .image-wrapper img {
  height: 500px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-ugh0NsaX9Q .image-wrapper img {
    height: 350px;
  }
}
.cid-ugh0NsaX9Q .mbr-section-title {
  color: #F5DF4D;
}
.cid-ugh0NsaX9Q .mbr-text {
  color: #FF3399;
}
.cid-ugh0NsaX9Q .mbr-text,
.cid-ugh0NsaX9Q .mbr-section-btn {
  color: #fafafa;
}
.cid-ugh0NsZqG3 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #e9e9e9;
}
.cid-ugh0NsZqG3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugh0NsZqG3 .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-ugh0NsZqG3 .container {
    padding: 0 22px;
  }
}
.cid-ugh0NsZqG3 .row {
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0 -6px;
}
.cid-ugh0NsZqG3 .row .card {
  padding: 0 6px;
  justify-content: center;
}
.cid-ugh0NsZqG3 .row .title-wrapper {
  position: absolute;
  z-index: 1;
  background-color: #f63df9;
  padding: 24px 80px;
  border-radius: 80px;
  width: fit-content;
}
@media (max-width: 992px) {
  .cid-ugh0NsZqG3 .row .title-wrapper {
    position: static;
    padding: 32px;
    width: 100%;
  }
}
.cid-ugh0NsZqG3 .row .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-ugh0NsZqG3 .image-wrapper {
  margin-bottom: 12px;
}
.cid-ugh0NsZqG3 .image-wrapper img {
  height: 560px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-ugh0NsZqG3 .image-wrapper img {
    height: 350px;
  }
}
.cid-ugh0NsZqG3 .image-wrap {
  margin-bottom: 12px;
}
.cid-ugh0NsZqG3 .image-wrap img {
  height: 560px;
  object-fit: cover;
  width: 65%;
}
@media (max-width: 992px) {
  .cid-ugh0NsZqG3 .image-wrap img {
    height: 350px;
  }
}
.cid-ugh0NsZqG3 .content-wrapper {
  padding: 55px 0;
}
@media (max-width: 992px) {
  .cid-ugh0NsZqG3 .content-wrapper {
    padding: 32px 0;
  }
}
.cid-ugh0NsZqG3 .content-wrapper .mbr-desc {
  margin-bottom: 32px;
}
.cid-ugh0NsZqG3 .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-ugh0NsZqG3 .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-ugh0NsZqG3 .mbr-desc {
  color: #000000;
}
.cid-ugh0NsZqG3 .mbr-text {
  color: #000000;
}
.cid-ugh0NtSe9i {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #6a2be9;
}
.cid-ugh0NtSe9i .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugh0NtSe9i .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-ugh0NtSe9i .container {
    padding: 0 16px;
  }
}
.cid-ugh0NtSe9i .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-ugh0NtSe9i .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-ugh0NtSe9i .content-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-ugh0NtSe9i .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-ugh0NtSe9i .content-wrapper .text-wrapper .mbr-text {
  display: inline-flex;
  width: 60%;
  margin-bottom: 32px;
}
@media (max-width: 1200px) {
  .cid-ugh0NtSe9i .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-ugh0NtSe9i .image-wrapper {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-ugh0NtSe9i .image-wrapper {
    margin-left: 0;
  }
}
.cid-ugh0NtSe9i .image-wrapper img {
  height: 660px;
  object-fit: cover;
  box-shadow: 6px 8px 0 0 #000000;
  border-radius: 24px !important;
}
@media (max-width: 992px) {
  .cid-ugh0NtSe9i .image-wrapper img {
    height: 350px;
  }
}
.cid-ugh0NtSe9i .mbr-section-title {
  color: #ffffff;
}
.cid-ugh0NtSe9i .mbr-text {
  color: #ffffff;
}
.cid-uwuGYhd5AL {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-uwuGYhd5AL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwuGYhd5AL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwuGYhd5AL .mbr-text {
  color: #c1c1c1;
}
.cid-uwuGYhd5AL .mbr-text,
.cid-uwuGYhd5AL .mbr-section-btn {
  color: #000000;
}
.cid-ugh0Nuxi9s {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f7f5f6;
}
.cid-ugh0Nuxi9s .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugh0Nuxi9s .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-ugh0Nuxi9s .container {
    padding: 0 15px;
  }
}
.cid-ugh0Nuxi9s .row {
  justify-content: space-between;
}
.cid-ugh0Nuxi9s .row .card {
  justify-content: flex-end;
}
.cid-ugh0Nuxi9s .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-ugh0Nuxi9s .text-wrapper .mbr-text {
  margin-bottom: 40px;
}
.cid-ugh0Nuxi9s .content-wrapper .border-wrap {
  margin-bottom: 100px;
  position: relative;
  display: flex;
  align-items: center;
  height: 1px;
  background-color: #68707c;
}
.cid-ugh0Nuxi9s .content-wrapper .border-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 1px;
  height: 15px;
  background-color: #68707c;
  transform: rotate(20deg);
}
@media (max-width: 992px) {
  .cid-ugh0Nuxi9s .content-wrapper .border-wrap {
    margin-bottom: 40px;
  }
}
.cid-ugh0Nuxi9s .content-wrapper .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}
@media (max-width: 992px) {
  .cid-ugh0Nuxi9s .content-wrapper .items-wrapper {
    grid-template-columns: 1fr;
  }
}
.cid-ugh0Nuxi9s .content-wrapper .items-wrapper .item .item-wrapper .item-content .icon-wrapper {
  margin-bottom: 30px;
}
.cid-ugh0Nuxi9s .content-wrapper .items-wrapper .item .item-wrapper .item-content .icon-wrapper .mbr-iconfont {
  font-size: 50px;
  display: inline-flex;
  color: #6e88ab;
}
.cid-ugh0Nuxi9s .content-wrapper .items-wrapper .item .item-wrapper .item-content .item-text {
  padding-right: 50px;
  margin-bottom: 65px;
}
@media (max-width: 1440px) {
  .cid-ugh0Nuxi9s .content-wrapper .items-wrapper .item .item-wrapper .item-content .item-text {
    padding-right: 25px;
  }
}
@media (max-width: 1200px) {
  .cid-ugh0Nuxi9s .content-wrapper .items-wrapper .item .item-wrapper .item-content .item-text {
    padding-right: 0;
  }
}
.cid-ugh0Nuxi9s .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.cid-ugh0Nuxi9s .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper::before {
  content: '';
  position: absolute;
  top: -26px;
  left: -20px;
  width: 75px;
  height: 68px;
  background-color: #6e88ab;
  transform: skewX(-20deg);
}
@media (max-width: 992px) {
  .cid-ugh0Nuxi9s .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper::before {
    left: 0;
  }
}
.cid-ugh0Nuxi9s .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper img {
  position: relative;
  z-index: 1;
  height: 85px;
  width: 85px;
  min-width: 85px;
  border-radius: 100% !important;
  object-fit: cover;
  margin-right: 20px;
}
.cid-ugh0Nuxi9s .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper a {
  height: 85px;
  width: 85px;
  min-width: 85px;
}
.cid-ugh0Nuxi9s .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper .name-wrap {
  position: relative;
  z-index: 1;
}
.cid-ugh0Nuxi9s .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper .name-wrap .item-name {
  margin-bottom: 0;
}
.cid-ugh0Nuxi9s .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper .name-wrap .item-role {
  margin-bottom: 0;
}
.cid-ugh0Nuxi9s .mbr-section-title {
  color: #30262b;
}
.cid-ugh0Nuxi9s .mbr-text {
  color: #30262b;
}
.cid-ugh0Nuxi9s .item-text {
  color: #30262b;
}
.cid-ugh0Nuxi9s .item-name {
  color: #30262b;
}
.cid-ugh0Nuxi9s .item-role {
  color: #30262b;
}
.cid-ugh0NvtmaV {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-ugh0NvtmaV .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugh0NvtmaV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugh0NvtmaV .media-container-row {
  justify-content: space-between;
}
.cid-ugh0NvtmaV .text-content {
  max-width: 50%;
}
@media (max-width: 768px) {
  .cid-ugh0NvtmaV .text-content {
    max-width: none;
  }
}
.cid-ugh0NvtmaV .mbr-iconfont-social {
  margin: 0.5rem;
  font-size: 32px;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #6592e6;
  border: 2px solid #6592e6;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-ugh0NvtmaV .mbr-iconfont-social:before {
  padding: 0.6rem;
}
.cid-ugh0NvtmaV .mbr-iconfont-social:hover {
  background-color: #6592e6;
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-ugh0NvtmaV .icons {
    justify-content: center !important;
  }
  .cid-ugh0NvtmaV .text-content * {
    text-align: center;
  }
}
.cid-ugh0Nwmtnc {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-ugh0NwWIVs {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #5f337d;
}
.cid-ugh0NwWIVs .row-links {
  width: 100%;
  justify-content: center;
}
.cid-ugh0NwWIVs .social-row {
  width: 100%;
  justify-content: center;
}
.cid-ugh0NwWIVs .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-ugh0NwWIVs .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-ugh0NwWIVs .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-ugh0NwWIVs .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-ugh0NwWIVs .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-ugh0NwWIVs .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-ugh0NwWIVs .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-ugh0NwWIVs .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-ugh0NwWIVs .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-ugh0NwWIVs .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-ugh0NwWIVs .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-ugh0NwWIVs .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-ugh0NwWIVs .media-container-row .mbr-text {
  text-align: center;
}
.cid-ugh7Golhio {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ugh7Golhio nav.navbar {
  position: fixed;
}
.cid-ugh7Golhio .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ugh7Golhio .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ugh7Golhio .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ugh7Golhio .dropdown-item:hover,
.cid-ugh7Golhio .dropdown-item:focus {
  background: #39f514 !important;
  color: white !important;
}
.cid-ugh7Golhio .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ugh7Golhio .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ugh7Golhio .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ugh7Golhio .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ugh7Golhio .nav-link {
  position: relative;
}
.cid-ugh7Golhio .container {
  display: flex;
  margin: auto;
}
.cid-ugh7Golhio .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ugh7Golhio .dropdown-menu,
.cid-ugh7Golhio .navbar.opened {
  background: #ffffff !important;
}
.cid-ugh7Golhio .nav-item:focus,
.cid-ugh7Golhio .nav-link:focus {
  outline: none;
}
.cid-ugh7Golhio .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ugh7Golhio .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ugh7Golhio .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ugh7Golhio .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ugh7Golhio .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ugh7Golhio .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ugh7Golhio .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-ugh7Golhio .navbar.opened {
  transition: all 0.3s;
}
.cid-ugh7Golhio .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ugh7Golhio .navbar .navbar-logo img {
  width: auto;
}
.cid-ugh7Golhio .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ugh7Golhio .navbar.collapsed {
  justify-content: center;
}
.cid-ugh7Golhio .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ugh7Golhio .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ugh7Golhio .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-ugh7Golhio .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ugh7Golhio .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ugh7Golhio .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-ugh7Golhio .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ugh7Golhio .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ugh7Golhio .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ugh7Golhio .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ugh7Golhio .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ugh7Golhio .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ugh7Golhio .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ugh7Golhio .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-ugh7Golhio .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ugh7Golhio .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ugh7Golhio .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ugh7Golhio .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ugh7Golhio .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ugh7Golhio .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ugh7Golhio .navbar.navbar-short {
  min-height: 60px;
}
.cid-ugh7Golhio .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ugh7Golhio .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ugh7Golhio .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ugh7Golhio .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ugh7Golhio .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ugh7Golhio .dropdown-item.active,
.cid-ugh7Golhio .dropdown-item:active {
  background-color: transparent;
}
.cid-ugh7Golhio .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ugh7Golhio .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ugh7Golhio .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ugh7Golhio .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ugh7Golhio .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ugh7Golhio .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ugh7Golhio ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ugh7Golhio .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ugh7Golhio button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ugh7Golhio button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-ugh7Golhio button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ugh7Golhio button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugh7Golhio button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugh7Golhio button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ugh7Golhio nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugh7Golhio nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ugh7Golhio nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ugh7Golhio nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugh7Golhio .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ugh7Golhio a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ugh7Golhio .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ugh7Golhio .navbar {
    height: 70px;
  }
  .cid-ugh7Golhio .navbar.opened {
    height: auto;
  }
  .cid-ugh7Golhio .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ugh7GpKVjS {
  overflow: hidden;
  background-color: #262642;
}
.cid-ugh7GpKVjS .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugh7GpKVjS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugh7GpKVjS .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-ugh7GpKVjS .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-ugh7GpKVjS .container {
    padding: 0 24px;
  }
}
.cid-ugh7GpKVjS .row {
  position: relative;
}
.cid-ugh7GpKVjS .row .card {
  justify-content: center;
}
.cid-ugh7GpKVjS .row .decor-wrapper {
  position: absolute;
  bottom: -16rem;
  right: -58rem;
  border: 120px solid #ff3399;
  width: 2000px;
  height: 1000px;
  border-radius: 100%;
}
@media (max-width: 992px) {
  .cid-ugh7GpKVjS .row .decor-wrapper {
    right: -20rem;
  }
}
@media (max-width: 768px) {
  .cid-ugh7GpKVjS .row .decor-wrapper {
    height: 500px;
    right: -10rem;
  }
}
.cid-ugh7GpKVjS .title-wrapper {
  position: relative;
}
@media (max-width: 992px) {
  .cid-ugh7GpKVjS .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-ugh7GpKVjS .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-ugh7GpKVjS .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-ugh7GpKVjS .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ugh7GpKVjS .title-wrapper .mbr-section-btn {
  margin-top: 64px;
}
@media (max-width: 992px) {
  .cid-ugh7GpKVjS .title-wrapper .mbr-section-btn {
    margin-top: 32px;
  }
}
.cid-ugh7GpKVjS .image-wrapper {
  position: relative;
}
.cid-ugh7GpKVjS .image-wrapper img {
  height: 500px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-ugh7GpKVjS .image-wrapper img {
    height: 350px;
  }
}
.cid-ugh7GpKVjS .mbr-section-title {
  color: #F5DF4D;
}
.cid-ugh7GpKVjS .mbr-text {
  color: #FF3399;
}
.cid-ugh7GpKVjS .mbr-text,
.cid-ugh7GpKVjS .mbr-section-btn {
  color: #fafafa;
}
.cid-ugh7GqLrB5 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #e9e9e9;
}
.cid-ugh7GqLrB5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugh7GqLrB5 .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-ugh7GqLrB5 .container {
    padding: 0 22px;
  }
}
.cid-ugh7GqLrB5 .row {
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0 -6px;
}
.cid-ugh7GqLrB5 .row .card {
  padding: 0 6px;
  justify-content: center;
}
.cid-ugh7GqLrB5 .row .title-wrapper {
  position: absolute;
  z-index: 1;
  background-color: #f63df9;
  padding: 24px 80px;
  border-radius: 80px;
  width: fit-content;
}
@media (max-width: 992px) {
  .cid-ugh7GqLrB5 .row .title-wrapper {
    position: static;
    padding: 32px;
    width: 100%;
  }
}
.cid-ugh7GqLrB5 .row .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-ugh7GqLrB5 .image-wrapper {
  margin-bottom: 12px;
}
.cid-ugh7GqLrB5 .image-wrapper img {
  height: 560px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-ugh7GqLrB5 .image-wrapper img {
    height: 350px;
  }
}
.cid-ugh7GqLrB5 .image-wrap {
  margin-bottom: 12px;
}
.cid-ugh7GqLrB5 .image-wrap img {
  height: 560px;
  object-fit: cover;
  width: 65%;
}
@media (max-width: 992px) {
  .cid-ugh7GqLrB5 .image-wrap img {
    height: 350px;
  }
}
.cid-ugh7GqLrB5 .content-wrapper {
  padding: 55px 0;
}
@media (max-width: 992px) {
  .cid-ugh7GqLrB5 .content-wrapper {
    padding: 32px 0;
  }
}
.cid-ugh7GqLrB5 .content-wrapper .mbr-desc {
  margin-bottom: 32px;
}
.cid-ugh7GqLrB5 .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-ugh7GqLrB5 .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-ugh7GqLrB5 .mbr-desc {
  color: #000000;
}
.cid-ugh7GqLrB5 .mbr-text {
  color: #000000;
}
.cid-ugh7GrHRbO {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #6a2be9;
}
.cid-ugh7GrHRbO .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugh7GrHRbO .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-ugh7GrHRbO .container {
    padding: 0 16px;
  }
}
.cid-ugh7GrHRbO .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-ugh7GrHRbO .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-ugh7GrHRbO .content-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-ugh7GrHRbO .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-ugh7GrHRbO .content-wrapper .text-wrapper .mbr-text {
  display: inline-flex;
  width: 60%;
  margin-bottom: 32px;
}
@media (max-width: 1200px) {
  .cid-ugh7GrHRbO .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-ugh7GrHRbO .image-wrapper {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-ugh7GrHRbO .image-wrapper {
    margin-left: 0;
  }
}
.cid-ugh7GrHRbO .image-wrapper img {
  height: 660px;
  object-fit: cover;
  box-shadow: 6px 8px 0 0 #000000;
  border-radius: 24px !important;
}
@media (max-width: 992px) {
  .cid-ugh7GrHRbO .image-wrapper img {
    height: 350px;
  }
}
.cid-ugh7GrHRbO .mbr-section-title {
  color: #ffffff;
}
.cid-ugh7GrHRbO .mbr-text {
  color: #ffffff;
}
.cid-ugh7GsOjoG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f7f5f6;
}
.cid-ugh7GsOjoG .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugh7GsOjoG .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-ugh7GsOjoG .container {
    padding: 0 15px;
  }
}
.cid-ugh7GsOjoG .row {
  justify-content: space-between;
}
.cid-ugh7GsOjoG .row .card {
  justify-content: flex-end;
}
.cid-ugh7GsOjoG .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-ugh7GsOjoG .text-wrapper .mbr-text {
  margin-bottom: 40px;
}
.cid-ugh7GsOjoG .content-wrapper .border-wrap {
  margin-bottom: 100px;
  position: relative;
  display: flex;
  align-items: center;
  height: 1px;
  background-color: #68707c;
}
.cid-ugh7GsOjoG .content-wrapper .border-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 1px;
  height: 15px;
  background-color: #68707c;
  transform: rotate(20deg);
}
@media (max-width: 992px) {
  .cid-ugh7GsOjoG .content-wrapper .border-wrap {
    margin-bottom: 40px;
  }
}
.cid-ugh7GsOjoG .content-wrapper .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}
@media (max-width: 992px) {
  .cid-ugh7GsOjoG .content-wrapper .items-wrapper {
    grid-template-columns: 1fr;
  }
}
.cid-ugh7GsOjoG .content-wrapper .items-wrapper .item .item-wrapper .item-content .icon-wrapper {
  margin-bottom: 30px;
}
.cid-ugh7GsOjoG .content-wrapper .items-wrapper .item .item-wrapper .item-content .icon-wrapper .mbr-iconfont {
  font-size: 50px;
  display: inline-flex;
  color: #6e88ab;
}
.cid-ugh7GsOjoG .content-wrapper .items-wrapper .item .item-wrapper .item-content .item-text {
  padding-right: 50px;
  margin-bottom: 65px;
}
@media (max-width: 1440px) {
  .cid-ugh7GsOjoG .content-wrapper .items-wrapper .item .item-wrapper .item-content .item-text {
    padding-right: 25px;
  }
}
@media (max-width: 1200px) {
  .cid-ugh7GsOjoG .content-wrapper .items-wrapper .item .item-wrapper .item-content .item-text {
    padding-right: 0;
  }
}
.cid-ugh7GsOjoG .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.cid-ugh7GsOjoG .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper::before {
  content: '';
  position: absolute;
  top: -26px;
  left: -20px;
  width: 75px;
  height: 68px;
  background-color: #6e88ab;
  transform: skewX(-20deg);
}
@media (max-width: 992px) {
  .cid-ugh7GsOjoG .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper::before {
    left: 0;
  }
}
.cid-ugh7GsOjoG .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper img {
  position: relative;
  z-index: 1;
  height: 85px;
  width: 85px;
  min-width: 85px;
  border-radius: 100% !important;
  object-fit: cover;
  margin-right: 20px;
}
.cid-ugh7GsOjoG .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper a {
  height: 85px;
  width: 85px;
  min-width: 85px;
}
.cid-ugh7GsOjoG .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper .name-wrap {
  position: relative;
  z-index: 1;
}
.cid-ugh7GsOjoG .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper .name-wrap .item-name {
  margin-bottom: 0;
}
.cid-ugh7GsOjoG .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper .name-wrap .item-role {
  margin-bottom: 0;
}
.cid-ugh7GsOjoG .mbr-section-title {
  color: #30262b;
}
.cid-ugh7GsOjoG .mbr-text {
  color: #30262b;
}
.cid-ugh7GsOjoG .item-text {
  color: #30262b;
}
.cid-ugh7GsOjoG .item-name {
  color: #30262b;
}
.cid-ugh7GsOjoG .item-role {
  color: #30262b;
}
.cid-ugh7GtKoHZ {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-ugh7GtKoHZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugh7GtKoHZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugh7GtKoHZ .media-container-row {
  justify-content: space-between;
}
.cid-ugh7GtKoHZ .text-content {
  max-width: 50%;
}
@media (max-width: 768px) {
  .cid-ugh7GtKoHZ .text-content {
    max-width: none;
  }
}
.cid-ugh7GtKoHZ .mbr-iconfont-social {
  margin: 0.5rem;
  font-size: 32px;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #6592e6;
  border: 2px solid #6592e6;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-ugh7GtKoHZ .mbr-iconfont-social:before {
  padding: 0.6rem;
}
.cid-ugh7GtKoHZ .mbr-iconfont-social:hover {
  background-color: #6592e6;
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-ugh7GtKoHZ .icons {
    justify-content: center !important;
  }
  .cid-ugh7GtKoHZ .text-content * {
    text-align: center;
  }
}
.cid-ugh7GuEDLx {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-ugh7Gvg2rA {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #5f337d;
}
.cid-ugh7Gvg2rA .row-links {
  width: 100%;
  justify-content: center;
}
.cid-ugh7Gvg2rA .social-row {
  width: 100%;
  justify-content: center;
}
.cid-ugh7Gvg2rA .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-ugh7Gvg2rA .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-ugh7Gvg2rA .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-ugh7Gvg2rA .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-ugh7Gvg2rA .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-ugh7Gvg2rA .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-ugh7Gvg2rA .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-ugh7Gvg2rA .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-ugh7Gvg2rA .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-ugh7Gvg2rA .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-ugh7Gvg2rA .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-ugh7Gvg2rA .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-ugh7Gvg2rA .media-container-row .mbr-text {
  text-align: center;
}
.cid-ughh90DhWC {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ughh90DhWC nav.navbar {
  position: fixed;
}
.cid-ughh90DhWC .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ughh90DhWC .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ughh90DhWC .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ughh90DhWC .dropdown-item:hover,
.cid-ughh90DhWC .dropdown-item:focus {
  background: #39f514 !important;
  color: white !important;
}
.cid-ughh90DhWC .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ughh90DhWC .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ughh90DhWC .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ughh90DhWC .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ughh90DhWC .nav-link {
  position: relative;
}
.cid-ughh90DhWC .container {
  display: flex;
  margin: auto;
}
.cid-ughh90DhWC .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ughh90DhWC .dropdown-menu,
.cid-ughh90DhWC .navbar.opened {
  background: #ffffff !important;
}
.cid-ughh90DhWC .nav-item:focus,
.cid-ughh90DhWC .nav-link:focus {
  outline: none;
}
.cid-ughh90DhWC .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ughh90DhWC .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ughh90DhWC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ughh90DhWC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ughh90DhWC .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ughh90DhWC .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ughh90DhWC .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-ughh90DhWC .navbar.opened {
  transition: all 0.3s;
}
.cid-ughh90DhWC .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ughh90DhWC .navbar .navbar-logo img {
  width: auto;
}
.cid-ughh90DhWC .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ughh90DhWC .navbar.collapsed {
  justify-content: center;
}
.cid-ughh90DhWC .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ughh90DhWC .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ughh90DhWC .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-ughh90DhWC .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ughh90DhWC .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ughh90DhWC .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-ughh90DhWC .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ughh90DhWC .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ughh90DhWC .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ughh90DhWC .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ughh90DhWC .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ughh90DhWC .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ughh90DhWC .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ughh90DhWC .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-ughh90DhWC .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ughh90DhWC .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ughh90DhWC .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ughh90DhWC .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ughh90DhWC .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ughh90DhWC .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ughh90DhWC .navbar.navbar-short {
  min-height: 60px;
}
.cid-ughh90DhWC .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ughh90DhWC .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ughh90DhWC .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ughh90DhWC .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ughh90DhWC .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ughh90DhWC .dropdown-item.active,
.cid-ughh90DhWC .dropdown-item:active {
  background-color: transparent;
}
.cid-ughh90DhWC .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ughh90DhWC .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ughh90DhWC .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ughh90DhWC .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ughh90DhWC .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ughh90DhWC .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ughh90DhWC ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ughh90DhWC .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ughh90DhWC button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ughh90DhWC button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-ughh90DhWC button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ughh90DhWC button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ughh90DhWC button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ughh90DhWC button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ughh90DhWC nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ughh90DhWC nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ughh90DhWC nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ughh90DhWC nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ughh90DhWC .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ughh90DhWC a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ughh90DhWC .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ughh90DhWC .navbar {
    height: 70px;
  }
  .cid-ughh90DhWC .navbar.opened {
    height: auto;
  }
  .cid-ughh90DhWC .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ughh91Fepm {
  overflow: hidden;
  background-color: #262642;
}
.cid-ughh91Fepm .mbr-fallback-image.disabled {
  display: none;
}
.cid-ughh91Fepm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ughh91Fepm .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-ughh91Fepm .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-ughh91Fepm .container {
    padding: 0 24px;
  }
}
.cid-ughh91Fepm .row {
  position: relative;
}
.cid-ughh91Fepm .row .card {
  justify-content: center;
}
.cid-ughh91Fepm .row .decor-wrapper {
  position: absolute;
  bottom: -16rem;
  right: -58rem;
  border: 120px solid #ff3399;
  width: 2000px;
  height: 1000px;
  border-radius: 100%;
}
@media (max-width: 992px) {
  .cid-ughh91Fepm .row .decor-wrapper {
    right: -20rem;
  }
}
@media (max-width: 768px) {
  .cid-ughh91Fepm .row .decor-wrapper {
    height: 500px;
    right: -10rem;
  }
}
.cid-ughh91Fepm .title-wrapper {
  position: relative;
}
@media (max-width: 992px) {
  .cid-ughh91Fepm .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-ughh91Fepm .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-ughh91Fepm .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-ughh91Fepm .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ughh91Fepm .title-wrapper .mbr-section-btn {
  margin-top: 64px;
}
@media (max-width: 992px) {
  .cid-ughh91Fepm .title-wrapper .mbr-section-btn {
    margin-top: 32px;
  }
}
.cid-ughh91Fepm .image-wrapper {
  position: relative;
}
.cid-ughh91Fepm .image-wrapper img {
  height: 500px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-ughh91Fepm .image-wrapper img {
    height: 350px;
  }
}
.cid-ughh91Fepm .mbr-section-title {
  color: #F5DF4D;
}
.cid-ughh91Fepm .mbr-text {
  color: #FF3399;
}
.cid-ughh91Fepm .mbr-text,
.cid-ughh91Fepm .mbr-section-btn {
  color: #fafafa;
}
.cid-ughh92yfez {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #e9e9e9;
}
.cid-ughh92yfez .mbr-fallback-image.disabled {
  display: none;
}
.cid-ughh92yfez .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-ughh92yfez .container {
    padding: 0 22px;
  }
}
.cid-ughh92yfez .row {
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0 -6px;
}
.cid-ughh92yfez .row .card {
  padding: 0 6px;
  justify-content: center;
}
.cid-ughh92yfez .row .title-wrapper {
  position: absolute;
  z-index: 1;
  background-color: #f63df9;
  padding: 24px 80px;
  border-radius: 80px;
  width: fit-content;
}
@media (max-width: 992px) {
  .cid-ughh92yfez .row .title-wrapper {
    position: static;
    padding: 32px;
    width: 100%;
  }
}
.cid-ughh92yfez .row .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-ughh92yfez .image-wrapper {
  margin-bottom: 12px;
}
.cid-ughh92yfez .image-wrapper img {
  height: 560px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-ughh92yfez .image-wrapper img {
    height: 350px;
  }
}
.cid-ughh92yfez .image-wrap {
  margin-bottom: 12px;
}
.cid-ughh92yfez .image-wrap img {
  height: 560px;
  object-fit: cover;
  width: 65%;
}
@media (max-width: 992px) {
  .cid-ughh92yfez .image-wrap img {
    height: 350px;
  }
}
.cid-ughh92yfez .content-wrapper {
  padding: 55px 0;
}
@media (max-width: 992px) {
  .cid-ughh92yfez .content-wrapper {
    padding: 32px 0;
  }
}
.cid-ughh92yfez .content-wrapper .mbr-desc {
  margin-bottom: 32px;
}
.cid-ughh92yfez .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-ughh92yfez .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-ughh92yfez .mbr-desc {
  color: #000000;
}
.cid-ughh92yfez .mbr-text {
  color: #000000;
}
.cid-ughh93n6uB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #6a2be9;
}
.cid-ughh93n6uB .mbr-fallback-image.disabled {
  display: none;
}
.cid-ughh93n6uB .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-ughh93n6uB .container {
    padding: 0 16px;
  }
}
.cid-ughh93n6uB .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-ughh93n6uB .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-ughh93n6uB .content-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-ughh93n6uB .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-ughh93n6uB .content-wrapper .text-wrapper .mbr-text {
  display: inline-flex;
  width: 60%;
  margin-bottom: 32px;
}
@media (max-width: 1200px) {
  .cid-ughh93n6uB .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-ughh93n6uB .image-wrapper {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-ughh93n6uB .image-wrapper {
    margin-left: 0;
  }
}
.cid-ughh93n6uB .image-wrapper img {
  height: 660px;
  object-fit: cover;
  box-shadow: 6px 8px 0 0 #000000;
  border-radius: 24px !important;
}
@media (max-width: 992px) {
  .cid-ughh93n6uB .image-wrapper img {
    height: 350px;
  }
}
.cid-ughh93n6uB .mbr-section-title {
  color: #ffffff;
}
.cid-ughh93n6uB .mbr-text {
  color: #ffffff;
}
.cid-ughh944RBq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f7f5f6;
}
.cid-ughh944RBq .mbr-fallback-image.disabled {
  display: none;
}
.cid-ughh944RBq .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-ughh944RBq .container {
    padding: 0 15px;
  }
}
.cid-ughh944RBq .row {
  justify-content: space-between;
}
.cid-ughh944RBq .row .card {
  justify-content: flex-end;
}
.cid-ughh944RBq .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-ughh944RBq .text-wrapper .mbr-text {
  margin-bottom: 40px;
}
.cid-ughh944RBq .content-wrapper .border-wrap {
  margin-bottom: 100px;
  position: relative;
  display: flex;
  align-items: center;
  height: 1px;
  background-color: #68707c;
}
.cid-ughh944RBq .content-wrapper .border-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 1px;
  height: 15px;
  background-color: #68707c;
  transform: rotate(20deg);
}
@media (max-width: 992px) {
  .cid-ughh944RBq .content-wrapper .border-wrap {
    margin-bottom: 40px;
  }
}
.cid-ughh944RBq .content-wrapper .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}
@media (max-width: 992px) {
  .cid-ughh944RBq .content-wrapper .items-wrapper {
    grid-template-columns: 1fr;
  }
}
.cid-ughh944RBq .content-wrapper .items-wrapper .item .item-wrapper .item-content .icon-wrapper {
  margin-bottom: 30px;
}
.cid-ughh944RBq .content-wrapper .items-wrapper .item .item-wrapper .item-content .icon-wrapper .mbr-iconfont {
  font-size: 50px;
  display: inline-flex;
  color: #6e88ab;
}
.cid-ughh944RBq .content-wrapper .items-wrapper .item .item-wrapper .item-content .item-text {
  padding-right: 50px;
  margin-bottom: 65px;
}
@media (max-width: 1440px) {
  .cid-ughh944RBq .content-wrapper .items-wrapper .item .item-wrapper .item-content .item-text {
    padding-right: 25px;
  }
}
@media (max-width: 1200px) {
  .cid-ughh944RBq .content-wrapper .items-wrapper .item .item-wrapper .item-content .item-text {
    padding-right: 0;
  }
}
.cid-ughh944RBq .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.cid-ughh944RBq .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper::before {
  content: '';
  position: absolute;
  top: -26px;
  left: -20px;
  width: 75px;
  height: 68px;
  background-color: #6e88ab;
  transform: skewX(-20deg);
}
@media (max-width: 992px) {
  .cid-ughh944RBq .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper::before {
    left: 0;
  }
}
.cid-ughh944RBq .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper img {
  position: relative;
  z-index: 1;
  height: 85px;
  width: 85px;
  min-width: 85px;
  border-radius: 100% !important;
  object-fit: cover;
  margin-right: 20px;
}
.cid-ughh944RBq .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper a {
  height: 85px;
  width: 85px;
  min-width: 85px;
}
.cid-ughh944RBq .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper .name-wrap {
  position: relative;
  z-index: 1;
}
.cid-ughh944RBq .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper .name-wrap .item-name {
  margin-bottom: 0;
}
.cid-ughh944RBq .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper .name-wrap .item-role {
  margin-bottom: 0;
}
.cid-ughh944RBq .mbr-section-title {
  color: #30262b;
}
.cid-ughh944RBq .mbr-text {
  color: #30262b;
}
.cid-ughh944RBq .item-text {
  color: #30262b;
}
.cid-ughh944RBq .item-name {
  color: #30262b;
}
.cid-ughh944RBq .item-role {
  color: #30262b;
}
.cid-ughh953olw {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-ughh953olw .mbr-fallback-image.disabled {
  display: none;
}
.cid-ughh953olw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ughh953olw .media-container-row {
  justify-content: space-between;
}
.cid-ughh953olw .text-content {
  max-width: 50%;
}
@media (max-width: 768px) {
  .cid-ughh953olw .text-content {
    max-width: none;
  }
}
.cid-ughh953olw .mbr-iconfont-social {
  margin: 0.5rem;
  font-size: 32px;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #6592e6;
  border: 2px solid #6592e6;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-ughh953olw .mbr-iconfont-social:before {
  padding: 0.6rem;
}
.cid-ughh953olw .mbr-iconfont-social:hover {
  background-color: #6592e6;
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-ughh953olw .icons {
    justify-content: center !important;
  }
  .cid-ughh953olw .text-content * {
    text-align: center;
  }
}
.cid-ughh9605l1 {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-ughh96CatN {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #5f337d;
}
.cid-ughh96CatN .row-links {
  width: 100%;
  justify-content: center;
}
.cid-ughh96CatN .social-row {
  width: 100%;
  justify-content: center;
}
.cid-ughh96CatN .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-ughh96CatN .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-ughh96CatN .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-ughh96CatN .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-ughh96CatN .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-ughh96CatN .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-ughh96CatN .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-ughh96CatN .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-ughh96CatN .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-ughh96CatN .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-ughh96CatN .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-ughh96CatN .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-ughh96CatN .media-container-row .mbr-text {
  text-align: center;
}
.cid-ughpnXSnmx {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ughpnXSnmx nav.navbar {
  position: fixed;
}
.cid-ughpnXSnmx .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ughpnXSnmx .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ughpnXSnmx .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ughpnXSnmx .dropdown-item:hover,
.cid-ughpnXSnmx .dropdown-item:focus {
  background: #39f514 !important;
  color: white !important;
}
.cid-ughpnXSnmx .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ughpnXSnmx .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ughpnXSnmx .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ughpnXSnmx .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ughpnXSnmx .nav-link {
  position: relative;
}
.cid-ughpnXSnmx .container {
  display: flex;
  margin: auto;
}
.cid-ughpnXSnmx .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ughpnXSnmx .dropdown-menu,
.cid-ughpnXSnmx .navbar.opened {
  background: #ffffff !important;
}
.cid-ughpnXSnmx .nav-item:focus,
.cid-ughpnXSnmx .nav-link:focus {
  outline: none;
}
.cid-ughpnXSnmx .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ughpnXSnmx .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ughpnXSnmx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ughpnXSnmx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ughpnXSnmx .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ughpnXSnmx .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ughpnXSnmx .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-ughpnXSnmx .navbar.opened {
  transition: all 0.3s;
}
.cid-ughpnXSnmx .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ughpnXSnmx .navbar .navbar-logo img {
  width: auto;
}
.cid-ughpnXSnmx .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ughpnXSnmx .navbar.collapsed {
  justify-content: center;
}
.cid-ughpnXSnmx .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ughpnXSnmx .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ughpnXSnmx .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-ughpnXSnmx .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ughpnXSnmx .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ughpnXSnmx .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-ughpnXSnmx .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ughpnXSnmx .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ughpnXSnmx .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ughpnXSnmx .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ughpnXSnmx .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ughpnXSnmx .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ughpnXSnmx .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ughpnXSnmx .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-ughpnXSnmx .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ughpnXSnmx .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ughpnXSnmx .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ughpnXSnmx .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ughpnXSnmx .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ughpnXSnmx .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ughpnXSnmx .navbar.navbar-short {
  min-height: 60px;
}
.cid-ughpnXSnmx .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ughpnXSnmx .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ughpnXSnmx .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ughpnXSnmx .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ughpnXSnmx .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ughpnXSnmx .dropdown-item.active,
.cid-ughpnXSnmx .dropdown-item:active {
  background-color: transparent;
}
.cid-ughpnXSnmx .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ughpnXSnmx .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ughpnXSnmx .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ughpnXSnmx .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ughpnXSnmx .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ughpnXSnmx .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ughpnXSnmx ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ughpnXSnmx .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ughpnXSnmx button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ughpnXSnmx button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-ughpnXSnmx button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ughpnXSnmx button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ughpnXSnmx button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ughpnXSnmx button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ughpnXSnmx nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ughpnXSnmx nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ughpnXSnmx nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ughpnXSnmx nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ughpnXSnmx .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ughpnXSnmx a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ughpnXSnmx .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ughpnXSnmx .navbar {
    height: 70px;
  }
  .cid-ughpnXSnmx .navbar.opened {
    height: auto;
  }
  .cid-ughpnXSnmx .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ughpnYQ2dj {
  overflow: hidden;
  background-color: #262642;
}
.cid-ughpnYQ2dj .mbr-fallback-image.disabled {
  display: none;
}
.cid-ughpnYQ2dj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ughpnYQ2dj .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-ughpnYQ2dj .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-ughpnYQ2dj .container {
    padding: 0 24px;
  }
}
.cid-ughpnYQ2dj .row {
  position: relative;
}
.cid-ughpnYQ2dj .row .card {
  justify-content: center;
}
.cid-ughpnYQ2dj .row .decor-wrapper {
  position: absolute;
  bottom: -16rem;
  right: -58rem;
  border: 120px solid #ff3399;
  width: 2000px;
  height: 1000px;
  border-radius: 100%;
}
@media (max-width: 992px) {
  .cid-ughpnYQ2dj .row .decor-wrapper {
    right: -20rem;
  }
}
@media (max-width: 768px) {
  .cid-ughpnYQ2dj .row .decor-wrapper {
    height: 500px;
    right: -10rem;
  }
}
.cid-ughpnYQ2dj .title-wrapper {
  position: relative;
}
@media (max-width: 992px) {
  .cid-ughpnYQ2dj .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-ughpnYQ2dj .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-ughpnYQ2dj .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-ughpnYQ2dj .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ughpnYQ2dj .title-wrapper .mbr-section-btn {
  margin-top: 64px;
}
@media (max-width: 992px) {
  .cid-ughpnYQ2dj .title-wrapper .mbr-section-btn {
    margin-top: 32px;
  }
}
.cid-ughpnYQ2dj .image-wrapper {
  position: relative;
}
.cid-ughpnYQ2dj .image-wrapper img {
  height: 500px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-ughpnYQ2dj .image-wrapper img {
    height: 350px;
  }
}
.cid-ughpnYQ2dj .mbr-section-title {
  color: #F5DF4D;
}
.cid-ughpnYQ2dj .mbr-text {
  color: #FF3399;
}
.cid-ughpnYQ2dj .mbr-text,
.cid-ughpnYQ2dj .mbr-section-btn {
  color: #fafafa;
}
.cid-ughpnZGb4y {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #e9e9e9;
}
.cid-ughpnZGb4y .mbr-fallback-image.disabled {
  display: none;
}
.cid-ughpnZGb4y .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-ughpnZGb4y .container {
    padding: 0 22px;
  }
}
.cid-ughpnZGb4y .row {
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0 -6px;
}
.cid-ughpnZGb4y .row .card {
  padding: 0 6px;
  justify-content: center;
}
.cid-ughpnZGb4y .row .title-wrapper {
  position: absolute;
  z-index: 1;
  background-color: #f63df9;
  padding: 24px 80px;
  border-radius: 80px;
  width: fit-content;
}
@media (max-width: 992px) {
  .cid-ughpnZGb4y .row .title-wrapper {
    position: static;
    padding: 32px;
    width: 100%;
  }
}
.cid-ughpnZGb4y .row .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-ughpnZGb4y .image-wrapper {
  margin-bottom: 12px;
}
.cid-ughpnZGb4y .image-wrapper img {
  height: 560px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-ughpnZGb4y .image-wrapper img {
    height: 350px;
  }
}
.cid-ughpnZGb4y .image-wrap {
  margin-bottom: 12px;
}
.cid-ughpnZGb4y .image-wrap img {
  height: 560px;
  object-fit: cover;
  width: 65%;
}
@media (max-width: 992px) {
  .cid-ughpnZGb4y .image-wrap img {
    height: 350px;
  }
}
.cid-ughpnZGb4y .content-wrapper {
  padding: 55px 0;
}
@media (max-width: 992px) {
  .cid-ughpnZGb4y .content-wrapper {
    padding: 32px 0;
  }
}
.cid-ughpnZGb4y .content-wrapper .mbr-desc {
  margin-bottom: 32px;
}
.cid-ughpnZGb4y .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-ughpnZGb4y .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-ughpnZGb4y .mbr-desc {
  color: #000000;
}
.cid-ughpnZGb4y .mbr-text {
  color: #000000;
}
.cid-ughpo0tRv1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #6a2be9;
}
.cid-ughpo0tRv1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ughpo0tRv1 .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-ughpo0tRv1 .container {
    padding: 0 16px;
  }
}
.cid-ughpo0tRv1 .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-ughpo0tRv1 .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-ughpo0tRv1 .content-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-ughpo0tRv1 .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-ughpo0tRv1 .content-wrapper .text-wrapper .mbr-text {
  display: inline-flex;
  width: 60%;
  margin-bottom: 32px;
}
@media (max-width: 1200px) {
  .cid-ughpo0tRv1 .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-ughpo0tRv1 .image-wrapper {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-ughpo0tRv1 .image-wrapper {
    margin-left: 0;
  }
}
.cid-ughpo0tRv1 .image-wrapper img {
  height: 660px;
  object-fit: cover;
  box-shadow: 6px 8px 0 0 #000000;
  border-radius: 24px !important;
}
@media (max-width: 992px) {
  .cid-ughpo0tRv1 .image-wrapper img {
    height: 350px;
  }
}
.cid-ughpo0tRv1 .mbr-section-title {
  color: #ffffff;
}
.cid-ughpo0tRv1 .mbr-text {
  color: #ffffff;
}
.cid-ughpo1bAJJ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f7f5f6;
}
.cid-ughpo1bAJJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-ughpo1bAJJ .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-ughpo1bAJJ .container {
    padding: 0 15px;
  }
}
.cid-ughpo1bAJJ .row {
  justify-content: space-between;
}
.cid-ughpo1bAJJ .row .card {
  justify-content: flex-end;
}
.cid-ughpo1bAJJ .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-ughpo1bAJJ .text-wrapper .mbr-text {
  margin-bottom: 40px;
}
.cid-ughpo1bAJJ .content-wrapper .border-wrap {
  margin-bottom: 100px;
  position: relative;
  display: flex;
  align-items: center;
  height: 1px;
  background-color: #68707c;
}
.cid-ughpo1bAJJ .content-wrapper .border-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 1px;
  height: 15px;
  background-color: #68707c;
  transform: rotate(20deg);
}
@media (max-width: 992px) {
  .cid-ughpo1bAJJ .content-wrapper .border-wrap {
    margin-bottom: 40px;
  }
}
.cid-ughpo1bAJJ .content-wrapper .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}
@media (max-width: 992px) {
  .cid-ughpo1bAJJ .content-wrapper .items-wrapper {
    grid-template-columns: 1fr;
  }
}
.cid-ughpo1bAJJ .content-wrapper .items-wrapper .item .item-wrapper .item-content .icon-wrapper {
  margin-bottom: 30px;
}
.cid-ughpo1bAJJ .content-wrapper .items-wrapper .item .item-wrapper .item-content .icon-wrapper .mbr-iconfont {
  font-size: 50px;
  display: inline-flex;
  color: #6e88ab;
}
.cid-ughpo1bAJJ .content-wrapper .items-wrapper .item .item-wrapper .item-content .item-text {
  padding-right: 50px;
  margin-bottom: 65px;
}
@media (max-width: 1440px) {
  .cid-ughpo1bAJJ .content-wrapper .items-wrapper .item .item-wrapper .item-content .item-text {
    padding-right: 25px;
  }
}
@media (max-width: 1200px) {
  .cid-ughpo1bAJJ .content-wrapper .items-wrapper .item .item-wrapper .item-content .item-text {
    padding-right: 0;
  }
}
.cid-ughpo1bAJJ .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.cid-ughpo1bAJJ .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper::before {
  content: '';
  position: absolute;
  top: -26px;
  left: -20px;
  width: 75px;
  height: 68px;
  background-color: #6e88ab;
  transform: skewX(-20deg);
}
@media (max-width: 992px) {
  .cid-ughpo1bAJJ .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper::before {
    left: 0;
  }
}
.cid-ughpo1bAJJ .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper img {
  position: relative;
  z-index: 1;
  height: 85px;
  width: 85px;
  min-width: 85px;
  border-radius: 100% !important;
  object-fit: cover;
  margin-right: 20px;
}
.cid-ughpo1bAJJ .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper a {
  height: 85px;
  width: 85px;
  min-width: 85px;
}
.cid-ughpo1bAJJ .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper .name-wrap {
  position: relative;
  z-index: 1;
}
.cid-ughpo1bAJJ .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper .name-wrap .item-name {
  margin-bottom: 0;
}
.cid-ughpo1bAJJ .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper .name-wrap .item-role {
  margin-bottom: 0;
}
.cid-ughpo1bAJJ .mbr-section-title {
  color: #30262b;
}
.cid-ughpo1bAJJ .mbr-text {
  color: #30262b;
}
.cid-ughpo1bAJJ .item-text {
  color: #30262b;
}
.cid-ughpo1bAJJ .item-name {
  color: #30262b;
}
.cid-ughpo1bAJJ .item-role {
  color: #30262b;
}
.cid-ughpo2a3vd {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-ughpo2a3vd .mbr-fallback-image.disabled {
  display: none;
}
.cid-ughpo2a3vd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ughpo2a3vd .media-container-row {
  justify-content: space-between;
}
.cid-ughpo2a3vd .text-content {
  max-width: 50%;
}
@media (max-width: 768px) {
  .cid-ughpo2a3vd .text-content {
    max-width: none;
  }
}
.cid-ughpo2a3vd .mbr-iconfont-social {
  margin: 0.5rem;
  font-size: 32px;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #6592e6;
  border: 2px solid #6592e6;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-ughpo2a3vd .mbr-iconfont-social:before {
  padding: 0.6rem;
}
.cid-ughpo2a3vd .mbr-iconfont-social:hover {
  background-color: #6592e6;
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-ughpo2a3vd .icons {
    justify-content: center !important;
  }
  .cid-ughpo2a3vd .text-content * {
    text-align: center;
  }
}
.cid-ughpo36nue {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-ughpo3JLtE {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #5f337d;
}
.cid-ughpo3JLtE .row-links {
  width: 100%;
  justify-content: center;
}
.cid-ughpo3JLtE .social-row {
  width: 100%;
  justify-content: center;
}
.cid-ughpo3JLtE .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-ughpo3JLtE .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-ughpo3JLtE .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-ughpo3JLtE .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-ughpo3JLtE .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-ughpo3JLtE .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-ughpo3JLtE .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-ughpo3JLtE .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-ughpo3JLtE .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-ughpo3JLtE .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-ughpo3JLtE .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-ughpo3JLtE .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-ughpo3JLtE .media-container-row .mbr-text {
  text-align: center;
}
.cid-ughQEn83Im {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ughQEn83Im nav.navbar {
  position: fixed;
}
.cid-ughQEn83Im .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ughQEn83Im .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ughQEn83Im .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ughQEn83Im .dropdown-item:hover,
.cid-ughQEn83Im .dropdown-item:focus {
  background: #39f514 !important;
  color: white !important;
}
.cid-ughQEn83Im .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ughQEn83Im .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ughQEn83Im .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ughQEn83Im .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ughQEn83Im .nav-link {
  position: relative;
}
.cid-ughQEn83Im .container {
  display: flex;
  margin: auto;
}
.cid-ughQEn83Im .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ughQEn83Im .dropdown-menu,
.cid-ughQEn83Im .navbar.opened {
  background: #ffffff !important;
}
.cid-ughQEn83Im .nav-item:focus,
.cid-ughQEn83Im .nav-link:focus {
  outline: none;
}
.cid-ughQEn83Im .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ughQEn83Im .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ughQEn83Im .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ughQEn83Im .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ughQEn83Im .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ughQEn83Im .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ughQEn83Im .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-ughQEn83Im .navbar.opened {
  transition: all 0.3s;
}
.cid-ughQEn83Im .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ughQEn83Im .navbar .navbar-logo img {
  width: auto;
}
.cid-ughQEn83Im .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ughQEn83Im .navbar.collapsed {
  justify-content: center;
}
.cid-ughQEn83Im .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ughQEn83Im .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ughQEn83Im .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-ughQEn83Im .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ughQEn83Im .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ughQEn83Im .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-ughQEn83Im .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ughQEn83Im .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ughQEn83Im .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ughQEn83Im .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ughQEn83Im .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ughQEn83Im .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ughQEn83Im .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ughQEn83Im .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-ughQEn83Im .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ughQEn83Im .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ughQEn83Im .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ughQEn83Im .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ughQEn83Im .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ughQEn83Im .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ughQEn83Im .navbar.navbar-short {
  min-height: 60px;
}
.cid-ughQEn83Im .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ughQEn83Im .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ughQEn83Im .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ughQEn83Im .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ughQEn83Im .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ughQEn83Im .dropdown-item.active,
.cid-ughQEn83Im .dropdown-item:active {
  background-color: transparent;
}
.cid-ughQEn83Im .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ughQEn83Im .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ughQEn83Im .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ughQEn83Im .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ughQEn83Im .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ughQEn83Im .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ughQEn83Im ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ughQEn83Im .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ughQEn83Im button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ughQEn83Im button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-ughQEn83Im button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ughQEn83Im button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ughQEn83Im button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ughQEn83Im button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ughQEn83Im nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ughQEn83Im nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ughQEn83Im nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ughQEn83Im nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ughQEn83Im .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ughQEn83Im a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ughQEn83Im .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ughQEn83Im .navbar {
    height: 70px;
  }
  .cid-ughQEn83Im .navbar.opened {
    height: auto;
  }
  .cid-ughQEn83Im .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ughQEobXOd {
  overflow: hidden;
  background-color: #262642;
}
.cid-ughQEobXOd .mbr-fallback-image.disabled {
  display: none;
}
.cid-ughQEobXOd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ughQEobXOd .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-ughQEobXOd .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-ughQEobXOd .container {
    padding: 0 24px;
  }
}
.cid-ughQEobXOd .row {
  position: relative;
}
.cid-ughQEobXOd .row .card {
  justify-content: center;
}
.cid-ughQEobXOd .row .decor-wrapper {
  position: absolute;
  bottom: -16rem;
  right: -58rem;
  border: 120px solid #ff3399;
  width: 2000px;
  height: 1000px;
  border-radius: 100%;
}
@media (max-width: 992px) {
  .cid-ughQEobXOd .row .decor-wrapper {
    right: -20rem;
  }
}
@media (max-width: 768px) {
  .cid-ughQEobXOd .row .decor-wrapper {
    height: 500px;
    right: -10rem;
  }
}
.cid-ughQEobXOd .title-wrapper {
  position: relative;
}
@media (max-width: 992px) {
  .cid-ughQEobXOd .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-ughQEobXOd .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-ughQEobXOd .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-ughQEobXOd .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ughQEobXOd .title-wrapper .mbr-section-btn {
  margin-top: 64px;
}
@media (max-width: 992px) {
  .cid-ughQEobXOd .title-wrapper .mbr-section-btn {
    margin-top: 32px;
  }
}
.cid-ughQEobXOd .image-wrapper {
  position: relative;
}
.cid-ughQEobXOd .image-wrapper img {
  height: 500px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-ughQEobXOd .image-wrapper img {
    height: 350px;
  }
}
.cid-ughQEobXOd .mbr-section-title {
  color: #F5DF4D;
}
.cid-ughQEobXOd .mbr-text {
  color: #FF3399;
}
.cid-ughQEobXOd .mbr-text,
.cid-ughQEobXOd .mbr-section-btn {
  color: #fafafa;
}
.cid-ughQEoVfM3 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #e9e9e9;
}
.cid-ughQEoVfM3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ughQEoVfM3 .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-ughQEoVfM3 .container {
    padding: 0 22px;
  }
}
.cid-ughQEoVfM3 .row {
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0 -6px;
}
.cid-ughQEoVfM3 .row .card {
  padding: 0 6px;
  justify-content: center;
}
.cid-ughQEoVfM3 .row .title-wrapper {
  position: absolute;
  z-index: 1;
  background-color: #f63df9;
  padding: 24px 80px;
  border-radius: 80px;
  width: fit-content;
}
@media (max-width: 992px) {
  .cid-ughQEoVfM3 .row .title-wrapper {
    position: static;
    padding: 32px;
    width: 100%;
  }
}
.cid-ughQEoVfM3 .row .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-ughQEoVfM3 .image-wrapper {
  margin-bottom: 12px;
}
.cid-ughQEoVfM3 .image-wrapper img {
  height: 560px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-ughQEoVfM3 .image-wrapper img {
    height: 350px;
  }
}
.cid-ughQEoVfM3 .image-wrap {
  margin-bottom: 12px;
}
.cid-ughQEoVfM3 .image-wrap img {
  height: 560px;
  object-fit: cover;
  width: 65%;
}
@media (max-width: 992px) {
  .cid-ughQEoVfM3 .image-wrap img {
    height: 350px;
  }
}
.cid-ughQEoVfM3 .content-wrapper {
  padding: 55px 0;
}
@media (max-width: 992px) {
  .cid-ughQEoVfM3 .content-wrapper {
    padding: 32px 0;
  }
}
.cid-ughQEoVfM3 .content-wrapper .mbr-desc {
  margin-bottom: 32px;
}
.cid-ughQEoVfM3 .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-ughQEoVfM3 .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-ughQEoVfM3 .mbr-desc {
  color: #000000;
}
.cid-ughQEoVfM3 .mbr-text {
  color: #000000;
}
.cid-ughQEpLDSS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #6a2be9;
}
.cid-ughQEpLDSS .mbr-fallback-image.disabled {
  display: none;
}
.cid-ughQEpLDSS .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-ughQEpLDSS .container {
    padding: 0 16px;
  }
}
.cid-ughQEpLDSS .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-ughQEpLDSS .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-ughQEpLDSS .content-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-ughQEpLDSS .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-ughQEpLDSS .content-wrapper .text-wrapper .mbr-text {
  display: inline-flex;
  width: 60%;
  margin-bottom: 32px;
}
@media (max-width: 1200px) {
  .cid-ughQEpLDSS .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-ughQEpLDSS .image-wrapper {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-ughQEpLDSS .image-wrapper {
    margin-left: 0;
  }
}
.cid-ughQEpLDSS .image-wrapper img {
  height: 660px;
  object-fit: cover;
  box-shadow: 6px 8px 0 0 #000000;
  border-radius: 24px !important;
}
@media (max-width: 992px) {
  .cid-ughQEpLDSS .image-wrapper img {
    height: 350px;
  }
}
.cid-ughQEpLDSS .mbr-section-title {
  color: #ffffff;
}
.cid-ughQEpLDSS .mbr-text {
  color: #ffffff;
}
.cid-ughQEqwwKY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f7f5f6;
}
.cid-ughQEqwwKY .mbr-fallback-image.disabled {
  display: none;
}
.cid-ughQEqwwKY .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-ughQEqwwKY .container {
    padding: 0 15px;
  }
}
.cid-ughQEqwwKY .row {
  justify-content: space-between;
}
.cid-ughQEqwwKY .row .card {
  justify-content: flex-end;
}
.cid-ughQEqwwKY .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-ughQEqwwKY .text-wrapper .mbr-text {
  margin-bottom: 40px;
}
.cid-ughQEqwwKY .content-wrapper .border-wrap {
  margin-bottom: 100px;
  position: relative;
  display: flex;
  align-items: center;
  height: 1px;
  background-color: #68707c;
}
.cid-ughQEqwwKY .content-wrapper .border-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 1px;
  height: 15px;
  background-color: #68707c;
  transform: rotate(20deg);
}
@media (max-width: 992px) {
  .cid-ughQEqwwKY .content-wrapper .border-wrap {
    margin-bottom: 40px;
  }
}
.cid-ughQEqwwKY .content-wrapper .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}
@media (max-width: 992px) {
  .cid-ughQEqwwKY .content-wrapper .items-wrapper {
    grid-template-columns: 1fr;
  }
}
.cid-ughQEqwwKY .content-wrapper .items-wrapper .item .item-wrapper .item-content .icon-wrapper {
  margin-bottom: 30px;
}
.cid-ughQEqwwKY .content-wrapper .items-wrapper .item .item-wrapper .item-content .icon-wrapper .mbr-iconfont {
  font-size: 50px;
  display: inline-flex;
  color: #6e88ab;
}
.cid-ughQEqwwKY .content-wrapper .items-wrapper .item .item-wrapper .item-content .item-text {
  padding-right: 50px;
  margin-bottom: 65px;
}
@media (max-width: 1440px) {
  .cid-ughQEqwwKY .content-wrapper .items-wrapper .item .item-wrapper .item-content .item-text {
    padding-right: 25px;
  }
}
@media (max-width: 1200px) {
  .cid-ughQEqwwKY .content-wrapper .items-wrapper .item .item-wrapper .item-content .item-text {
    padding-right: 0;
  }
}
.cid-ughQEqwwKY .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.cid-ughQEqwwKY .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper::before {
  content: '';
  position: absolute;
  top: -26px;
  left: -20px;
  width: 75px;
  height: 68px;
  background-color: #6e88ab;
  transform: skewX(-20deg);
}
@media (max-width: 992px) {
  .cid-ughQEqwwKY .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper::before {
    left: 0;
  }
}
.cid-ughQEqwwKY .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper img {
  position: relative;
  z-index: 1;
  height: 85px;
  width: 85px;
  min-width: 85px;
  border-radius: 100% !important;
  object-fit: cover;
  margin-right: 20px;
}
.cid-ughQEqwwKY .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper a {
  height: 85px;
  width: 85px;
  min-width: 85px;
}
.cid-ughQEqwwKY .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper .name-wrap {
  position: relative;
  z-index: 1;
}
.cid-ughQEqwwKY .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper .name-wrap .item-name {
  margin-bottom: 0;
}
.cid-ughQEqwwKY .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper .name-wrap .item-role {
  margin-bottom: 0;
}
.cid-ughQEqwwKY .mbr-section-title {
  color: #30262b;
}
.cid-ughQEqwwKY .mbr-text {
  color: #30262b;
}
.cid-ughQEqwwKY .item-text {
  color: #30262b;
}
.cid-ughQEqwwKY .item-name {
  color: #30262b;
}
.cid-ughQEqwwKY .item-role {
  color: #30262b;
}
.cid-ughQErsAck {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-ughQErsAck .mbr-fallback-image.disabled {
  display: none;
}
.cid-ughQErsAck .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ughQErsAck .media-container-row {
  justify-content: space-between;
}
.cid-ughQErsAck .text-content {
  max-width: 50%;
}
@media (max-width: 768px) {
  .cid-ughQErsAck .text-content {
    max-width: none;
  }
}
.cid-ughQErsAck .mbr-iconfont-social {
  margin: 0.5rem;
  font-size: 32px;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #6592e6;
  border: 2px solid #6592e6;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-ughQErsAck .mbr-iconfont-social:before {
  padding: 0.6rem;
}
.cid-ughQErsAck .mbr-iconfont-social:hover {
  background-color: #6592e6;
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-ughQErsAck .icons {
    justify-content: center !important;
  }
  .cid-ughQErsAck .text-content * {
    text-align: center;
  }
}
.cid-ughQEsq81f {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-ughQEt4RDK {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #5f337d;
}
.cid-ughQEt4RDK .row-links {
  width: 100%;
  justify-content: center;
}
.cid-ughQEt4RDK .social-row {
  width: 100%;
  justify-content: center;
}
.cid-ughQEt4RDK .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-ughQEt4RDK .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-ughQEt4RDK .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-ughQEt4RDK .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-ughQEt4RDK .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-ughQEt4RDK .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-ughQEt4RDK .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-ughQEt4RDK .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-ughQEt4RDK .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-ughQEt4RDK .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-ughQEt4RDK .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-ughQEt4RDK .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-ughQEt4RDK .media-container-row .mbr-text {
  text-align: center;
}
.cid-ugi1Aw78fX {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ugi1Aw78fX nav.navbar {
  position: fixed;
}
.cid-ugi1Aw78fX .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ugi1Aw78fX .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ugi1Aw78fX .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ugi1Aw78fX .dropdown-item:hover,
.cid-ugi1Aw78fX .dropdown-item:focus {
  background: #39f514 !important;
  color: white !important;
}
.cid-ugi1Aw78fX .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ugi1Aw78fX .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ugi1Aw78fX .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ugi1Aw78fX .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ugi1Aw78fX .nav-link {
  position: relative;
}
.cid-ugi1Aw78fX .container {
  display: flex;
  margin: auto;
}
.cid-ugi1Aw78fX .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ugi1Aw78fX .dropdown-menu,
.cid-ugi1Aw78fX .navbar.opened {
  background: #ffffff !important;
}
.cid-ugi1Aw78fX .nav-item:focus,
.cid-ugi1Aw78fX .nav-link:focus {
  outline: none;
}
.cid-ugi1Aw78fX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ugi1Aw78fX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ugi1Aw78fX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ugi1Aw78fX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ugi1Aw78fX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ugi1Aw78fX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ugi1Aw78fX .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-ugi1Aw78fX .navbar.opened {
  transition: all 0.3s;
}
.cid-ugi1Aw78fX .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ugi1Aw78fX .navbar .navbar-logo img {
  width: auto;
}
.cid-ugi1Aw78fX .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ugi1Aw78fX .navbar.collapsed {
  justify-content: center;
}
.cid-ugi1Aw78fX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ugi1Aw78fX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ugi1Aw78fX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-ugi1Aw78fX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ugi1Aw78fX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ugi1Aw78fX .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-ugi1Aw78fX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ugi1Aw78fX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ugi1Aw78fX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ugi1Aw78fX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ugi1Aw78fX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ugi1Aw78fX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ugi1Aw78fX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ugi1Aw78fX .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-ugi1Aw78fX .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ugi1Aw78fX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ugi1Aw78fX .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ugi1Aw78fX .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ugi1Aw78fX .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ugi1Aw78fX .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ugi1Aw78fX .navbar.navbar-short {
  min-height: 60px;
}
.cid-ugi1Aw78fX .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ugi1Aw78fX .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ugi1Aw78fX .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ugi1Aw78fX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ugi1Aw78fX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ugi1Aw78fX .dropdown-item.active,
.cid-ugi1Aw78fX .dropdown-item:active {
  background-color: transparent;
}
.cid-ugi1Aw78fX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ugi1Aw78fX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ugi1Aw78fX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ugi1Aw78fX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ugi1Aw78fX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ugi1Aw78fX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ugi1Aw78fX ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ugi1Aw78fX .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ugi1Aw78fX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ugi1Aw78fX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-ugi1Aw78fX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ugi1Aw78fX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugi1Aw78fX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugi1Aw78fX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ugi1Aw78fX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugi1Aw78fX nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ugi1Aw78fX nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ugi1Aw78fX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugi1Aw78fX .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ugi1Aw78fX a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ugi1Aw78fX .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ugi1Aw78fX .navbar {
    height: 70px;
  }
  .cid-ugi1Aw78fX .navbar.opened {
    height: auto;
  }
  .cid-ugi1Aw78fX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ugi1Axz8Bc {
  overflow: hidden;
  background-color: #262642;
}
.cid-ugi1Axz8Bc .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugi1Axz8Bc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugi1Axz8Bc .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-ugi1Axz8Bc .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-ugi1Axz8Bc .container {
    padding: 0 24px;
  }
}
.cid-ugi1Axz8Bc .row {
  position: relative;
}
.cid-ugi1Axz8Bc .row .card {
  justify-content: center;
}
.cid-ugi1Axz8Bc .row .decor-wrapper {
  position: absolute;
  bottom: -16rem;
  right: -58rem;
  border: 120px solid #ff3399;
  width: 2000px;
  height: 1000px;
  border-radius: 100%;
}
@media (max-width: 992px) {
  .cid-ugi1Axz8Bc .row .decor-wrapper {
    right: -20rem;
  }
}
@media (max-width: 768px) {
  .cid-ugi1Axz8Bc .row .decor-wrapper {
    height: 500px;
    right: -10rem;
  }
}
.cid-ugi1Axz8Bc .title-wrapper {
  position: relative;
}
@media (max-width: 992px) {
  .cid-ugi1Axz8Bc .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-ugi1Axz8Bc .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-ugi1Axz8Bc .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-ugi1Axz8Bc .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ugi1Axz8Bc .title-wrapper .mbr-section-btn {
  margin-top: 64px;
}
@media (max-width: 992px) {
  .cid-ugi1Axz8Bc .title-wrapper .mbr-section-btn {
    margin-top: 32px;
  }
}
.cid-ugi1Axz8Bc .image-wrapper {
  position: relative;
}
.cid-ugi1Axz8Bc .image-wrapper img {
  height: 500px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-ugi1Axz8Bc .image-wrapper img {
    height: 350px;
  }
}
.cid-ugi1Axz8Bc .mbr-section-title {
  color: #F5DF4D;
}
.cid-ugi1Axz8Bc .mbr-text {
  color: #FF3399;
}
.cid-ugi1Axz8Bc .mbr-text,
.cid-ugi1Axz8Bc .mbr-section-btn {
  color: #fafafa;
}
.cid-ugi1Aytotv {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #e9e9e9;
}
.cid-ugi1Aytotv .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugi1Aytotv .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-ugi1Aytotv .container {
    padding: 0 22px;
  }
}
.cid-ugi1Aytotv .row {
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0 -6px;
}
.cid-ugi1Aytotv .row .card {
  padding: 0 6px;
  justify-content: center;
}
.cid-ugi1Aytotv .row .title-wrapper {
  position: absolute;
  z-index: 1;
  background-color: #f63df9;
  padding: 24px 80px;
  border-radius: 80px;
  width: fit-content;
}
@media (max-width: 992px) {
  .cid-ugi1Aytotv .row .title-wrapper {
    position: static;
    padding: 32px;
    width: 100%;
  }
}
.cid-ugi1Aytotv .row .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-ugi1Aytotv .image-wrapper {
  margin-bottom: 12px;
}
.cid-ugi1Aytotv .image-wrapper img {
  height: 560px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-ugi1Aytotv .image-wrapper img {
    height: 350px;
  }
}
.cid-ugi1Aytotv .image-wrap {
  margin-bottom: 12px;
}
.cid-ugi1Aytotv .image-wrap img {
  height: 560px;
  object-fit: cover;
  width: 65%;
}
@media (max-width: 992px) {
  .cid-ugi1Aytotv .image-wrap img {
    height: 350px;
  }
}
.cid-ugi1Aytotv .content-wrapper {
  padding: 55px 0;
}
@media (max-width: 992px) {
  .cid-ugi1Aytotv .content-wrapper {
    padding: 32px 0;
  }
}
.cid-ugi1Aytotv .content-wrapper .mbr-desc {
  margin-bottom: 32px;
}
.cid-ugi1Aytotv .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-ugi1Aytotv .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-ugi1Aytotv .mbr-desc {
  color: #000000;
}
.cid-ugi1Aytotv .mbr-text {
  color: #000000;
}
.cid-ugi1Azrgi4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #6a2be9;
}
.cid-ugi1Azrgi4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugi1Azrgi4 .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-ugi1Azrgi4 .container {
    padding: 0 16px;
  }
}
.cid-ugi1Azrgi4 .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-ugi1Azrgi4 .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-ugi1Azrgi4 .content-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-ugi1Azrgi4 .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-ugi1Azrgi4 .content-wrapper .text-wrapper .mbr-text {
  display: inline-flex;
  width: 60%;
  margin-bottom: 32px;
}
@media (max-width: 1200px) {
  .cid-ugi1Azrgi4 .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-ugi1Azrgi4 .image-wrapper {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-ugi1Azrgi4 .image-wrapper {
    margin-left: 0;
  }
}
.cid-ugi1Azrgi4 .image-wrapper img {
  height: 660px;
  object-fit: cover;
  box-shadow: 6px 8px 0 0 #000000;
  border-radius: 24px !important;
}
@media (max-width: 992px) {
  .cid-ugi1Azrgi4 .image-wrapper img {
    height: 350px;
  }
}
.cid-ugi1Azrgi4 .mbr-section-title {
  color: #ffffff;
}
.cid-ugi1Azrgi4 .mbr-text {
  color: #ffffff;
}
.cid-ugi1AAgjXB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f7f5f6;
}
.cid-ugi1AAgjXB .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugi1AAgjXB .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-ugi1AAgjXB .container {
    padding: 0 15px;
  }
}
.cid-ugi1AAgjXB .row {
  justify-content: space-between;
}
.cid-ugi1AAgjXB .row .card {
  justify-content: flex-end;
}
.cid-ugi1AAgjXB .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-ugi1AAgjXB .text-wrapper .mbr-text {
  margin-bottom: 40px;
}
.cid-ugi1AAgjXB .content-wrapper .border-wrap {
  margin-bottom: 100px;
  position: relative;
  display: flex;
  align-items: center;
  height: 1px;
  background-color: #68707c;
}
.cid-ugi1AAgjXB .content-wrapper .border-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 1px;
  height: 15px;
  background-color: #68707c;
  transform: rotate(20deg);
}
@media (max-width: 992px) {
  .cid-ugi1AAgjXB .content-wrapper .border-wrap {
    margin-bottom: 40px;
  }
}
.cid-ugi1AAgjXB .content-wrapper .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}
@media (max-width: 992px) {
  .cid-ugi1AAgjXB .content-wrapper .items-wrapper {
    grid-template-columns: 1fr;
  }
}
.cid-ugi1AAgjXB .content-wrapper .items-wrapper .item .item-wrapper .item-content .icon-wrapper {
  margin-bottom: 30px;
}
.cid-ugi1AAgjXB .content-wrapper .items-wrapper .item .item-wrapper .item-content .icon-wrapper .mbr-iconfont {
  font-size: 50px;
  display: inline-flex;
  color: #6e88ab;
}
.cid-ugi1AAgjXB .content-wrapper .items-wrapper .item .item-wrapper .item-content .item-text {
  padding-right: 50px;
  margin-bottom: 65px;
}
@media (max-width: 1440px) {
  .cid-ugi1AAgjXB .content-wrapper .items-wrapper .item .item-wrapper .item-content .item-text {
    padding-right: 25px;
  }
}
@media (max-width: 1200px) {
  .cid-ugi1AAgjXB .content-wrapper .items-wrapper .item .item-wrapper .item-content .item-text {
    padding-right: 0;
  }
}
.cid-ugi1AAgjXB .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.cid-ugi1AAgjXB .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper::before {
  content: '';
  position: absolute;
  top: -26px;
  left: -20px;
  width: 75px;
  height: 68px;
  background-color: #6e88ab;
  transform: skewX(-20deg);
}
@media (max-width: 992px) {
  .cid-ugi1AAgjXB .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper::before {
    left: 0;
  }
}
.cid-ugi1AAgjXB .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper img {
  position: relative;
  z-index: 1;
  height: 85px;
  width: 85px;
  min-width: 85px;
  border-radius: 100% !important;
  object-fit: cover;
  margin-right: 20px;
}
.cid-ugi1AAgjXB .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper a {
  height: 85px;
  width: 85px;
  min-width: 85px;
}
.cid-ugi1AAgjXB .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper .name-wrap {
  position: relative;
  z-index: 1;
}
.cid-ugi1AAgjXB .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper .name-wrap .item-name {
  margin-bottom: 0;
}
.cid-ugi1AAgjXB .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper .name-wrap .item-role {
  margin-bottom: 0;
}
.cid-ugi1AAgjXB .mbr-section-title {
  color: #30262b;
}
.cid-ugi1AAgjXB .mbr-text {
  color: #30262b;
}
.cid-ugi1AAgjXB .item-text {
  color: #30262b;
}
.cid-ugi1AAgjXB .item-name {
  color: #30262b;
}
.cid-ugi1AAgjXB .item-role {
  color: #30262b;
}
.cid-ugi1ABuhPv {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-ugi1ABuhPv .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugi1ABuhPv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugi1ABuhPv .media-container-row {
  justify-content: space-between;
}
.cid-ugi1ABuhPv .text-content {
  max-width: 50%;
}
@media (max-width: 768px) {
  .cid-ugi1ABuhPv .text-content {
    max-width: none;
  }
}
.cid-ugi1ABuhPv .mbr-iconfont-social {
  margin: 0.5rem;
  font-size: 32px;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #6592e6;
  border: 2px solid #6592e6;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-ugi1ABuhPv .mbr-iconfont-social:before {
  padding: 0.6rem;
}
.cid-ugi1ABuhPv .mbr-iconfont-social:hover {
  background-color: #6592e6;
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-ugi1ABuhPv .icons {
    justify-content: center !important;
  }
  .cid-ugi1ABuhPv .text-content * {
    text-align: center;
  }
}
.cid-ugi1ACWS2p {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-ugi1ADyIKH {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #5f337d;
}
.cid-ugi1ADyIKH .row-links {
  width: 100%;
  justify-content: center;
}
.cid-ugi1ADyIKH .social-row {
  width: 100%;
  justify-content: center;
}
.cid-ugi1ADyIKH .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-ugi1ADyIKH .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-ugi1ADyIKH .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-ugi1ADyIKH .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-ugi1ADyIKH .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-ugi1ADyIKH .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-ugi1ADyIKH .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-ugi1ADyIKH .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-ugi1ADyIKH .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-ugi1ADyIKH .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-ugi1ADyIKH .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-ugi1ADyIKH .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-ugi1ADyIKH .media-container-row .mbr-text {
  text-align: center;
}
.cid-ugi8udmyxU {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ugi8udmyxU nav.navbar {
  position: fixed;
}
.cid-ugi8udmyxU .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ugi8udmyxU .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ugi8udmyxU .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ugi8udmyxU .dropdown-item:hover,
.cid-ugi8udmyxU .dropdown-item:focus {
  background: #39f514 !important;
  color: white !important;
}
.cid-ugi8udmyxU .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ugi8udmyxU .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ugi8udmyxU .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ugi8udmyxU .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ugi8udmyxU .nav-link {
  position: relative;
}
.cid-ugi8udmyxU .container {
  display: flex;
  margin: auto;
}
.cid-ugi8udmyxU .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ugi8udmyxU .dropdown-menu,
.cid-ugi8udmyxU .navbar.opened {
  background: #ffffff !important;
}
.cid-ugi8udmyxU .nav-item:focus,
.cid-ugi8udmyxU .nav-link:focus {
  outline: none;
}
.cid-ugi8udmyxU .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ugi8udmyxU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ugi8udmyxU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ugi8udmyxU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ugi8udmyxU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ugi8udmyxU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ugi8udmyxU .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-ugi8udmyxU .navbar.opened {
  transition: all 0.3s;
}
.cid-ugi8udmyxU .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ugi8udmyxU .navbar .navbar-logo img {
  width: auto;
}
.cid-ugi8udmyxU .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ugi8udmyxU .navbar.collapsed {
  justify-content: center;
}
.cid-ugi8udmyxU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ugi8udmyxU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ugi8udmyxU .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-ugi8udmyxU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ugi8udmyxU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ugi8udmyxU .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-ugi8udmyxU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ugi8udmyxU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ugi8udmyxU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ugi8udmyxU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ugi8udmyxU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ugi8udmyxU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ugi8udmyxU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ugi8udmyxU .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-ugi8udmyxU .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ugi8udmyxU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ugi8udmyxU .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ugi8udmyxU .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ugi8udmyxU .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ugi8udmyxU .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ugi8udmyxU .navbar.navbar-short {
  min-height: 60px;
}
.cid-ugi8udmyxU .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ugi8udmyxU .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ugi8udmyxU .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ugi8udmyxU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ugi8udmyxU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ugi8udmyxU .dropdown-item.active,
.cid-ugi8udmyxU .dropdown-item:active {
  background-color: transparent;
}
.cid-ugi8udmyxU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ugi8udmyxU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ugi8udmyxU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ugi8udmyxU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ugi8udmyxU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ugi8udmyxU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ugi8udmyxU ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ugi8udmyxU .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ugi8udmyxU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ugi8udmyxU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-ugi8udmyxU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ugi8udmyxU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugi8udmyxU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugi8udmyxU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ugi8udmyxU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugi8udmyxU nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ugi8udmyxU nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ugi8udmyxU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugi8udmyxU .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ugi8udmyxU a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ugi8udmyxU .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ugi8udmyxU .navbar {
    height: 70px;
  }
  .cid-ugi8udmyxU .navbar.opened {
    height: auto;
  }
  .cid-ugi8udmyxU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ugi8ueFk8J {
  overflow: hidden;
  background-color: #262642;
}
.cid-ugi8ueFk8J .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugi8ueFk8J .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugi8ueFk8J .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-ugi8ueFk8J .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-ugi8ueFk8J .container {
    padding: 0 24px;
  }
}
.cid-ugi8ueFk8J .row {
  position: relative;
}
.cid-ugi8ueFk8J .row .card {
  justify-content: center;
}
.cid-ugi8ueFk8J .row .decor-wrapper {
  position: absolute;
  bottom: -16rem;
  right: -58rem;
  border: 120px solid #ff3399;
  width: 2000px;
  height: 1000px;
  border-radius: 100%;
}
@media (max-width: 992px) {
  .cid-ugi8ueFk8J .row .decor-wrapper {
    right: -20rem;
  }
}
@media (max-width: 768px) {
  .cid-ugi8ueFk8J .row .decor-wrapper {
    height: 500px;
    right: -10rem;
  }
}
.cid-ugi8ueFk8J .title-wrapper {
  position: relative;
}
@media (max-width: 992px) {
  .cid-ugi8ueFk8J .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-ugi8ueFk8J .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-ugi8ueFk8J .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-ugi8ueFk8J .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ugi8ueFk8J .title-wrapper .mbr-section-btn {
  margin-top: 64px;
}
@media (max-width: 992px) {
  .cid-ugi8ueFk8J .title-wrapper .mbr-section-btn {
    margin-top: 32px;
  }
}
.cid-ugi8ueFk8J .image-wrapper {
  position: relative;
}
.cid-ugi8ueFk8J .image-wrapper img {
  height: 500px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-ugi8ueFk8J .image-wrapper img {
    height: 350px;
  }
}
.cid-ugi8ueFk8J .mbr-section-title {
  color: #F5DF4D;
}
.cid-ugi8ueFk8J .mbr-text {
  color: #FF3399;
}
.cid-ugi8ueFk8J .mbr-text,
.cid-ugi8ueFk8J .mbr-section-btn {
  color: #fafafa;
}
.cid-ugi8ufp8cX {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #e9e9e9;
}
.cid-ugi8ufp8cX .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugi8ufp8cX .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-ugi8ufp8cX .container {
    padding: 0 22px;
  }
}
.cid-ugi8ufp8cX .row {
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0 -6px;
}
.cid-ugi8ufp8cX .row .card {
  padding: 0 6px;
  justify-content: center;
}
.cid-ugi8ufp8cX .row .title-wrapper {
  position: absolute;
  z-index: 1;
  background-color: #f63df9;
  padding: 24px 80px;
  border-radius: 80px;
  width: fit-content;
}
@media (max-width: 992px) {
  .cid-ugi8ufp8cX .row .title-wrapper {
    position: static;
    padding: 32px;
    width: 100%;
  }
}
.cid-ugi8ufp8cX .row .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-ugi8ufp8cX .image-wrapper {
  margin-bottom: 12px;
}
.cid-ugi8ufp8cX .image-wrapper img {
  height: 560px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-ugi8ufp8cX .image-wrapper img {
    height: 350px;
  }
}
.cid-ugi8ufp8cX .image-wrap {
  margin-bottom: 12px;
}
.cid-ugi8ufp8cX .image-wrap img {
  height: 560px;
  object-fit: cover;
  width: 65%;
}
@media (max-width: 992px) {
  .cid-ugi8ufp8cX .image-wrap img {
    height: 350px;
  }
}
.cid-ugi8ufp8cX .content-wrapper {
  padding: 55px 0;
}
@media (max-width: 992px) {
  .cid-ugi8ufp8cX .content-wrapper {
    padding: 32px 0;
  }
}
.cid-ugi8ufp8cX .content-wrapper .mbr-desc {
  margin-bottom: 32px;
}
.cid-ugi8ufp8cX .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-ugi8ufp8cX .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-ugi8ufp8cX .mbr-desc {
  color: #000000;
}
.cid-ugi8ufp8cX .mbr-text {
  color: #000000;
}
.cid-ugi8ugiGYQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #6a2be9;
}
.cid-ugi8ugiGYQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugi8ugiGYQ .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-ugi8ugiGYQ .container {
    padding: 0 16px;
  }
}
.cid-ugi8ugiGYQ .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-ugi8ugiGYQ .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-ugi8ugiGYQ .content-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-ugi8ugiGYQ .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-ugi8ugiGYQ .content-wrapper .text-wrapper .mbr-text {
  display: inline-flex;
  width: 60%;
  margin-bottom: 32px;
}
@media (max-width: 1200px) {
  .cid-ugi8ugiGYQ .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-ugi8ugiGYQ .image-wrapper {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-ugi8ugiGYQ .image-wrapper {
    margin-left: 0;
  }
}
.cid-ugi8ugiGYQ .image-wrapper img {
  height: 660px;
  object-fit: cover;
  box-shadow: 6px 8px 0 0 #000000;
  border-radius: 24px !important;
}
@media (max-width: 992px) {
  .cid-ugi8ugiGYQ .image-wrapper img {
    height: 350px;
  }
}
.cid-ugi8ugiGYQ .mbr-section-title {
  color: #ffffff;
}
.cid-ugi8ugiGYQ .mbr-text {
  color: #ffffff;
}
.cid-ugi8ugWTcm {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f7f5f6;
}
.cid-ugi8ugWTcm .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugi8ugWTcm .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-ugi8ugWTcm .container {
    padding: 0 15px;
  }
}
.cid-ugi8ugWTcm .row {
  justify-content: space-between;
}
.cid-ugi8ugWTcm .row .card {
  justify-content: flex-end;
}
.cid-ugi8ugWTcm .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-ugi8ugWTcm .text-wrapper .mbr-text {
  margin-bottom: 40px;
}
.cid-ugi8ugWTcm .content-wrapper .border-wrap {
  margin-bottom: 100px;
  position: relative;
  display: flex;
  align-items: center;
  height: 1px;
  background-color: #68707c;
}
.cid-ugi8ugWTcm .content-wrapper .border-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 1px;
  height: 15px;
  background-color: #68707c;
  transform: rotate(20deg);
}
@media (max-width: 992px) {
  .cid-ugi8ugWTcm .content-wrapper .border-wrap {
    margin-bottom: 40px;
  }
}
.cid-ugi8ugWTcm .content-wrapper .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}
@media (max-width: 992px) {
  .cid-ugi8ugWTcm .content-wrapper .items-wrapper {
    grid-template-columns: 1fr;
  }
}
.cid-ugi8ugWTcm .content-wrapper .items-wrapper .item .item-wrapper .item-content .icon-wrapper {
  margin-bottom: 30px;
}
.cid-ugi8ugWTcm .content-wrapper .items-wrapper .item .item-wrapper .item-content .icon-wrapper .mbr-iconfont {
  font-size: 50px;
  display: inline-flex;
  color: #6e88ab;
}
.cid-ugi8ugWTcm .content-wrapper .items-wrapper .item .item-wrapper .item-content .item-text {
  padding-right: 50px;
  margin-bottom: 65px;
}
@media (max-width: 1440px) {
  .cid-ugi8ugWTcm .content-wrapper .items-wrapper .item .item-wrapper .item-content .item-text {
    padding-right: 25px;
  }
}
@media (max-width: 1200px) {
  .cid-ugi8ugWTcm .content-wrapper .items-wrapper .item .item-wrapper .item-content .item-text {
    padding-right: 0;
  }
}
.cid-ugi8ugWTcm .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.cid-ugi8ugWTcm .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper::before {
  content: '';
  position: absolute;
  top: -26px;
  left: -20px;
  width: 75px;
  height: 68px;
  background-color: #6e88ab;
  transform: skewX(-20deg);
}
@media (max-width: 992px) {
  .cid-ugi8ugWTcm .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper::before {
    left: 0;
  }
}
.cid-ugi8ugWTcm .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper img {
  position: relative;
  z-index: 1;
  height: 85px;
  width: 85px;
  min-width: 85px;
  border-radius: 100% !important;
  object-fit: cover;
  margin-right: 20px;
}
.cid-ugi8ugWTcm .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper a {
  height: 85px;
  width: 85px;
  min-width: 85px;
}
.cid-ugi8ugWTcm .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper .name-wrap {
  position: relative;
  z-index: 1;
}
.cid-ugi8ugWTcm .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper .name-wrap .item-name {
  margin-bottom: 0;
}
.cid-ugi8ugWTcm .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper .name-wrap .item-role {
  margin-bottom: 0;
}
.cid-ugi8ugWTcm .mbr-section-title {
  color: #30262b;
}
.cid-ugi8ugWTcm .mbr-text {
  color: #30262b;
}
.cid-ugi8ugWTcm .item-text {
  color: #30262b;
}
.cid-ugi8ugWTcm .item-name {
  color: #30262b;
}
.cid-ugi8ugWTcm .item-role {
  color: #30262b;
}
.cid-ugi8uhPUja {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-ugi8uhPUja .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugi8uhPUja .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugi8uhPUja .media-container-row {
  justify-content: space-between;
}
.cid-ugi8uhPUja .text-content {
  max-width: 50%;
}
@media (max-width: 768px) {
  .cid-ugi8uhPUja .text-content {
    max-width: none;
  }
}
.cid-ugi8uhPUja .mbr-iconfont-social {
  margin: 0.5rem;
  font-size: 32px;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #6592e6;
  border: 2px solid #6592e6;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-ugi8uhPUja .mbr-iconfont-social:before {
  padding: 0.6rem;
}
.cid-ugi8uhPUja .mbr-iconfont-social:hover {
  background-color: #6592e6;
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-ugi8uhPUja .icons {
    justify-content: center !important;
  }
  .cid-ugi8uhPUja .text-content * {
    text-align: center;
  }
}
.cid-ugi8uiJeJM {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-ugi8ujj65m {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #5f337d;
}
.cid-ugi8ujj65m .row-links {
  width: 100%;
  justify-content: center;
}
.cid-ugi8ujj65m .social-row {
  width: 100%;
  justify-content: center;
}
.cid-ugi8ujj65m .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-ugi8ujj65m .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-ugi8ujj65m .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-ugi8ujj65m .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-ugi8ujj65m .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-ugi8ujj65m .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-ugi8ujj65m .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-ugi8ujj65m .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-ugi8ujj65m .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-ugi8ujj65m .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-ugi8ujj65m .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-ugi8ujj65m .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-ugi8ujj65m .media-container-row .mbr-text {
  text-align: center;
}
.cid-uglJdPFMB3 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uglJdPFMB3 nav.navbar {
  position: fixed;
}
.cid-uglJdPFMB3 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uglJdPFMB3 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uglJdPFMB3 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uglJdPFMB3 .dropdown-item:hover,
.cid-uglJdPFMB3 .dropdown-item:focus {
  background: #39f514 !important;
  color: white !important;
}
.cid-uglJdPFMB3 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uglJdPFMB3 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uglJdPFMB3 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uglJdPFMB3 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uglJdPFMB3 .nav-link {
  position: relative;
}
.cid-uglJdPFMB3 .container {
  display: flex;
  margin: auto;
}
.cid-uglJdPFMB3 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uglJdPFMB3 .dropdown-menu,
.cid-uglJdPFMB3 .navbar.opened {
  background: #ffffff !important;
}
.cid-uglJdPFMB3 .nav-item:focus,
.cid-uglJdPFMB3 .nav-link:focus {
  outline: none;
}
.cid-uglJdPFMB3 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uglJdPFMB3 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uglJdPFMB3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uglJdPFMB3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uglJdPFMB3 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uglJdPFMB3 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uglJdPFMB3 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uglJdPFMB3 .navbar.opened {
  transition: all 0.3s;
}
.cid-uglJdPFMB3 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uglJdPFMB3 .navbar .navbar-logo img {
  width: auto;
}
.cid-uglJdPFMB3 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uglJdPFMB3 .navbar.collapsed {
  justify-content: center;
}
.cid-uglJdPFMB3 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uglJdPFMB3 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uglJdPFMB3 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uglJdPFMB3 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uglJdPFMB3 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uglJdPFMB3 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uglJdPFMB3 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uglJdPFMB3 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uglJdPFMB3 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uglJdPFMB3 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uglJdPFMB3 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uglJdPFMB3 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uglJdPFMB3 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uglJdPFMB3 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uglJdPFMB3 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uglJdPFMB3 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uglJdPFMB3 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uglJdPFMB3 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uglJdPFMB3 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uglJdPFMB3 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uglJdPFMB3 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uglJdPFMB3 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uglJdPFMB3 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uglJdPFMB3 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uglJdPFMB3 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uglJdPFMB3 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uglJdPFMB3 .dropdown-item.active,
.cid-uglJdPFMB3 .dropdown-item:active {
  background-color: transparent;
}
.cid-uglJdPFMB3 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uglJdPFMB3 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uglJdPFMB3 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uglJdPFMB3 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uglJdPFMB3 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uglJdPFMB3 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uglJdPFMB3 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uglJdPFMB3 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uglJdPFMB3 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uglJdPFMB3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uglJdPFMB3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uglJdPFMB3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uglJdPFMB3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uglJdPFMB3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uglJdPFMB3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uglJdPFMB3 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uglJdPFMB3 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uglJdPFMB3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uglJdPFMB3 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uglJdPFMB3 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uglJdPFMB3 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uglJdPFMB3 .navbar {
    height: 70px;
  }
  .cid-uglJdPFMB3 .navbar.opened {
    height: auto;
  }
  .cid-uglJdPFMB3 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uglJdQstQb {
  overflow: hidden;
  background-color: #262642;
}
.cid-uglJdQstQb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uglJdQstQb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uglJdQstQb .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-uglJdQstQb .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uglJdQstQb .container {
    padding: 0 24px;
  }
}
.cid-uglJdQstQb .row {
  position: relative;
}
.cid-uglJdQstQb .row .card {
  justify-content: center;
}
.cid-uglJdQstQb .row .decor-wrapper {
  position: absolute;
  bottom: -16rem;
  right: -58rem;
  border: 120px solid #ff3399;
  width: 2000px;
  height: 1000px;
  border-radius: 100%;
}
@media (max-width: 992px) {
  .cid-uglJdQstQb .row .decor-wrapper {
    right: -20rem;
  }
}
@media (max-width: 768px) {
  .cid-uglJdQstQb .row .decor-wrapper {
    height: 500px;
    right: -10rem;
  }
}
.cid-uglJdQstQb .title-wrapper {
  position: relative;
}
@media (max-width: 992px) {
  .cid-uglJdQstQb .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uglJdQstQb .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uglJdQstQb .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uglJdQstQb .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uglJdQstQb .title-wrapper .mbr-section-btn {
  margin-top: 64px;
}
@media (max-width: 992px) {
  .cid-uglJdQstQb .title-wrapper .mbr-section-btn {
    margin-top: 32px;
  }
}
.cid-uglJdQstQb .image-wrapper {
  position: relative;
}
.cid-uglJdQstQb .image-wrapper img {
  height: 500px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uglJdQstQb .image-wrapper img {
    height: 350px;
  }
}
.cid-uglJdQstQb .mbr-section-title {
  color: #F5DF4D;
}
.cid-uglJdQstQb .mbr-text {
  color: #FF3399;
}
.cid-uglJdQstQb .mbr-text,
.cid-uglJdQstQb .mbr-section-btn {
  color: #fafafa;
}
.cid-uglJdR5SA3 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #e9e9e9;
}
.cid-uglJdR5SA3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uglJdR5SA3 .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-uglJdR5SA3 .container {
    padding: 0 22px;
  }
}
.cid-uglJdR5SA3 .row {
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0 -6px;
}
.cid-uglJdR5SA3 .row .card {
  padding: 0 6px;
  justify-content: center;
}
.cid-uglJdR5SA3 .row .title-wrapper {
  position: absolute;
  z-index: 1;
  background-color: #f63df9;
  padding: 24px 80px;
  border-radius: 80px;
  width: fit-content;
}
@media (max-width: 992px) {
  .cid-uglJdR5SA3 .row .title-wrapper {
    position: static;
    padding: 32px;
    width: 100%;
  }
}
.cid-uglJdR5SA3 .row .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uglJdR5SA3 .image-wrapper {
  margin-bottom: 12px;
}
.cid-uglJdR5SA3 .image-wrapper img {
  height: 560px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uglJdR5SA3 .image-wrapper img {
    height: 350px;
  }
}
.cid-uglJdR5SA3 .image-wrap {
  margin-bottom: 12px;
}
.cid-uglJdR5SA3 .image-wrap img {
  height: 560px;
  object-fit: cover;
  width: 65%;
}
@media (max-width: 992px) {
  .cid-uglJdR5SA3 .image-wrap img {
    height: 350px;
  }
}
.cid-uglJdR5SA3 .content-wrapper {
  padding: 55px 0;
}
@media (max-width: 992px) {
  .cid-uglJdR5SA3 .content-wrapper {
    padding: 32px 0;
  }
}
.cid-uglJdR5SA3 .content-wrapper .mbr-desc {
  margin-bottom: 32px;
}
.cid-uglJdR5SA3 .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-uglJdR5SA3 .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uglJdR5SA3 .mbr-desc {
  color: #000000;
}
.cid-uglJdR5SA3 .mbr-text {
  color: #000000;
}
.cid-uglJdROaw6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #6a2be9;
}
.cid-uglJdROaw6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uglJdROaw6 .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-uglJdROaw6 .container {
    padding: 0 16px;
  }
}
.cid-uglJdROaw6 .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uglJdROaw6 .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uglJdROaw6 .content-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uglJdROaw6 .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uglJdROaw6 .content-wrapper .text-wrapper .mbr-text {
  display: inline-flex;
  width: 60%;
  margin-bottom: 32px;
}
@media (max-width: 1200px) {
  .cid-uglJdROaw6 .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uglJdROaw6 .image-wrapper {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-uglJdROaw6 .image-wrapper {
    margin-left: 0;
  }
}
.cid-uglJdROaw6 .image-wrapper img {
  height: 660px;
  object-fit: cover;
  box-shadow: 6px 8px 0 0 #000000;
  border-radius: 24px !important;
}
@media (max-width: 992px) {
  .cid-uglJdROaw6 .image-wrapper img {
    height: 350px;
  }
}
.cid-uglJdROaw6 .mbr-section-title {
  color: #ffffff;
}
.cid-uglJdROaw6 .mbr-text {
  color: #ffffff;
}
.cid-uglJdStijS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f7f5f6;
}
.cid-uglJdStijS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uglJdStijS .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-uglJdStijS .container {
    padding: 0 15px;
  }
}
.cid-uglJdStijS .row {
  justify-content: space-between;
}
.cid-uglJdStijS .row .card {
  justify-content: flex-end;
}
.cid-uglJdStijS .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uglJdStijS .text-wrapper .mbr-text {
  margin-bottom: 40px;
}
.cid-uglJdStijS .content-wrapper .border-wrap {
  margin-bottom: 100px;
  position: relative;
  display: flex;
  align-items: center;
  height: 1px;
  background-color: #68707c;
}
.cid-uglJdStijS .content-wrapper .border-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 1px;
  height: 15px;
  background-color: #68707c;
  transform: rotate(20deg);
}
@media (max-width: 992px) {
  .cid-uglJdStijS .content-wrapper .border-wrap {
    margin-bottom: 40px;
  }
}
.cid-uglJdStijS .content-wrapper .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}
@media (max-width: 992px) {
  .cid-uglJdStijS .content-wrapper .items-wrapper {
    grid-template-columns: 1fr;
  }
}
.cid-uglJdStijS .content-wrapper .items-wrapper .item .item-wrapper .item-content .icon-wrapper {
  margin-bottom: 30px;
}
.cid-uglJdStijS .content-wrapper .items-wrapper .item .item-wrapper .item-content .icon-wrapper .mbr-iconfont {
  font-size: 50px;
  display: inline-flex;
  color: #6e88ab;
}
.cid-uglJdStijS .content-wrapper .items-wrapper .item .item-wrapper .item-content .item-text {
  padding-right: 50px;
  margin-bottom: 65px;
}
@media (max-width: 1440px) {
  .cid-uglJdStijS .content-wrapper .items-wrapper .item .item-wrapper .item-content .item-text {
    padding-right: 25px;
  }
}
@media (max-width: 1200px) {
  .cid-uglJdStijS .content-wrapper .items-wrapper .item .item-wrapper .item-content .item-text {
    padding-right: 0;
  }
}
.cid-uglJdStijS .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.cid-uglJdStijS .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper::before {
  content: '';
  position: absolute;
  top: -26px;
  left: -20px;
  width: 75px;
  height: 68px;
  background-color: #6e88ab;
  transform: skewX(-20deg);
}
@media (max-width: 992px) {
  .cid-uglJdStijS .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper::before {
    left: 0;
  }
}
.cid-uglJdStijS .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper img {
  position: relative;
  z-index: 1;
  height: 85px;
  width: 85px;
  min-width: 85px;
  border-radius: 100% !important;
  object-fit: cover;
  margin-right: 20px;
}
.cid-uglJdStijS .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper a {
  height: 85px;
  width: 85px;
  min-width: 85px;
}
.cid-uglJdStijS .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper .name-wrap {
  position: relative;
  z-index: 1;
}
.cid-uglJdStijS .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper .name-wrap .item-name {
  margin-bottom: 0;
}
.cid-uglJdStijS .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper .name-wrap .item-role {
  margin-bottom: 0;
}
.cid-uglJdStijS .mbr-section-title {
  color: #30262b;
}
.cid-uglJdStijS .mbr-text {
  color: #30262b;
}
.cid-uglJdStijS .item-text {
  color: #30262b;
}
.cid-uglJdStijS .item-name {
  color: #30262b;
}
.cid-uglJdStijS .item-role {
  color: #30262b;
}
.cid-uglJdTlehY {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uglJdTlehY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uglJdTlehY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uglJdTlehY .media-container-row {
  justify-content: space-between;
}
.cid-uglJdTlehY .text-content {
  max-width: 50%;
}
@media (max-width: 768px) {
  .cid-uglJdTlehY .text-content {
    max-width: none;
  }
}
.cid-uglJdTlehY .mbr-iconfont-social {
  margin: 0.5rem;
  font-size: 32px;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #6592e6;
  border: 2px solid #6592e6;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uglJdTlehY .mbr-iconfont-social:before {
  padding: 0.6rem;
}
.cid-uglJdTlehY .mbr-iconfont-social:hover {
  background-color: #6592e6;
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-uglJdTlehY .icons {
    justify-content: center !important;
  }
  .cid-uglJdTlehY .text-content * {
    text-align: center;
  }
}
.cid-uglJdUgOzX {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-uglJdUPLkl {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #5f337d;
}
.cid-uglJdUPLkl .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uglJdUPLkl .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uglJdUPLkl .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uglJdUPLkl .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uglJdUPLkl .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uglJdUPLkl .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uglJdUPLkl .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uglJdUPLkl .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uglJdUPLkl .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uglJdUPLkl .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uglJdUPLkl .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uglJdUPLkl .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uglJdUPLkl .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uglJdUPLkl .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uglJdUPLkl .media-container-row .mbr-text {
  text-align: center;
}
.cid-uglQq0lDWC {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uglQq0lDWC nav.navbar {
  position: fixed;
}
.cid-uglQq0lDWC .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uglQq0lDWC .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uglQq0lDWC .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uglQq0lDWC .dropdown-item:hover,
.cid-uglQq0lDWC .dropdown-item:focus {
  background: #39f514 !important;
  color: white !important;
}
.cid-uglQq0lDWC .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uglQq0lDWC .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uglQq0lDWC .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uglQq0lDWC .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uglQq0lDWC .nav-link {
  position: relative;
}
.cid-uglQq0lDWC .container {
  display: flex;
  margin: auto;
}
.cid-uglQq0lDWC .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uglQq0lDWC .dropdown-menu,
.cid-uglQq0lDWC .navbar.opened {
  background: #ffffff !important;
}
.cid-uglQq0lDWC .nav-item:focus,
.cid-uglQq0lDWC .nav-link:focus {
  outline: none;
}
.cid-uglQq0lDWC .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uglQq0lDWC .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uglQq0lDWC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uglQq0lDWC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uglQq0lDWC .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uglQq0lDWC .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uglQq0lDWC .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uglQq0lDWC .navbar.opened {
  transition: all 0.3s;
}
.cid-uglQq0lDWC .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uglQq0lDWC .navbar .navbar-logo img {
  width: auto;
}
.cid-uglQq0lDWC .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uglQq0lDWC .navbar.collapsed {
  justify-content: center;
}
.cid-uglQq0lDWC .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uglQq0lDWC .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uglQq0lDWC .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uglQq0lDWC .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uglQq0lDWC .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uglQq0lDWC .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uglQq0lDWC .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uglQq0lDWC .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uglQq0lDWC .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uglQq0lDWC .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uglQq0lDWC .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uglQq0lDWC .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uglQq0lDWC .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uglQq0lDWC .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uglQq0lDWC .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uglQq0lDWC .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uglQq0lDWC .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uglQq0lDWC .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uglQq0lDWC .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uglQq0lDWC .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uglQq0lDWC .navbar.navbar-short {
  min-height: 60px;
}
.cid-uglQq0lDWC .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uglQq0lDWC .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uglQq0lDWC .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uglQq0lDWC .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uglQq0lDWC .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uglQq0lDWC .dropdown-item.active,
.cid-uglQq0lDWC .dropdown-item:active {
  background-color: transparent;
}
.cid-uglQq0lDWC .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uglQq0lDWC .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uglQq0lDWC .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uglQq0lDWC .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uglQq0lDWC .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uglQq0lDWC .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uglQq0lDWC ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uglQq0lDWC .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uglQq0lDWC button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uglQq0lDWC button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uglQq0lDWC button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uglQq0lDWC button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uglQq0lDWC button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uglQq0lDWC button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uglQq0lDWC nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uglQq0lDWC nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uglQq0lDWC nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uglQq0lDWC nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uglQq0lDWC .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uglQq0lDWC a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uglQq0lDWC .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uglQq0lDWC .navbar {
    height: 70px;
  }
  .cid-uglQq0lDWC .navbar.opened {
    height: auto;
  }
  .cid-uglQq0lDWC .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uglQq1uRdX {
  overflow: hidden;
  background-color: #262642;
}
.cid-uglQq1uRdX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uglQq1uRdX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uglQq1uRdX .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-uglQq1uRdX .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uglQq1uRdX .container {
    padding: 0 24px;
  }
}
.cid-uglQq1uRdX .row {
  position: relative;
}
.cid-uglQq1uRdX .row .card {
  justify-content: center;
}
.cid-uglQq1uRdX .row .decor-wrapper {
  position: absolute;
  bottom: -16rem;
  right: -58rem;
  border: 120px solid #ff3399;
  width: 2000px;
  height: 1000px;
  border-radius: 100%;
}
@media (max-width: 992px) {
  .cid-uglQq1uRdX .row .decor-wrapper {
    right: -20rem;
  }
}
@media (max-width: 768px) {
  .cid-uglQq1uRdX .row .decor-wrapper {
    height: 500px;
    right: -10rem;
  }
}
.cid-uglQq1uRdX .title-wrapper {
  position: relative;
}
@media (max-width: 992px) {
  .cid-uglQq1uRdX .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uglQq1uRdX .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uglQq1uRdX .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uglQq1uRdX .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uglQq1uRdX .title-wrapper .mbr-section-btn {
  margin-top: 64px;
}
@media (max-width: 992px) {
  .cid-uglQq1uRdX .title-wrapper .mbr-section-btn {
    margin-top: 32px;
  }
}
.cid-uglQq1uRdX .image-wrapper {
  position: relative;
}
.cid-uglQq1uRdX .image-wrapper img {
  height: 500px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uglQq1uRdX .image-wrapper img {
    height: 350px;
  }
}
.cid-uglQq1uRdX .mbr-section-title {
  color: #F5DF4D;
}
.cid-uglQq1uRdX .mbr-text {
  color: #FF3399;
}
.cid-uglQq1uRdX .mbr-text,
.cid-uglQq1uRdX .mbr-section-btn {
  color: #fafafa;
}
.cid-uglQq2z6lR {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #e9e9e9;
}
.cid-uglQq2z6lR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uglQq2z6lR .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-uglQq2z6lR .container {
    padding: 0 22px;
  }
}
.cid-uglQq2z6lR .row {
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0 -6px;
}
.cid-uglQq2z6lR .row .card {
  padding: 0 6px;
  justify-content: center;
}
.cid-uglQq2z6lR .row .title-wrapper {
  position: absolute;
  z-index: 1;
  background-color: #f63df9;
  padding: 24px 80px;
  border-radius: 80px;
  width: fit-content;
}
@media (max-width: 992px) {
  .cid-uglQq2z6lR .row .title-wrapper {
    position: static;
    padding: 32px;
    width: 100%;
  }
}
.cid-uglQq2z6lR .row .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uglQq2z6lR .image-wrapper {
  margin-bottom: 12px;
}
.cid-uglQq2z6lR .image-wrapper img {
  height: 560px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uglQq2z6lR .image-wrapper img {
    height: 350px;
  }
}
.cid-uglQq2z6lR .image-wrap {
  margin-bottom: 12px;
}
.cid-uglQq2z6lR .image-wrap img {
  height: 560px;
  object-fit: cover;
  width: 65%;
}
@media (max-width: 992px) {
  .cid-uglQq2z6lR .image-wrap img {
    height: 350px;
  }
}
.cid-uglQq2z6lR .content-wrapper {
  padding: 55px 0;
}
@media (max-width: 992px) {
  .cid-uglQq2z6lR .content-wrapper {
    padding: 32px 0;
  }
}
.cid-uglQq2z6lR .content-wrapper .mbr-desc {
  margin-bottom: 32px;
}
.cid-uglQq2z6lR .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-uglQq2z6lR .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uglQq2z6lR .mbr-desc {
  color: #000000;
}
.cid-uglQq2z6lR .mbr-text {
  color: #000000;
}
.cid-uglQq3jjEI {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #6a2be9;
}
.cid-uglQq3jjEI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uglQq3jjEI .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-uglQq3jjEI .container {
    padding: 0 16px;
  }
}
.cid-uglQq3jjEI .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uglQq3jjEI .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uglQq3jjEI .content-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uglQq3jjEI .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uglQq3jjEI .content-wrapper .text-wrapper .mbr-text {
  display: inline-flex;
  width: 60%;
  margin-bottom: 32px;
}
@media (max-width: 1200px) {
  .cid-uglQq3jjEI .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uglQq3jjEI .image-wrapper {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-uglQq3jjEI .image-wrapper {
    margin-left: 0;
  }
}
.cid-uglQq3jjEI .image-wrapper img {
  height: 660px;
  object-fit: cover;
  box-shadow: 6px 8px 0 0 #000000;
  border-radius: 24px !important;
}
@media (max-width: 992px) {
  .cid-uglQq3jjEI .image-wrapper img {
    height: 350px;
  }
}
.cid-uglQq3jjEI .mbr-section-title {
  color: #ffffff;
}
.cid-uglQq3jjEI .mbr-text {
  color: #ffffff;
}
.cid-uglQq3Y2r8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f7f5f6;
}
.cid-uglQq3Y2r8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uglQq3Y2r8 .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-uglQq3Y2r8 .container {
    padding: 0 15px;
  }
}
.cid-uglQq3Y2r8 .row {
  justify-content: space-between;
}
.cid-uglQq3Y2r8 .row .card {
  justify-content: flex-end;
}
.cid-uglQq3Y2r8 .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uglQq3Y2r8 .text-wrapper .mbr-text {
  margin-bottom: 40px;
}
.cid-uglQq3Y2r8 .content-wrapper .border-wrap {
  margin-bottom: 100px;
  position: relative;
  display: flex;
  align-items: center;
  height: 1px;
  background-color: #68707c;
}
.cid-uglQq3Y2r8 .content-wrapper .border-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 1px;
  height: 15px;
  background-color: #68707c;
  transform: rotate(20deg);
}
@media (max-width: 992px) {
  .cid-uglQq3Y2r8 .content-wrapper .border-wrap {
    margin-bottom: 40px;
  }
}
.cid-uglQq3Y2r8 .content-wrapper .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}
@media (max-width: 992px) {
  .cid-uglQq3Y2r8 .content-wrapper .items-wrapper {
    grid-template-columns: 1fr;
  }
}
.cid-uglQq3Y2r8 .content-wrapper .items-wrapper .item .item-wrapper .item-content .icon-wrapper {
  margin-bottom: 30px;
}
.cid-uglQq3Y2r8 .content-wrapper .items-wrapper .item .item-wrapper .item-content .icon-wrapper .mbr-iconfont {
  font-size: 50px;
  display: inline-flex;
  color: #6e88ab;
}
.cid-uglQq3Y2r8 .content-wrapper .items-wrapper .item .item-wrapper .item-content .item-text {
  padding-right: 50px;
  margin-bottom: 65px;
}
@media (max-width: 1440px) {
  .cid-uglQq3Y2r8 .content-wrapper .items-wrapper .item .item-wrapper .item-content .item-text {
    padding-right: 25px;
  }
}
@media (max-width: 1200px) {
  .cid-uglQq3Y2r8 .content-wrapper .items-wrapper .item .item-wrapper .item-content .item-text {
    padding-right: 0;
  }
}
.cid-uglQq3Y2r8 .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.cid-uglQq3Y2r8 .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper::before {
  content: '';
  position: absolute;
  top: -26px;
  left: -20px;
  width: 75px;
  height: 68px;
  background-color: #6e88ab;
  transform: skewX(-20deg);
}
@media (max-width: 992px) {
  .cid-uglQq3Y2r8 .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper::before {
    left: 0;
  }
}
.cid-uglQq3Y2r8 .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper img {
  position: relative;
  z-index: 1;
  height: 85px;
  width: 85px;
  min-width: 85px;
  border-radius: 100% !important;
  object-fit: cover;
  margin-right: 20px;
}
.cid-uglQq3Y2r8 .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper a {
  height: 85px;
  width: 85px;
  min-width: 85px;
}
.cid-uglQq3Y2r8 .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper .name-wrap {
  position: relative;
  z-index: 1;
}
.cid-uglQq3Y2r8 .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper .name-wrap .item-name {
  margin-bottom: 0;
}
.cid-uglQq3Y2r8 .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper .name-wrap .item-role {
  margin-bottom: 0;
}
.cid-uglQq3Y2r8 .mbr-section-title {
  color: #30262b;
}
.cid-uglQq3Y2r8 .mbr-text {
  color: #30262b;
}
.cid-uglQq3Y2r8 .item-text {
  color: #30262b;
}
.cid-uglQq3Y2r8 .item-name {
  color: #30262b;
}
.cid-uglQq3Y2r8 .item-role {
  color: #30262b;
}
.cid-uglQq4QOTM {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uglQq4QOTM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uglQq4QOTM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uglQq4QOTM .media-container-row {
  justify-content: space-between;
}
.cid-uglQq4QOTM .text-content {
  max-width: 50%;
}
@media (max-width: 768px) {
  .cid-uglQq4QOTM .text-content {
    max-width: none;
  }
}
.cid-uglQq4QOTM .mbr-iconfont-social {
  margin: 0.5rem;
  font-size: 32px;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #6592e6;
  border: 2px solid #6592e6;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uglQq4QOTM .mbr-iconfont-social:before {
  padding: 0.6rem;
}
.cid-uglQq4QOTM .mbr-iconfont-social:hover {
  background-color: #6592e6;
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-uglQq4QOTM .icons {
    justify-content: center !important;
  }
  .cid-uglQq4QOTM .text-content * {
    text-align: center;
  }
}
.cid-uglQq5JDi0 {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-uglQq6ikRj {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #5f337d;
}
.cid-uglQq6ikRj .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uglQq6ikRj .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uglQq6ikRj .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uglQq6ikRj .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uglQq6ikRj .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uglQq6ikRj .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uglQq6ikRj .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uglQq6ikRj .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uglQq6ikRj .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uglQq6ikRj .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uglQq6ikRj .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uglQq6ikRj .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uglQq6ikRj .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uglQq6ikRj .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uglQq6ikRj .media-container-row .mbr-text {
  text-align: center;
}
.cid-uglYmuXsOv {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uglYmuXsOv nav.navbar {
  position: fixed;
}
.cid-uglYmuXsOv .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uglYmuXsOv .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uglYmuXsOv .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uglYmuXsOv .dropdown-item:hover,
.cid-uglYmuXsOv .dropdown-item:focus {
  background: #39f514 !important;
  color: white !important;
}
.cid-uglYmuXsOv .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uglYmuXsOv .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uglYmuXsOv .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uglYmuXsOv .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uglYmuXsOv .nav-link {
  position: relative;
}
.cid-uglYmuXsOv .container {
  display: flex;
  margin: auto;
}
.cid-uglYmuXsOv .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uglYmuXsOv .dropdown-menu,
.cid-uglYmuXsOv .navbar.opened {
  background: #ffffff !important;
}
.cid-uglYmuXsOv .nav-item:focus,
.cid-uglYmuXsOv .nav-link:focus {
  outline: none;
}
.cid-uglYmuXsOv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uglYmuXsOv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uglYmuXsOv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uglYmuXsOv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uglYmuXsOv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uglYmuXsOv .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uglYmuXsOv .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uglYmuXsOv .navbar.opened {
  transition: all 0.3s;
}
.cid-uglYmuXsOv .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uglYmuXsOv .navbar .navbar-logo img {
  width: auto;
}
.cid-uglYmuXsOv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uglYmuXsOv .navbar.collapsed {
  justify-content: center;
}
.cid-uglYmuXsOv .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uglYmuXsOv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uglYmuXsOv .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uglYmuXsOv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uglYmuXsOv .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uglYmuXsOv .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uglYmuXsOv .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uglYmuXsOv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uglYmuXsOv .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uglYmuXsOv .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uglYmuXsOv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uglYmuXsOv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uglYmuXsOv .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uglYmuXsOv .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uglYmuXsOv .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uglYmuXsOv .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uglYmuXsOv .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uglYmuXsOv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uglYmuXsOv .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uglYmuXsOv .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uglYmuXsOv .navbar.navbar-short {
  min-height: 60px;
}
.cid-uglYmuXsOv .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uglYmuXsOv .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uglYmuXsOv .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uglYmuXsOv .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uglYmuXsOv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uglYmuXsOv .dropdown-item.active,
.cid-uglYmuXsOv .dropdown-item:active {
  background-color: transparent;
}
.cid-uglYmuXsOv .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uglYmuXsOv .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uglYmuXsOv .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uglYmuXsOv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uglYmuXsOv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uglYmuXsOv .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uglYmuXsOv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uglYmuXsOv .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uglYmuXsOv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uglYmuXsOv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uglYmuXsOv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uglYmuXsOv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uglYmuXsOv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uglYmuXsOv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uglYmuXsOv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uglYmuXsOv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uglYmuXsOv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uglYmuXsOv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uglYmuXsOv .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uglYmuXsOv a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uglYmuXsOv .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uglYmuXsOv .navbar {
    height: 70px;
  }
  .cid-uglYmuXsOv .navbar.opened {
    height: auto;
  }
  .cid-uglYmuXsOv .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uglYmvSr4B {
  overflow: hidden;
  background-color: #262642;
}
.cid-uglYmvSr4B .mbr-fallback-image.disabled {
  display: none;
}
.cid-uglYmvSr4B .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uglYmvSr4B .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-uglYmvSr4B .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uglYmvSr4B .container {
    padding: 0 24px;
  }
}
.cid-uglYmvSr4B .row {
  position: relative;
}
.cid-uglYmvSr4B .row .card {
  justify-content: center;
}
.cid-uglYmvSr4B .row .decor-wrapper {
  position: absolute;
  bottom: -16rem;
  right: -58rem;
  border: 120px solid #ff3399;
  width: 2000px;
  height: 1000px;
  border-radius: 100%;
}
@media (max-width: 992px) {
  .cid-uglYmvSr4B .row .decor-wrapper {
    right: -20rem;
  }
}
@media (max-width: 768px) {
  .cid-uglYmvSr4B .row .decor-wrapper {
    height: 500px;
    right: -10rem;
  }
}
.cid-uglYmvSr4B .title-wrapper {
  position: relative;
}
@media (max-width: 992px) {
  .cid-uglYmvSr4B .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uglYmvSr4B .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uglYmvSr4B .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uglYmvSr4B .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uglYmvSr4B .title-wrapper .mbr-section-btn {
  margin-top: 64px;
}
@media (max-width: 992px) {
  .cid-uglYmvSr4B .title-wrapper .mbr-section-btn {
    margin-top: 32px;
  }
}
.cid-uglYmvSr4B .image-wrapper {
  position: relative;
}
.cid-uglYmvSr4B .image-wrapper img {
  height: 500px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uglYmvSr4B .image-wrapper img {
    height: 350px;
  }
}
.cid-uglYmvSr4B .mbr-section-title {
  color: #F5DF4D;
}
.cid-uglYmvSr4B .mbr-text {
  color: #FF3399;
}
.cid-uglYmvSr4B .mbr-text,
.cid-uglYmvSr4B .mbr-section-btn {
  color: #fafafa;
}
.cid-uglYmwFEqI {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #e9e9e9;
}
.cid-uglYmwFEqI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uglYmwFEqI .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-uglYmwFEqI .container {
    padding: 0 22px;
  }
}
.cid-uglYmwFEqI .row {
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0 -6px;
}
.cid-uglYmwFEqI .row .card {
  padding: 0 6px;
  justify-content: center;
}
.cid-uglYmwFEqI .row .title-wrapper {
  position: absolute;
  z-index: 1;
  background-color: #f63df9;
  padding: 24px 80px;
  border-radius: 80px;
  width: fit-content;
}
@media (max-width: 992px) {
  .cid-uglYmwFEqI .row .title-wrapper {
    position: static;
    padding: 32px;
    width: 100%;
  }
}
.cid-uglYmwFEqI .row .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uglYmwFEqI .image-wrapper {
  margin-bottom: 12px;
}
.cid-uglYmwFEqI .image-wrapper img {
  height: 560px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uglYmwFEqI .image-wrapper img {
    height: 350px;
  }
}
.cid-uglYmwFEqI .image-wrap {
  margin-bottom: 12px;
}
.cid-uglYmwFEqI .image-wrap img {
  height: 560px;
  object-fit: cover;
  width: 65%;
}
@media (max-width: 992px) {
  .cid-uglYmwFEqI .image-wrap img {
    height: 350px;
  }
}
.cid-uglYmwFEqI .content-wrapper {
  padding: 55px 0;
}
@media (max-width: 992px) {
  .cid-uglYmwFEqI .content-wrapper {
    padding: 32px 0;
  }
}
.cid-uglYmwFEqI .content-wrapper .mbr-desc {
  margin-bottom: 32px;
}
.cid-uglYmwFEqI .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-uglYmwFEqI .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uglYmwFEqI .mbr-desc {
  color: #000000;
}
.cid-uglYmwFEqI .mbr-text {
  color: #000000;
}
.cid-uglYmxr748 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #6a2be9;
}
.cid-uglYmxr748 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uglYmxr748 .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-uglYmxr748 .container {
    padding: 0 16px;
  }
}
.cid-uglYmxr748 .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uglYmxr748 .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uglYmxr748 .content-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uglYmxr748 .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uglYmxr748 .content-wrapper .text-wrapper .mbr-text {
  display: inline-flex;
  width: 60%;
  margin-bottom: 32px;
}
@media (max-width: 1200px) {
  .cid-uglYmxr748 .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uglYmxr748 .image-wrapper {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-uglYmxr748 .image-wrapper {
    margin-left: 0;
  }
}
.cid-uglYmxr748 .image-wrapper img {
  height: 660px;
  object-fit: cover;
  box-shadow: 6px 8px 0 0 #000000;
  border-radius: 24px !important;
}
@media (max-width: 992px) {
  .cid-uglYmxr748 .image-wrapper img {
    height: 350px;
  }
}
.cid-uglYmxr748 .mbr-section-title {
  color: #ffffff;
}
.cid-uglYmxr748 .mbr-text {
  color: #ffffff;
}
.cid-uglYmy94nd {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f7f5f6;
}
.cid-uglYmy94nd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uglYmy94nd .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-uglYmy94nd .container {
    padding: 0 15px;
  }
}
.cid-uglYmy94nd .row {
  justify-content: space-between;
}
.cid-uglYmy94nd .row .card {
  justify-content: flex-end;
}
.cid-uglYmy94nd .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uglYmy94nd .text-wrapper .mbr-text {
  margin-bottom: 40px;
}
.cid-uglYmy94nd .content-wrapper .border-wrap {
  margin-bottom: 100px;
  position: relative;
  display: flex;
  align-items: center;
  height: 1px;
  background-color: #68707c;
}
.cid-uglYmy94nd .content-wrapper .border-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 1px;
  height: 15px;
  background-color: #68707c;
  transform: rotate(20deg);
}
@media (max-width: 992px) {
  .cid-uglYmy94nd .content-wrapper .border-wrap {
    margin-bottom: 40px;
  }
}
.cid-uglYmy94nd .content-wrapper .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}
@media (max-width: 992px) {
  .cid-uglYmy94nd .content-wrapper .items-wrapper {
    grid-template-columns: 1fr;
  }
}
.cid-uglYmy94nd .content-wrapper .items-wrapper .item .item-wrapper .item-content .icon-wrapper {
  margin-bottom: 30px;
}
.cid-uglYmy94nd .content-wrapper .items-wrapper .item .item-wrapper .item-content .icon-wrapper .mbr-iconfont {
  font-size: 50px;
  display: inline-flex;
  color: #6e88ab;
}
.cid-uglYmy94nd .content-wrapper .items-wrapper .item .item-wrapper .item-content .item-text {
  padding-right: 50px;
  margin-bottom: 65px;
}
@media (max-width: 1440px) {
  .cid-uglYmy94nd .content-wrapper .items-wrapper .item .item-wrapper .item-content .item-text {
    padding-right: 25px;
  }
}
@media (max-width: 1200px) {
  .cid-uglYmy94nd .content-wrapper .items-wrapper .item .item-wrapper .item-content .item-text {
    padding-right: 0;
  }
}
.cid-uglYmy94nd .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.cid-uglYmy94nd .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper::before {
  content: '';
  position: absolute;
  top: -26px;
  left: -20px;
  width: 75px;
  height: 68px;
  background-color: #6e88ab;
  transform: skewX(-20deg);
}
@media (max-width: 992px) {
  .cid-uglYmy94nd .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper::before {
    left: 0;
  }
}
.cid-uglYmy94nd .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper img {
  position: relative;
  z-index: 1;
  height: 85px;
  width: 85px;
  min-width: 85px;
  border-radius: 100% !important;
  object-fit: cover;
  margin-right: 20px;
}
.cid-uglYmy94nd .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper a {
  height: 85px;
  width: 85px;
  min-width: 85px;
}
.cid-uglYmy94nd .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper .name-wrap {
  position: relative;
  z-index: 1;
}
.cid-uglYmy94nd .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper .name-wrap .item-name {
  margin-bottom: 0;
}
.cid-uglYmy94nd .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper .name-wrap .item-role {
  margin-bottom: 0;
}
.cid-uglYmy94nd .mbr-section-title {
  color: #30262b;
}
.cid-uglYmy94nd .mbr-text {
  color: #30262b;
}
.cid-uglYmy94nd .item-text {
  color: #30262b;
}
.cid-uglYmy94nd .item-name {
  color: #30262b;
}
.cid-uglYmy94nd .item-role {
  color: #30262b;
}
.cid-uglYmz860x {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uglYmz860x .mbr-fallback-image.disabled {
  display: none;
}
.cid-uglYmz860x .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uglYmz860x .media-container-row {
  justify-content: space-between;
}
.cid-uglYmz860x .text-content {
  max-width: 50%;
}
@media (max-width: 768px) {
  .cid-uglYmz860x .text-content {
    max-width: none;
  }
}
.cid-uglYmz860x .mbr-iconfont-social {
  margin: 0.5rem;
  font-size: 32px;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #6592e6;
  border: 2px solid #6592e6;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uglYmz860x .mbr-iconfont-social:before {
  padding: 0.6rem;
}
.cid-uglYmz860x .mbr-iconfont-social:hover {
  background-color: #6592e6;
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-uglYmz860x .icons {
    justify-content: center !important;
  }
  .cid-uglYmz860x .text-content * {
    text-align: center;
  }
}
.cid-uglYmA4XEW {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-uglYmAG64z {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #5f337d;
}
.cid-uglYmAG64z .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uglYmAG64z .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uglYmAG64z .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uglYmAG64z .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uglYmAG64z .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uglYmAG64z .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uglYmAG64z .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uglYmAG64z .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uglYmAG64z .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uglYmAG64z .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uglYmAG64z .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uglYmAG64z .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uglYmAG64z .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uglYmAG64z .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uglYmAG64z .media-container-row .mbr-text {
  text-align: center;
}
.cid-ugm6cynec1 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ugm6cynec1 nav.navbar {
  position: fixed;
}
.cid-ugm6cynec1 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ugm6cynec1 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ugm6cynec1 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ugm6cynec1 .dropdown-item:hover,
.cid-ugm6cynec1 .dropdown-item:focus {
  background: #39f514 !important;
  color: white !important;
}
.cid-ugm6cynec1 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ugm6cynec1 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ugm6cynec1 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ugm6cynec1 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ugm6cynec1 .nav-link {
  position: relative;
}
.cid-ugm6cynec1 .container {
  display: flex;
  margin: auto;
}
.cid-ugm6cynec1 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ugm6cynec1 .dropdown-menu,
.cid-ugm6cynec1 .navbar.opened {
  background: #ffffff !important;
}
.cid-ugm6cynec1 .nav-item:focus,
.cid-ugm6cynec1 .nav-link:focus {
  outline: none;
}
.cid-ugm6cynec1 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ugm6cynec1 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ugm6cynec1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ugm6cynec1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ugm6cynec1 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ugm6cynec1 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ugm6cynec1 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-ugm6cynec1 .navbar.opened {
  transition: all 0.3s;
}
.cid-ugm6cynec1 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ugm6cynec1 .navbar .navbar-logo img {
  width: auto;
}
.cid-ugm6cynec1 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ugm6cynec1 .navbar.collapsed {
  justify-content: center;
}
.cid-ugm6cynec1 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ugm6cynec1 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ugm6cynec1 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-ugm6cynec1 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ugm6cynec1 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ugm6cynec1 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-ugm6cynec1 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ugm6cynec1 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ugm6cynec1 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ugm6cynec1 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ugm6cynec1 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ugm6cynec1 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ugm6cynec1 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ugm6cynec1 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-ugm6cynec1 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ugm6cynec1 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ugm6cynec1 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ugm6cynec1 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ugm6cynec1 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ugm6cynec1 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ugm6cynec1 .navbar.navbar-short {
  min-height: 60px;
}
.cid-ugm6cynec1 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ugm6cynec1 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ugm6cynec1 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ugm6cynec1 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ugm6cynec1 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ugm6cynec1 .dropdown-item.active,
.cid-ugm6cynec1 .dropdown-item:active {
  background-color: transparent;
}
.cid-ugm6cynec1 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ugm6cynec1 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ugm6cynec1 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ugm6cynec1 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ugm6cynec1 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ugm6cynec1 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ugm6cynec1 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ugm6cynec1 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ugm6cynec1 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ugm6cynec1 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-ugm6cynec1 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ugm6cynec1 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugm6cynec1 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugm6cynec1 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ugm6cynec1 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugm6cynec1 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ugm6cynec1 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ugm6cynec1 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugm6cynec1 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ugm6cynec1 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ugm6cynec1 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ugm6cynec1 .navbar {
    height: 70px;
  }
  .cid-ugm6cynec1 .navbar.opened {
    height: auto;
  }
  .cid-ugm6cynec1 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ugm6czhtZZ {
  overflow: hidden;
  background-color: #262642;
}
.cid-ugm6czhtZZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugm6czhtZZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugm6czhtZZ .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-ugm6czhtZZ .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-ugm6czhtZZ .container {
    padding: 0 24px;
  }
}
.cid-ugm6czhtZZ .row {
  position: relative;
}
.cid-ugm6czhtZZ .row .card {
  justify-content: center;
}
.cid-ugm6czhtZZ .row .decor-wrapper {
  position: absolute;
  bottom: -16rem;
  right: -58rem;
  border: 120px solid #ff3399;
  width: 2000px;
  height: 1000px;
  border-radius: 100%;
}
@media (max-width: 992px) {
  .cid-ugm6czhtZZ .row .decor-wrapper {
    right: -20rem;
  }
}
@media (max-width: 768px) {
  .cid-ugm6czhtZZ .row .decor-wrapper {
    height: 500px;
    right: -10rem;
  }
}
.cid-ugm6czhtZZ .title-wrapper {
  position: relative;
}
@media (max-width: 992px) {
  .cid-ugm6czhtZZ .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-ugm6czhtZZ .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-ugm6czhtZZ .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-ugm6czhtZZ .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ugm6czhtZZ .title-wrapper .mbr-section-btn {
  margin-top: 64px;
}
@media (max-width: 992px) {
  .cid-ugm6czhtZZ .title-wrapper .mbr-section-btn {
    margin-top: 32px;
  }
}
.cid-ugm6czhtZZ .image-wrapper {
  position: relative;
}
.cid-ugm6czhtZZ .image-wrapper img {
  height: 500px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-ugm6czhtZZ .image-wrapper img {
    height: 350px;
  }
}
.cid-ugm6czhtZZ .mbr-section-title {
  color: #F5DF4D;
}
.cid-ugm6czhtZZ .mbr-text {
  color: #FF3399;
}
.cid-ugm6czhtZZ .mbr-text,
.cid-ugm6czhtZZ .mbr-section-btn {
  color: #fafafa;
}
.cid-ugm6cA5zF3 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #e9e9e9;
}
.cid-ugm6cA5zF3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugm6cA5zF3 .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-ugm6cA5zF3 .container {
    padding: 0 22px;
  }
}
.cid-ugm6cA5zF3 .row {
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0 -6px;
}
.cid-ugm6cA5zF3 .row .card {
  padding: 0 6px;
  justify-content: center;
}
.cid-ugm6cA5zF3 .row .title-wrapper {
  position: absolute;
  z-index: 1;
  background-color: #f63df9;
  padding: 24px 80px;
  border-radius: 80px;
  width: fit-content;
}
@media (max-width: 992px) {
  .cid-ugm6cA5zF3 .row .title-wrapper {
    position: static;
    padding: 32px;
    width: 100%;
  }
}
.cid-ugm6cA5zF3 .row .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-ugm6cA5zF3 .image-wrapper {
  margin-bottom: 12px;
}
.cid-ugm6cA5zF3 .image-wrapper img {
  height: 560px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-ugm6cA5zF3 .image-wrapper img {
    height: 350px;
  }
}
.cid-ugm6cA5zF3 .image-wrap {
  margin-bottom: 12px;
}
.cid-ugm6cA5zF3 .image-wrap img {
  height: 560px;
  object-fit: cover;
  width: 65%;
}
@media (max-width: 992px) {
  .cid-ugm6cA5zF3 .image-wrap img {
    height: 350px;
  }
}
.cid-ugm6cA5zF3 .content-wrapper {
  padding: 55px 0;
}
@media (max-width: 992px) {
  .cid-ugm6cA5zF3 .content-wrapper {
    padding: 32px 0;
  }
}
.cid-ugm6cA5zF3 .content-wrapper .mbr-desc {
  margin-bottom: 32px;
}
.cid-ugm6cA5zF3 .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-ugm6cA5zF3 .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-ugm6cA5zF3 .mbr-desc {
  color: #000000;
}
.cid-ugm6cA5zF3 .mbr-text {
  color: #000000;
}
.cid-ugm6cAQVZx {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #6a2be9;
}
.cid-ugm6cAQVZx .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugm6cAQVZx .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-ugm6cAQVZx .container {
    padding: 0 16px;
  }
}
.cid-ugm6cAQVZx .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-ugm6cAQVZx .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-ugm6cAQVZx .content-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-ugm6cAQVZx .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-ugm6cAQVZx .content-wrapper .text-wrapper .mbr-text {
  display: inline-flex;
  width: 60%;
  margin-bottom: 32px;
}
@media (max-width: 1200px) {
  .cid-ugm6cAQVZx .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-ugm6cAQVZx .image-wrapper {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-ugm6cAQVZx .image-wrapper {
    margin-left: 0;
  }
}
.cid-ugm6cAQVZx .image-wrapper img {
  height: 660px;
  object-fit: cover;
  box-shadow: 6px 8px 0 0 #000000;
  border-radius: 24px !important;
}
@media (max-width: 992px) {
  .cid-ugm6cAQVZx .image-wrapper img {
    height: 350px;
  }
}
.cid-ugm6cAQVZx .mbr-section-title {
  color: #ffffff;
}
.cid-ugm6cAQVZx .mbr-text {
  color: #ffffff;
}
.cid-ugm6cBCswa {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f7f5f6;
}
.cid-ugm6cBCswa .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugm6cBCswa .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-ugm6cBCswa .container {
    padding: 0 15px;
  }
}
.cid-ugm6cBCswa .row {
  justify-content: space-between;
}
.cid-ugm6cBCswa .row .card {
  justify-content: flex-end;
}
.cid-ugm6cBCswa .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-ugm6cBCswa .text-wrapper .mbr-text {
  margin-bottom: 40px;
}
.cid-ugm6cBCswa .content-wrapper .border-wrap {
  margin-bottom: 100px;
  position: relative;
  display: flex;
  align-items: center;
  height: 1px;
  background-color: #68707c;
}
.cid-ugm6cBCswa .content-wrapper .border-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 1px;
  height: 15px;
  background-color: #68707c;
  transform: rotate(20deg);
}
@media (max-width: 992px) {
  .cid-ugm6cBCswa .content-wrapper .border-wrap {
    margin-bottom: 40px;
  }
}
.cid-ugm6cBCswa .content-wrapper .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}
@media (max-width: 992px) {
  .cid-ugm6cBCswa .content-wrapper .items-wrapper {
    grid-template-columns: 1fr;
  }
}
.cid-ugm6cBCswa .content-wrapper .items-wrapper .item .item-wrapper .item-content .icon-wrapper {
  margin-bottom: 30px;
}
.cid-ugm6cBCswa .content-wrapper .items-wrapper .item .item-wrapper .item-content .icon-wrapper .mbr-iconfont {
  font-size: 50px;
  display: inline-flex;
  color: #6e88ab;
}
.cid-ugm6cBCswa .content-wrapper .items-wrapper .item .item-wrapper .item-content .item-text {
  padding-right: 50px;
  margin-bottom: 65px;
}
@media (max-width: 1440px) {
  .cid-ugm6cBCswa .content-wrapper .items-wrapper .item .item-wrapper .item-content .item-text {
    padding-right: 25px;
  }
}
@media (max-width: 1200px) {
  .cid-ugm6cBCswa .content-wrapper .items-wrapper .item .item-wrapper .item-content .item-text {
    padding-right: 0;
  }
}
.cid-ugm6cBCswa .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.cid-ugm6cBCswa .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper::before {
  content: '';
  position: absolute;
  top: -26px;
  left: -20px;
  width: 75px;
  height: 68px;
  background-color: #6e88ab;
  transform: skewX(-20deg);
}
@media (max-width: 992px) {
  .cid-ugm6cBCswa .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper::before {
    left: 0;
  }
}
.cid-ugm6cBCswa .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper img {
  position: relative;
  z-index: 1;
  height: 85px;
  width: 85px;
  min-width: 85px;
  border-radius: 100% !important;
  object-fit: cover;
  margin-right: 20px;
}
.cid-ugm6cBCswa .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper a {
  height: 85px;
  width: 85px;
  min-width: 85px;
}
.cid-ugm6cBCswa .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper .name-wrap {
  position: relative;
  z-index: 1;
}
.cid-ugm6cBCswa .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper .name-wrap .item-name {
  margin-bottom: 0;
}
.cid-ugm6cBCswa .content-wrapper .items-wrapper .item .item-wrapper .item-img .name-wrapper .name-wrap .item-role {
  margin-bottom: 0;
}
.cid-ugm6cBCswa .mbr-section-title {
  color: #30262b;
}
.cid-ugm6cBCswa .mbr-text {
  color: #30262b;
}
.cid-ugm6cBCswa .item-text {
  color: #30262b;
}
.cid-ugm6cBCswa .item-name {
  color: #30262b;
}
.cid-ugm6cBCswa .item-role {
  color: #30262b;
}
.cid-ugm6cCwaXO {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-ugm6cCwaXO .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugm6cCwaXO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugm6cCwaXO .media-container-row {
  justify-content: space-between;
}
.cid-ugm6cCwaXO .text-content {
  max-width: 50%;
}
@media (max-width: 768px) {
  .cid-ugm6cCwaXO .text-content {
    max-width: none;
  }
}
.cid-ugm6cCwaXO .mbr-iconfont-social {
  margin: 0.5rem;
  font-size: 32px;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #6592e6;
  border: 2px solid #6592e6;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-ugm6cCwaXO .mbr-iconfont-social:before {
  padding: 0.6rem;
}
.cid-ugm6cCwaXO .mbr-iconfont-social:hover {
  background-color: #6592e6;
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-ugm6cCwaXO .icons {
    justify-content: center !important;
  }
  .cid-ugm6cCwaXO .text-content * {
    text-align: center;
  }
}
.cid-ugm6cDpe1j {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-ugm6cE0uB3 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #5f337d;
}
.cid-ugm6cE0uB3 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-ugm6cE0uB3 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-ugm6cE0uB3 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-ugm6cE0uB3 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-ugm6cE0uB3 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-ugm6cE0uB3 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-ugm6cE0uB3 .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-ugm6cE0uB3 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-ugm6cE0uB3 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-ugm6cE0uB3 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-ugm6cE0uB3 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-ugm6cE0uB3 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-ugm6cE0uB3 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-ugm6cE0uB3 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-ugm6cE0uB3 .media-container-row .mbr-text {
  text-align: center;
}
