body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 2.5rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.125rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.875rem;
}
.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.5rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.875rem;
}
/* ---- 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: 2.4rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.1rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2rem;
    font-size: calc( 1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((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: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((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: #4a2e92 !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: #4a2e92 !important;
  border-color: #4a2e92 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #291950 !important;
  border-color: #291950 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #291950 !important;
  border-color: #291950 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #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: #4a2e92;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #291950 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #4a2e92 !important;
  border-color: #4a2e92 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #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: #4a2e92 !important;
}
.text-secondary {
  color: #ff6666 !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: #231644 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #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) {
  transition: 0.2s;
  position: relative;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0 1.2em;
}
.nav-tabs .nav-link.active {
  color: #4a2e92;
}
.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: #4a2e92;
  border-color: #4a2e92;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #4a2e92;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #8a6ed1;
}
.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 a {
  border-radius: 100px;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.875rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #4a2e92 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.875rem;
}
blockquote {
  border-color: #4a2e92;
}
/* 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: #4a2e92;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #4a2e92;
}
.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: #4a2e92;
  border-bottom-color: #4a2e92;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #4a2e92 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ff6666 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%234a2e92' %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-tLZhHS3VQE {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tLZhHS3VQE nav.navbar {
  position: fixed;
}
.cid-tLZhHS3VQE .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-tLZhHS3VQE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tLZhHS3VQE .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tLZhHS3VQE .dropdown-item:hover,
.cid-tLZhHS3VQE .dropdown-item:focus {
  background: #4a2e92 !important;
  color: white !important;
}
.cid-tLZhHS3VQE .dropdown-item:hover span {
  color: white;
}
.cid-tLZhHS3VQE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tLZhHS3VQE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tLZhHS3VQE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tLZhHS3VQE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tLZhHS3VQE .nav-link {
  position: relative;
}
.cid-tLZhHS3VQE .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tLZhHS3VQE .container {
    flex-wrap: nowrap;
  }
}
.cid-tLZhHS3VQE .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tLZhHS3VQE .dropdown-menu,
.cid-tLZhHS3VQE .navbar.opened {
  background: #ffffff !important;
}
.cid-tLZhHS3VQE .nav-item:focus,
.cid-tLZhHS3VQE .nav-link:focus {
  outline: none;
}
.cid-tLZhHS3VQE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tLZhHS3VQE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tLZhHS3VQE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tLZhHS3VQE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tLZhHS3VQE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tLZhHS3VQE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tLZhHS3VQE .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-tLZhHS3VQE .navbar.opened {
  transition: all 0.3s;
}
.cid-tLZhHS3VQE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tLZhHS3VQE .navbar .navbar-logo img {
  width: auto;
}
.cid-tLZhHS3VQE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tLZhHS3VQE .navbar.collapsed {
  justify-content: center;
}
.cid-tLZhHS3VQE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tLZhHS3VQE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tLZhHS3VQE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tLZhHS3VQE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tLZhHS3VQE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tLZhHS3VQE .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-tLZhHS3VQE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tLZhHS3VQE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tLZhHS3VQE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tLZhHS3VQE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tLZhHS3VQE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tLZhHS3VQE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tLZhHS3VQE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tLZhHS3VQE .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-tLZhHS3VQE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tLZhHS3VQE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tLZhHS3VQE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tLZhHS3VQE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tLZhHS3VQE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tLZhHS3VQE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tLZhHS3VQE .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tLZhHS3VQE .navbar.navbar-short {
  min-height: 60px;
}
.cid-tLZhHS3VQE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tLZhHS3VQE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tLZhHS3VQE .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tLZhHS3VQE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tLZhHS3VQE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tLZhHS3VQE .dropdown-item.active,
.cid-tLZhHS3VQE .dropdown-item:active {
  background-color: transparent;
}
.cid-tLZhHS3VQE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tLZhHS3VQE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tLZhHS3VQE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tLZhHS3VQE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tLZhHS3VQE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tLZhHS3VQE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tLZhHS3VQE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tLZhHS3VQE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tLZhHS3VQE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tLZhHS3VQE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tLZhHS3VQE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tLZhHS3VQE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tLZhHS3VQE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tLZhHS3VQE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tLZhHS3VQE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tLZhHS3VQE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tLZhHS3VQE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tLZhHS3VQE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tLZhHS3VQE .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tLZhHS3VQE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tLZhHS3VQE .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-tLZhHS3VQE .navbar {
    height: 70px;
  }
  .cid-tLZhHS3VQE .navbar.opened {
    height: auto;
  }
  .cid-tLZhHS3VQE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tMCS9T4gv4 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #4a2e92;
}
.cid-tMCS9T4gv4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMCS9T4gv4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tMCS9T4gv4 .mbr-section-title {
  color: #ffffff;
}
.cid-uV9AOooqwI {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #856ee3;
}
.cid-uV9AOooqwI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uV9AOooqwI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uV9AOooqwI .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uGmSslqnla {
  background-color: #fafafa;
}
.cid-uGmSslqnla .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGmSslqnla .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGmSslqnla .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uGmSslqnla .image-wrap img {
    display: block;
    margin: auto;
    width: 60%;
  }
}
.cid-uGmSslqnla .mbr-section-title {
  color: #232323;
}
.cid-uGmSslqnla .mbr-text,
.cid-uGmSslqnla .mbr-section-btn {
  color: #232323;
  text-align: left;
}
.cid-uUI20QISJd {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uUI20QISJd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUI20QISJd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uUI20QISJd .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uUI20QISJd .row {
  flex-direction: row-reverse;
}
.cid-uUI20QISJd img {
  width: 100%;
}
.cid-uGmTtFnDry {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #4a2e92;
}
.cid-uGmTtFnDry .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGmTtFnDry .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGmTtFnDry .mbr-text {
  color: #c1c1c1;
}
.cid-uGmTtFnDry H3 {
  color: #ffffff;
}
.cid-tLuPqYs9AI {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-tLuPqYs9AI .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLuPqYs9AI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLuPqYs9AI .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tLuPqYs9AI .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tLuPqYs9AI .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tLuPqYs9AI .mbr-text,
.cid-tLuPqYs9AI .mbr-section-btn {
  color: #232323;
}
.cid-uXSOPZmuKZ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #4a2e92;
}
.cid-uXSOPZmuKZ .mbr-text {
  color: #ffffff;
}
.cid-uXUwoNMxpq {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uXUwoNMxpq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uXUwoNMxpq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uXUwoNMxpq .mbr-text,
.cid-uXUwoNMxpq .mbr-section-btn {
  color: #232323;
}
.cid-uXUwoNMxpq .card-title,
.cid-uXUwoNMxpq .card-box {
  color: #ffffff;
}
.cid-uXUwoNMxpq .mbr-text,
.cid-uXUwoNMxpq .link-wrap {
  color: #ffffff;
}
.cid-uXUwoNMxpq .card-box .mbr-text,
.cid-uXUwoNMxpq .mbr-section-btn {
  text-align: left;
  color: #232323;
}
.cid-uV9gWUgKn2 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uV9gWUgKn2 img,
.cid-uV9gWUgKn2 .item-img {
  width: 100%;
}
.cid-uV9gWUgKn2 .item:focus,
.cid-uV9gWUgKn2 span:focus {
  outline: none;
}
.cid-uV9gWUgKn2 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uV9gWUgKn2 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uV9gWUgKn2 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uV9gWUgKn2 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uV9gWUgKn2 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uV9gWUgKn2 .mbr-section-title {
  color: #232323;
}
.cid-uV9gWUgKn2 .mbr-text,
.cid-uV9gWUgKn2 .mbr-section-btn {
  text-align: left;
}
.cid-uV9gWUgKn2 .item-title {
  text-align: left;
}
.cid-uV9gWUgKn2 .item-subtitle {
  text-align: left;
}
.cid-uV9gWUgKn2 .mbr-section-subtitle {
  color: #232323;
}
.cid-uVruTLgHrC {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #4a2e92;
}
.cid-uVruTLgHrC .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uYzetIB3k6 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uXSPMzIOAC {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uXSPMzIOAC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uXSPMzIOAC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uXSPMzIOAC ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-uXSPMzIOAC li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-uXSPMzIOAC ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #4a2e92;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-uXSR4OCc0w {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uXSR4OCc0w .mbr-fallback-image.disabled {
  display: none;
}
.cid-uXSR4OCc0w .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uXSR4OCc0w .mbr-text,
.cid-uXSR4OCc0w .mbr-section-btn {
  color: #232323;
}
.cid-uXSR4OCc0w .card-title,
.cid-uXSR4OCc0w .card-box {
  color: #ffffff;
}
.cid-uXSR4OCc0w .mbr-text,
.cid-uXSR4OCc0w .link-wrap {
  color: #ffffff;
}
.cid-uXSR4OCc0w .card-box .mbr-text,
.cid-uXSR4OCc0w .mbr-section-btn {
  text-align: left;
  color: #232323;
}
.cid-uX7dF5e57u {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #4a2e92;
}
.cid-uX7dF5e57u .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX7dF5e57u .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uX7dF5e57u .mbr-section-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-uYgBI93mKQ {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uYgBI93mKQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYgBI93mKQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYgBI93mKQ .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uYgBI93mKQ .image-wrap img {
    display: block;
    margin: auto;
    width: 90%;
  }
}
.cid-uYzfnru1lx {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uYzfGBGXAj {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #4a2e92;
}
.cid-uYzfGBGXAj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYzfGBGXAj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYzfGBGXAj .mbr-section-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-uYzfY2l0Mp {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uYzfY2l0Mp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYzfY2l0Mp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYzfY2l0Mp .mbr-text,
.cid-uYzfY2l0Mp .mbr-section-btn {
  color: #232323;
}
.cid-uYzfY2l0Mp .card-title,
.cid-uYzfY2l0Mp .card-box {
  color: #ffffff;
}
.cid-uYzfY2l0Mp .mbr-text,
.cid-uYzfY2l0Mp .link-wrap {
  color: #ffffff;
}
.cid-uYzfY2l0Mp .card-box .mbr-text,
.cid-uYzfY2l0Mp .mbr-section-btn {
  text-align: left;
  color: #232323;
}
.cid-uVrwWSVskg {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #4a2e92;
}
.cid-uVrwWSVskg .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uWDp2jjH5x {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uWDp2jjH5x .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWDp2jjH5x .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uWDp2jjH5x .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uWDp2jjH5x .row {
  flex-direction: row-reverse;
}
.cid-uWDp2jjH5x img {
  width: 100%;
}
.cid-uWASnodHgH {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uWASnodHgH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWASnodHgH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWASnodHgH ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-uWASnodHgH li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-uWASnodHgH ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #4a2e92;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-uX7b3Kejo3 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uX7b3Kejo3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX7b3Kejo3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uX7b3Kejo3 .mbr-text,
.cid-uX7b3Kejo3 .mbr-section-btn {
  color: #232323;
}
.cid-uX7b3Kejo3 .card-title,
.cid-uX7b3Kejo3 .card-box {
  color: #ffffff;
}
.cid-uX7b3Kejo3 .mbr-text,
.cid-uX7b3Kejo3 .link-wrap {
  color: #ffffff;
}
.cid-uX7b3Kejo3 .card-box .mbr-text,
.cid-uX7b3Kejo3 .mbr-section-btn {
  text-align: left;
  color: #232323;
}
.cid-uVrznaHfg7 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #4a2e92;
}
.cid-uVrznaHfg7 .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-uVrznaHfg7 .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-uVrA6bcDNq {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #dedbfa;
}
.cid-uVrA6bcDNq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVrA6bcDNq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uVrA6bcDNq .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uVrA6bcDNq .row {
  flex-direction: row-reverse;
}
.cid-uVrA6bcDNq img {
  width: 100%;
}
.cid-uVrAE0cyvg {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #dedbfa;
}
.cid-uVrAE0cyvg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVrAE0cyvg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uV9WO1jzsY {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #4a2e92;
}
.cid-uV9WO1jzsY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uV9WO1jzsY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uV9WO1jzsY .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-uYzhnL0bsX {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uYzhp98Yrt {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uYzhp98Yrt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYzhp98Yrt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYzhp98Yrt ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-uYzhp98Yrt li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-uYzhp98Yrt ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #4a2e92;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-uX7anDlvGt {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uX7anDlvGt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX7anDlvGt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uX7anDlvGt .mbr-text,
.cid-uX7anDlvGt .mbr-section-btn {
  color: #232323;
}
.cid-uX7anDlvGt .card-title,
.cid-uX7anDlvGt .card-box {
  color: #ffffff;
}
.cid-uX7anDlvGt .mbr-text,
.cid-uX7anDlvGt .link-wrap {
  color: #ffffff;
}
.cid-uX7anDlvGt .card-box .mbr-text,
.cid-uX7anDlvGt .mbr-section-btn {
  text-align: left;
  color: #232323;
}
.cid-uUIbPbQvG2 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #4a2e92;
}
.cid-uUIbPbQvG2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUIbPbQvG2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uUIbPbQvG2 .card-wrapper {
  background: #4a2e92;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-uUIbPbQvG2 .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uUIbPbQvG2 .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uUIbPbQvG2 .card-wrapper {
    padding: 4rem;
  }
}
.cid-uUIbPbQvG2 .mbr-text,
.cid-uUIbPbQvG2 .mbr-section-btn {
  color: #ffffff;
}
.cid-uUIbPbQvG2 .card-title,
.cid-uUIbPbQvG2 .card-box {
  text-align: left;
  color: #ffffff;
}
.cid-tLuV7nSCY2 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #856ee3;
}
.cid-tLuV7nSCY2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLuV7nSCY2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLuV7nSCY2 .img-wrapper {
  text-align: center;
}
.cid-tLuV7nSCY2 img {
  margin: auto;
  width: 140px;
  padding-bottom: 2rem;
}
.cid-tLuV7nSCY2 .row {
  align-items: flex-start;
}
.cid-tLuV7nSCY2 .card-wrapper {
  border-radius: 4px;
  background: #856ee3;
}
@media (max-width: 992px) {
  .cid-tLuV7nSCY2 .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (min-width: 768px) {
  .cid-tLuV7nSCY2 .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tLuV7nSCY2 .card-wrapper {
    padding: 1rem;
  }
}
.cid-tLuV7nSCY2 .mbr-text,
.cid-tLuV7nSCY2 .mbr-section-btn {
  color: #ffffff;
}
.cid-uXT2Uvy8hC {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uXT2Uvy8hC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uXT2Uvy8hC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uXT2Uvy8hC .mbr-text,
.cid-uXT2Uvy8hC .mbr-section-btn {
  color: #232323;
}
.cid-uXT2Uvy8hC .card-title,
.cid-uXT2Uvy8hC .card-box {
  color: #ffffff;
}
.cid-uXT2Uvy8hC .mbr-text,
.cid-uXT2Uvy8hC .link-wrap {
  color: #ffffff;
}
.cid-uXT2Uvy8hC .card-box .mbr-text,
.cid-uXT2Uvy8hC .mbr-section-btn {
  text-align: left;
  color: #232323;
}
.cid-uX7bHSdtIX {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #4a2e92;
}
.cid-uX7bHSdtIX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX7bHSdtIX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uX7bHSdtIX .mbr-section-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-uX7bIZgcUv {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uX7bIZgcUv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX7bIZgcUv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uX7bIZgcUv .mbr-text,
.cid-uX7bIZgcUv .mbr-section-btn {
  color: #232323;
}
.cid-uX7bIZgcUv .card-title,
.cid-uX7bIZgcUv .card-box {
  color: #ffffff;
}
.cid-uX7bIZgcUv .mbr-text,
.cid-uX7bIZgcUv .link-wrap {
  color: #ffffff;
}
.cid-uX7bIZgcUv .card-box .mbr-text,
.cid-uX7bIZgcUv .mbr-section-btn {
  text-align: left;
  color: #232323;
}
.cid-tLv9wOUX1T {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #856ee3;
}
.cid-tLv9wOUX1T .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLv9wOUX1T .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLv9wOUX1T .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tLv9wOUX1T .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tLv9wOUX1T .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tLv9wOUX1T .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-tLv9wOUX1T .mbr-text,
.cid-tLv9wOUX1T .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-tLS5LTd4cU {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #4a2e92;
}
.cid-tLS5LTd4cU .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLS5LTd4cU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLS5LTd4cU .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-uWJDaef9tT {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uWJDaef9tT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWJDaef9tT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWJDaef9tT .mbr-text,
.cid-uWJDaef9tT .mbr-section-btn {
  color: #232323;
}
.cid-uWJDaef9tT .card-title,
.cid-uWJDaef9tT .card-box {
  color: #ffffff;
}
.cid-uWJDaef9tT .mbr-text,
.cid-uWJDaef9tT .link-wrap {
  color: #ffffff;
}
.cid-uWJDaef9tT .card-box .mbr-text,
.cid-uWJDaef9tT .mbr-section-btn {
  text-align: left;
  color: #232323;
}
.cid-uYgQIq7ei9 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #4a2e92;
}
.cid-uYgQIq7ei9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYgQIq7ei9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYgQIq7ei9 .mbr-section-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-uYgQIq7ei9 .mbr-section-subtitle DIV {
  text-align: center;
}
.cid-uYzkckfFkn {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uYzkd82rcM {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uYzkd82rcM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYzkd82rcM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYzkd82rcM ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-uYzkd82rcM li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-uYzkd82rcM ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #4a2e92;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-uYgQZ8SVcj {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uYgQZ8SVcj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYgQZ8SVcj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYgQZ8SVcj .mbr-text,
.cid-uYgQZ8SVcj .mbr-section-btn {
  color: #232323;
}
.cid-uYgQZ8SVcj .card-title,
.cid-uYgQZ8SVcj .card-box {
  color: #ffffff;
}
.cid-uYgQZ8SVcj .mbr-text,
.cid-uYgQZ8SVcj .link-wrap {
  color: #ffffff;
}
.cid-uYgQZ8SVcj .card-box .mbr-text,
.cid-uYgQZ8SVcj .mbr-section-btn {
  text-align: left;
  color: #232323;
}
.cid-uYgUesfraN {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #4a2e92;
}
.cid-uYgUesfraN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYgUesfraN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYgUesfraN .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-uYgUesfraN .mbr-section-subtitle DIV {
  text-align: center;
}
.cid-uX0vlGTeWn {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #856ee3;
}
.cid-uX0vlGTeWn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX0vlGTeWn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uX0vlGTeWn .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uX0vlGTeWn .image-wrap img {
    display: block;
    margin: auto;
    width: 100%;
  }
}
.cid-uVrLxBLyTG {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #4a2e92;
}
.cid-uVrLxBLyTG .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-uVrLxBLyTG .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-uVrLypyyEl {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #dedbfa;
}
.cid-uVrLypyyEl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVrLypyyEl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uVrLypyyEl .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uVrLypyyEl .row {
  flex-direction: row-reverse;
}
.cid-uVrLypyyEl img {
  width: 100%;
}
.cid-uV9sXpSvQ4 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #dedbfa;
}
.cid-uV9sXpSvQ4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uV9sXpSvQ4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLvNPIihEA {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #4a2e92;
}
.cid-tLvNPIihEA .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLvNPIihEA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLvNPIihEA .mbr-section-title {
  color: #ffffff;
}
.cid-tLvSaK2auY {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tLvSaK2auY .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLvSaK2auY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLvSaK2auY .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-tLvSaK2auY .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tLvSaK2auY .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #4a2e92;
}
.cid-tLvSaK2auY .panel-body,
.cid-tLvSaK2auY .card-header {
  padding: 1rem 0;
}
.cid-tLvSaK2auY .panel-title-edit {
  color: #000000;
}
.cid-uGyh6Ok938 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #4a2e92;
}
.cid-uGyh6Ok938 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGyh6Ok938 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGyh6Ok938 .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-uYgSIqdqZ8 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uWDQdAFYuZ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uWDQdAFYuZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWDQdAFYuZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWDQdAFYuZ ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-uWDQdAFYuZ li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-uWDQdAFYuZ ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #4a2e92;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-uWDQdAFYuZ .list {
  color: #4479d9;
}
.cid-tLw34lctBm {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #4a2e92;
}
.cid-tLw34lctBm .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLw34lctBm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLw34lctBm .mbr-section-title {
  color: #ffffff;
}
.cid-tLw3eVqFiP {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #856ee3;
}
.cid-tLw3eVqFiP .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLw3eVqFiP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tLw3eVqFiP .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tLw3eVqFiP .row {
  flex-direction: row-reverse;
}
.cid-tLw3eVqFiP img {
  width: 100%;
}
.cid-tLw3eVqFiP .mbr-description {
  color: #ffffff;
}
.cid-tLw77WeYpz {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #4a2e92;
}
.cid-tLw77WeYpz .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLw77WeYpz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLw77WeYpz .mbr-text,
.cid-tLw77WeYpz .mbr-section-btn {
  color: #ffffff;
}
.cid-tLwbO91c7M {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-tLwbO91c7M .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-tLwQuQyLCE {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tLwQuQyLCE .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tLwQuQyLCE .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tLwQuQyLCE .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tLwQuQyLCE .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tLwQuQyLCE .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tLwQuQyLCE .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tLwQuQyLCE .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tLwQuQyLCE .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tLwQuQyLCE .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tLwQuQyLCE .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tLwQuQyLCE .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tLwQuQyLCE .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tLwQuQyLCE .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tLwQuQyLCE .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tLwJ2tPhAO {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tLwJ2tPhAO .mbr-section-subtitle {
  text-align: center;
}
.cid-tLwQuQyLCE {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tLwQuQyLCE .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tLwQuQyLCE .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tLwQuQyLCE .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tLwQuQyLCE .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tLwQuQyLCE .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tLwQuQyLCE .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tLwQuQyLCE .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tLwQuQyLCE .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tLwQuQyLCE .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tLwQuQyLCE .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tLwQuQyLCE .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tLwQuQyLCE .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tLwQuQyLCE .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tLwQuQyLCE .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tLwMDsiyG7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tLwMDsiyG7 .mbr-section-subtitle {
  text-align: center;
}
.cid-tLwQuQyLCE {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tLwQuQyLCE .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tLwQuQyLCE .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tLwQuQyLCE .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tLwQuQyLCE .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tLwQuQyLCE .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tLwQuQyLCE .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tLwQuQyLCE .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tLwQuQyLCE .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tLwQuQyLCE .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tLwQuQyLCE .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tLwQuQyLCE .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tLwQuQyLCE .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tLwQuQyLCE .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tLwQuQyLCE .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tLwOqR04Lz {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tLwOqR04Lz .mbr-section-subtitle {
  text-align: center;
}
.cid-tLwQuQyLCE {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tLwQuQyLCE .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tLwQuQyLCE .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tLwQuQyLCE .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tLwQuQyLCE .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tLwQuQyLCE .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tLwQuQyLCE .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tLwQuQyLCE .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tLwQuQyLCE .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tLwQuQyLCE .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tLwQuQyLCE .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tLwQuQyLCE .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tLwQuQyLCE .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tLwQuQyLCE .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tLwQuQyLCE .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uXohL1w7rO {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uXohL1w7rO nav.navbar {
  position: fixed;
}
.cid-uXohL1w7rO .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-uXohL1w7rO .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uXohL1w7rO .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uXohL1w7rO .dropdown-item:hover,
.cid-uXohL1w7rO .dropdown-item:focus {
  background: #4a2e92 !important;
  color: white !important;
}
.cid-uXohL1w7rO .dropdown-item:hover span {
  color: white;
}
.cid-uXohL1w7rO .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uXohL1w7rO .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uXohL1w7rO .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uXohL1w7rO .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uXohL1w7rO .nav-link {
  position: relative;
}
.cid-uXohL1w7rO .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uXohL1w7rO .container {
    flex-wrap: nowrap;
  }
}
.cid-uXohL1w7rO .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uXohL1w7rO .dropdown-menu,
.cid-uXohL1w7rO .navbar.opened {
  background: #ffffff !important;
}
.cid-uXohL1w7rO .nav-item:focus,
.cid-uXohL1w7rO .nav-link:focus {
  outline: none;
}
.cid-uXohL1w7rO .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uXohL1w7rO .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uXohL1w7rO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uXohL1w7rO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uXohL1w7rO .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uXohL1w7rO .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uXohL1w7rO .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-uXohL1w7rO .navbar.opened {
  transition: all 0.3s;
}
.cid-uXohL1w7rO .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uXohL1w7rO .navbar .navbar-logo img {
  width: auto;
}
.cid-uXohL1w7rO .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uXohL1w7rO .navbar.collapsed {
  justify-content: center;
}
.cid-uXohL1w7rO .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uXohL1w7rO .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uXohL1w7rO .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uXohL1w7rO .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uXohL1w7rO .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uXohL1w7rO .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-uXohL1w7rO .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uXohL1w7rO .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uXohL1w7rO .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uXohL1w7rO .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uXohL1w7rO .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uXohL1w7rO .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uXohL1w7rO .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uXohL1w7rO .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-uXohL1w7rO .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uXohL1w7rO .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uXohL1w7rO .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uXohL1w7rO .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uXohL1w7rO .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uXohL1w7rO .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uXohL1w7rO .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uXohL1w7rO .navbar.navbar-short {
  min-height: 60px;
}
.cid-uXohL1w7rO .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uXohL1w7rO .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uXohL1w7rO .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uXohL1w7rO .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uXohL1w7rO .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uXohL1w7rO .dropdown-item.active,
.cid-uXohL1w7rO .dropdown-item:active {
  background-color: transparent;
}
.cid-uXohL1w7rO .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uXohL1w7rO .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uXohL1w7rO .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uXohL1w7rO .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uXohL1w7rO .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uXohL1w7rO .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uXohL1w7rO ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uXohL1w7rO .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uXohL1w7rO button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uXohL1w7rO button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uXohL1w7rO button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uXohL1w7rO button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uXohL1w7rO button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uXohL1w7rO button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uXohL1w7rO nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uXohL1w7rO nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uXohL1w7rO nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uXohL1w7rO nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uXohL1w7rO .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uXohL1w7rO a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uXohL1w7rO .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-uXohL1w7rO .navbar {
    height: 70px;
  }
  .cid-uXohL1w7rO .navbar.opened {
    height: auto;
  }
  .cid-uXohL1w7rO .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uWDxeavzP2 {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #856ee3;
}
.cid-uWDxeavzP2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWDxeavzP2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWDxeavzP2 .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uWDxeavzP2 .image-wrap img {
    display: block;
    margin: auto;
    width: 70%;
  }
}
.cid-uWDxeavzP2 .mbr-text,
.cid-uWDxeavzP2 .mbr-section-btn {
  color: #ffffff;
}
.cid-uWDxTcXi2z {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uWDxTcXi2z .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWDxTcXi2z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWDxTcXi2z .mbr-section-title {
  color: #ffffff;
}
.cid-uWzwgqW6gw {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uWzwgqW6gw .mbr-section-subtitle {
  text-align: center;
}
.cid-uWzwgqW6gw .mbr-text {
  color: #232323;
}
.cid-uXUzUqI0KG {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uXUAqMZuSI {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uXoifPPB9t {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uXoifPPB9t .mbr-fallback-image.disabled {
  display: none;
}
.cid-uXoifPPB9t .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uXoifPPB9t .mbr-section-subtitle {
  text-align: left;
  color: #232323;
}
.cid-uYzvAaLAl8 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uYzvAaLAl8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYzvAaLAl8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYzvAaLAl8 ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-uYzvAaLAl8 li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-uYzvAaLAl8 ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #4a2e92;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-uXUAHRHEes {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uYzw2LT1LA {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uYzw3yN4fL {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uYzw3yN4fL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYzw3yN4fL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYzw3yN4fL ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-uYzw3yN4fL li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-uYzw3yN4fL ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #4a2e92;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-uYzw4Oahf9 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uXUAVqR1B9 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uYzJUGG7rC {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #856ee3;
}
.cid-uYzJUGG7rC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYzJUGG7rC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYzJUGG7rC .img-wrapper {
  text-align: center;
}
.cid-uYzJUGG7rC img {
  margin: auto;
  width: 140px;
  padding-bottom: 2rem;
}
.cid-uYzJUGG7rC .row {
  align-items: flex-start;
}
.cid-uYzJUGG7rC .card-wrapper {
  border-radius: 4px;
  background: #856ee3;
}
@media (max-width: 992px) {
  .cid-uYzJUGG7rC .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (min-width: 768px) {
  .cid-uYzJUGG7rC .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uYzJUGG7rC .card-wrapper {
    padding: 1rem;
  }
}
.cid-uYzJUGG7rC .mbr-text,
.cid-uYzJUGG7rC .mbr-section-btn {
  color: #ffffff;
}
.cid-uYzwFEfisn {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uYhKpyui0k {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uXlVlaJbEK {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uXlVlaJbEK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uXlVlaJbEK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uXlVlaJbEK ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-uXlVlaJbEK li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-uXlVlaJbEK ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #4a2e92;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-uXURvrulD8 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uXURwixcEU {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uYhLeGfccv {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uYhLeGfccv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYhLeGfccv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYhLeGfccv ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-uYhLeGfccv li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-uYhLeGfccv ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #4a2e92;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-uYhLfq03Zo {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uXlZheJBFC {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uWDAiisisP {
  background-color: #856ee3;
}
.cid-uWDAiisisP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWDAiisisP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWDAiisisP .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uWDAiisisP .image-wrap img {
    display: block;
    margin: auto;
    width: 90%;
  }
}
.cid-uWDAiisisP .mbr-text,
.cid-uWDAiisisP .mbr-section-btn {
  color: #ffffff;
}
.cid-uWDAjoR5zY {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #4a2e92;
}
.cid-uWDAjoR5zY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWDAjoR5zY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWDAjoR5zY .mbr-section-title {
  color: #ffffff;
}
.cid-uWDAjoR5zY .mbr-text,
.cid-uWDAjoR5zY .mbr-section-btn {
  color: #ffffff;
}
.cid-uWDGqst5qI {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-uWDGqst5qI .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-uWzwgrtkBg {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-uWzwgrtkBg .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uWzwgrtkBg .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uWzwgrtkBg .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uWzwgrtkBg .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uWzwgrtkBg .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uWzwgrtkBg .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uWzwgrtkBg .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uWzwgrtkBg .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uWzwgrtkBg .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uWzwgrtkBg .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uWzwgrtkBg .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uWzwgrtkBg .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uWzwgrtkBg .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uWzwgrtkBg .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uYzKbMK53h {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uYzKbMK53h nav.navbar {
  position: fixed;
}
.cid-uYzKbMK53h .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-uYzKbMK53h .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uYzKbMK53h .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uYzKbMK53h .dropdown-item:hover,
.cid-uYzKbMK53h .dropdown-item:focus {
  background: #4a2e92 !important;
  color: white !important;
}
.cid-uYzKbMK53h .dropdown-item:hover span {
  color: white;
}
.cid-uYzKbMK53h .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uYzKbMK53h .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uYzKbMK53h .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uYzKbMK53h .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uYzKbMK53h .nav-link {
  position: relative;
}
.cid-uYzKbMK53h .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uYzKbMK53h .container {
    flex-wrap: nowrap;
  }
}
.cid-uYzKbMK53h .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uYzKbMK53h .dropdown-menu,
.cid-uYzKbMK53h .navbar.opened {
  background: #ffffff !important;
}
.cid-uYzKbMK53h .nav-item:focus,
.cid-uYzKbMK53h .nav-link:focus {
  outline: none;
}
.cid-uYzKbMK53h .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uYzKbMK53h .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uYzKbMK53h .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uYzKbMK53h .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uYzKbMK53h .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uYzKbMK53h .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uYzKbMK53h .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-uYzKbMK53h .navbar.opened {
  transition: all 0.3s;
}
.cid-uYzKbMK53h .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uYzKbMK53h .navbar .navbar-logo img {
  width: auto;
}
.cid-uYzKbMK53h .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uYzKbMK53h .navbar.collapsed {
  justify-content: center;
}
.cid-uYzKbMK53h .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uYzKbMK53h .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uYzKbMK53h .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uYzKbMK53h .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uYzKbMK53h .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uYzKbMK53h .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-uYzKbMK53h .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uYzKbMK53h .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uYzKbMK53h .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uYzKbMK53h .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uYzKbMK53h .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uYzKbMK53h .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uYzKbMK53h .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uYzKbMK53h .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-uYzKbMK53h .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uYzKbMK53h .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uYzKbMK53h .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uYzKbMK53h .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uYzKbMK53h .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uYzKbMK53h .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uYzKbMK53h .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uYzKbMK53h .navbar.navbar-short {
  min-height: 60px;
}
.cid-uYzKbMK53h .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uYzKbMK53h .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uYzKbMK53h .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uYzKbMK53h .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uYzKbMK53h .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uYzKbMK53h .dropdown-item.active,
.cid-uYzKbMK53h .dropdown-item:active {
  background-color: transparent;
}
.cid-uYzKbMK53h .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uYzKbMK53h .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uYzKbMK53h .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uYzKbMK53h .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uYzKbMK53h .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uYzKbMK53h .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uYzKbMK53h ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uYzKbMK53h .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uYzKbMK53h button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uYzKbMK53h button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uYzKbMK53h button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uYzKbMK53h button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uYzKbMK53h button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uYzKbMK53h button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uYzKbMK53h nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uYzKbMK53h nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uYzKbMK53h nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uYzKbMK53h nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uYzKbMK53h .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uYzKbMK53h a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uYzKbMK53h .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-uYzKbMK53h .navbar {
    height: 70px;
  }
  .cid-uYzKbMK53h .navbar.opened {
    height: auto;
  }
  .cid-uYzKbMK53h .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uYzKbNycN1 {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #856ee3;
}
.cid-uYzKbNycN1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYzKbNycN1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYzKbNycN1 .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uYzKbNycN1 .image-wrap img {
    display: block;
    margin: auto;
    width: 70%;
  }
}
.cid-uYzKbNycN1 .mbr-text,
.cid-uYzKbNycN1 .mbr-section-btn {
  color: #ffffff;
}
.cid-uYzKbOu3y7 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uYzKbOu3y7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYzKbOu3y7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYzKbOu3y7 .mbr-section-title {
  color: #ffffff;
}
.cid-uYzKbPh45B {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uYzKbPh45B .mbr-section-subtitle {
  text-align: center;
}
.cid-uYzKbPh45B .mbr-text {
  color: #232323;
}
.cid-uYzKbPSFBt {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uYzKbQwKyc {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uYzKbRdCNJ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uYzKbRdCNJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYzKbRdCNJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYzKbRdCNJ .mbr-section-subtitle {
  text-align: left;
  color: #232323;
}
.cid-uYzKbSFw8V {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uYzKbTe8Kv {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uYzKbVpEXK {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uYzKbWxBBp {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uYzKbXdS8N {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #856ee3;
}
.cid-uYzKbXdS8N .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYzKbXdS8N .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYzKbXdS8N .img-wrapper {
  text-align: center;
}
.cid-uYzKbXdS8N img {
  margin: auto;
  width: 140px;
  padding-bottom: 2rem;
}
.cid-uYzKbXdS8N .row {
  align-items: flex-start;
}
.cid-uYzKbXdS8N .card-wrapper {
  border-radius: 4px;
  background: #856ee3;
}
@media (max-width: 992px) {
  .cid-uYzKbXdS8N .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (min-width: 768px) {
  .cid-uYzKbXdS8N .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uYzKbXdS8N .card-wrapper {
    padding: 1rem;
  }
}
.cid-uYzKbXdS8N .mbr-text,
.cid-uYzKbXdS8N .mbr-section-btn {
  color: #ffffff;
}
.cid-uYzKbYdmrt {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uYzKbYPnme {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uYzM97VRHs {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uYzKbZuXDj {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uYzKbZuXDj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYzKbZuXDj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYzKbZuXDj ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-uYzKbZuXDj li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-uYzKbZuXDj ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #4a2e92;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-uYzKc0kuPh {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uYzKc0ZrmV {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uYzKc3F5dY {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uYzKc4kjqI {
  background-color: #856ee3;
}
.cid-uYzKc4kjqI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYzKc4kjqI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYzKc4kjqI .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uYzKc4kjqI .image-wrap img {
    display: block;
    margin: auto;
    width: 90%;
  }
}
.cid-uYzKc4kjqI .mbr-text,
.cid-uYzKc4kjqI .mbr-section-btn {
  color: #ffffff;
}
.cid-uYzKc56XMT {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #4a2e92;
}
.cid-uYzKc56XMT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYzKc56XMT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYzKc56XMT .mbr-section-title {
  color: #ffffff;
}
.cid-uYzKc56XMT .mbr-text,
.cid-uYzKc56XMT .mbr-section-btn {
  color: #ffffff;
}
.cid-uYzKc5XjHt {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-uYzKc5XjHt .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-uYzKc6Bfpk {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-uYzKc6Bfpk .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uYzKc6Bfpk .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uYzKc6Bfpk .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uYzKc6Bfpk .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uYzKc6Bfpk .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uYzKc6Bfpk .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uYzKc6Bfpk .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uYzKc6Bfpk .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uYzKc6Bfpk .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uYzKc6Bfpk .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uYzKc6Bfpk .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uYzKc6Bfpk .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uYzKc6Bfpk .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uYzKc6Bfpk .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uYzN3MaXFX {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uYzN3MaXFX nav.navbar {
  position: fixed;
}
.cid-uYzN3MaXFX .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-uYzN3MaXFX .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uYzN3MaXFX .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uYzN3MaXFX .dropdown-item:hover,
.cid-uYzN3MaXFX .dropdown-item:focus {
  background: #4a2e92 !important;
  color: white !important;
}
.cid-uYzN3MaXFX .dropdown-item:hover span {
  color: white;
}
.cid-uYzN3MaXFX .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uYzN3MaXFX .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uYzN3MaXFX .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uYzN3MaXFX .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uYzN3MaXFX .nav-link {
  position: relative;
}
.cid-uYzN3MaXFX .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uYzN3MaXFX .container {
    flex-wrap: nowrap;
  }
}
.cid-uYzN3MaXFX .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uYzN3MaXFX .dropdown-menu,
.cid-uYzN3MaXFX .navbar.opened {
  background: #ffffff !important;
}
.cid-uYzN3MaXFX .nav-item:focus,
.cid-uYzN3MaXFX .nav-link:focus {
  outline: none;
}
.cid-uYzN3MaXFX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uYzN3MaXFX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uYzN3MaXFX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uYzN3MaXFX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uYzN3MaXFX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uYzN3MaXFX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uYzN3MaXFX .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-uYzN3MaXFX .navbar.opened {
  transition: all 0.3s;
}
.cid-uYzN3MaXFX .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uYzN3MaXFX .navbar .navbar-logo img {
  width: auto;
}
.cid-uYzN3MaXFX .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uYzN3MaXFX .navbar.collapsed {
  justify-content: center;
}
.cid-uYzN3MaXFX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uYzN3MaXFX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uYzN3MaXFX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uYzN3MaXFX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uYzN3MaXFX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uYzN3MaXFX .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-uYzN3MaXFX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uYzN3MaXFX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uYzN3MaXFX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uYzN3MaXFX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uYzN3MaXFX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uYzN3MaXFX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uYzN3MaXFX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uYzN3MaXFX .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-uYzN3MaXFX .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uYzN3MaXFX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uYzN3MaXFX .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uYzN3MaXFX .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uYzN3MaXFX .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uYzN3MaXFX .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uYzN3MaXFX .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uYzN3MaXFX .navbar.navbar-short {
  min-height: 60px;
}
.cid-uYzN3MaXFX .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uYzN3MaXFX .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uYzN3MaXFX .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uYzN3MaXFX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uYzN3MaXFX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uYzN3MaXFX .dropdown-item.active,
.cid-uYzN3MaXFX .dropdown-item:active {
  background-color: transparent;
}
.cid-uYzN3MaXFX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uYzN3MaXFX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uYzN3MaXFX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uYzN3MaXFX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uYzN3MaXFX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uYzN3MaXFX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uYzN3MaXFX ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uYzN3MaXFX .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uYzN3MaXFX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uYzN3MaXFX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uYzN3MaXFX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uYzN3MaXFX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uYzN3MaXFX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uYzN3MaXFX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uYzN3MaXFX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uYzN3MaXFX nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uYzN3MaXFX nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uYzN3MaXFX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uYzN3MaXFX .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uYzN3MaXFX a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uYzN3MaXFX .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-uYzN3MaXFX .navbar {
    height: 70px;
  }
  .cid-uYzN3MaXFX .navbar.opened {
    height: auto;
  }
  .cid-uYzN3MaXFX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uYzN3MYQLh {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #856ee3;
}
.cid-uYzN3MYQLh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYzN3MYQLh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYzN3MYQLh .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uYzN3MYQLh .image-wrap img {
    display: block;
    margin: auto;
    width: 70%;
  }
}
.cid-uYzN3MYQLh .mbr-text,
.cid-uYzN3MYQLh .mbr-section-btn {
  color: #ffffff;
}
.cid-uYzN3NNJl6 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uYzN3NNJl6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYzN3NNJl6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYzN3NNJl6 .mbr-section-title {
  color: #ffffff;
}
.cid-uYzN3OxiXl {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uYzN3OxiXl .mbr-section-subtitle {
  text-align: center;
}
.cid-uYzN3OxiXl .mbr-text {
  color: #232323;
}
.cid-uYzN3P8q6m {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uYzN3PIV66 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uYzN3QjqP1 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uYzN3QjqP1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYzN3QjqP1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYzN3QjqP1 .mbr-section-subtitle {
  text-align: left;
  color: #232323;
}
.cid-uYzN3RbDPF {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uYzN3RLwOg {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uYzN3SqHPk {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uYzN3T3evf {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uYzN3TFssI {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #856ee3;
}
.cid-uYzN3TFssI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYzN3TFssI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYzN3TFssI .img-wrapper {
  text-align: center;
}
.cid-uYzN3TFssI img {
  margin: auto;
  width: 140px;
  padding-bottom: 2rem;
}
.cid-uYzN3TFssI .row {
  align-items: flex-start;
}
.cid-uYzN3TFssI .card-wrapper {
  border-radius: 4px;
  background: #856ee3;
}
@media (max-width: 992px) {
  .cid-uYzN3TFssI .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (min-width: 768px) {
  .cid-uYzN3TFssI .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uYzN3TFssI .card-wrapper {
    padding: 1rem;
  }
}
.cid-uYzN3TFssI .mbr-text,
.cid-uYzN3TFssI .mbr-section-btn {
  color: #ffffff;
}
.cid-uYzN3UJB9n {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uYzN3Vs7HO {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uYzN3ZaKJv {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uYzN3ZQL2V {
  background-color: #856ee3;
}
.cid-uYzN3ZQL2V .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYzN3ZQL2V .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYzN3ZQL2V .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uYzN3ZQL2V .image-wrap img {
    display: block;
    margin: auto;
    width: 90%;
  }
}
.cid-uYzN3ZQL2V .mbr-text,
.cid-uYzN3ZQL2V .mbr-section-btn {
  color: #ffffff;
}
.cid-uYzN40JnPy {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #4a2e92;
}
.cid-uYzN40JnPy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYzN40JnPy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYzN40JnPy .mbr-section-title {
  color: #ffffff;
}
.cid-uYzN40JnPy .mbr-text,
.cid-uYzN40JnPy .mbr-section-btn {
  color: #ffffff;
}
.cid-uYzN41wPU4 {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-uYzN41wPU4 .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-uYzN428OQ8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-uYzN428OQ8 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uYzN428OQ8 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uYzN428OQ8 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uYzN428OQ8 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uYzN428OQ8 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uYzN428OQ8 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uYzN428OQ8 .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uYzN428OQ8 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uYzN428OQ8 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uYzN428OQ8 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uYzN428OQ8 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uYzN428OQ8 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uYzN428OQ8 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uYzN428OQ8 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uYzPaDbsaZ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uYzPaDbsaZ nav.navbar {
  position: fixed;
}
.cid-uYzPaDbsaZ .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-uYzPaDbsaZ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uYzPaDbsaZ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uYzPaDbsaZ .dropdown-item:hover,
.cid-uYzPaDbsaZ .dropdown-item:focus {
  background: #4a2e92 !important;
  color: white !important;
}
.cid-uYzPaDbsaZ .dropdown-item:hover span {
  color: white;
}
.cid-uYzPaDbsaZ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uYzPaDbsaZ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uYzPaDbsaZ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uYzPaDbsaZ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uYzPaDbsaZ .nav-link {
  position: relative;
}
.cid-uYzPaDbsaZ .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uYzPaDbsaZ .container {
    flex-wrap: nowrap;
  }
}
.cid-uYzPaDbsaZ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uYzPaDbsaZ .dropdown-menu,
.cid-uYzPaDbsaZ .navbar.opened {
  background: #ffffff !important;
}
.cid-uYzPaDbsaZ .nav-item:focus,
.cid-uYzPaDbsaZ .nav-link:focus {
  outline: none;
}
.cid-uYzPaDbsaZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uYzPaDbsaZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uYzPaDbsaZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uYzPaDbsaZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uYzPaDbsaZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uYzPaDbsaZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uYzPaDbsaZ .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-uYzPaDbsaZ .navbar.opened {
  transition: all 0.3s;
}
.cid-uYzPaDbsaZ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uYzPaDbsaZ .navbar .navbar-logo img {
  width: auto;
}
.cid-uYzPaDbsaZ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uYzPaDbsaZ .navbar.collapsed {
  justify-content: center;
}
.cid-uYzPaDbsaZ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uYzPaDbsaZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uYzPaDbsaZ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uYzPaDbsaZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uYzPaDbsaZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uYzPaDbsaZ .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-uYzPaDbsaZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uYzPaDbsaZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uYzPaDbsaZ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uYzPaDbsaZ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uYzPaDbsaZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uYzPaDbsaZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uYzPaDbsaZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uYzPaDbsaZ .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-uYzPaDbsaZ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uYzPaDbsaZ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uYzPaDbsaZ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uYzPaDbsaZ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uYzPaDbsaZ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uYzPaDbsaZ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uYzPaDbsaZ .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uYzPaDbsaZ .navbar.navbar-short {
  min-height: 60px;
}
.cid-uYzPaDbsaZ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uYzPaDbsaZ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uYzPaDbsaZ .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uYzPaDbsaZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uYzPaDbsaZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uYzPaDbsaZ .dropdown-item.active,
.cid-uYzPaDbsaZ .dropdown-item:active {
  background-color: transparent;
}
.cid-uYzPaDbsaZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uYzPaDbsaZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uYzPaDbsaZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uYzPaDbsaZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uYzPaDbsaZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uYzPaDbsaZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uYzPaDbsaZ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uYzPaDbsaZ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uYzPaDbsaZ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uYzPaDbsaZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uYzPaDbsaZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uYzPaDbsaZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uYzPaDbsaZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uYzPaDbsaZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uYzPaDbsaZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uYzPaDbsaZ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uYzPaDbsaZ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uYzPaDbsaZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uYzPaDbsaZ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uYzPaDbsaZ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uYzPaDbsaZ .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-uYzPaDbsaZ .navbar {
    height: 70px;
  }
  .cid-uYzPaDbsaZ .navbar.opened {
    height: auto;
  }
  .cid-uYzPaDbsaZ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uYzPaEoBwv {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #856ee3;
}
.cid-uYzPaEoBwv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYzPaEoBwv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYzPaEoBwv .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uYzPaEoBwv .image-wrap img {
    display: block;
    margin: auto;
    width: 70%;
  }
}
.cid-uYzPaEoBwv .mbr-text,
.cid-uYzPaEoBwv .mbr-section-btn {
  color: #ffffff;
}
.cid-uYzPaFpJTJ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uYzPaFpJTJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYzPaFpJTJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYzPaFpJTJ .mbr-section-title {
  color: #ffffff;
}
.cid-uYzPaGaPJd {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uYzPaGaPJd .mbr-section-subtitle {
  text-align: center;
}
.cid-uYzPaGaPJd .mbr-text {
  color: #232323;
}
.cid-uYzPaGOYFp {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uYzPaHlKUx {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uYzPaJg6DC {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uYzPaJT4oe {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uYzPaKzC6R {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uYzPaLbnCr {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #856ee3;
}
.cid-uYzPaLbnCr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYzPaLbnCr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYzPaLbnCr .img-wrapper {
  text-align: center;
}
.cid-uYzPaLbnCr img {
  margin: auto;
  width: 140px;
  padding-bottom: 2rem;
}
.cid-uYzPaLbnCr .row {
  align-items: flex-start;
}
.cid-uYzPaLbnCr .card-wrapper {
  border-radius: 4px;
  background: #856ee3;
}
@media (max-width: 992px) {
  .cid-uYzPaLbnCr .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (min-width: 768px) {
  .cid-uYzPaLbnCr .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uYzPaLbnCr .card-wrapper {
    padding: 1rem;
  }
}
.cid-uYzPaLbnCr .mbr-text,
.cid-uYzPaLbnCr .mbr-section-btn {
  color: #ffffff;
}
.cid-uYzPaMtIjP {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uYzPaN1hjI {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uYzPaNEtkk {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uYzQJxweAR {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uYzPaOj33Z {
  background-color: #856ee3;
}
.cid-uYzPaOj33Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYzPaOj33Z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYzPaOj33Z .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uYzPaOj33Z .image-wrap img {
    display: block;
    margin: auto;
    width: 90%;
  }
}
.cid-uYzPaOj33Z .mbr-text,
.cid-uYzPaOj33Z .mbr-section-btn {
  color: #ffffff;
}
.cid-uYzPaPkKsm {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #4a2e92;
}
.cid-uYzPaPkKsm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYzPaPkKsm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYzPaPkKsm .mbr-section-title {
  color: #ffffff;
}
.cid-uYzPaPkKsm .mbr-text,
.cid-uYzPaPkKsm .mbr-section-btn {
  color: #ffffff;
}
.cid-uYzPaQiIY4 {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-uYzPaQiIY4 .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-uYzPaQWQCR {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-uYzPaQWQCR .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uYzPaQWQCR .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uYzPaQWQCR .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uYzPaQWQCR .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uYzPaQWQCR .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uYzPaQWQCR .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uYzPaQWQCR .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uYzPaQWQCR .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uYzPaQWQCR .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uYzPaQWQCR .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uYzPaQWQCR .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uYzPaQWQCR .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uYzPaQWQCR .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uYzPaQWQCR .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uYzRbHYPXw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uYzRbHYPXw nav.navbar {
  position: fixed;
}
.cid-uYzRbHYPXw .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-uYzRbHYPXw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uYzRbHYPXw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uYzRbHYPXw .dropdown-item:hover,
.cid-uYzRbHYPXw .dropdown-item:focus {
  background: #4a2e92 !important;
  color: white !important;
}
.cid-uYzRbHYPXw .dropdown-item:hover span {
  color: white;
}
.cid-uYzRbHYPXw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uYzRbHYPXw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uYzRbHYPXw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uYzRbHYPXw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uYzRbHYPXw .nav-link {
  position: relative;
}
.cid-uYzRbHYPXw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uYzRbHYPXw .container {
    flex-wrap: nowrap;
  }
}
.cid-uYzRbHYPXw .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uYzRbHYPXw .dropdown-menu,
.cid-uYzRbHYPXw .navbar.opened {
  background: #ffffff !important;
}
.cid-uYzRbHYPXw .nav-item:focus,
.cid-uYzRbHYPXw .nav-link:focus {
  outline: none;
}
.cid-uYzRbHYPXw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uYzRbHYPXw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uYzRbHYPXw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uYzRbHYPXw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uYzRbHYPXw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uYzRbHYPXw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uYzRbHYPXw .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-uYzRbHYPXw .navbar.opened {
  transition: all 0.3s;
}
.cid-uYzRbHYPXw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uYzRbHYPXw .navbar .navbar-logo img {
  width: auto;
}
.cid-uYzRbHYPXw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uYzRbHYPXw .navbar.collapsed {
  justify-content: center;
}
.cid-uYzRbHYPXw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uYzRbHYPXw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uYzRbHYPXw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uYzRbHYPXw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uYzRbHYPXw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uYzRbHYPXw .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-uYzRbHYPXw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uYzRbHYPXw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uYzRbHYPXw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uYzRbHYPXw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uYzRbHYPXw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uYzRbHYPXw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uYzRbHYPXw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uYzRbHYPXw .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-uYzRbHYPXw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uYzRbHYPXw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uYzRbHYPXw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uYzRbHYPXw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uYzRbHYPXw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uYzRbHYPXw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uYzRbHYPXw .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uYzRbHYPXw .navbar.navbar-short {
  min-height: 60px;
}
.cid-uYzRbHYPXw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uYzRbHYPXw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uYzRbHYPXw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uYzRbHYPXw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uYzRbHYPXw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uYzRbHYPXw .dropdown-item.active,
.cid-uYzRbHYPXw .dropdown-item:active {
  background-color: transparent;
}
.cid-uYzRbHYPXw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uYzRbHYPXw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uYzRbHYPXw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uYzRbHYPXw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uYzRbHYPXw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uYzRbHYPXw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uYzRbHYPXw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uYzRbHYPXw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uYzRbHYPXw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uYzRbHYPXw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uYzRbHYPXw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uYzRbHYPXw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uYzRbHYPXw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uYzRbHYPXw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uYzRbHYPXw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uYzRbHYPXw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uYzRbHYPXw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uYzRbHYPXw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uYzRbHYPXw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uYzRbHYPXw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uYzRbHYPXw .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-uYzRbHYPXw .navbar {
    height: 70px;
  }
  .cid-uYzRbHYPXw .navbar.opened {
    height: auto;
  }
  .cid-uYzRbHYPXw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uYzRbJ23RA {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #856ee3;
}
.cid-uYzRbJ23RA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYzRbJ23RA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYzRbJ23RA .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uYzRbJ23RA .image-wrap img {
    display: block;
    margin: auto;
    width: 70%;
  }
}
.cid-uYzRbJ23RA .mbr-text,
.cid-uYzRbJ23RA .mbr-section-btn {
  color: #ffffff;
}
.cid-uYzRbJWqvF {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uYzRbJWqvF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYzRbJWqvF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYzRbJWqvF .mbr-section-title {
  color: #ffffff;
}
.cid-uYzRbKCx1T {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uYzRbKCx1T .mbr-section-subtitle {
  text-align: center;
}
.cid-uYzRbKCx1T .mbr-text {
  color: #232323;
}
.cid-uYzRbLjUK9 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uYzRbLZEbm {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uYzRbMJJCy {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uYzRbNxP6s {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uYzRbO6Sfz {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uYzRbOJals {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #856ee3;
}
.cid-uYzRbOJals .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYzRbOJals .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYzRbOJals .img-wrapper {
  text-align: center;
}
.cid-uYzRbOJals img {
  margin: auto;
  width: 140px;
  padding-bottom: 2rem;
}
.cid-uYzRbOJals .row {
  align-items: flex-start;
}
.cid-uYzRbOJals .card-wrapper {
  border-radius: 4px;
  background: #856ee3;
}
@media (max-width: 992px) {
  .cid-uYzRbOJals .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (min-width: 768px) {
  .cid-uYzRbOJals .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uYzRbOJals .card-wrapper {
    padding: 1rem;
  }
}
.cid-uYzRbOJals .mbr-text,
.cid-uYzRbOJals .mbr-section-btn {
  color: #ffffff;
}
.cid-uYzRbPIFTx {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uYzRbQiQzm {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uYzRbR7yIV {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uYzRbRVZls {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uYzT8JhTul {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uYzTi1tguO {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uYzTrujN3t {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uYzTFByzZ7 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uYzRbSBOKu {
  background-color: #856ee3;
}
.cid-uYzRbSBOKu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYzRbSBOKu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYzRbSBOKu .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uYzRbSBOKu .image-wrap img {
    display: block;
    margin: auto;
    width: 90%;
  }
}
.cid-uYzRbSBOKu .mbr-text,
.cid-uYzRbSBOKu .mbr-section-btn {
  color: #ffffff;
}
.cid-uYzRbTvsgl {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #4a2e92;
}
.cid-uYzRbTvsgl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYzRbTvsgl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYzRbTvsgl .mbr-section-title {
  color: #ffffff;
}
.cid-uYzRbTvsgl .mbr-text,
.cid-uYzRbTvsgl .mbr-section-btn {
  color: #ffffff;
}
.cid-uYzRbUhMKr {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-uYzRbUhMKr .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-uYzRbUXlNa {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-uYzRbUXlNa .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uYzRbUXlNa .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uYzRbUXlNa .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uYzRbUXlNa .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uYzRbUXlNa .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uYzRbUXlNa .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uYzRbUXlNa .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uYzRbUXlNa .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uYzRbUXlNa .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uYzRbUXlNa .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uYzRbUXlNa .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uYzRbUXlNa .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uYzRbUXlNa .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uYzRbUXlNa .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uYzTZKrZyV {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uYzTZKrZyV nav.navbar {
  position: fixed;
}
.cid-uYzTZKrZyV .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-uYzTZKrZyV .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uYzTZKrZyV .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uYzTZKrZyV .dropdown-item:hover,
.cid-uYzTZKrZyV .dropdown-item:focus {
  background: #4a2e92 !important;
  color: white !important;
}
.cid-uYzTZKrZyV .dropdown-item:hover span {
  color: white;
}
.cid-uYzTZKrZyV .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uYzTZKrZyV .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uYzTZKrZyV .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uYzTZKrZyV .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uYzTZKrZyV .nav-link {
  position: relative;
}
.cid-uYzTZKrZyV .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uYzTZKrZyV .container {
    flex-wrap: nowrap;
  }
}
.cid-uYzTZKrZyV .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uYzTZKrZyV .dropdown-menu,
.cid-uYzTZKrZyV .navbar.opened {
  background: #ffffff !important;
}
.cid-uYzTZKrZyV .nav-item:focus,
.cid-uYzTZKrZyV .nav-link:focus {
  outline: none;
}
.cid-uYzTZKrZyV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uYzTZKrZyV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uYzTZKrZyV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uYzTZKrZyV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uYzTZKrZyV .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uYzTZKrZyV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uYzTZKrZyV .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-uYzTZKrZyV .navbar.opened {
  transition: all 0.3s;
}
.cid-uYzTZKrZyV .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uYzTZKrZyV .navbar .navbar-logo img {
  width: auto;
}
.cid-uYzTZKrZyV .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uYzTZKrZyV .navbar.collapsed {
  justify-content: center;
}
.cid-uYzTZKrZyV .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uYzTZKrZyV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uYzTZKrZyV .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uYzTZKrZyV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uYzTZKrZyV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uYzTZKrZyV .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-uYzTZKrZyV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uYzTZKrZyV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uYzTZKrZyV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uYzTZKrZyV .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uYzTZKrZyV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uYzTZKrZyV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uYzTZKrZyV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uYzTZKrZyV .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-uYzTZKrZyV .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uYzTZKrZyV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uYzTZKrZyV .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uYzTZKrZyV .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uYzTZKrZyV .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uYzTZKrZyV .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uYzTZKrZyV .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uYzTZKrZyV .navbar.navbar-short {
  min-height: 60px;
}
.cid-uYzTZKrZyV .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uYzTZKrZyV .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uYzTZKrZyV .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uYzTZKrZyV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uYzTZKrZyV .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uYzTZKrZyV .dropdown-item.active,
.cid-uYzTZKrZyV .dropdown-item:active {
  background-color: transparent;
}
.cid-uYzTZKrZyV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uYzTZKrZyV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uYzTZKrZyV .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uYzTZKrZyV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uYzTZKrZyV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uYzTZKrZyV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uYzTZKrZyV ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uYzTZKrZyV .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uYzTZKrZyV button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uYzTZKrZyV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uYzTZKrZyV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uYzTZKrZyV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uYzTZKrZyV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uYzTZKrZyV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uYzTZKrZyV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uYzTZKrZyV nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uYzTZKrZyV nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uYzTZKrZyV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uYzTZKrZyV .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uYzTZKrZyV a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uYzTZKrZyV .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-uYzTZKrZyV .navbar {
    height: 70px;
  }
  .cid-uYzTZKrZyV .navbar.opened {
    height: auto;
  }
  .cid-uYzTZKrZyV .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uYzTZLrWol {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #856ee3;
}
.cid-uYzTZLrWol .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYzTZLrWol .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYzTZLrWol .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uYzTZLrWol .image-wrap img {
    display: block;
    margin: auto;
    width: 70%;
  }
}
.cid-uYzTZLrWol .mbr-text,
.cid-uYzTZLrWol .mbr-section-btn {
  color: #ffffff;
}
.cid-uYzTZMg5KN {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uYzTZMg5KN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYzTZMg5KN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYzTZMg5KN .mbr-section-title {
  color: #ffffff;
}
.cid-uYzTZMZ1HF {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uYzTZMZ1HF .mbr-section-subtitle {
  text-align: center;
}
.cid-uYzTZMZ1HF .mbr-text {
  color: #232323;
}
.cid-uYzTZNBvHL {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uYzTZOhX33 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uYzUWyeG2y {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #856ee3;
}
.cid-uYzUWyeG2y .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYzUWyeG2y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYzUWyeG2y .img-wrapper {
  text-align: center;
}
.cid-uYzUWyeG2y img {
  margin: auto;
  width: 140px;
  padding-bottom: 2rem;
}
.cid-uYzUWyeG2y .row {
  align-items: flex-start;
}
.cid-uYzUWyeG2y .card-wrapper {
  border-radius: 4px;
  background: #856ee3;
}
@media (max-width: 992px) {
  .cid-uYzUWyeG2y .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (min-width: 768px) {
  .cid-uYzUWyeG2y .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uYzUWyeG2y .card-wrapper {
    padding: 1rem;
  }
}
.cid-uYzUWyeG2y .mbr-text,
.cid-uYzUWyeG2y .mbr-section-btn {
  color: #ffffff;
}
.cid-uYzTZOTepD {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uYzTZPwSY5 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uYzTZSyl9Z {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uYzTZTcDja {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uYzTZTMyT4 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uYzTZXmEyx {
  background-color: #856ee3;
}
.cid-uYzTZXmEyx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYzTZXmEyx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYzTZXmEyx .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uYzTZXmEyx .image-wrap img {
    display: block;
    margin: auto;
    width: 90%;
  }
}
.cid-uYzTZXmEyx .mbr-text,
.cid-uYzTZXmEyx .mbr-section-btn {
  color: #ffffff;
}
.cid-uYzTZY9fll {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #4a2e92;
}
.cid-uYzTZY9fll .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYzTZY9fll .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYzTZY9fll .mbr-section-title {
  color: #ffffff;
}
.cid-uYzTZY9fll .mbr-text,
.cid-uYzTZY9fll .mbr-section-btn {
  color: #ffffff;
}
.cid-uYzTZYPAVG {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-uYzTZYPAVG .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-uYzTZZzjIG {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-uYzTZZzjIG .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uYzTZZzjIG .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uYzTZZzjIG .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uYzTZZzjIG .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uYzTZZzjIG .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uYzTZZzjIG .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uYzTZZzjIG .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uYzTZZzjIG .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uYzTZZzjIG .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uYzTZZzjIG .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uYzTZZzjIG .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uYzTZZzjIG .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uYzTZZzjIG .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uYzTZZzjIG .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uYCo9lu9oR {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uYCo9lu9oR nav.navbar {
  position: fixed;
}
.cid-uYCo9lu9oR .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-uYCo9lu9oR .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uYCo9lu9oR .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uYCo9lu9oR .dropdown-item:hover,
.cid-uYCo9lu9oR .dropdown-item:focus {
  background: #4a2e92 !important;
  color: white !important;
}
.cid-uYCo9lu9oR .dropdown-item:hover span {
  color: white;
}
.cid-uYCo9lu9oR .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uYCo9lu9oR .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uYCo9lu9oR .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uYCo9lu9oR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uYCo9lu9oR .nav-link {
  position: relative;
}
.cid-uYCo9lu9oR .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uYCo9lu9oR .container {
    flex-wrap: nowrap;
  }
}
.cid-uYCo9lu9oR .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uYCo9lu9oR .dropdown-menu,
.cid-uYCo9lu9oR .navbar.opened {
  background: #ffffff !important;
}
.cid-uYCo9lu9oR .nav-item:focus,
.cid-uYCo9lu9oR .nav-link:focus {
  outline: none;
}
.cid-uYCo9lu9oR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uYCo9lu9oR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uYCo9lu9oR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uYCo9lu9oR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uYCo9lu9oR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uYCo9lu9oR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uYCo9lu9oR .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-uYCo9lu9oR .navbar.opened {
  transition: all 0.3s;
}
.cid-uYCo9lu9oR .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uYCo9lu9oR .navbar .navbar-logo img {
  width: auto;
}
.cid-uYCo9lu9oR .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uYCo9lu9oR .navbar.collapsed {
  justify-content: center;
}
.cid-uYCo9lu9oR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uYCo9lu9oR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uYCo9lu9oR .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uYCo9lu9oR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uYCo9lu9oR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uYCo9lu9oR .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-uYCo9lu9oR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uYCo9lu9oR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uYCo9lu9oR .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uYCo9lu9oR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uYCo9lu9oR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uYCo9lu9oR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uYCo9lu9oR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uYCo9lu9oR .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-uYCo9lu9oR .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uYCo9lu9oR .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uYCo9lu9oR .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uYCo9lu9oR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uYCo9lu9oR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uYCo9lu9oR .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uYCo9lu9oR .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uYCo9lu9oR .navbar.navbar-short {
  min-height: 60px;
}
.cid-uYCo9lu9oR .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uYCo9lu9oR .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uYCo9lu9oR .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uYCo9lu9oR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uYCo9lu9oR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uYCo9lu9oR .dropdown-item.active,
.cid-uYCo9lu9oR .dropdown-item:active {
  background-color: transparent;
}
.cid-uYCo9lu9oR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uYCo9lu9oR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uYCo9lu9oR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uYCo9lu9oR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uYCo9lu9oR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uYCo9lu9oR .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uYCo9lu9oR ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uYCo9lu9oR .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uYCo9lu9oR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uYCo9lu9oR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uYCo9lu9oR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uYCo9lu9oR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uYCo9lu9oR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uYCo9lu9oR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uYCo9lu9oR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uYCo9lu9oR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uYCo9lu9oR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uYCo9lu9oR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uYCo9lu9oR .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uYCo9lu9oR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uYCo9lu9oR .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-uYCo9lu9oR .navbar {
    height: 70px;
  }
  .cid-uYCo9lu9oR .navbar.opened {
    height: auto;
  }
  .cid-uYCo9lu9oR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uYCo9mhJ3v {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #856ee3;
}
.cid-uYCo9mhJ3v .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYCo9mhJ3v .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYCo9mhJ3v .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uYCo9mhJ3v .image-wrap img {
    display: block;
    margin: auto;
    width: 70%;
  }
}
.cid-uYCo9mhJ3v .mbr-text,
.cid-uYCo9mhJ3v .mbr-section-btn {
  color: #ffffff;
}
.cid-uYCo9mVUZx {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uYCo9mVUZx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYCo9mVUZx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYCo9mVUZx .mbr-section-title {
  color: #ffffff;
}
.cid-uYCo9nF8jl {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uYCo9nF8jl .mbr-section-subtitle {
  text-align: center;
}
.cid-uYCo9nF8jl .mbr-text {
  color: #232323;
}
.cid-uYCo9ofrai {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uYCo9oWCXK {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uYCo9pv09K {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #856ee3;
}
.cid-uYCo9pv09K .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYCo9pv09K .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYCo9pv09K .img-wrapper {
  text-align: center;
}
.cid-uYCo9pv09K img {
  margin: auto;
  width: 140px;
  padding-bottom: 2rem;
}
.cid-uYCo9pv09K .row {
  align-items: flex-start;
}
.cid-uYCo9pv09K .card-wrapper {
  border-radius: 4px;
  background: #856ee3;
}
@media (max-width: 992px) {
  .cid-uYCo9pv09K .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (min-width: 768px) {
  .cid-uYCo9pv09K .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uYCo9pv09K .card-wrapper {
    padding: 1rem;
  }
}
.cid-uYCo9pv09K .mbr-text,
.cid-uYCo9pv09K .mbr-section-btn {
  color: #ffffff;
}
.cid-uYCo9qteVw {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uYCo9r6joT {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uYCo9rJcLg {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uYCo9slqGJ {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uYCo9sXZzj {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uYCqec0shb {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uYCo9tAGSz {
  background-color: #856ee3;
}
.cid-uYCo9tAGSz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYCo9tAGSz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYCo9tAGSz .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uYCo9tAGSz .image-wrap img {
    display: block;
    margin: auto;
    width: 90%;
  }
}
.cid-uYCo9tAGSz .mbr-text,
.cid-uYCo9tAGSz .mbr-section-btn {
  color: #ffffff;
}
.cid-uYCo9usokB {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #4a2e92;
}
.cid-uYCo9usokB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYCo9usokB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYCo9usokB .mbr-section-title {
  color: #ffffff;
}
.cid-uYCo9usokB .mbr-text,
.cid-uYCo9usokB .mbr-section-btn {
  color: #ffffff;
}
.cid-uYCo9vac53 {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-uYCo9vac53 .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-uYCo9vU9JC {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-uYCo9vU9JC .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uYCo9vU9JC .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uYCo9vU9JC .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uYCo9vU9JC .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uYCo9vU9JC .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uYCo9vU9JC .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uYCo9vU9JC .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uYCo9vU9JC .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uYCo9vU9JC .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uYCo9vU9JC .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uYCo9vU9JC .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uYCo9vU9JC .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uYCo9vU9JC .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uYCo9vU9JC .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uYCquyGdal {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uYCquyGdal nav.navbar {
  position: fixed;
}
.cid-uYCquyGdal .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-uYCquyGdal .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uYCquyGdal .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uYCquyGdal .dropdown-item:hover,
.cid-uYCquyGdal .dropdown-item:focus {
  background: #4a2e92 !important;
  color: white !important;
}
.cid-uYCquyGdal .dropdown-item:hover span {
  color: white;
}
.cid-uYCquyGdal .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uYCquyGdal .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uYCquyGdal .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uYCquyGdal .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uYCquyGdal .nav-link {
  position: relative;
}
.cid-uYCquyGdal .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uYCquyGdal .container {
    flex-wrap: nowrap;
  }
}
.cid-uYCquyGdal .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uYCquyGdal .dropdown-menu,
.cid-uYCquyGdal .navbar.opened {
  background: #ffffff !important;
}
.cid-uYCquyGdal .nav-item:focus,
.cid-uYCquyGdal .nav-link:focus {
  outline: none;
}
.cid-uYCquyGdal .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uYCquyGdal .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uYCquyGdal .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uYCquyGdal .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uYCquyGdal .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uYCquyGdal .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uYCquyGdal .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-uYCquyGdal .navbar.opened {
  transition: all 0.3s;
}
.cid-uYCquyGdal .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uYCquyGdal .navbar .navbar-logo img {
  width: auto;
}
.cid-uYCquyGdal .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uYCquyGdal .navbar.collapsed {
  justify-content: center;
}
.cid-uYCquyGdal .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uYCquyGdal .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uYCquyGdal .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uYCquyGdal .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uYCquyGdal .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uYCquyGdal .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-uYCquyGdal .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uYCquyGdal .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uYCquyGdal .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uYCquyGdal .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uYCquyGdal .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uYCquyGdal .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uYCquyGdal .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uYCquyGdal .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-uYCquyGdal .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uYCquyGdal .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uYCquyGdal .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uYCquyGdal .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uYCquyGdal .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uYCquyGdal .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uYCquyGdal .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uYCquyGdal .navbar.navbar-short {
  min-height: 60px;
}
.cid-uYCquyGdal .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uYCquyGdal .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uYCquyGdal .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uYCquyGdal .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uYCquyGdal .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uYCquyGdal .dropdown-item.active,
.cid-uYCquyGdal .dropdown-item:active {
  background-color: transparent;
}
.cid-uYCquyGdal .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uYCquyGdal .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uYCquyGdal .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uYCquyGdal .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uYCquyGdal .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uYCquyGdal .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uYCquyGdal ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uYCquyGdal .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uYCquyGdal button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uYCquyGdal button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uYCquyGdal button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uYCquyGdal button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uYCquyGdal button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uYCquyGdal button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uYCquyGdal nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uYCquyGdal nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uYCquyGdal nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uYCquyGdal nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uYCquyGdal .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uYCquyGdal a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uYCquyGdal .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-uYCquyGdal .navbar {
    height: 70px;
  }
  .cid-uYCquyGdal .navbar.opened {
    height: auto;
  }
  .cid-uYCquyGdal .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uYCquA5q1l {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #856ee3;
}
.cid-uYCquA5q1l .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYCquA5q1l .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYCquA5q1l .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uYCquA5q1l .image-wrap img {
    display: block;
    margin: auto;
    width: 70%;
  }
}
.cid-uYCquA5q1l .mbr-text,
.cid-uYCquA5q1l .mbr-section-btn {
  color: #ffffff;
}
.cid-uYCquBvuYx {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uYCquBvuYx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYCquBvuYx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYCquBvuYx .mbr-section-title {
  color: #ffffff;
}
.cid-uYCquD2Js7 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uYCquD2Js7 .mbr-section-subtitle {
  text-align: center;
}
.cid-uYCquD2Js7 .mbr-text {
  color: #232323;
}
.cid-uYCquDIGU3 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uYCquEhrGY {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uYCquEOxSB {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #856ee3;
}
.cid-uYCquEOxSB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYCquEOxSB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYCquEOxSB .img-wrapper {
  text-align: center;
}
.cid-uYCquEOxSB img {
  margin: auto;
  width: 140px;
  padding-bottom: 2rem;
}
.cid-uYCquEOxSB .row {
  align-items: flex-start;
}
.cid-uYCquEOxSB .card-wrapper {
  border-radius: 4px;
  background: #856ee3;
}
@media (max-width: 992px) {
  .cid-uYCquEOxSB .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (min-width: 768px) {
  .cid-uYCquEOxSB .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uYCquEOxSB .card-wrapper {
    padding: 1rem;
  }
}
.cid-uYCquEOxSB .mbr-text,
.cid-uYCquEOxSB .mbr-section-btn {
  color: #ffffff;
}
.cid-uYCquFTNwH {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uYCquGoOVu {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uYCquGYwfi {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uYCquHESXJ {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uYCquIiGKS {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uYCquJ1kqj {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uYCsx1H17e {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uYCsGlxHng {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uYCquJCyXr {
  background-color: #856ee3;
}
.cid-uYCquJCyXr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYCquJCyXr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYCquJCyXr .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uYCquJCyXr .image-wrap img {
    display: block;
    margin: auto;
    width: 90%;
  }
}
.cid-uYCquJCyXr .mbr-text,
.cid-uYCquJCyXr .mbr-section-btn {
  color: #ffffff;
}
.cid-uYCquKxUgS {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #4a2e92;
}
.cid-uYCquKxUgS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYCquKxUgS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYCquKxUgS .mbr-section-title {
  color: #ffffff;
}
.cid-uYCquKxUgS .mbr-text,
.cid-uYCquKxUgS .mbr-section-btn {
  color: #ffffff;
}
.cid-uYCquLjhhm {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-uYCquLjhhm .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-uYCquLW85I {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-uYCquLW85I .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uYCquLW85I .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uYCquLW85I .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uYCquLW85I .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uYCquLW85I .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uYCquLW85I .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uYCquLW85I .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uYCquLW85I .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uYCquLW85I .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uYCquLW85I .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uYCquLW85I .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uYCquLW85I .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uYCquLW85I .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uYCquLW85I .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uYCsY8p6K8 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uYCsY8p6K8 nav.navbar {
  position: fixed;
}
.cid-uYCsY8p6K8 .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-uYCsY8p6K8 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uYCsY8p6K8 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uYCsY8p6K8 .dropdown-item:hover,
.cid-uYCsY8p6K8 .dropdown-item:focus {
  background: #4a2e92 !important;
  color: white !important;
}
.cid-uYCsY8p6K8 .dropdown-item:hover span {
  color: white;
}
.cid-uYCsY8p6K8 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uYCsY8p6K8 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uYCsY8p6K8 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uYCsY8p6K8 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uYCsY8p6K8 .nav-link {
  position: relative;
}
.cid-uYCsY8p6K8 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uYCsY8p6K8 .container {
    flex-wrap: nowrap;
  }
}
.cid-uYCsY8p6K8 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uYCsY8p6K8 .dropdown-menu,
.cid-uYCsY8p6K8 .navbar.opened {
  background: #ffffff !important;
}
.cid-uYCsY8p6K8 .nav-item:focus,
.cid-uYCsY8p6K8 .nav-link:focus {
  outline: none;
}
.cid-uYCsY8p6K8 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uYCsY8p6K8 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uYCsY8p6K8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uYCsY8p6K8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uYCsY8p6K8 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uYCsY8p6K8 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uYCsY8p6K8 .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-uYCsY8p6K8 .navbar.opened {
  transition: all 0.3s;
}
.cid-uYCsY8p6K8 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uYCsY8p6K8 .navbar .navbar-logo img {
  width: auto;
}
.cid-uYCsY8p6K8 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uYCsY8p6K8 .navbar.collapsed {
  justify-content: center;
}
.cid-uYCsY8p6K8 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uYCsY8p6K8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uYCsY8p6K8 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uYCsY8p6K8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uYCsY8p6K8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uYCsY8p6K8 .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-uYCsY8p6K8 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uYCsY8p6K8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uYCsY8p6K8 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uYCsY8p6K8 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uYCsY8p6K8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uYCsY8p6K8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uYCsY8p6K8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uYCsY8p6K8 .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-uYCsY8p6K8 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uYCsY8p6K8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uYCsY8p6K8 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uYCsY8p6K8 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uYCsY8p6K8 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uYCsY8p6K8 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uYCsY8p6K8 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uYCsY8p6K8 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uYCsY8p6K8 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uYCsY8p6K8 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uYCsY8p6K8 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uYCsY8p6K8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uYCsY8p6K8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uYCsY8p6K8 .dropdown-item.active,
.cid-uYCsY8p6K8 .dropdown-item:active {
  background-color: transparent;
}
.cid-uYCsY8p6K8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uYCsY8p6K8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uYCsY8p6K8 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uYCsY8p6K8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uYCsY8p6K8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uYCsY8p6K8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uYCsY8p6K8 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uYCsY8p6K8 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uYCsY8p6K8 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uYCsY8p6K8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uYCsY8p6K8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uYCsY8p6K8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uYCsY8p6K8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uYCsY8p6K8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uYCsY8p6K8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uYCsY8p6K8 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uYCsY8p6K8 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uYCsY8p6K8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uYCsY8p6K8 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uYCsY8p6K8 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uYCsY8p6K8 .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-uYCsY8p6K8 .navbar {
    height: 70px;
  }
  .cid-uYCsY8p6K8 .navbar.opened {
    height: auto;
  }
  .cid-uYCsY8p6K8 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uYCsY9c1dg {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #856ee3;
}
.cid-uYCsY9c1dg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYCsY9c1dg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYCsY9c1dg .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uYCsY9c1dg .image-wrap img {
    display: block;
    margin: auto;
    width: 70%;
  }
}
.cid-uYCsY9c1dg .mbr-text,
.cid-uYCsY9c1dg .mbr-section-btn {
  color: #ffffff;
}
.cid-uYCsYa5e7W {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uYCsYa5e7W .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYCsYa5e7W .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYCsYa5e7W .mbr-section-title {
  color: #ffffff;
}
.cid-uYCsYaSXlf {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uYCsYaSXlf .mbr-section-subtitle {
  text-align: center;
}
.cid-uYCsYaSXlf .mbr-text {
  color: #232323;
}
.cid-uYCsYbvUGj {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uYCsYc5gLO {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uYCsYcEyVs {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #856ee3;
}
.cid-uYCsYcEyVs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYCsYcEyVs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYCsYcEyVs .img-wrapper {
  text-align: center;
}
.cid-uYCsYcEyVs img {
  margin: auto;
  width: 140px;
  padding-bottom: 2rem;
}
.cid-uYCsYcEyVs .row {
  align-items: flex-start;
}
.cid-uYCsYcEyVs .card-wrapper {
  border-radius: 4px;
  background: #856ee3;
}
@media (max-width: 992px) {
  .cid-uYCsYcEyVs .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (min-width: 768px) {
  .cid-uYCsYcEyVs .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uYCsYcEyVs .card-wrapper {
    padding: 1rem;
  }
}
.cid-uYCsYcEyVs .mbr-text,
.cid-uYCsYcEyVs .mbr-section-btn {
  color: #ffffff;
}
.cid-uYCsYdMonu {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uYCsYel3ep {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uYCsYf1AQa {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uYCsYfIpcI {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uYCsYgpL4G {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uYCsYjo44Y {
  background-color: #856ee3;
}
.cid-uYCsYjo44Y .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYCsYjo44Y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYCsYjo44Y .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uYCsYjo44Y .image-wrap img {
    display: block;
    margin: auto;
    width: 90%;
  }
}
.cid-uYCsYjo44Y .mbr-text,
.cid-uYCsYjo44Y .mbr-section-btn {
  color: #ffffff;
}
.cid-uYCsYk9AiS {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #4a2e92;
}
.cid-uYCsYk9AiS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYCsYk9AiS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYCsYk9AiS .mbr-section-title {
  color: #ffffff;
}
.cid-uYCsYk9AiS .mbr-text,
.cid-uYCsYk9AiS .mbr-section-btn {
  color: #ffffff;
}
.cid-uYCsYkU1t7 {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-uYCsYkU1t7 .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-uYCsYlynTg {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-uYCsYlynTg .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uYCsYlynTg .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uYCsYlynTg .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uYCsYlynTg .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uYCsYlynTg .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uYCsYlynTg .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uYCsYlynTg .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uYCsYlynTg .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uYCsYlynTg .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uYCsYlynTg .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uYCsYlynTg .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uYCsYlynTg .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uYCsYlynTg .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uYCsYlynTg .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uYCvHG8ROW {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uYCvHG8ROW nav.navbar {
  position: fixed;
}
.cid-uYCvHG8ROW .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-uYCvHG8ROW .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uYCvHG8ROW .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uYCvHG8ROW .dropdown-item:hover,
.cid-uYCvHG8ROW .dropdown-item:focus {
  background: #4a2e92 !important;
  color: white !important;
}
.cid-uYCvHG8ROW .dropdown-item:hover span {
  color: white;
}
.cid-uYCvHG8ROW .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uYCvHG8ROW .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uYCvHG8ROW .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uYCvHG8ROW .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uYCvHG8ROW .nav-link {
  position: relative;
}
.cid-uYCvHG8ROW .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uYCvHG8ROW .container {
    flex-wrap: nowrap;
  }
}
.cid-uYCvHG8ROW .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uYCvHG8ROW .dropdown-menu,
.cid-uYCvHG8ROW .navbar.opened {
  background: #ffffff !important;
}
.cid-uYCvHG8ROW .nav-item:focus,
.cid-uYCvHG8ROW .nav-link:focus {
  outline: none;
}
.cid-uYCvHG8ROW .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uYCvHG8ROW .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uYCvHG8ROW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uYCvHG8ROW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uYCvHG8ROW .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uYCvHG8ROW .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uYCvHG8ROW .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-uYCvHG8ROW .navbar.opened {
  transition: all 0.3s;
}
.cid-uYCvHG8ROW .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uYCvHG8ROW .navbar .navbar-logo img {
  width: auto;
}
.cid-uYCvHG8ROW .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uYCvHG8ROW .navbar.collapsed {
  justify-content: center;
}
.cid-uYCvHG8ROW .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uYCvHG8ROW .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uYCvHG8ROW .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uYCvHG8ROW .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uYCvHG8ROW .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uYCvHG8ROW .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-uYCvHG8ROW .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uYCvHG8ROW .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uYCvHG8ROW .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uYCvHG8ROW .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uYCvHG8ROW .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uYCvHG8ROW .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uYCvHG8ROW .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uYCvHG8ROW .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-uYCvHG8ROW .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uYCvHG8ROW .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uYCvHG8ROW .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uYCvHG8ROW .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uYCvHG8ROW .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uYCvHG8ROW .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uYCvHG8ROW .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uYCvHG8ROW .navbar.navbar-short {
  min-height: 60px;
}
.cid-uYCvHG8ROW .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uYCvHG8ROW .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uYCvHG8ROW .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uYCvHG8ROW .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uYCvHG8ROW .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uYCvHG8ROW .dropdown-item.active,
.cid-uYCvHG8ROW .dropdown-item:active {
  background-color: transparent;
}
.cid-uYCvHG8ROW .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uYCvHG8ROW .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uYCvHG8ROW .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uYCvHG8ROW .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uYCvHG8ROW .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uYCvHG8ROW .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uYCvHG8ROW ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uYCvHG8ROW .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uYCvHG8ROW button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uYCvHG8ROW button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uYCvHG8ROW button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uYCvHG8ROW button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uYCvHG8ROW button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uYCvHG8ROW button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uYCvHG8ROW nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uYCvHG8ROW nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uYCvHG8ROW nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uYCvHG8ROW nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uYCvHG8ROW .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uYCvHG8ROW a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uYCvHG8ROW .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-uYCvHG8ROW .navbar {
    height: 70px;
  }
  .cid-uYCvHG8ROW .navbar.opened {
    height: auto;
  }
  .cid-uYCvHG8ROW .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uYCvHHqGQ7 {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #856ee3;
}
.cid-uYCvHHqGQ7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYCvHHqGQ7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYCvHHqGQ7 .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uYCvHHqGQ7 .image-wrap img {
    display: block;
    margin: auto;
    width: 70%;
  }
}
.cid-uYCvHHqGQ7 .mbr-text,
.cid-uYCvHHqGQ7 .mbr-section-btn {
  color: #ffffff;
}
.cid-uYCvHIm40a {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uYCvHIm40a .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYCvHIm40a .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYCvHIm40a .mbr-section-title {
  color: #ffffff;
}
.cid-uYCvHJ3zrh {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uYCvHJ3zrh .mbr-section-subtitle {
  text-align: center;
}
.cid-uYCvHJ3zrh .mbr-text {
  color: #232323;
}
.cid-uYCvHJGHBP {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uYCvHKs7zw {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uYCvHL3e8R {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #856ee3;
}
.cid-uYCvHL3e8R .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYCvHL3e8R .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYCvHL3e8R .img-wrapper {
  text-align: center;
}
.cid-uYCvHL3e8R img {
  margin: auto;
  width: 140px;
  padding-bottom: 2rem;
}
.cid-uYCvHL3e8R .row {
  align-items: flex-start;
}
.cid-uYCvHL3e8R .card-wrapper {
  border-radius: 4px;
  background: #856ee3;
}
@media (max-width: 992px) {
  .cid-uYCvHL3e8R .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (min-width: 768px) {
  .cid-uYCvHL3e8R .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uYCvHL3e8R .card-wrapper {
    padding: 1rem;
  }
}
.cid-uYCvHL3e8R .mbr-text,
.cid-uYCvHL3e8R .mbr-section-btn {
  color: #ffffff;
}
.cid-uYCvHM8qqf {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uYCvHMJPBu {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uYCvHNrNwJ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uYCvHO9lP4 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uYCvHOOfan {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uYCxBpgsR0 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uYCxC4F81w {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uYCy0zTayG {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uYCvHPxklA {
  background-color: #856ee3;
}
.cid-uYCvHPxklA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYCvHPxklA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYCvHPxklA .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uYCvHPxklA .image-wrap img {
    display: block;
    margin: auto;
    width: 90%;
  }
}
.cid-uYCvHPxklA .mbr-text,
.cid-uYCvHPxklA .mbr-section-btn {
  color: #ffffff;
}
.cid-uYCvHQp1mh {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #4a2e92;
}
.cid-uYCvHQp1mh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYCvHQp1mh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYCvHQp1mh .mbr-section-title {
  color: #ffffff;
}
.cid-uYCvHQp1mh .mbr-text,
.cid-uYCvHQp1mh .mbr-section-btn {
  color: #ffffff;
}
.cid-uYCvHRb7nn {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-uYCvHRb7nn .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-uYCvHRPPtW {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-uYCvHRPPtW .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uYCvHRPPtW .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uYCvHRPPtW .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uYCvHRPPtW .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uYCvHRPPtW .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uYCvHRPPtW .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uYCvHRPPtW .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uYCvHRPPtW .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uYCvHRPPtW .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uYCvHRPPtW .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uYCvHRPPtW .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uYCvHRPPtW .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uYCvHRPPtW .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uYCvHRPPtW .media-container-row .row-copirayt p {
  width: 100%;
}
