body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Oswald', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #0616c2 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #000000 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #0616c2 !important;
  border-color: #0616c2 !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: #030c6e !important;
  border-color: #030c6e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #030c6e !important;
  border-color: #030c6e !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #0616c2;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #030c6e !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: #0616c2 !important;
  border-color: #0616c2 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #000000;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #0616c2 !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #000000 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #030b5f !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #000000 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #0616c2;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #000000;
}
.mbr-gallery-filter li.active .btn {
  background-color: #0616c2;
  border-color: #0616c2;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #0616c2;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #4e5dfa;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #b3b3b3;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #0616c2 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #0616c2;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #0616c2;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #0616c2;
}
.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: #0616c2;
  border-bottom-color: #0616c2;
}
.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: #0616c2 !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='%230616c2' %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-uqfH8H5jhv {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uqfH8H5jhv nav.navbar {
  position: fixed;
}
.cid-uqfH8H5jhv .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-uqfH8H5jhv .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uqfH8H5jhv .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uqfH8H5jhv .dropdown-item:hover,
.cid-uqfH8H5jhv .dropdown-item:focus {
  background: #0616c2 !important;
  color: white !important;
}
.cid-uqfH8H5jhv .dropdown-item:hover span {
  color: white;
}
.cid-uqfH8H5jhv .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uqfH8H5jhv .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uqfH8H5jhv .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uqfH8H5jhv .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uqfH8H5jhv .nav-link {
  position: relative;
}
.cid-uqfH8H5jhv .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uqfH8H5jhv .container {
    flex-wrap: wrap;
  }
}
.cid-uqfH8H5jhv .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uqfH8H5jhv .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uqfH8H5jhv .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uqfH8H5jhv .dropdown-menu,
.cid-uqfH8H5jhv .navbar.opened {
  background: #ffffff !important;
}
.cid-uqfH8H5jhv .nav-item:focus,
.cid-uqfH8H5jhv .nav-link:focus {
  outline: none;
}
.cid-uqfH8H5jhv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uqfH8H5jhv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uqfH8H5jhv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uqfH8H5jhv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uqfH8H5jhv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uqfH8H5jhv .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uqfH8H5jhv .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-uqfH8H5jhv .navbar.opened {
  transition: all 0.3s;
}
.cid-uqfH8H5jhv .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uqfH8H5jhv .navbar .navbar-logo img {
  width: auto;
}
.cid-uqfH8H5jhv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uqfH8H5jhv .navbar.collapsed {
  justify-content: center;
}
.cid-uqfH8H5jhv .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uqfH8H5jhv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uqfH8H5jhv .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.8rem);
  }
}
.cid-uqfH8H5jhv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uqfH8H5jhv .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uqfH8H5jhv .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-uqfH8H5jhv .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uqfH8H5jhv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uqfH8H5jhv .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uqfH8H5jhv .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uqfH8H5jhv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uqfH8H5jhv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uqfH8H5jhv .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uqfH8H5jhv .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-uqfH8H5jhv .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uqfH8H5jhv .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uqfH8H5jhv .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uqfH8H5jhv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uqfH8H5jhv .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uqfH8H5jhv .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uqfH8H5jhv .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uqfH8H5jhv .navbar.navbar-short {
  min-height: 60px;
}
.cid-uqfH8H5jhv .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uqfH8H5jhv .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uqfH8H5jhv .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-uqfH8H5jhv .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uqfH8H5jhv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uqfH8H5jhv .dropdown-item.active,
.cid-uqfH8H5jhv .dropdown-item:active {
  background-color: transparent;
}
.cid-uqfH8H5jhv .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uqfH8H5jhv .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uqfH8H5jhv .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uqfH8H5jhv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uqfH8H5jhv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uqfH8H5jhv .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uqfH8H5jhv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uqfH8H5jhv .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uqfH8H5jhv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uqfH8H5jhv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uqfH8H5jhv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uqfH8H5jhv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uqfH8H5jhv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uqfH8H5jhv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uqfH8H5jhv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uqfH8H5jhv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uqfH8H5jhv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uqfH8H5jhv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uqfH8H5jhv .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uqfH8H5jhv a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uqfH8H5jhv .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-uqfH8H5jhv .navbar {
    height: 70px;
  }
  .cid-uqfH8H5jhv .navbar.opened {
    height: auto;
  }
  .cid-uqfH8H5jhv .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uqibI2GdCU {
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uqibI2GdCU .decor-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 52%;
  height: 95%;
  border-radius: 0 85% 0 0;
  background-color: #d2bfe3;
  pointer-events: none;
}
@media (max-width: 992px) {
  .cid-uqibI2GdCU .decor-wrap {
    width: 60%;
    height: 50%;
    border-radius: 0 50% 0 0;
  }
}
.cid-uqibI2GdCU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqibI2GdCU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqibI2GdCU .row {
  position: relative;
  z-index: 1;
}
.cid-uqibI2GdCU .title-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-uqibI2GdCU .title-wrapper .mbr-section-title {
    margin-bottom: 46px;
  }
}
.cid-uqibI2GdCU .image-wrapper {
  margin-right: 18px;
}
@media (max-width: 992px) {
  .cid-uqibI2GdCU .image-wrapper {
    margin-right: 0;
    margin-bottom: 46px;
  }
}
.cid-uqibI2GdCU .image-wrapper img {
  height: 620px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uqibI2GdCU .image-wrapper img {
    height: 350px;
  }
}
.cid-uqibI2GdCU .content-wrapper {
  padding-top: 64px;
}
@media (max-width: 992px) {
  .cid-uqibI2GdCU .content-wrapper {
    padding-top: 22px;
  }
}
.cid-uqibI2GdCU .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 46px;
  display: inline-block;
  width: 55%;
}
@media (max-width: 992px) {
  .cid-uqibI2GdCU .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 22px;
  }
}
.cid-uqibI2GdCU .content-wrapper .desc-wrapper {
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uqibI2GdCU .content-wrapper .desc-wrapper {
    display: block;
  }
}
.cid-uqibI2GdCU .content-wrapper .desc-wrapper .mbr-desc {
  width: 50%;
  margin-right: 20px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uqibI2GdCU .content-wrapper .desc-wrapper .mbr-desc {
    margin-right: 0;
    width: 100%;
    margin-bottom: 12px;
  }
}
.cid-uqibI2GdCU .content-wrapper .desc-wrapper .mbr-section-btn {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uqibI2GdCU .content-wrapper .desc-wrapper .mbr-section-btn {
    width: 100%;
  }
}
.cid-uqibI2GdCU .content-wrapper .desc-wrapper .mbr-section-btn .btn {
  padding: 29px 64px;
}
@media (max-width: 1200px) {
  .cid-uqibI2GdCU .content-wrapper .desc-wrapper .mbr-section-btn .btn {
    padding: 20px 32px;
  }
}
.cid-uqibI2GdCU .mbr-section-title {
  color: #212529;
  text-align: center;
}
.cid-uqibI2GdCU .mbr-text {
  color: #51565c;
}
.cid-uqibI2GdCU .mbr-desc {
  color: #51565c;
}
.cid-uqibI2GdCU .mbr-text,
.cid-uqibI2GdCU .text-wrapper {
  color: #000000;
}
.cid-upH2iMkSbI {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-upH2iMkSbI .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-upH2iMkSbI .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-upH2iMkSbI .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000000;
  background-color: #d2bfe3;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-upH2iMkSbI .mbr-section-title {
  text-align: center;
}
.cid-upAihnnL54 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
  background-color: #d2bfe3;
}
.cid-upAihnnL54 .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #000000;
}
.cid-upAihnnL54 .mbr-fallback-image.disabled {
  display: none;
}
.cid-upAihnnL54 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upAihnnL54 .content-wrap {
  align-items: center;
  justify-content: space-between;
}
.cid-upAihnnL54 .content-wrap .card {
  justify-content: space-between;
}
.cid-upAihnnL54 .content-wrapper {
  padding: 0 24px;
}
@media (max-width: 992px) {
  .cid-upAihnnL54 .content-wrapper {
    padding: 0;
  }
}
.cid-upAihnnL54 .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-upAihnnL54 .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  margin-bottom: 0;
  padding: 10px;
  -webkit-text-stroke-color: #150764;
  box-shadow: 4px 4px 0 0 #150764;
  border: 2px solid #150764;
  background-color: #4188ff;
  -webkit-text-stroke-width: .15rem;
}
@media (max-width: 992px) {
  .cid-upAihnnL54 .content-wrapper .desc-wrapper .mbr-desc {
    -webkit-text-stroke-width: .12rem;
  }
}
.cid-upAihnnL54 .mbr-section-title {
  color: #150764;
  text-align: center;
}
.cid-upAihnnL54 .mbr-desc,
.cid-upAihnnL54 .desc-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-upAihnnL54 .mbr-section-title,
.cid-upAihnnL54 .mbr-section-btn {
  color: #000000;
}
.cid-uqibWIIoXm {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uqibWIIoXm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqibWIIoXm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqibWIIoXm .content-wrapper {
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uqibWIIoXm .content-wrapper {
    display: block;
    padding: 0;
  }
}
.cid-uqibWIIoXm .content-wrapper .title-wrapper {
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uqibWIIoXm .content-wrapper .title-wrapper {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-uqibWIIoXm .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uqibWIIoXm .content-wrapper .title-wrapper .mbr-section-title {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-uqibWIIoXm .content-wrapper .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uqibWIIoXm .content-wrapper .title-wrapper .mbr-section-btn {
  margin-top: 22px;
}
@media (max-width: 992px) {
  .cid-uqibWIIoXm .content-wrapper .title-wrapper .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-uqibWIIoXm .content-wrapper .image-wrap {
  width: 40%;
  border: 3px solid #050f0f;
  box-shadow: 4px 4px 0 0 #050f0f;
  background-color: #ffffff;
  padding: 60px 20px;
  transform: rotate(3deg);
}
@media (max-width: 992px) {
  .cid-uqibWIIoXm .content-wrapper .image-wrap {
    padding: 32px 16px;
    width: 100%;
    transform: rotate(0);
  }
}
.cid-uqibWIIoXm .content-wrapper .image-wrap img {
  height: 550px;
  width: 100%;
  object-fit: cover;
}
.cid-uqibWIIoXm .mbr-section-title {
  color: #050f0f;
}
.cid-uqibWIIoXm .mbr-text {
  color: #050f0f;
}
.cid-uqic4TlwhG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uqic4TlwhG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqic4TlwhG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uqic4TlwhG .container {
    padding: 0 16px;
  }
}
.cid-uqic4TlwhG .card {
  justify-content: center;
}
.cid-uqic4TlwhG .title-wrapper .mbr-section-title {
  display: inline-flex;
  margin-bottom: 0;
  padding: 18px 24px;
  border-radius: 16px !important;
  box-shadow: 6px 8px 0 0 #000000;
  background-color: #d2bfe3;
  transform: rotate(-4deg);
}
@media (max-width: 992px) {
  .cid-uqic4TlwhG .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uqic4TlwhG .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
.cid-uqic4TlwhG .text-wrapper .mbr-desc {
  margin-top: 24px;
  margin-bottom: 0;
}
.cid-uqic4TlwhG .mbr-section-title {
  color: #000000;
}
.cid-uqic4TlwhG .mbr-text {
  color: #000000;
}
.cid-uqic4TlwhG .mbr-desc {
  color: #000000;
}
.cid-upAiotcool {
  padding-top: 0rem;
  padding-bottom: 0rem;
  position: relative;
  overflow: hidden;
  background-color: #d2bfe3;
}
.cid-upAiotcool .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-upAiotcool .mbr-fallback-image.disabled {
  display: none;
}
.cid-upAiotcool .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upAiotcool .content-wrap {
  margin: 0;
}
.cid-upAiotcool .content-wrap .card {
  padding: 0;
}
.cid-upAiotcool .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  overflow: hidden;
  background-color: #000000;
  padding: 40px 32px;
  border-right: 1px solid #150764;
  border-right: none;
  border-left: 1px solid #150764;
}
@media (max-width: 1640px) {
  .cid-upAiotcool .image-wrapper {
    padding: 40px 24px;
  }
}
@media (max-width: 992px) {
  .cid-upAiotcool .image-wrapper {
    padding: 40px 0;
  }
}
@media (max-width: 992px) {
  .cid-upAiotcool .image-wrapper {
    border-right: none;
    border-bottom: 1px solid #150764;
  }
}
@media (max-width: 992px) {
  .cid-upAiotcool .image-wrapper {
    border-left: none;
    border-bottom: 1px solid #150764;
  }
}
.cid-upAiotcool .image-wrapper img {
  height: 620px;
  width: 620px;
  object-fit: cover;
  border-radius: 100% !important;
}
@media (max-width: 1640px) {
  .cid-upAiotcool .image-wrapper img {
    height: 550px;
    width: 550px;
  }
}
@media (max-width: 1200px) {
  .cid-upAiotcool .image-wrapper img {
    height: 350px;
    width: 350px;
  }
}
@media (max-width: 768px) {
  .cid-upAiotcool .image-wrapper img {
    height: 250px;
    width: 250px;
  }
}
.cid-upAiotcool .content-wrapper {
  padding: 40px 72px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
@media (max-width: 1640px) {
  .cid-upAiotcool .content-wrapper {
    padding: 40px 24px;
  }
}
@media (max-width: 992px) {
  .cid-upAiotcool .content-wrapper {
    padding: 40px 0;
  }
}
.cid-upAiotcool .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-upAiotcool .content-wrapper .text-wrapper .text-wrap .mbr-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-upAiotcool .content-wrapper .text-wrapper .text-wrap .mbr-text {
    width: 100%;
    margin-bottom: 16px;
  }
}
.cid-upAiotcool .mbr-section-title {
  color: #150764;
}
.cid-upAiotcool .mbr-text {
  color: #150764;
}
.cid-upAiotcool .mbr-section-title,
.cid-upAiotcool .mbr-section-btn {
  color: #000000;
}
.cid-upAiotcool .mbr-text,
.cid-upAiotcool .text-wrap {
  color: #000000;
}
.cid-upH36VsdoJ {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-upH36VsdoJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-upH36VsdoJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upJ3FqRRiN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d2bfe3;
}
.cid-upJ3FqRRiN .mbr-fallback-image.disabled {
  display: none;
}
.cid-upJ3FqRRiN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upJ3FqRRiN .row {
  justify-content: center;
}
.cid-upJ3FqRRiN .content-wrapper {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-upJ3FqRRiN .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-upJ3FqRRiN .content-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-upJ3FqRRiN .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-upJ3FqRRiN .item {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-upJ3FqRRiN .item {
    margin-bottom: 35px;
  }
}
.cid-upJ3FqRRiN .item .item-wrapper .card-box .icon-wrapper {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upJ3FqRRiN .item .item-wrapper .card-box .icon-wrapper {
    margin-bottom: 15px;
  }
}
.cid-upJ3FqRRiN .item .item-wrapper .card-box .icon-wrapper .mbr-iconfont {
  width: 95px;
  height: 95px;
  border-radius: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #000000;
  color: #ffffff;
  font-size: 60px;
}
.cid-upJ3FqRRiN .item .item-wrapper .card-box .item-title {
  margin-bottom: 10px;
}
.cid-upJ3FqRRiN .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-upJ3FqRRiN .border-wrapper {
  width: 100%;
  height: 1px;
  background-color: #fafafa;
}
.cid-upJ3FqRRiN .mbr-section-title {
  color: #fafafa;
}
.cid-upJ3FqRRiN .mbr-text {
  color: #000000;
}
.cid-upJ3FqRRiN .item-title {
  color: #000000;
}
.cid-upJ3FqRRiN .item-text {
  color: #000000;
}
.cid-uqicAJiBpB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uqicAJiBpB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqicAJiBpB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqicAJiBpB .container-fluid {
  padding: 0 56px;
}
@media (max-width: 992px) {
  .cid-uqicAJiBpB .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 992px) {
  .cid-uqicAJiBpB .container {
    padding: 0 26px;
  }
}
.cid-uqicAJiBpB .row {
  justify-content: center;
}
.cid-uqicAJiBpB .content-wrapper {
  display: flex;
  align-items: center;
  padding: 200px 100px 200px 60px;
  background-color: #d2bfe3;
  border-radius: 20px;
}
@media (max-width: 1440px) {
  .cid-uqicAJiBpB .content-wrapper {
    padding: 100px 60px;
  }
}
@media (max-width: 992px) {
  .cid-uqicAJiBpB .content-wrapper {
    padding: 100px 20px;
    display: block;
  }
}
.cid-uqicAJiBpB .content-wrapper .title-wrapper {
  width: 50%;
  padding-right: 45px;
}
@media (max-width: 992px) {
  .cid-uqicAJiBpB .content-wrapper .title-wrapper {
    width: 100%;
    padding-right: 0;
    margin-bottom: 40px;
  }
}
.cid-uqicAJiBpB .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-uqicAJiBpB .content-wrapper .title-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-uqicAJiBpB .content-wrapper .text-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uqicAJiBpB .content-wrapper .text-wrapper {
    width: 100%;
  }
}
.cid-uqicAJiBpB .content-wrapper .text-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-uqicAJiBpB .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-uqicAJiBpB .content-wrapper .text-wrapper .link-wrapper:hover .mbr-link,
.cid-uqicAJiBpB .content-wrapper .text-wrapper .link-wrapper:focus .mbr-link {
  color: #000000;
}
.cid-uqicAJiBpB .content-wrapper .text-wrapper .link-wrapper .mbr-link {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.cid-uqicAJiBpB .mbr-section-title {
  color: #000000;
}
.cid-uqicAJiBpB .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uqicAJiBpB .mbr-desc {
  color: #ffffff;
}
.cid-uqicAJiBpB .mbr-text {
  color: #000000;
}
.cid-uqicAJiBpB .mbr-link {
  color: #ffffff;
}
.cid-uqfOQivvx6 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #d2bfe3;
}
.cid-uqfOQivvx6 .mbr-iconfont {
  font-size: 1.5rem !important;
  font-family: 'Moririse2' !important;
  color: white;
  transition: all 0.3s;
  transform: rotate(45deg);
  background: #d2bfe3;
  border-radius: 50%;
  padding: 1.5rem;
}
@media (max-width: 767px) {
  .cid-uqfOQivvx6 .mbr-iconfont {
    padding: 1rem;
    font-size: 1.2rem !important;
  }
}
.cid-uqfOQivvx6 .panel-group {
  border: none;
}
.cid-uqfOQivvx6 .card-header {
  padding: 1.2rem 0.5rem;
}
@media (max-width: 767px) {
  .cid-uqfOQivvx6 .card-header {
    padding: 1rem 0rem;
  }
}
.cid-uqfOQivvx6 .panel-body {
  padding: 0 0.5rem;
  padding-bottom: 1rem;
}
@media (max-width: 767px) {
  .cid-uqfOQivvx6 .panel-body {
    padding: 0rem;
    padding-bottom: 1rem;
  }
}
.cid-uqfOQivvx6 .content {
  margin: 5rem auto;
}
.cid-uqfOQivvx6 .img-col {
  padding: 0;
}
.cid-uqfOQivvx6 .img-item {
  height: 100%;
}
.cid-uqfOQivvx6 img {
  height: 100%;
  object-fit: cover;
}
.cid-uqfOQivvx6 .collapsed span {
  transform: rotate(0deg);
}
.cid-uqfOQivvx6 .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uqfOQivvx6 p {
  margin-bottom: 0.3rem;
}
.cid-uqfOQivvx6 .panel-title-edit {
  color: #1b1818;
}
.cid-uqfOQivvx6 .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
  border: 0;
  border-radius: 2rem;
}
.cid-uqfOQivvx6 .card {
  background: #fafafa;
  padding: 0rem 2rem;
  border-radius: 2rem;
}
@media (max-width: 767px) {
  .cid-uqfOQivvx6 .card {
    padding: 1rem;
  }
}
.cid-uqfOQivvx6 .panel-text {
  color: #1b1818;
}
.cid-uqfOQivvx6 H3 {
  text-align: center;
  color: #000000;
}
.cid-uqfOQivvx6 H4 {
  text-align: center;
  color: #ffffff;
}
.cid-uqicXnOYka {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #f4f4f6;
}
.cid-uqicXnOYka .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqicXnOYka .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqicXnOYka .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uqicXnOYka .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uqicXnOYka .container {
    padding: 0 24px;
  }
}
.cid-uqicXnOYka .row .card {
  padding: 0 12px;
  border-radius: 0 !important;
}
.cid-uqicXnOYka .image-wrapper {
  height: 100%;
}
.cid-uqicXnOYka .image-wrapper img {
  height: 100%;
  object-fit: cover;
  border-radius: .75rem !important;
}
@media (max-width: 992px) {
  .cid-uqicXnOYka .image-wrapper img {
    height: 350px;
  }
}
.cid-uqicXnOYka .content-wrapper {
  display: flex;
  align-items: center;
  background-color: #d2bfe3;
  border-radius: .75rem;
  padding: 48px;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uqicXnOYka .content-wrapper {
    padding: 24px;
  }
}
.cid-uqicXnOYka .content-wrapper .content-wrap {
  width: 100%;
}
.cid-uqicXnOYka .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uqicXnOYka .content-wrapper .content-wrap .mbr-text {
  margin-bottom: 16px;
}
.cid-uqicXnOYka .content-wrapper .content-wrap .mbr-section-btn .btn::before {
  background-image: linear-gradient(90deg, #fb8fc9 0%, transparent 100%);
}
.cid-uqicXnOYka .content-wrapper .content-wrap .mbr-section-btn .btn:hover,
.cid-uqicXnOYka .content-wrapper .content-wrap .mbr-section-btn .btn:focus {
  box-shadow: inset 250px 10px 5px #7f89e9 !important;
  border-color: #7f89e9 !important;
}
.cid-uqicXnOYka .mbr-section-title {
  color: #141414;
}
.cid-uqicXnOYka .mbr-text {
  color: #141414;
}
.cid-upAN18eCRf {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d2bfe3;
}
.cid-upAN18eCRf .mbr-fallback-image.disabled {
  display: none;
}
.cid-upAN18eCRf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upAN18eCRf .content-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  padding: 80px 60px;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .cid-upAN18eCRf .content-wrapper {
    gap: 16px;
  }
}
@media (max-width: 1199px) {
  .cid-upAN18eCRf .content-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 992px) {
  .cid-upAN18eCRf .content-wrapper {
    display: block;
    padding: 32px 16px;
  }
}
.cid-upAN18eCRf .content-wrapper .image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-upAN18eCRf .content-wrapper .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .5;
}
@media (max-width: 992px) {
  .cid-upAN18eCRf .content-wrapper .item {
    margin-bottom: 16px;
  }
  .cid-upAN18eCRf .content-wrapper .item:last-child {
    margin-bottom: 0;
  }
}
.cid-upAN18eCRf .content-wrapper .item .item-wrapper {
  position: relative;
  height: 100%;
  border: 3px solid #050f0f;
  box-shadow: 4px 4px 0 0 #050f0f;
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background-color: #fafafa;
}
.cid-upAN18eCRf .content-wrapper .item .item-wrapper:hover,
.cid-upAN18eCRf .content-wrapper .item .item-wrapper:focus {
  transform: translate(0.2rem, 0.2rem);
  box-shadow: none;
}
.cid-upAN18eCRf .content-wrapper .item .item-wrapper .item-content .item-img {
  border-bottom: 3px solid #050f0f;
}
.cid-upAN18eCRf .content-wrapper .item .item-wrapper .item-content .item-img img {
  height: 390px;
  width: 100%;
  object-fit: cover;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-upAN18eCRf .content-wrapper .item .item-wrapper .item-content .item-img img {
    height: 350px;
  }
}
.cid-upAN18eCRf .content-wrapper .item .item-wrapper .item-content .item-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: .8;
}
.cid-upAN18eCRf .content-wrapper .item .item-wrapper .item-content .text-wrapper {
  padding: 32px;
}
@media (max-width: 1440px) {
  .cid-upAN18eCRf .content-wrapper .item .item-wrapper .item-content .text-wrapper {
    padding: 32px 24px;
  }
}
@media (max-width: 992px) {
  .cid-upAN18eCRf .content-wrapper .item .item-wrapper .item-content .text-wrapper {
    padding: 32px 16px;
  }
}
.cid-upAN18eCRf .content-wrapper .item .item-wrapper .item-content .text-wrapper .item-title {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-upAN18eCRf .content-wrapper .item .item-wrapper .item-content .text-wrapper .item-title {
    margin-bottom: 24px;
  }
}
.cid-upAN18eCRf .content-wrapper .item .item-wrapper .item-content .text-wrapper .item-text {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-upAN18eCRf .content-wrapper .item .item-wrapper .item-content .text-wrapper .item-text {
    margin-bottom: 0;
  }
}
.cid-upAN18eCRf .content-wrapper .item .item-wrapper .tags-wrapper {
  padding: 0 32px 24px 32px;
}
@media (max-width: 1440px) {
  .cid-upAN18eCRf .content-wrapper .item .item-wrapper .tags-wrapper {
    padding: 0 24px 24px 24px;
  }
}
@media (max-width: 992px) {
  .cid-upAN18eCRf .content-wrapper .item .item-wrapper .tags-wrapper {
    padding: 0 16px 24px 16px;
  }
}
.cid-upAN18eCRf .content-wrapper .item .item-wrapper .tags-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-upAN18eCRf .content-wrapper .item .item-wrapper .tags-wrapper .list .item-wrap {
  display: inline-flex;
  padding: 11px 20px;
  margin: 0 8px 8px 0;
  background-color: #d3f2ff;
}
.cid-upAN18eCRf .content-wrapper .item .item-wrapper .tags-wrapper .list .item-wrap:nth-child(2n) {
  background-color: #bafca2;
}
.cid-upAN18eCRf .content-wrapper .item .item-wrapper .tags-wrapper .list .item-wrap:nth-child(3n) {
  background-color: #fdfd96;
}
.cid-upAN18eCRf .item-title {
  color: #050f0f;
}
.cid-upAN18eCRf .item-text {
  color: #050f0f;
}
.cid-upAN18eCRf .list {
  color: #050f0f;
}
.cid-upG140q9db {
  padding-top: 60px;
  padding-bottom: 60px;
  background: #fafafa;
}
.cid-upG140q9db .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-upG140q9db .video-block {
  margin: auto;
}
@media (max-width: 767px) {
  .cid-upG140q9db .video-block {
    width: 100% !important;
  }
}
.cid-upG140q9db .mbr-section-title {
  color: #000000;
}
.cid-upG1GtSgFR {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #d2bfe3;
}
.cid-upG1GtSgFR blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #d2bfe3;
}
.cid-upG1GtSgFR .mbr-section-title {
  color: #000000;
}
.cid-upG1GtSgFR .mbr-text {
  color: #000000;
}
.cid-upAjEeMrmw {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-upAjEeMrmw .mbr-fallback-image.disabled {
  display: none;
}
.cid-upAjEeMrmw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upAjEeMrmw .content-wrapper {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-upAjEeMrmw .content-wrapper {
    padding: 0;
  }
}
.cid-upAjEeMrmw .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-upAjEeMrmw .content-wrapper .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-upAjEeMrmw .content-wrapper .google-map {
  border: 3px solid #050f0f;
  box-shadow: 4px 4px 0 0 #050f0f;
}
.cid-upAjEeMrmw .content-wrapper .google-map iframe {
  height: 600px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-upAjEeMrmw .content-wrapper .google-map iframe {
    height: 350px;
  }
}
.cid-upAjEeMrmw .mbr-section-title {
  color: #050f0f;
}
.cid-upAjEeMrmw .mbr-section-title,
.cid-upAjEeMrmw .mbr-section-btn {
  text-align: center;
}
.cid-upAjxif2Ho {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #d2bfe3;
}
.cid-upAjxif2Ho .mbr-fallback-image.disabled {
  display: none;
}
.cid-upAjxif2Ho .item-wrapper {
  display: flex;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-upAjxif2Ho .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-upAjxif2Ho .item-wrapper:hover .iconfont-wrapper:after {
  width: 70px;
  height: 70px;
}
.cid-upAjxif2Ho a {
  font-weight: 600;
}
.cid-upAjxif2Ho a:hover {
  background: none !important;
}
@media (min-width: 1400px) {
  .cid-upAjxif2Ho .col-lg-3,
  .cid-upAjxif2Ho .col-xl-3 {
    max-width: 20%;
  }
}
@media (max-width: 1200px) {
  .cid-upAjxif2Ho .col-lg-12 {
    min-width: 100% !important;
  }
}
.cid-upAjxif2Ho .card-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-upAjxif2Ho h5 {
  margin: 0;
}
.cid-upAjxif2Ho .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upAjxif2Ho .iconfont-wrapper {
  position: relative;
}
.cid-upAjxif2Ho .mbr-iconfont {
  display: flex;
  padding-right: 1rem;
  font-size: 2rem;
  color: #000000;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 2;
  position: relative;
}
.cid-upAjxif2Ho .socicon {
  font-size: 1rem;
  width: 30px;
  height: 30px;
}
.cid-upAjxif2Ho .sociconfont-wrapper {
  display: flex;
}
.cid-upAjxif2Ho .card-title,
.cid-upAjxif2Ho .iconfont-wrapper {
  color: #000000;
}
.cid-upAjxif2Ho .card-text {
  color: #000000;
}
.cid-upAjxif2Ho .mbr-section-title {
  color: #000000;
}
.cid-upAjxif2Ho .main-title,
.cid-upAjxif2Ho .iconfont-wrapper {
  text-align: left;
}
.cid-upAR4uwR3u {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #d2bfe3;
  overflow: hidden;
}
.cid-upAR4uwR3u .media-container-row .mbr-text {
  color: #000000;
}
.cid-upH62VXqNp {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d2bfe3;
}
.cid-upH62VXqNp .mbr-fallback-image.disabled {
  display: none;
}
.cid-upH62VXqNp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upH62VXqNp .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-upH62VXqNp .items-wrapper .card {
  padding: 0 32px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-upH62VXqNp .title-wrapper {
    margin-bottom: 48px;
  }
}
.cid-upH62VXqNp .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-upH62VXqNp .title-wrapper .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-upH62VXqNp .title-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-upH62VXqNp .image-wrapper img {
  height: 480px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-upH62VXqNp .image-wrapper img {
    height: 350px;
  }
}
.cid-upH62VXqNp .mbr-section-title {
  color: #ffffff;
}
.cid-upH62VXqNp .mbr-text,
.cid-upH62VXqNp .text-wrapper {
  color: #000000;
}
.cid-upH62VXqNp .mbr-section-title,
.cid-upH62VXqNp .mbr-section-btn {
  color: #000000;
}
.cid-upD7xbhdev {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-upD7xbhdev .mbr-fallback-image.disabled {
  display: none;
}
.cid-upD7xbhdev .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upD7xbhdev .card-wrapper {
  background: #d2bfe3;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-upD7xbhdev .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-upD7xbhdev .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-upD7xbhdev .card-wrapper {
    padding: 4rem;
  }
}
.cid-upD7xbhdev .mbr-text,
.cid-upD7xbhdev .mbr-section-btn {
  color: #000000;
}
.cid-upD8RDvkZv {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #353535;
}
.cid-upD8RDvkZv .mbr-fallback-image.disabled {
  display: none;
}
.cid-upD8RDvkZv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upD8RDvkZv .content-wrapper {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-upD8RDvkZv .content-wrapper {
    padding: 0;
  }
}
.cid-upD8RDvkZv .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-upD8RDvkZv .content-wrapper .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-upD8RDvkZv .content-wrapper .google-map {
  border: 3px solid #050f0f;
  box-shadow: 4px 4px 0 0 #050f0f;
}
.cid-upD8RDvkZv .content-wrapper .google-map iframe {
  height: 600px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-upD8RDvkZv .content-wrapper .google-map iframe {
    height: 350px;
  }
}
.cid-upD8RDvkZv .mbr-section-title {
  color: #050f0f;
}
.cid-upD8RDvkZv .mbr-section-title,
.cid-upD8RDvkZv .mbr-section-btn {
  color: #fafafa;
}
.cid-uqfWzNA6fm {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #d2bfe3;
}
.cid-uqfWzNA6fm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqfWzNA6fm .item-wrapper {
  display: flex;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-uqfWzNA6fm .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uqfWzNA6fm .item-wrapper:hover .iconfont-wrapper:after {
  width: 70px;
  height: 70px;
}
.cid-uqfWzNA6fm a {
  font-weight: 600;
}
.cid-uqfWzNA6fm a:hover {
  background: none !important;
}
@media (min-width: 1400px) {
  .cid-uqfWzNA6fm .col-lg-3,
  .cid-uqfWzNA6fm .col-xl-3 {
    max-width: 20%;
  }
}
@media (max-width: 1200px) {
  .cid-uqfWzNA6fm .col-lg-12 {
    min-width: 100% !important;
  }
}
.cid-uqfWzNA6fm .card-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-uqfWzNA6fm h5 {
  margin: 0;
}
.cid-uqfWzNA6fm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqfWzNA6fm .iconfont-wrapper {
  position: relative;
}
.cid-uqfWzNA6fm .mbr-iconfont {
  display: flex;
  padding-right: 1rem;
  font-size: 2rem;
  color: #000000;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 2;
  position: relative;
}
.cid-uqfWzNA6fm .socicon {
  font-size: 1rem;
  width: 30px;
  height: 30px;
}
.cid-uqfWzNA6fm .sociconfont-wrapper {
  display: flex;
}
.cid-uqfWzNA6fm .card-title,
.cid-uqfWzNA6fm .iconfont-wrapper {
  color: #000000;
}
.cid-uqfWzNA6fm .card-text {
  color: #000000;
}
.cid-uqfWzNA6fm .mbr-section-title {
  color: #000000;
}
.cid-uqfWzNA6fm .main-title,
.cid-uqfWzNA6fm .iconfont-wrapper {
  text-align: left;
}
.cid-upAR4uwR3u {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #d2bfe3;
  overflow: hidden;
}
.cid-upAR4uwR3u .media-container-row .mbr-text {
  color: #000000;
}
.cid-uqfH8H5jhv {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uqfH8H5jhv nav.navbar {
  position: fixed;
}
.cid-uqfH8H5jhv .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-uqfH8H5jhv .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uqfH8H5jhv .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uqfH8H5jhv .dropdown-item:hover,
.cid-uqfH8H5jhv .dropdown-item:focus {
  background: #0616c2 !important;
  color: white !important;
}
.cid-uqfH8H5jhv .dropdown-item:hover span {
  color: white;
}
.cid-uqfH8H5jhv .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uqfH8H5jhv .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uqfH8H5jhv .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uqfH8H5jhv .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uqfH8H5jhv .nav-link {
  position: relative;
}
.cid-uqfH8H5jhv .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uqfH8H5jhv .container {
    flex-wrap: wrap;
  }
}
.cid-uqfH8H5jhv .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uqfH8H5jhv .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uqfH8H5jhv .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uqfH8H5jhv .dropdown-menu,
.cid-uqfH8H5jhv .navbar.opened {
  background: #ffffff !important;
}
.cid-uqfH8H5jhv .nav-item:focus,
.cid-uqfH8H5jhv .nav-link:focus {
  outline: none;
}
.cid-uqfH8H5jhv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uqfH8H5jhv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uqfH8H5jhv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uqfH8H5jhv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uqfH8H5jhv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uqfH8H5jhv .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uqfH8H5jhv .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-uqfH8H5jhv .navbar.opened {
  transition: all 0.3s;
}
.cid-uqfH8H5jhv .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uqfH8H5jhv .navbar .navbar-logo img {
  width: auto;
}
.cid-uqfH8H5jhv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uqfH8H5jhv .navbar.collapsed {
  justify-content: center;
}
.cid-uqfH8H5jhv .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uqfH8H5jhv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uqfH8H5jhv .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.8rem);
  }
}
.cid-uqfH8H5jhv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uqfH8H5jhv .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uqfH8H5jhv .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-uqfH8H5jhv .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uqfH8H5jhv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uqfH8H5jhv .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uqfH8H5jhv .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uqfH8H5jhv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uqfH8H5jhv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uqfH8H5jhv .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uqfH8H5jhv .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-uqfH8H5jhv .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uqfH8H5jhv .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uqfH8H5jhv .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uqfH8H5jhv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uqfH8H5jhv .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uqfH8H5jhv .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uqfH8H5jhv .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uqfH8H5jhv .navbar.navbar-short {
  min-height: 60px;
}
.cid-uqfH8H5jhv .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uqfH8H5jhv .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uqfH8H5jhv .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-uqfH8H5jhv .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uqfH8H5jhv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uqfH8H5jhv .dropdown-item.active,
.cid-uqfH8H5jhv .dropdown-item:active {
  background-color: transparent;
}
.cid-uqfH8H5jhv .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uqfH8H5jhv .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uqfH8H5jhv .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uqfH8H5jhv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uqfH8H5jhv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uqfH8H5jhv .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uqfH8H5jhv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uqfH8H5jhv .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uqfH8H5jhv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uqfH8H5jhv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uqfH8H5jhv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uqfH8H5jhv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uqfH8H5jhv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uqfH8H5jhv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uqfH8H5jhv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uqfH8H5jhv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uqfH8H5jhv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uqfH8H5jhv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uqfH8H5jhv .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uqfH8H5jhv a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uqfH8H5jhv .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-uqfH8H5jhv .navbar {
    height: 70px;
  }
  .cid-uqfH8H5jhv .navbar.opened {
    height: auto;
  }
  .cid-uqfH8H5jhv .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-upH6N8wBhX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d2bfe3;
}
.cid-upH6N8wBhX .mbr-fallback-image.disabled {
  display: none;
}
.cid-upH6N8wBhX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upH6N8wBhX .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-upH6N8wBhX .items-wrapper .card {
  padding: 0 32px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-upH6N8wBhX .title-wrapper {
    margin-bottom: 48px;
  }
}
.cid-upH6N8wBhX .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-upH6N8wBhX .title-wrapper .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-upH6N8wBhX .title-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-upH6N8wBhX .image-wrapper img {
  height: 480px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-upH6N8wBhX .image-wrapper img {
    height: 350px;
  }
}
.cid-upH6N8wBhX .mbr-section-title {
  color: #ffffff;
}
.cid-upH6N8wBhX .mbr-text,
.cid-upH6N8wBhX .text-wrapper {
  color: #000000;
}
.cid-upH6N8wBhX .mbr-section-title,
.cid-upH6N8wBhX .mbr-section-btn {
  color: #000000;
}
.cid-upG8gAHV9N {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-upG8gAHV9N .mbr-fallback-image.disabled {
  display: none;
}
.cid-upG8gAHV9N .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upG8gAHV9N .card-wrapper {
  background: #d2bfe3;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-upG8gAHV9N .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-upG8gAHV9N .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-upG8gAHV9N .card-wrapper {
    padding: 4rem;
  }
}
.cid-upG8gAHV9N .mbr-text,
.cid-upG8gAHV9N .mbr-section-btn {
  color: #000000;
}
.cid-upG8gB0hgX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #353535;
}
.cid-upG8gB0hgX .mbr-fallback-image.disabled {
  display: none;
}
.cid-upG8gB0hgX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upG8gB0hgX .content-wrapper {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-upG8gB0hgX .content-wrapper {
    padding: 0;
  }
}
.cid-upG8gB0hgX .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-upG8gB0hgX .content-wrapper .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-upG8gB0hgX .content-wrapper .google-map {
  border: 3px solid #050f0f;
  box-shadow: 4px 4px 0 0 #050f0f;
}
.cid-upG8gB0hgX .content-wrapper .google-map iframe {
  height: 600px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-upG8gB0hgX .content-wrapper .google-map iframe {
    height: 350px;
  }
}
.cid-upG8gB0hgX .mbr-section-title {
  color: #050f0f;
}
.cid-upG8gB0hgX .mbr-section-title,
.cid-upG8gB0hgX .mbr-section-btn {
  color: #fafafa;
}
.cid-uqfWPwROo0 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #d2bfe3;
}
.cid-uqfWPwROo0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqfWPwROo0 .item-wrapper {
  display: flex;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-uqfWPwROo0 .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uqfWPwROo0 .item-wrapper:hover .iconfont-wrapper:after {
  width: 70px;
  height: 70px;
}
.cid-uqfWPwROo0 a {
  font-weight: 600;
}
.cid-uqfWPwROo0 a:hover {
  background: none !important;
}
@media (min-width: 1400px) {
  .cid-uqfWPwROo0 .col-lg-3,
  .cid-uqfWPwROo0 .col-xl-3 {
    max-width: 20%;
  }
}
@media (max-width: 1200px) {
  .cid-uqfWPwROo0 .col-lg-12 {
    min-width: 100% !important;
  }
}
.cid-uqfWPwROo0 .card-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-uqfWPwROo0 h5 {
  margin: 0;
}
.cid-uqfWPwROo0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqfWPwROo0 .iconfont-wrapper {
  position: relative;
}
.cid-uqfWPwROo0 .mbr-iconfont {
  display: flex;
  padding-right: 1rem;
  font-size: 2rem;
  color: #000000;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 2;
  position: relative;
}
.cid-uqfWPwROo0 .socicon {
  font-size: 1rem;
  width: 30px;
  height: 30px;
}
.cid-uqfWPwROo0 .sociconfont-wrapper {
  display: flex;
}
.cid-uqfWPwROo0 .card-title,
.cid-uqfWPwROo0 .iconfont-wrapper {
  color: #000000;
}
.cid-uqfWPwROo0 .card-text {
  color: #000000;
}
.cid-uqfWPwROo0 .mbr-section-title {
  color: #000000;
}
.cid-uqfWPwROo0 .main-title,
.cid-uqfWPwROo0 .iconfont-wrapper {
  text-align: left;
}
.cid-upG8gBWyYd {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #d2bfe3;
  overflow: hidden;
}
.cid-upG8gBWyYd .media-container-row .mbr-text {
  color: #000000;
}
.cid-uqfH8H5jhv {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uqfH8H5jhv nav.navbar {
  position: fixed;
}
.cid-uqfH8H5jhv .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-uqfH8H5jhv .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uqfH8H5jhv .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uqfH8H5jhv .dropdown-item:hover,
.cid-uqfH8H5jhv .dropdown-item:focus {
  background: #0616c2 !important;
  color: white !important;
}
.cid-uqfH8H5jhv .dropdown-item:hover span {
  color: white;
}
.cid-uqfH8H5jhv .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uqfH8H5jhv .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uqfH8H5jhv .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uqfH8H5jhv .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uqfH8H5jhv .nav-link {
  position: relative;
}
.cid-uqfH8H5jhv .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uqfH8H5jhv .container {
    flex-wrap: wrap;
  }
}
.cid-uqfH8H5jhv .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uqfH8H5jhv .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uqfH8H5jhv .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uqfH8H5jhv .dropdown-menu,
.cid-uqfH8H5jhv .navbar.opened {
  background: #ffffff !important;
}
.cid-uqfH8H5jhv .nav-item:focus,
.cid-uqfH8H5jhv .nav-link:focus {
  outline: none;
}
.cid-uqfH8H5jhv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uqfH8H5jhv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uqfH8H5jhv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uqfH8H5jhv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uqfH8H5jhv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uqfH8H5jhv .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uqfH8H5jhv .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-uqfH8H5jhv .navbar.opened {
  transition: all 0.3s;
}
.cid-uqfH8H5jhv .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uqfH8H5jhv .navbar .navbar-logo img {
  width: auto;
}
.cid-uqfH8H5jhv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uqfH8H5jhv .navbar.collapsed {
  justify-content: center;
}
.cid-uqfH8H5jhv .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uqfH8H5jhv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uqfH8H5jhv .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.8rem);
  }
}
.cid-uqfH8H5jhv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uqfH8H5jhv .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uqfH8H5jhv .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-uqfH8H5jhv .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uqfH8H5jhv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uqfH8H5jhv .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uqfH8H5jhv .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uqfH8H5jhv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uqfH8H5jhv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uqfH8H5jhv .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uqfH8H5jhv .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-uqfH8H5jhv .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uqfH8H5jhv .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uqfH8H5jhv .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uqfH8H5jhv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uqfH8H5jhv .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uqfH8H5jhv .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uqfH8H5jhv .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uqfH8H5jhv .navbar.navbar-short {
  min-height: 60px;
}
.cid-uqfH8H5jhv .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uqfH8H5jhv .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uqfH8H5jhv .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-uqfH8H5jhv .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uqfH8H5jhv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uqfH8H5jhv .dropdown-item.active,
.cid-uqfH8H5jhv .dropdown-item:active {
  background-color: transparent;
}
.cid-uqfH8H5jhv .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uqfH8H5jhv .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uqfH8H5jhv .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uqfH8H5jhv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uqfH8H5jhv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uqfH8H5jhv .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uqfH8H5jhv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uqfH8H5jhv .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uqfH8H5jhv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uqfH8H5jhv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uqfH8H5jhv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uqfH8H5jhv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uqfH8H5jhv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uqfH8H5jhv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uqfH8H5jhv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uqfH8H5jhv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uqfH8H5jhv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uqfH8H5jhv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uqfH8H5jhv .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uqfH8H5jhv a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uqfH8H5jhv .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-uqfH8H5jhv .navbar {
    height: 70px;
  }
  .cid-uqfH8H5jhv .navbar.opened {
    height: auto;
  }
  .cid-uqfH8H5jhv .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uqigZfbNck {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uqigZfbNck nav.navbar {
  position: fixed;
}
.cid-uqigZfbNck .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-uqigZfbNck .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uqigZfbNck .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uqigZfbNck .dropdown-item:hover,
.cid-uqigZfbNck .dropdown-item:focus {
  background: #0616c2 !important;
  color: white !important;
}
.cid-uqigZfbNck .dropdown-item:hover span {
  color: white;
}
.cid-uqigZfbNck .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uqigZfbNck .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uqigZfbNck .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uqigZfbNck .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uqigZfbNck .nav-link {
  position: relative;
}
.cid-uqigZfbNck .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uqigZfbNck .container {
    flex-wrap: wrap;
  }
}
.cid-uqigZfbNck .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uqigZfbNck .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uqigZfbNck .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uqigZfbNck .dropdown-menu,
.cid-uqigZfbNck .navbar.opened {
  background: #ffffff !important;
}
.cid-uqigZfbNck .nav-item:focus,
.cid-uqigZfbNck .nav-link:focus {
  outline: none;
}
.cid-uqigZfbNck .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uqigZfbNck .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uqigZfbNck .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uqigZfbNck .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uqigZfbNck .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uqigZfbNck .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uqigZfbNck .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-uqigZfbNck .navbar.opened {
  transition: all 0.3s;
}
.cid-uqigZfbNck .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uqigZfbNck .navbar .navbar-logo img {
  width: auto;
}
.cid-uqigZfbNck .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uqigZfbNck .navbar.collapsed {
  justify-content: center;
}
.cid-uqigZfbNck .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uqigZfbNck .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uqigZfbNck .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.8rem);
  }
}
.cid-uqigZfbNck .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uqigZfbNck .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uqigZfbNck .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-uqigZfbNck .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uqigZfbNck .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uqigZfbNck .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uqigZfbNck .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uqigZfbNck .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uqigZfbNck .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uqigZfbNck .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uqigZfbNck .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-uqigZfbNck .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uqigZfbNck .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uqigZfbNck .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uqigZfbNck .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uqigZfbNck .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uqigZfbNck .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uqigZfbNck .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uqigZfbNck .navbar.navbar-short {
  min-height: 60px;
}
.cid-uqigZfbNck .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uqigZfbNck .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uqigZfbNck .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-uqigZfbNck .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uqigZfbNck .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uqigZfbNck .dropdown-item.active,
.cid-uqigZfbNck .dropdown-item:active {
  background-color: transparent;
}
.cid-uqigZfbNck .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uqigZfbNck .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uqigZfbNck .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uqigZfbNck .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uqigZfbNck .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uqigZfbNck .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uqigZfbNck ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uqigZfbNck .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uqigZfbNck button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uqigZfbNck button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uqigZfbNck button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uqigZfbNck button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uqigZfbNck button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uqigZfbNck button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uqigZfbNck nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uqigZfbNck nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uqigZfbNck nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uqigZfbNck nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uqigZfbNck .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uqigZfbNck a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uqigZfbNck .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-uqigZfbNck .navbar {
    height: 70px;
  }
  .cid-uqigZfbNck .navbar.opened {
    height: auto;
  }
  .cid-uqigZfbNck .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uqigZfNPSL {
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uqigZfNPSL .decor-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 52%;
  height: 95%;
  border-radius: 0 85% 0 0;
  background-color: #d2bfe3;
  pointer-events: none;
}
@media (max-width: 992px) {
  .cid-uqigZfNPSL .decor-wrap {
    width: 60%;
    height: 50%;
    border-radius: 0 50% 0 0;
  }
}
.cid-uqigZfNPSL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqigZfNPSL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqigZfNPSL .row {
  position: relative;
  z-index: 1;
}
.cid-uqigZfNPSL .title-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-uqigZfNPSL .title-wrapper .mbr-section-title {
    margin-bottom: 46px;
  }
}
.cid-uqigZfNPSL .image-wrapper {
  margin-right: 18px;
}
@media (max-width: 992px) {
  .cid-uqigZfNPSL .image-wrapper {
    margin-right: 0;
    margin-bottom: 46px;
  }
}
.cid-uqigZfNPSL .image-wrapper img {
  height: 620px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uqigZfNPSL .image-wrapper img {
    height: 350px;
  }
}
.cid-uqigZfNPSL .content-wrapper {
  padding-top: 64px;
}
@media (max-width: 992px) {
  .cid-uqigZfNPSL .content-wrapper {
    padding-top: 22px;
  }
}
.cid-uqigZfNPSL .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 46px;
  display: inline-block;
  width: 55%;
}
@media (max-width: 992px) {
  .cid-uqigZfNPSL .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 22px;
  }
}
.cid-uqigZfNPSL .content-wrapper .desc-wrapper {
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uqigZfNPSL .content-wrapper .desc-wrapper {
    display: block;
  }
}
.cid-uqigZfNPSL .content-wrapper .desc-wrapper .mbr-desc {
  width: 50%;
  margin-right: 20px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uqigZfNPSL .content-wrapper .desc-wrapper .mbr-desc {
    margin-right: 0;
    width: 100%;
    margin-bottom: 12px;
  }
}
.cid-uqigZfNPSL .content-wrapper .desc-wrapper .mbr-section-btn {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uqigZfNPSL .content-wrapper .desc-wrapper .mbr-section-btn {
    width: 100%;
  }
}
.cid-uqigZfNPSL .content-wrapper .desc-wrapper .mbr-section-btn .btn {
  padding: 29px 64px;
}
@media (max-width: 1200px) {
  .cid-uqigZfNPSL .content-wrapper .desc-wrapper .mbr-section-btn .btn {
    padding: 20px 32px;
  }
}
.cid-uqigZfNPSL .mbr-section-title {
  color: #212529;
  text-align: center;
}
.cid-uqigZfNPSL .mbr-text {
  color: #51565c;
}
.cid-uqigZfNPSL .mbr-desc {
  color: #51565c;
}
.cid-uqigZfNPSL .mbr-text,
.cid-uqigZfNPSL .text-wrapper {
  color: #000000;
}
.cid-uqigZgjE9H {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uqigZgjE9H .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-uqigZgjE9H .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-uqigZgjE9H .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000000;
  background-color: #d2bfe3;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-uqigZgjE9H .mbr-section-title {
  text-align: center;
}
.cid-uqigZgJ9E0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
  background-color: #d2bfe3;
}
.cid-uqigZgJ9E0 .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #000000;
}
.cid-uqigZgJ9E0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqigZgJ9E0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqigZgJ9E0 .content-wrap {
  align-items: center;
  justify-content: space-between;
}
.cid-uqigZgJ9E0 .content-wrap .card {
  justify-content: space-between;
}
.cid-uqigZgJ9E0 .content-wrapper {
  padding: 0 24px;
}
@media (max-width: 992px) {
  .cid-uqigZgJ9E0 .content-wrapper {
    padding: 0;
  }
}
.cid-uqigZgJ9E0 .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uqigZgJ9E0 .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  margin-bottom: 0;
  padding: 10px;
  -webkit-text-stroke-color: #150764;
  box-shadow: 4px 4px 0 0 #150764;
  border: 2px solid #150764;
  background-color: #4188ff;
  -webkit-text-stroke-width: .15rem;
}
@media (max-width: 992px) {
  .cid-uqigZgJ9E0 .content-wrapper .desc-wrapper .mbr-desc {
    -webkit-text-stroke-width: .12rem;
  }
}
.cid-uqigZgJ9E0 .mbr-section-title {
  color: #150764;
  text-align: center;
}
.cid-uqigZgJ9E0 .mbr-desc,
.cid-uqigZgJ9E0 .desc-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uqigZgJ9E0 .mbr-section-title,
.cid-uqigZgJ9E0 .mbr-section-btn {
  color: #000000;
}
.cid-uqigZhn97e {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f7fff7;
}
.cid-uqigZhn97e .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqigZhn97e .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqigZhn97e .content-wrapper {
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uqigZhn97e .content-wrapper {
    display: block;
    padding: 0;
  }
}
.cid-uqigZhn97e .content-wrapper .title-wrapper {
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uqigZhn97e .content-wrapper .title-wrapper {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-uqigZhn97e .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uqigZhn97e .content-wrapper .title-wrapper .mbr-section-title {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-uqigZhn97e .content-wrapper .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uqigZhn97e .content-wrapper .title-wrapper .mbr-section-btn {
  margin-top: 22px;
}
@media (max-width: 992px) {
  .cid-uqigZhn97e .content-wrapper .title-wrapper .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-uqigZhn97e .content-wrapper .image-wrap {
  width: 40%;
  border: 3px solid #050f0f;
  box-shadow: 4px 4px 0 0 #050f0f;
  background-color: #ffffff;
  padding: 60px 20px;
  transform: rotate(3deg);
}
@media (max-width: 992px) {
  .cid-uqigZhn97e .content-wrapper .image-wrap {
    padding: 32px 16px;
    width: 100%;
    transform: rotate(0);
  }
}
.cid-uqigZhn97e .content-wrapper .image-wrap img {
  height: 550px;
  width: 100%;
  object-fit: cover;
}
.cid-uqigZhn97e .mbr-section-title {
  color: #050f0f;
}
.cid-uqigZhn97e .mbr-text {
  color: #050f0f;
}
.cid-uqigZhQxvx {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uqigZhQxvx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqigZhQxvx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uqigZhQxvx .container {
    padding: 0 16px;
  }
}
.cid-uqigZhQxvx .card {
  justify-content: center;
}
.cid-uqigZhQxvx .title-wrapper .mbr-section-title {
  display: inline-flex;
  margin-bottom: 0;
  padding: 18px 24px;
  border-radius: 16px !important;
  box-shadow: 6px 8px 0 0 #000000;
  background-color: #d2bfe3;
  transform: rotate(-4deg);
}
@media (max-width: 992px) {
  .cid-uqigZhQxvx .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uqigZhQxvx .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
.cid-uqigZhQxvx .text-wrapper .mbr-desc {
  margin-top: 24px;
  margin-bottom: 0;
}
.cid-uqigZhQxvx .mbr-section-title {
  color: #000000;
}
.cid-uqigZhQxvx .mbr-text {
  color: #000000;
}
.cid-uqigZhQxvx .mbr-desc {
  color: #000000;
}
.cid-uqigZip9qO {
  padding-top: 0rem;
  padding-bottom: 0rem;
  position: relative;
  overflow: hidden;
  background-color: #d2bfe3;
}
.cid-uqigZip9qO .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-uqigZip9qO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqigZip9qO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqigZip9qO .content-wrap {
  margin: 0;
}
.cid-uqigZip9qO .content-wrap .card {
  padding: 0;
}
.cid-uqigZip9qO .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  overflow: hidden;
  background-color: #000000;
  padding: 40px 32px;
  border-right: 1px solid #150764;
  border-right: none;
  border-left: 1px solid #150764;
}
@media (max-width: 1640px) {
  .cid-uqigZip9qO .image-wrapper {
    padding: 40px 24px;
  }
}
@media (max-width: 992px) {
  .cid-uqigZip9qO .image-wrapper {
    padding: 40px 0;
  }
}
@media (max-width: 992px) {
  .cid-uqigZip9qO .image-wrapper {
    border-right: none;
    border-bottom: 1px solid #150764;
  }
}
@media (max-width: 992px) {
  .cid-uqigZip9qO .image-wrapper {
    border-left: none;
    border-bottom: 1px solid #150764;
  }
}
.cid-uqigZip9qO .image-wrapper img {
  height: 620px;
  width: 620px;
  object-fit: cover;
  border-radius: 100% !important;
}
@media (max-width: 1640px) {
  .cid-uqigZip9qO .image-wrapper img {
    height: 550px;
    width: 550px;
  }
}
@media (max-width: 1200px) {
  .cid-uqigZip9qO .image-wrapper img {
    height: 350px;
    width: 350px;
  }
}
@media (max-width: 768px) {
  .cid-uqigZip9qO .image-wrapper img {
    height: 250px;
    width: 250px;
  }
}
.cid-uqigZip9qO .content-wrapper {
  padding: 40px 72px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
@media (max-width: 1640px) {
  .cid-uqigZip9qO .content-wrapper {
    padding: 40px 24px;
  }
}
@media (max-width: 992px) {
  .cid-uqigZip9qO .content-wrapper {
    padding: 40px 0;
  }
}
.cid-uqigZip9qO .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uqigZip9qO .content-wrapper .text-wrapper .text-wrap .mbr-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-uqigZip9qO .content-wrapper .text-wrapper .text-wrap .mbr-text {
    width: 100%;
    margin-bottom: 16px;
  }
}
.cid-uqigZip9qO .mbr-section-title {
  color: #150764;
}
.cid-uqigZip9qO .mbr-text {
  color: #150764;
}
.cid-uqigZip9qO .mbr-section-title,
.cid-uqigZip9qO .mbr-section-btn {
  color: #000000;
}
.cid-uqigZip9qO .mbr-text,
.cid-uqigZip9qO .text-wrap {
  color: #000000;
}
.cid-uqigZj3Y4f {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uqigZj3Y4f .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqigZj3Y4f .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqigZjz2bc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d2bfe3;
}
.cid-uqigZjz2bc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqigZjz2bc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqigZjz2bc .row {
  justify-content: center;
}
.cid-uqigZjz2bc .content-wrapper {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-uqigZjz2bc .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-uqigZjz2bc .content-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-uqigZjz2bc .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uqigZjz2bc .item {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-uqigZjz2bc .item {
    margin-bottom: 35px;
  }
}
.cid-uqigZjz2bc .item .item-wrapper .card-box .icon-wrapper {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uqigZjz2bc .item .item-wrapper .card-box .icon-wrapper {
    margin-bottom: 15px;
  }
}
.cid-uqigZjz2bc .item .item-wrapper .card-box .icon-wrapper .mbr-iconfont {
  width: 95px;
  height: 95px;
  border-radius: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #000000;
  color: #ffffff;
  font-size: 60px;
}
.cid-uqigZjz2bc .item .item-wrapper .card-box .item-title {
  margin-bottom: 10px;
}
.cid-uqigZjz2bc .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-uqigZjz2bc .border-wrapper {
  width: 100%;
  height: 1px;
  background-color: #fafafa;
}
.cid-uqigZjz2bc .mbr-section-title {
  color: #fafafa;
}
.cid-uqigZjz2bc .mbr-text {
  color: #000000;
}
.cid-uqigZjz2bc .item-title {
  color: #000000;
}
.cid-uqigZjz2bc .item-text {
  color: #000000;
}
.cid-uqigZkduVb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uqigZkduVb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqigZkduVb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqigZkduVb .container-fluid {
  padding: 0 56px;
}
@media (max-width: 992px) {
  .cid-uqigZkduVb .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 992px) {
  .cid-uqigZkduVb .container {
    padding: 0 26px;
  }
}
.cid-uqigZkduVb .row {
  justify-content: center;
}
.cid-uqigZkduVb .content-wrapper {
  display: flex;
  align-items: center;
  padding: 200px 100px 200px 60px;
  background-color: #d2bfe3;
  border-radius: 20px;
}
@media (max-width: 1440px) {
  .cid-uqigZkduVb .content-wrapper {
    padding: 100px 60px;
  }
}
@media (max-width: 992px) {
  .cid-uqigZkduVb .content-wrapper {
    padding: 100px 20px;
    display: block;
  }
}
.cid-uqigZkduVb .content-wrapper .title-wrapper {
  width: 50%;
  padding-right: 45px;
}
@media (max-width: 992px) {
  .cid-uqigZkduVb .content-wrapper .title-wrapper {
    width: 100%;
    padding-right: 0;
    margin-bottom: 40px;
  }
}
.cid-uqigZkduVb .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-uqigZkduVb .content-wrapper .title-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-uqigZkduVb .content-wrapper .text-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uqigZkduVb .content-wrapper .text-wrapper {
    width: 100%;
  }
}
.cid-uqigZkduVb .content-wrapper .text-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-uqigZkduVb .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-uqigZkduVb .content-wrapper .text-wrapper .link-wrapper:hover .mbr-link,
.cid-uqigZkduVb .content-wrapper .text-wrapper .link-wrapper:focus .mbr-link {
  color: #000000;
}
.cid-uqigZkduVb .content-wrapper .text-wrapper .link-wrapper .mbr-link {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.cid-uqigZkduVb .mbr-section-title {
  color: #000000;
}
.cid-uqigZkduVb .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uqigZkduVb .mbr-desc {
  color: #ffffff;
}
.cid-uqigZkduVb .mbr-text {
  color: #000000;
}
.cid-uqigZkduVb .mbr-link {
  color: #ffffff;
}
.cid-uqigZkLMG1 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #d2bfe3;
}
.cid-uqigZkLMG1 .mbr-iconfont {
  font-size: 1.5rem !important;
  font-family: 'Moririse2' !important;
  color: white;
  transition: all 0.3s;
  transform: rotate(45deg);
  background: #d2bfe3;
  border-radius: 50%;
  padding: 1.5rem;
}
@media (max-width: 767px) {
  .cid-uqigZkLMG1 .mbr-iconfont {
    padding: 1rem;
    font-size: 1.2rem !important;
  }
}
.cid-uqigZkLMG1 .panel-group {
  border: none;
}
.cid-uqigZkLMG1 .card-header {
  padding: 1.2rem 0.5rem;
}
@media (max-width: 767px) {
  .cid-uqigZkLMG1 .card-header {
    padding: 1rem 0rem;
  }
}
.cid-uqigZkLMG1 .panel-body {
  padding: 0 0.5rem;
  padding-bottom: 1rem;
}
@media (max-width: 767px) {
  .cid-uqigZkLMG1 .panel-body {
    padding: 0rem;
    padding-bottom: 1rem;
  }
}
.cid-uqigZkLMG1 .content {
  margin: 5rem auto;
}
.cid-uqigZkLMG1 .img-col {
  padding: 0;
}
.cid-uqigZkLMG1 .img-item {
  height: 100%;
}
.cid-uqigZkLMG1 img {
  height: 100%;
  object-fit: cover;
}
.cid-uqigZkLMG1 .collapsed span {
  transform: rotate(0deg);
}
.cid-uqigZkLMG1 .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uqigZkLMG1 p {
  margin-bottom: 0.3rem;
}
.cid-uqigZkLMG1 .panel-title-edit {
  color: #1b1818;
}
.cid-uqigZkLMG1 .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
  border: 0;
  border-radius: 2rem;
}
.cid-uqigZkLMG1 .card {
  background: #fafafa;
  padding: 0rem 2rem;
  border-radius: 2rem;
}
@media (max-width: 767px) {
  .cid-uqigZkLMG1 .card {
    padding: 1rem;
  }
}
.cid-uqigZkLMG1 .panel-text {
  color: #1b1818;
}
.cid-uqigZkLMG1 H3 {
  text-align: center;
  color: #000000;
}
.cid-uqigZkLMG1 H4 {
  text-align: center;
  color: #ffffff;
}
.cid-uqigZlv4V5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #f4f4f6;
}
.cid-uqigZlv4V5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqigZlv4V5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqigZlv4V5 .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uqigZlv4V5 .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uqigZlv4V5 .container {
    padding: 0 24px;
  }
}
.cid-uqigZlv4V5 .row .card {
  padding: 0 12px;
  border-radius: 0 !important;
}
.cid-uqigZlv4V5 .image-wrapper {
  height: 100%;
}
.cid-uqigZlv4V5 .image-wrapper img {
  height: 100%;
  object-fit: cover;
  border-radius: .75rem !important;
}
@media (max-width: 992px) {
  .cid-uqigZlv4V5 .image-wrapper img {
    height: 350px;
  }
}
.cid-uqigZlv4V5 .content-wrapper {
  display: flex;
  align-items: center;
  background-color: #d2bfe3;
  border-radius: .75rem;
  padding: 48px;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uqigZlv4V5 .content-wrapper {
    padding: 24px;
  }
}
.cid-uqigZlv4V5 .content-wrapper .content-wrap {
  width: 100%;
}
.cid-uqigZlv4V5 .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uqigZlv4V5 .content-wrapper .content-wrap .mbr-text {
  margin-bottom: 16px;
}
.cid-uqigZlv4V5 .content-wrapper .content-wrap .mbr-section-btn .btn::before {
  background-image: linear-gradient(90deg, #fb8fc9 0%, transparent 100%);
}
.cid-uqigZlv4V5 .content-wrapper .content-wrap .mbr-section-btn .btn:hover,
.cid-uqigZlv4V5 .content-wrapper .content-wrap .mbr-section-btn .btn:focus {
  box-shadow: inset 250px 10px 5px #7f89e9 !important;
  border-color: #7f89e9 !important;
}
.cid-uqigZlv4V5 .mbr-section-title {
  color: #141414;
}
.cid-uqigZlv4V5 .mbr-text {
  color: #141414;
}
.cid-uqigZlZRkR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d2bfe3;
}
.cid-uqigZlZRkR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqigZlZRkR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqigZlZRkR .content-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  padding: 80px 60px;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .cid-uqigZlZRkR .content-wrapper {
    gap: 16px;
  }
}
@media (max-width: 1199px) {
  .cid-uqigZlZRkR .content-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 992px) {
  .cid-uqigZlZRkR .content-wrapper {
    display: block;
    padding: 32px 16px;
  }
}
.cid-uqigZlZRkR .content-wrapper .image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-uqigZlZRkR .content-wrapper .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .5;
}
@media (max-width: 992px) {
  .cid-uqigZlZRkR .content-wrapper .item {
    margin-bottom: 16px;
  }
  .cid-uqigZlZRkR .content-wrapper .item:last-child {
    margin-bottom: 0;
  }
}
.cid-uqigZlZRkR .content-wrapper .item .item-wrapper {
  position: relative;
  height: 100%;
  border: 3px solid #050f0f;
  box-shadow: 4px 4px 0 0 #050f0f;
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background-color: #fafafa;
}
.cid-uqigZlZRkR .content-wrapper .item .item-wrapper:hover,
.cid-uqigZlZRkR .content-wrapper .item .item-wrapper:focus {
  transform: translate(0.2rem, 0.2rem);
  box-shadow: none;
}
.cid-uqigZlZRkR .content-wrapper .item .item-wrapper .item-content .item-img {
  border-bottom: 3px solid #050f0f;
}
.cid-uqigZlZRkR .content-wrapper .item .item-wrapper .item-content .item-img img {
  height: 390px;
  width: 100%;
  object-fit: cover;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-uqigZlZRkR .content-wrapper .item .item-wrapper .item-content .item-img img {
    height: 350px;
  }
}
.cid-uqigZlZRkR .content-wrapper .item .item-wrapper .item-content .item-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: .8;
}
.cid-uqigZlZRkR .content-wrapper .item .item-wrapper .item-content .text-wrapper {
  padding: 32px;
}
@media (max-width: 1440px) {
  .cid-uqigZlZRkR .content-wrapper .item .item-wrapper .item-content .text-wrapper {
    padding: 32px 24px;
  }
}
@media (max-width: 992px) {
  .cid-uqigZlZRkR .content-wrapper .item .item-wrapper .item-content .text-wrapper {
    padding: 32px 16px;
  }
}
.cid-uqigZlZRkR .content-wrapper .item .item-wrapper .item-content .text-wrapper .item-title {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uqigZlZRkR .content-wrapper .item .item-wrapper .item-content .text-wrapper .item-title {
    margin-bottom: 24px;
  }
}
.cid-uqigZlZRkR .content-wrapper .item .item-wrapper .item-content .text-wrapper .item-text {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uqigZlZRkR .content-wrapper .item .item-wrapper .item-content .text-wrapper .item-text {
    margin-bottom: 0;
  }
}
.cid-uqigZlZRkR .content-wrapper .item .item-wrapper .tags-wrapper {
  padding: 0 32px 24px 32px;
}
@media (max-width: 1440px) {
  .cid-uqigZlZRkR .content-wrapper .item .item-wrapper .tags-wrapper {
    padding: 0 24px 24px 24px;
  }
}
@media (max-width: 992px) {
  .cid-uqigZlZRkR .content-wrapper .item .item-wrapper .tags-wrapper {
    padding: 0 16px 24px 16px;
  }
}
.cid-uqigZlZRkR .content-wrapper .item .item-wrapper .tags-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uqigZlZRkR .content-wrapper .item .item-wrapper .tags-wrapper .list .item-wrap {
  display: inline-flex;
  padding: 11px 20px;
  margin: 0 8px 8px 0;
  background-color: #d3f2ff;
}
.cid-uqigZlZRkR .content-wrapper .item .item-wrapper .tags-wrapper .list .item-wrap:nth-child(2n) {
  background-color: #bafca2;
}
.cid-uqigZlZRkR .content-wrapper .item .item-wrapper .tags-wrapper .list .item-wrap:nth-child(3n) {
  background-color: #fdfd96;
}
.cid-uqigZlZRkR .item-title {
  color: #050f0f;
}
.cid-uqigZlZRkR .item-text {
  color: #050f0f;
}
.cid-uqigZlZRkR .list {
  color: #050f0f;
}
.cid-uqigZmyW6U {
  padding-top: 60px;
  padding-bottom: 60px;
  background: #fafafa;
}
.cid-uqigZmyW6U .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-uqigZmyW6U .video-block {
  margin: auto;
}
@media (max-width: 767px) {
  .cid-uqigZmyW6U .video-block {
    width: 100% !important;
  }
}
.cid-uqigZmyW6U .mbr-section-title {
  color: #000000;
}
.cid-uqigZmYpzC {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #d2bfe3;
}
.cid-uqigZmYpzC blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #d2bfe3;
}
.cid-uqigZmYpzC .mbr-section-title {
  color: #000000;
}
.cid-uqigZmYpzC .mbr-text {
  color: #000000;
}
.cid-uqiQRgJaPb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #d2bfe3;
}
.cid-uqiQRgJaPb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqiQRgJaPb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqiQRgJaPb .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uqiQRgJaPb .container-fluid {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-uqiQRgJaPb .container-fluid {
    padding: 0 12px;
  }
}
@media (max-width: 992px) {
  .cid-uqiQRgJaPb .container {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-uqiQRgJaPb .container {
    padding: 0 12px;
  }
}
.cid-uqiQRgJaPb .title-wrapper {
  padding: 64px;
  background-color: #ffffff;
  border-radius: 32px;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uqiQRgJaPb .title-wrapper {
    margin-bottom: 32px;
    height: auto;
    padding: 24px;
  }
}
.cid-uqiQRgJaPb .title-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
.cid-uqiQRgJaPb .title-wrapper .mbr-text {
  margin-bottom: 0;
  opacity: .6;
}
.cid-uqiQRgJaPb .panel-group {
  padding: 64px;
  background-color: #ffffff;
  border-radius: 32px;
}
@media (max-width: 992px) {
  .cid-uqiQRgJaPb .panel-group {
    padding: 24px;
  }
}
.cid-uqiQRgJaPb .panel-group .card {
  border: 1px solid #bbbbbb;
  border-radius: 32px !important;
  background-color: #d2bfe3;
  margin-bottom: 32px;
}
.cid-uqiQRgJaPb .panel-group .card .card-header {
  padding: 32px;
  border: none;
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-uqiQRgJaPb .panel-group .card .card-header {
    padding: 24px;
  }
}
.cid-uqiQRgJaPb .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uqiQRgJaPb .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(90deg);
}
.cid-uqiQRgJaPb .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uqiQRgJaPb .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  min-width: 40px;
  height: 40px;
  background-color: #ffffff;
  margin-left: 16px;
  transition: all 0.3s ease-in-out;
  border-radius: 100%;
  font-size: 23px;
  color: #1d1d1f;
}
.cid-uqiQRgJaPb .panel-group .card .panel-collapse .panel-body {
  padding: 0 32px 32px;
}
@media (max-width: 992px) {
  .cid-uqiQRgJaPb .panel-group .card .panel-collapse .panel-body {
    padding: 0 24px 24px;
  }
}
.cid-uqiQRgJaPb .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
  opacity: .6;
}
.cid-uqiQRgJaPb .mbr-section-title {
  color: #d57df7;
}
.cid-uqiQRgJaPb .mbr-text {
  color: #ffffff;
}
.cid-uqiQRgJaPb .panel-title-edit {
  color: #000000;
}
.cid-uqiQRgJaPb .panel-text {
  color: #000000;
}
.cid-uqigZnsDj1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uqigZnsDj1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqigZnsDj1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqigZnsDj1 .content-wrapper {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uqigZnsDj1 .content-wrapper {
    padding: 0;
  }
}
.cid-uqigZnsDj1 .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uqigZnsDj1 .content-wrapper .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uqigZnsDj1 .content-wrapper .google-map {
  border: 3px solid #050f0f;
  box-shadow: 4px 4px 0 0 #050f0f;
}
.cid-uqigZnsDj1 .content-wrapper .google-map iframe {
  height: 600px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uqigZnsDj1 .content-wrapper .google-map iframe {
    height: 350px;
  }
}
.cid-uqigZnsDj1 .mbr-section-title {
  color: #050f0f;
}
.cid-uqigZnsDj1 .mbr-section-title,
.cid-uqigZnsDj1 .mbr-section-btn {
  text-align: center;
}
.cid-uqigZo4iXe {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #d2bfe3;
}
.cid-uqigZo4iXe .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqigZo4iXe .item-wrapper {
  display: flex;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-uqigZo4iXe .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uqigZo4iXe .item-wrapper:hover .iconfont-wrapper:after {
  width: 70px;
  height: 70px;
}
.cid-uqigZo4iXe a {
  font-weight: 600;
}
.cid-uqigZo4iXe a:hover {
  background: none !important;
}
@media (min-width: 1400px) {
  .cid-uqigZo4iXe .col-lg-3,
  .cid-uqigZo4iXe .col-xl-3 {
    max-width: 20%;
  }
}
@media (max-width: 1200px) {
  .cid-uqigZo4iXe .col-lg-12 {
    min-width: 100% !important;
  }
}
.cid-uqigZo4iXe .card-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-uqigZo4iXe h5 {
  margin: 0;
}
.cid-uqigZo4iXe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqigZo4iXe .iconfont-wrapper {
  position: relative;
}
.cid-uqigZo4iXe .mbr-iconfont {
  display: flex;
  padding-right: 1rem;
  font-size: 2rem;
  color: #000000;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 2;
  position: relative;
}
.cid-uqigZo4iXe .socicon {
  font-size: 1rem;
  width: 30px;
  height: 30px;
}
.cid-uqigZo4iXe .sociconfont-wrapper {
  display: flex;
}
.cid-uqigZo4iXe .card-title,
.cid-uqigZo4iXe .iconfont-wrapper {
  color: #000000;
}
.cid-uqigZo4iXe .card-text {
  color: #000000;
}
.cid-uqigZo4iXe .mbr-section-title {
  color: #000000;
}
.cid-uqigZo4iXe .main-title,
.cid-uqigZo4iXe .iconfont-wrapper {
  text-align: left;
}
.cid-uqigZoLnkx {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #d2bfe3;
  overflow: hidden;
}
.cid-uqigZoLnkx .media-container-row .mbr-text {
  color: #000000;
}
.cid-uqij8Ttnrq {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uqij8Ttnrq nav.navbar {
  position: fixed;
}
.cid-uqij8Ttnrq .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-uqij8Ttnrq .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uqij8Ttnrq .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uqij8Ttnrq .dropdown-item:hover,
.cid-uqij8Ttnrq .dropdown-item:focus {
  background: #0616c2 !important;
  color: white !important;
}
.cid-uqij8Ttnrq .dropdown-item:hover span {
  color: white;
}
.cid-uqij8Ttnrq .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uqij8Ttnrq .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uqij8Ttnrq .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uqij8Ttnrq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uqij8Ttnrq .nav-link {
  position: relative;
}
.cid-uqij8Ttnrq .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uqij8Ttnrq .container {
    flex-wrap: wrap;
  }
}
.cid-uqij8Ttnrq .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uqij8Ttnrq .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uqij8Ttnrq .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uqij8Ttnrq .dropdown-menu,
.cid-uqij8Ttnrq .navbar.opened {
  background: #ffffff !important;
}
.cid-uqij8Ttnrq .nav-item:focus,
.cid-uqij8Ttnrq .nav-link:focus {
  outline: none;
}
.cid-uqij8Ttnrq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uqij8Ttnrq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uqij8Ttnrq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uqij8Ttnrq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uqij8Ttnrq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uqij8Ttnrq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uqij8Ttnrq .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-uqij8Ttnrq .navbar.opened {
  transition: all 0.3s;
}
.cid-uqij8Ttnrq .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uqij8Ttnrq .navbar .navbar-logo img {
  width: auto;
}
.cid-uqij8Ttnrq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uqij8Ttnrq .navbar.collapsed {
  justify-content: center;
}
.cid-uqij8Ttnrq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uqij8Ttnrq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uqij8Ttnrq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.8rem);
  }
}
.cid-uqij8Ttnrq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uqij8Ttnrq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uqij8Ttnrq .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-uqij8Ttnrq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uqij8Ttnrq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uqij8Ttnrq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uqij8Ttnrq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uqij8Ttnrq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uqij8Ttnrq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uqij8Ttnrq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uqij8Ttnrq .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-uqij8Ttnrq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uqij8Ttnrq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uqij8Ttnrq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uqij8Ttnrq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uqij8Ttnrq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uqij8Ttnrq .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uqij8Ttnrq .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uqij8Ttnrq .navbar.navbar-short {
  min-height: 60px;
}
.cid-uqij8Ttnrq .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uqij8Ttnrq .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uqij8Ttnrq .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-uqij8Ttnrq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uqij8Ttnrq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uqij8Ttnrq .dropdown-item.active,
.cid-uqij8Ttnrq .dropdown-item:active {
  background-color: transparent;
}
.cid-uqij8Ttnrq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uqij8Ttnrq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uqij8Ttnrq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uqij8Ttnrq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uqij8Ttnrq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uqij8Ttnrq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uqij8Ttnrq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uqij8Ttnrq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uqij8Ttnrq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uqij8Ttnrq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uqij8Ttnrq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uqij8Ttnrq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uqij8Ttnrq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uqij8Ttnrq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uqij8Ttnrq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uqij8Ttnrq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uqij8Ttnrq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uqij8Ttnrq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uqij8Ttnrq .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uqij8Ttnrq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uqij8Ttnrq .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-uqij8Ttnrq .navbar {
    height: 70px;
  }
  .cid-uqij8Ttnrq .navbar.opened {
    height: auto;
  }
  .cid-uqij8Ttnrq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uqij8ULn2z {
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uqij8ULn2z .decor-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 52%;
  height: 95%;
  border-radius: 0 85% 0 0;
  background-color: #d2bfe3;
  pointer-events: none;
}
@media (max-width: 992px) {
  .cid-uqij8ULn2z .decor-wrap {
    width: 60%;
    height: 50%;
    border-radius: 0 50% 0 0;
  }
}
.cid-uqij8ULn2z .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqij8ULn2z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqij8ULn2z .row {
  position: relative;
  z-index: 1;
}
.cid-uqij8ULn2z .title-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-uqij8ULn2z .title-wrapper .mbr-section-title {
    margin-bottom: 46px;
  }
}
.cid-uqij8ULn2z .image-wrapper {
  margin-right: 18px;
}
@media (max-width: 992px) {
  .cid-uqij8ULn2z .image-wrapper {
    margin-right: 0;
    margin-bottom: 46px;
  }
}
.cid-uqij8ULn2z .image-wrapper img {
  height: 620px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uqij8ULn2z .image-wrapper img {
    height: 350px;
  }
}
.cid-uqij8ULn2z .content-wrapper {
  padding-top: 64px;
}
@media (max-width: 992px) {
  .cid-uqij8ULn2z .content-wrapper {
    padding-top: 22px;
  }
}
.cid-uqij8ULn2z .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 46px;
  display: inline-block;
  width: 55%;
}
@media (max-width: 992px) {
  .cid-uqij8ULn2z .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 22px;
  }
}
.cid-uqij8ULn2z .content-wrapper .desc-wrapper {
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uqij8ULn2z .content-wrapper .desc-wrapper {
    display: block;
  }
}
.cid-uqij8ULn2z .content-wrapper .desc-wrapper .mbr-desc {
  width: 50%;
  margin-right: 20px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uqij8ULn2z .content-wrapper .desc-wrapper .mbr-desc {
    margin-right: 0;
    width: 100%;
    margin-bottom: 12px;
  }
}
.cid-uqij8ULn2z .content-wrapper .desc-wrapper .mbr-section-btn {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uqij8ULn2z .content-wrapper .desc-wrapper .mbr-section-btn {
    width: 100%;
  }
}
.cid-uqij8ULn2z .content-wrapper .desc-wrapper .mbr-section-btn .btn {
  padding: 29px 64px;
}
@media (max-width: 1200px) {
  .cid-uqij8ULn2z .content-wrapper .desc-wrapper .mbr-section-btn .btn {
    padding: 20px 32px;
  }
}
.cid-uqij8ULn2z .mbr-section-title {
  color: #212529;
  text-align: center;
}
.cid-uqij8ULn2z .mbr-text {
  color: #51565c;
}
.cid-uqij8ULn2z .mbr-desc {
  color: #51565c;
}
.cid-uqij8ULn2z .mbr-text,
.cid-uqij8ULn2z .text-wrapper {
  color: #000000;
}
.cid-uqij8VCyyY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uqij8VCyyY .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-uqij8VCyyY .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-uqij8VCyyY .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000000;
  background-color: #d2bfe3;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-uqij8VCyyY .mbr-section-title {
  text-align: center;
}
.cid-uqij8W0iBn {
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
  background-color: #d2bfe3;
}
.cid-uqij8W0iBn .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #000000;
}
.cid-uqij8W0iBn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqij8W0iBn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqij8W0iBn .content-wrap {
  align-items: center;
  justify-content: space-between;
}
.cid-uqij8W0iBn .content-wrap .card {
  justify-content: space-between;
}
.cid-uqij8W0iBn .content-wrapper {
  padding: 0 24px;
}
@media (max-width: 992px) {
  .cid-uqij8W0iBn .content-wrapper {
    padding: 0;
  }
}
.cid-uqij8W0iBn .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uqij8W0iBn .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  margin-bottom: 0;
  padding: 10px;
  -webkit-text-stroke-color: #150764;
  box-shadow: 4px 4px 0 0 #150764;
  border: 2px solid #150764;
  background-color: #4188ff;
  -webkit-text-stroke-width: .15rem;
}
@media (max-width: 992px) {
  .cid-uqij8W0iBn .content-wrapper .desc-wrapper .mbr-desc {
    -webkit-text-stroke-width: .12rem;
  }
}
.cid-uqij8W0iBn .mbr-section-title {
  color: #150764;
  text-align: center;
}
.cid-uqij8W0iBn .mbr-desc,
.cid-uqij8W0iBn .desc-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uqij8W0iBn .mbr-section-title,
.cid-uqij8W0iBn .mbr-section-btn {
  color: #000000;
}
.cid-uqij8WtEGu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uqij8WtEGu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqij8WtEGu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqij8WtEGu .content-wrapper {
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uqij8WtEGu .content-wrapper {
    display: block;
    padding: 0;
  }
}
.cid-uqij8WtEGu .content-wrapper .title-wrapper {
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uqij8WtEGu .content-wrapper .title-wrapper {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-uqij8WtEGu .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uqij8WtEGu .content-wrapper .title-wrapper .mbr-section-title {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-uqij8WtEGu .content-wrapper .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uqij8WtEGu .content-wrapper .title-wrapper .mbr-section-btn {
  margin-top: 22px;
}
@media (max-width: 992px) {
  .cid-uqij8WtEGu .content-wrapper .title-wrapper .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-uqij8WtEGu .content-wrapper .image-wrap {
  width: 40%;
  border: 3px solid #050f0f;
  box-shadow: 4px 4px 0 0 #050f0f;
  background-color: #ffffff;
  padding: 60px 20px;
  transform: rotate(3deg);
}
@media (max-width: 992px) {
  .cid-uqij8WtEGu .content-wrapper .image-wrap {
    padding: 32px 16px;
    width: 100%;
    transform: rotate(0);
  }
}
.cid-uqij8WtEGu .content-wrapper .image-wrap img {
  height: 550px;
  width: 100%;
  object-fit: cover;
}
.cid-uqij8WtEGu .mbr-section-title {
  color: #050f0f;
}
.cid-uqij8WtEGu .mbr-text {
  color: #050f0f;
}
.cid-uqij8WXj0q {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uqij8WXj0q .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqij8WXj0q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uqij8WXj0q .container {
    padding: 0 16px;
  }
}
.cid-uqij8WXj0q .card {
  justify-content: center;
}
.cid-uqij8WXj0q .title-wrapper .mbr-section-title {
  display: inline-flex;
  margin-bottom: 0;
  padding: 18px 24px;
  border-radius: 16px !important;
  box-shadow: 6px 8px 0 0 #000000;
  background-color: #d2bfe3;
  transform: rotate(-4deg);
}
@media (max-width: 992px) {
  .cid-uqij8WXj0q .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uqij8WXj0q .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
.cid-uqij8WXj0q .text-wrapper .mbr-desc {
  margin-top: 24px;
  margin-bottom: 0;
}
.cid-uqij8WXj0q .mbr-section-title {
  color: #000000;
}
.cid-uqij8WXj0q .mbr-text {
  color: #000000;
}
.cid-uqij8WXj0q .mbr-desc {
  color: #000000;
}
.cid-uqij8XxE41 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  position: relative;
  overflow: hidden;
  background-color: #d2bfe3;
}
.cid-uqij8XxE41 .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-uqij8XxE41 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqij8XxE41 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqij8XxE41 .content-wrap {
  margin: 0;
}
.cid-uqij8XxE41 .content-wrap .card {
  padding: 0;
}
.cid-uqij8XxE41 .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  overflow: hidden;
  background-color: #000000;
  padding: 40px 32px;
  border-right: 1px solid #150764;
  border-right: none;
  border-left: 1px solid #150764;
}
@media (max-width: 1640px) {
  .cid-uqij8XxE41 .image-wrapper {
    padding: 40px 24px;
  }
}
@media (max-width: 992px) {
  .cid-uqij8XxE41 .image-wrapper {
    padding: 40px 0;
  }
}
@media (max-width: 992px) {
  .cid-uqij8XxE41 .image-wrapper {
    border-right: none;
    border-bottom: 1px solid #150764;
  }
}
@media (max-width: 992px) {
  .cid-uqij8XxE41 .image-wrapper {
    border-left: none;
    border-bottom: 1px solid #150764;
  }
}
.cid-uqij8XxE41 .image-wrapper img {
  height: 620px;
  width: 620px;
  object-fit: cover;
  border-radius: 100% !important;
}
@media (max-width: 1640px) {
  .cid-uqij8XxE41 .image-wrapper img {
    height: 550px;
    width: 550px;
  }
}
@media (max-width: 1200px) {
  .cid-uqij8XxE41 .image-wrapper img {
    height: 350px;
    width: 350px;
  }
}
@media (max-width: 768px) {
  .cid-uqij8XxE41 .image-wrapper img {
    height: 250px;
    width: 250px;
  }
}
.cid-uqij8XxE41 .content-wrapper {
  padding: 40px 72px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
@media (max-width: 1640px) {
  .cid-uqij8XxE41 .content-wrapper {
    padding: 40px 24px;
  }
}
@media (max-width: 992px) {
  .cid-uqij8XxE41 .content-wrapper {
    padding: 40px 0;
  }
}
.cid-uqij8XxE41 .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uqij8XxE41 .content-wrapper .text-wrapper .text-wrap .mbr-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-uqij8XxE41 .content-wrapper .text-wrapper .text-wrap .mbr-text {
    width: 100%;
    margin-bottom: 16px;
  }
}
.cid-uqij8XxE41 .mbr-section-title {
  color: #150764;
}
.cid-uqij8XxE41 .mbr-text {
  color: #150764;
}
.cid-uqij8XxE41 .mbr-section-title,
.cid-uqij8XxE41 .mbr-section-btn {
  color: #000000;
}
.cid-uqij8XxE41 .mbr-text,
.cid-uqij8XxE41 .text-wrap {
  color: #000000;
}
.cid-uqij8Y7EEX {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uqij8Y7EEX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqij8Y7EEX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqij8YzCR2 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d2bfe3;
}
.cid-uqij8YzCR2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqij8YzCR2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqij8YzCR2 .row {
  justify-content: center;
}
.cid-uqij8YzCR2 .content-wrapper {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-uqij8YzCR2 .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-uqij8YzCR2 .content-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-uqij8YzCR2 .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uqij8YzCR2 .item {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-uqij8YzCR2 .item {
    margin-bottom: 35px;
  }
}
.cid-uqij8YzCR2 .item .item-wrapper .card-box .icon-wrapper {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uqij8YzCR2 .item .item-wrapper .card-box .icon-wrapper {
    margin-bottom: 15px;
  }
}
.cid-uqij8YzCR2 .item .item-wrapper .card-box .icon-wrapper .mbr-iconfont {
  width: 95px;
  height: 95px;
  border-radius: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #000000;
  color: #ffffff;
  font-size: 60px;
}
.cid-uqij8YzCR2 .item .item-wrapper .card-box .item-title {
  margin-bottom: 10px;
}
.cid-uqij8YzCR2 .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-uqij8YzCR2 .border-wrapper {
  width: 100%;
  height: 1px;
  background-color: #fafafa;
}
.cid-uqij8YzCR2 .mbr-section-title {
  color: #fafafa;
}
.cid-uqij8YzCR2 .mbr-text {
  color: #000000;
}
.cid-uqij8YzCR2 .item-title {
  color: #000000;
}
.cid-uqij8YzCR2 .item-text {
  color: #000000;
}
.cid-uqij8Zf6DV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uqij8Zf6DV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqij8Zf6DV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqij8Zf6DV .container-fluid {
  padding: 0 56px;
}
@media (max-width: 992px) {
  .cid-uqij8Zf6DV .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 992px) {
  .cid-uqij8Zf6DV .container {
    padding: 0 26px;
  }
}
.cid-uqij8Zf6DV .row {
  justify-content: center;
}
.cid-uqij8Zf6DV .content-wrapper {
  display: flex;
  align-items: center;
  padding: 200px 100px 200px 60px;
  background-color: #d2bfe3;
  border-radius: 20px;
}
@media (max-width: 1440px) {
  .cid-uqij8Zf6DV .content-wrapper {
    padding: 100px 60px;
  }
}
@media (max-width: 992px) {
  .cid-uqij8Zf6DV .content-wrapper {
    padding: 100px 20px;
    display: block;
  }
}
.cid-uqij8Zf6DV .content-wrapper .title-wrapper {
  width: 50%;
  padding-right: 45px;
}
@media (max-width: 992px) {
  .cid-uqij8Zf6DV .content-wrapper .title-wrapper {
    width: 100%;
    padding-right: 0;
    margin-bottom: 40px;
  }
}
.cid-uqij8Zf6DV .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-uqij8Zf6DV .content-wrapper .title-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-uqij8Zf6DV .content-wrapper .text-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uqij8Zf6DV .content-wrapper .text-wrapper {
    width: 100%;
  }
}
.cid-uqij8Zf6DV .content-wrapper .text-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-uqij8Zf6DV .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-uqij8Zf6DV .content-wrapper .text-wrapper .link-wrapper:hover .mbr-link,
.cid-uqij8Zf6DV .content-wrapper .text-wrapper .link-wrapper:focus .mbr-link {
  color: #000000;
}
.cid-uqij8Zf6DV .content-wrapper .text-wrapper .link-wrapper .mbr-link {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.cid-uqij8Zf6DV .mbr-section-title {
  color: #000000;
}
.cid-uqij8Zf6DV .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uqij8Zf6DV .mbr-desc {
  color: #ffffff;
}
.cid-uqij8Zf6DV .mbr-text {
  color: #000000;
}
.cid-uqij8Zf6DV .mbr-link {
  color: #ffffff;
}
.cid-uqij8ZUm3d {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #d2bfe3;
}
.cid-uqij8ZUm3d .mbr-iconfont {
  font-size: 1.5rem !important;
  font-family: 'Moririse2' !important;
  color: white;
  transition: all 0.3s;
  transform: rotate(45deg);
  background: #d2bfe3;
  border-radius: 50%;
  padding: 1.5rem;
}
@media (max-width: 767px) {
  .cid-uqij8ZUm3d .mbr-iconfont {
    padding: 1rem;
    font-size: 1.2rem !important;
  }
}
.cid-uqij8ZUm3d .panel-group {
  border: none;
}
.cid-uqij8ZUm3d .card-header {
  padding: 1.2rem 0.5rem;
}
@media (max-width: 767px) {
  .cid-uqij8ZUm3d .card-header {
    padding: 1rem 0rem;
  }
}
.cid-uqij8ZUm3d .panel-body {
  padding: 0 0.5rem;
  padding-bottom: 1rem;
}
@media (max-width: 767px) {
  .cid-uqij8ZUm3d .panel-body {
    padding: 0rem;
    padding-bottom: 1rem;
  }
}
.cid-uqij8ZUm3d .content {
  margin: 5rem auto;
}
.cid-uqij8ZUm3d .img-col {
  padding: 0;
}
.cid-uqij8ZUm3d .img-item {
  height: 100%;
}
.cid-uqij8ZUm3d img {
  height: 100%;
  object-fit: cover;
}
.cid-uqij8ZUm3d .collapsed span {
  transform: rotate(0deg);
}
.cid-uqij8ZUm3d .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uqij8ZUm3d p {
  margin-bottom: 0.3rem;
}
.cid-uqij8ZUm3d .panel-title-edit {
  color: #1b1818;
}
.cid-uqij8ZUm3d .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
  border: 0;
  border-radius: 2rem;
}
.cid-uqij8ZUm3d .card {
  background: #fafafa;
  padding: 0rem 2rem;
  border-radius: 2rem;
}
@media (max-width: 767px) {
  .cid-uqij8ZUm3d .card {
    padding: 1rem;
  }
}
.cid-uqij8ZUm3d .panel-text {
  color: #1b1818;
}
.cid-uqij8ZUm3d H3 {
  text-align: center;
  color: #000000;
}
.cid-uqij8ZUm3d H4 {
  text-align: center;
  color: #ffffff;
}
.cid-uqij90EHZ9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #f4f4f6;
}
.cid-uqij90EHZ9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqij90EHZ9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqij90EHZ9 .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uqij90EHZ9 .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uqij90EHZ9 .container {
    padding: 0 24px;
  }
}
.cid-uqij90EHZ9 .row .card {
  padding: 0 12px;
  border-radius: 0 !important;
}
.cid-uqij90EHZ9 .image-wrapper {
  height: 100%;
}
.cid-uqij90EHZ9 .image-wrapper img {
  height: 100%;
  object-fit: cover;
  border-radius: .75rem !important;
}
@media (max-width: 992px) {
  .cid-uqij90EHZ9 .image-wrapper img {
    height: 350px;
  }
}
.cid-uqij90EHZ9 .content-wrapper {
  display: flex;
  align-items: center;
  background-color: #d2bfe3;
  border-radius: .75rem;
  padding: 48px;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uqij90EHZ9 .content-wrapper {
    padding: 24px;
  }
}
.cid-uqij90EHZ9 .content-wrapper .content-wrap {
  width: 100%;
}
.cid-uqij90EHZ9 .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uqij90EHZ9 .content-wrapper .content-wrap .mbr-text {
  margin-bottom: 16px;
}
.cid-uqij90EHZ9 .content-wrapper .content-wrap .mbr-section-btn .btn::before {
  background-image: linear-gradient(90deg, #fb8fc9 0%, transparent 100%);
}
.cid-uqij90EHZ9 .content-wrapper .content-wrap .mbr-section-btn .btn:hover,
.cid-uqij90EHZ9 .content-wrapper .content-wrap .mbr-section-btn .btn:focus {
  box-shadow: inset 250px 10px 5px #7f89e9 !important;
  border-color: #7f89e9 !important;
}
.cid-uqij90EHZ9 .mbr-section-title {
  color: #141414;
}
.cid-uqij90EHZ9 .mbr-text {
  color: #141414;
}
.cid-uqij918ZkV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d2bfe3;
}
.cid-uqij918ZkV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqij918ZkV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqij918ZkV .content-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  padding: 80px 60px;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .cid-uqij918ZkV .content-wrapper {
    gap: 16px;
  }
}
@media (max-width: 1199px) {
  .cid-uqij918ZkV .content-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 992px) {
  .cid-uqij918ZkV .content-wrapper {
    display: block;
    padding: 32px 16px;
  }
}
.cid-uqij918ZkV .content-wrapper .image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-uqij918ZkV .content-wrapper .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .5;
}
@media (max-width: 992px) {
  .cid-uqij918ZkV .content-wrapper .item {
    margin-bottom: 16px;
  }
  .cid-uqij918ZkV .content-wrapper .item:last-child {
    margin-bottom: 0;
  }
}
.cid-uqij918ZkV .content-wrapper .item .item-wrapper {
  position: relative;
  height: 100%;
  border: 3px solid #050f0f;
  box-shadow: 4px 4px 0 0 #050f0f;
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background-color: #fafafa;
}
.cid-uqij918ZkV .content-wrapper .item .item-wrapper:hover,
.cid-uqij918ZkV .content-wrapper .item .item-wrapper:focus {
  transform: translate(0.2rem, 0.2rem);
  box-shadow: none;
}
.cid-uqij918ZkV .content-wrapper .item .item-wrapper .item-content .item-img {
  border-bottom: 3px solid #050f0f;
}
.cid-uqij918ZkV .content-wrapper .item .item-wrapper .item-content .item-img img {
  height: 390px;
  width: 100%;
  object-fit: cover;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-uqij918ZkV .content-wrapper .item .item-wrapper .item-content .item-img img {
    height: 350px;
  }
}
.cid-uqij918ZkV .content-wrapper .item .item-wrapper .item-content .item-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: .8;
}
.cid-uqij918ZkV .content-wrapper .item .item-wrapper .item-content .text-wrapper {
  padding: 32px;
}
@media (max-width: 1440px) {
  .cid-uqij918ZkV .content-wrapper .item .item-wrapper .item-content .text-wrapper {
    padding: 32px 24px;
  }
}
@media (max-width: 992px) {
  .cid-uqij918ZkV .content-wrapper .item .item-wrapper .item-content .text-wrapper {
    padding: 32px 16px;
  }
}
.cid-uqij918ZkV .content-wrapper .item .item-wrapper .item-content .text-wrapper .item-title {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uqij918ZkV .content-wrapper .item .item-wrapper .item-content .text-wrapper .item-title {
    margin-bottom: 24px;
  }
}
.cid-uqij918ZkV .content-wrapper .item .item-wrapper .item-content .text-wrapper .item-text {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uqij918ZkV .content-wrapper .item .item-wrapper .item-content .text-wrapper .item-text {
    margin-bottom: 0;
  }
}
.cid-uqij918ZkV .content-wrapper .item .item-wrapper .tags-wrapper {
  padding: 0 32px 24px 32px;
}
@media (max-width: 1440px) {
  .cid-uqij918ZkV .content-wrapper .item .item-wrapper .tags-wrapper {
    padding: 0 24px 24px 24px;
  }
}
@media (max-width: 992px) {
  .cid-uqij918ZkV .content-wrapper .item .item-wrapper .tags-wrapper {
    padding: 0 16px 24px 16px;
  }
}
.cid-uqij918ZkV .content-wrapper .item .item-wrapper .tags-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uqij918ZkV .content-wrapper .item .item-wrapper .tags-wrapper .list .item-wrap {
  display: inline-flex;
  padding: 11px 20px;
  margin: 0 8px 8px 0;
  background-color: #d3f2ff;
}
.cid-uqij918ZkV .content-wrapper .item .item-wrapper .tags-wrapper .list .item-wrap:nth-child(2n) {
  background-color: #bafca2;
}
.cid-uqij918ZkV .content-wrapper .item .item-wrapper .tags-wrapper .list .item-wrap:nth-child(3n) {
  background-color: #fdfd96;
}
.cid-uqij918ZkV .item-title {
  color: #050f0f;
}
.cid-uqij918ZkV .item-text {
  color: #050f0f;
}
.cid-uqij918ZkV .list {
  color: #050f0f;
}
.cid-uqij91Miz6 {
  padding-top: 60px;
  padding-bottom: 60px;
  background: #fafafa;
}
.cid-uqij91Miz6 .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-uqij91Miz6 .video-block {
  margin: auto;
}
@media (max-width: 767px) {
  .cid-uqij91Miz6 .video-block {
    width: 100% !important;
  }
}
.cid-uqij91Miz6 .mbr-section-title {
  color: #000000;
}
.cid-uqij92iGvw {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #d2bfe3;
}
.cid-uqij92iGvw blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #d2bfe3;
}
.cid-uqij92iGvw .mbr-section-title {
  color: #000000;
}
.cid-uqij92iGvw .mbr-text {
  color: #000000;
}
.cid-uqiRLsLfDR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #d2bfe3;
}
.cid-uqiRLsLfDR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqiRLsLfDR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqiRLsLfDR .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uqiRLsLfDR .container-fluid {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-uqiRLsLfDR .container-fluid {
    padding: 0 12px;
  }
}
@media (max-width: 992px) {
  .cid-uqiRLsLfDR .container {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-uqiRLsLfDR .container {
    padding: 0 12px;
  }
}
.cid-uqiRLsLfDR .title-wrapper {
  padding: 64px;
  background-color: #ffffff;
  border-radius: 32px;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uqiRLsLfDR .title-wrapper {
    margin-bottom: 32px;
    height: auto;
    padding: 24px;
  }
}
.cid-uqiRLsLfDR .title-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
.cid-uqiRLsLfDR .title-wrapper .mbr-text {
  margin-bottom: 0;
  opacity: .6;
}
.cid-uqiRLsLfDR .panel-group {
  padding: 64px;
  background-color: #ffffff;
  border-radius: 32px;
}
@media (max-width: 992px) {
  .cid-uqiRLsLfDR .panel-group {
    padding: 24px;
  }
}
.cid-uqiRLsLfDR .panel-group .card {
  border: 1px solid #bbbbbb;
  border-radius: 32px !important;
  background-color: #d2bfe3;
  margin-bottom: 32px;
}
.cid-uqiRLsLfDR .panel-group .card .card-header {
  padding: 32px;
  border: none;
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-uqiRLsLfDR .panel-group .card .card-header {
    padding: 24px;
  }
}
.cid-uqiRLsLfDR .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uqiRLsLfDR .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(90deg);
}
.cid-uqiRLsLfDR .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uqiRLsLfDR .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  min-width: 40px;
  height: 40px;
  background-color: #ffffff;
  margin-left: 16px;
  transition: all 0.3s ease-in-out;
  border-radius: 100%;
  font-size: 23px;
  color: #1d1d1f;
}
.cid-uqiRLsLfDR .panel-group .card .panel-collapse .panel-body {
  padding: 0 32px 32px;
}
@media (max-width: 992px) {
  .cid-uqiRLsLfDR .panel-group .card .panel-collapse .panel-body {
    padding: 0 24px 24px;
  }
}
.cid-uqiRLsLfDR .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
  opacity: .6;
}
.cid-uqiRLsLfDR .mbr-section-title {
  color: #d57df7;
}
.cid-uqiRLsLfDR .mbr-text {
  color: #ffffff;
}
.cid-uqiRLsLfDR .panel-title-edit {
  color: #000000;
}
.cid-uqiRLsLfDR .panel-text {
  color: #000000;
}
.cid-uqij92ODzZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uqij92ODzZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqij92ODzZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqij92ODzZ .content-wrapper {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uqij92ODzZ .content-wrapper {
    padding: 0;
  }
}
.cid-uqij92ODzZ .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uqij92ODzZ .content-wrapper .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uqij92ODzZ .content-wrapper .google-map {
  border: 3px solid #050f0f;
  box-shadow: 4px 4px 0 0 #050f0f;
}
.cid-uqij92ODzZ .content-wrapper .google-map iframe {
  height: 600px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uqij92ODzZ .content-wrapper .google-map iframe {
    height: 350px;
  }
}
.cid-uqij92ODzZ .mbr-section-title {
  color: #050f0f;
}
.cid-uqij92ODzZ .mbr-section-title,
.cid-uqij92ODzZ .mbr-section-btn {
  text-align: center;
}
.cid-uqij93nzHG {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #d2bfe3;
}
.cid-uqij93nzHG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqij93nzHG .item-wrapper {
  display: flex;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-uqij93nzHG .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uqij93nzHG .item-wrapper:hover .iconfont-wrapper:after {
  width: 70px;
  height: 70px;
}
.cid-uqij93nzHG a {
  font-weight: 600;
}
.cid-uqij93nzHG a:hover {
  background: none !important;
}
@media (min-width: 1400px) {
  .cid-uqij93nzHG .col-lg-3,
  .cid-uqij93nzHG .col-xl-3 {
    max-width: 20%;
  }
}
@media (max-width: 1200px) {
  .cid-uqij93nzHG .col-lg-12 {
    min-width: 100% !important;
  }
}
.cid-uqij93nzHG .card-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-uqij93nzHG h5 {
  margin: 0;
}
.cid-uqij93nzHG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqij93nzHG .iconfont-wrapper {
  position: relative;
}
.cid-uqij93nzHG .mbr-iconfont {
  display: flex;
  padding-right: 1rem;
  font-size: 2rem;
  color: #000000;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 2;
  position: relative;
}
.cid-uqij93nzHG .socicon {
  font-size: 1rem;
  width: 30px;
  height: 30px;
}
.cid-uqij93nzHG .sociconfont-wrapper {
  display: flex;
}
.cid-uqij93nzHG .card-title,
.cid-uqij93nzHG .iconfont-wrapper {
  color: #000000;
}
.cid-uqij93nzHG .card-text {
  color: #000000;
}
.cid-uqij93nzHG .mbr-section-title {
  color: #000000;
}
.cid-uqij93nzHG .main-title,
.cid-uqij93nzHG .iconfont-wrapper {
  text-align: left;
}
.cid-uqij947jzM {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #d2bfe3;
  overflow: hidden;
}
.cid-uqij947jzM .media-container-row .mbr-text {
  color: #000000;
}
.cid-uqij9znTnG {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uqij9znTnG nav.navbar {
  position: fixed;
}
.cid-uqij9znTnG .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-uqij9znTnG .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uqij9znTnG .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uqij9znTnG .dropdown-item:hover,
.cid-uqij9znTnG .dropdown-item:focus {
  background: #0616c2 !important;
  color: white !important;
}
.cid-uqij9znTnG .dropdown-item:hover span {
  color: white;
}
.cid-uqij9znTnG .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uqij9znTnG .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uqij9znTnG .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uqij9znTnG .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uqij9znTnG .nav-link {
  position: relative;
}
.cid-uqij9znTnG .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uqij9znTnG .container {
    flex-wrap: wrap;
  }
}
.cid-uqij9znTnG .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uqij9znTnG .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uqij9znTnG .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uqij9znTnG .dropdown-menu,
.cid-uqij9znTnG .navbar.opened {
  background: #ffffff !important;
}
.cid-uqij9znTnG .nav-item:focus,
.cid-uqij9znTnG .nav-link:focus {
  outline: none;
}
.cid-uqij9znTnG .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uqij9znTnG .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uqij9znTnG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uqij9znTnG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uqij9znTnG .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uqij9znTnG .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uqij9znTnG .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-uqij9znTnG .navbar.opened {
  transition: all 0.3s;
}
.cid-uqij9znTnG .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uqij9znTnG .navbar .navbar-logo img {
  width: auto;
}
.cid-uqij9znTnG .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uqij9znTnG .navbar.collapsed {
  justify-content: center;
}
.cid-uqij9znTnG .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uqij9znTnG .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uqij9znTnG .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.8rem);
  }
}
.cid-uqij9znTnG .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uqij9znTnG .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uqij9znTnG .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-uqij9znTnG .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uqij9znTnG .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uqij9znTnG .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uqij9znTnG .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uqij9znTnG .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uqij9znTnG .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uqij9znTnG .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uqij9znTnG .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-uqij9znTnG .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uqij9znTnG .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uqij9znTnG .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uqij9znTnG .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uqij9znTnG .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uqij9znTnG .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uqij9znTnG .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uqij9znTnG .navbar.navbar-short {
  min-height: 60px;
}
.cid-uqij9znTnG .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uqij9znTnG .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uqij9znTnG .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-uqij9znTnG .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uqij9znTnG .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uqij9znTnG .dropdown-item.active,
.cid-uqij9znTnG .dropdown-item:active {
  background-color: transparent;
}
.cid-uqij9znTnG .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uqij9znTnG .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uqij9znTnG .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uqij9znTnG .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uqij9znTnG .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uqij9znTnG .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uqij9znTnG ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uqij9znTnG .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uqij9znTnG button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uqij9znTnG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uqij9znTnG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uqij9znTnG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uqij9znTnG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uqij9znTnG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uqij9znTnG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uqij9znTnG nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uqij9znTnG nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uqij9znTnG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uqij9znTnG .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uqij9znTnG a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uqij9znTnG .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-uqij9znTnG .navbar {
    height: 70px;
  }
  .cid-uqij9znTnG .navbar.opened {
    height: auto;
  }
  .cid-uqij9znTnG .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uqij9zXnLW {
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uqij9zXnLW .decor-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 52%;
  height: 95%;
  border-radius: 0 85% 0 0;
  background-color: #d2bfe3;
  pointer-events: none;
}
@media (max-width: 992px) {
  .cid-uqij9zXnLW .decor-wrap {
    width: 60%;
    height: 50%;
    border-radius: 0 50% 0 0;
  }
}
.cid-uqij9zXnLW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqij9zXnLW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqij9zXnLW .row {
  position: relative;
  z-index: 1;
}
.cid-uqij9zXnLW .title-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-uqij9zXnLW .title-wrapper .mbr-section-title {
    margin-bottom: 46px;
  }
}
.cid-uqij9zXnLW .image-wrapper {
  margin-right: 18px;
}
@media (max-width: 992px) {
  .cid-uqij9zXnLW .image-wrapper {
    margin-right: 0;
    margin-bottom: 46px;
  }
}
.cid-uqij9zXnLW .image-wrapper img {
  height: 620px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uqij9zXnLW .image-wrapper img {
    height: 350px;
  }
}
.cid-uqij9zXnLW .content-wrapper {
  padding-top: 64px;
}
@media (max-width: 992px) {
  .cid-uqij9zXnLW .content-wrapper {
    padding-top: 22px;
  }
}
.cid-uqij9zXnLW .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 46px;
  display: inline-block;
  width: 55%;
}
@media (max-width: 992px) {
  .cid-uqij9zXnLW .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 22px;
  }
}
.cid-uqij9zXnLW .content-wrapper .desc-wrapper {
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uqij9zXnLW .content-wrapper .desc-wrapper {
    display: block;
  }
}
.cid-uqij9zXnLW .content-wrapper .desc-wrapper .mbr-desc {
  width: 50%;
  margin-right: 20px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uqij9zXnLW .content-wrapper .desc-wrapper .mbr-desc {
    margin-right: 0;
    width: 100%;
    margin-bottom: 12px;
  }
}
.cid-uqij9zXnLW .content-wrapper .desc-wrapper .mbr-section-btn {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uqij9zXnLW .content-wrapper .desc-wrapper .mbr-section-btn {
    width: 100%;
  }
}
.cid-uqij9zXnLW .content-wrapper .desc-wrapper .mbr-section-btn .btn {
  padding: 29px 64px;
}
@media (max-width: 1200px) {
  .cid-uqij9zXnLW .content-wrapper .desc-wrapper .mbr-section-btn .btn {
    padding: 20px 32px;
  }
}
.cid-uqij9zXnLW .mbr-section-title {
  color: #212529;
  text-align: center;
}
.cid-uqij9zXnLW .mbr-text {
  color: #51565c;
}
.cid-uqij9zXnLW .mbr-desc {
  color: #51565c;
}
.cid-uqij9zXnLW .mbr-text,
.cid-uqij9zXnLW .text-wrapper {
  color: #000000;
}
.cid-uqij9B0YND {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uqij9B0YND .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-uqij9B0YND .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-uqij9B0YND .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000000;
  background-color: #d2bfe3;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-uqij9B0YND .mbr-section-title {
  text-align: center;
}
.cid-uqij9BsQgI {
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
  background-color: #d2bfe3;
}
.cid-uqij9BsQgI .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #000000;
}
.cid-uqij9BsQgI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqij9BsQgI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqij9BsQgI .content-wrap {
  align-items: center;
  justify-content: space-between;
}
.cid-uqij9BsQgI .content-wrap .card {
  justify-content: space-between;
}
.cid-uqij9BsQgI .content-wrapper {
  padding: 0 24px;
}
@media (max-width: 992px) {
  .cid-uqij9BsQgI .content-wrapper {
    padding: 0;
  }
}
.cid-uqij9BsQgI .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uqij9BsQgI .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  margin-bottom: 0;
  padding: 10px;
  -webkit-text-stroke-color: #150764;
  box-shadow: 4px 4px 0 0 #150764;
  border: 2px solid #150764;
  background-color: #4188ff;
  -webkit-text-stroke-width: .15rem;
}
@media (max-width: 992px) {
  .cid-uqij9BsQgI .content-wrapper .desc-wrapper .mbr-desc {
    -webkit-text-stroke-width: .12rem;
  }
}
.cid-uqij9BsQgI .mbr-section-title {
  color: #150764;
  text-align: center;
}
.cid-uqij9BsQgI .mbr-desc,
.cid-uqij9BsQgI .desc-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uqij9BsQgI .mbr-section-title,
.cid-uqij9BsQgI .mbr-section-btn {
  color: #000000;
}
.cid-uqij9BU0eo {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f7fff7;
}
.cid-uqij9BU0eo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqij9BU0eo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqij9BU0eo .content-wrapper {
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uqij9BU0eo .content-wrapper {
    display: block;
    padding: 0;
  }
}
.cid-uqij9BU0eo .content-wrapper .title-wrapper {
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uqij9BU0eo .content-wrapper .title-wrapper {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-uqij9BU0eo .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uqij9BU0eo .content-wrapper .title-wrapper .mbr-section-title {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-uqij9BU0eo .content-wrapper .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uqij9BU0eo .content-wrapper .title-wrapper .mbr-section-btn {
  margin-top: 22px;
}
@media (max-width: 992px) {
  .cid-uqij9BU0eo .content-wrapper .title-wrapper .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-uqij9BU0eo .content-wrapper .image-wrap {
  width: 40%;
  border: 3px solid #050f0f;
  box-shadow: 4px 4px 0 0 #050f0f;
  background-color: #d2bfe3;
  padding: 60px 20px;
  transform: rotate(3deg);
}
@media (max-width: 992px) {
  .cid-uqij9BU0eo .content-wrapper .image-wrap {
    padding: 32px 16px;
    width: 100%;
    transform: rotate(0);
  }
}
.cid-uqij9BU0eo .content-wrapper .image-wrap img {
  height: 550px;
  width: 100%;
  object-fit: cover;
}
.cid-uqij9BU0eo .mbr-section-title {
  color: #050f0f;
}
.cid-uqij9BU0eo .mbr-text {
  color: #050f0f;
}
.cid-uqij9Cmiq6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uqij9Cmiq6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqij9Cmiq6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uqij9Cmiq6 .container {
    padding: 0 16px;
  }
}
.cid-uqij9Cmiq6 .card {
  justify-content: center;
}
.cid-uqij9Cmiq6 .title-wrapper .mbr-section-title {
  display: inline-flex;
  margin-bottom: 0;
  padding: 18px 24px;
  border-radius: 16px !important;
  box-shadow: 6px 8px 0 0 #000000;
  background-color: #d2bfe3;
  transform: rotate(-4deg);
}
@media (max-width: 992px) {
  .cid-uqij9Cmiq6 .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uqij9Cmiq6 .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
.cid-uqij9Cmiq6 .text-wrapper .mbr-desc {
  margin-top: 24px;
  margin-bottom: 0;
}
.cid-uqij9Cmiq6 .mbr-section-title {
  color: #000000;
}
.cid-uqij9Cmiq6 .mbr-text {
  color: #000000;
}
.cid-uqij9Cmiq6 .mbr-desc {
  color: #000000;
}
.cid-uqij9CRo0c {
  padding-top: 0rem;
  padding-bottom: 0rem;
  position: relative;
  overflow: hidden;
  background-color: #d2bfe3;
}
.cid-uqij9CRo0c .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-uqij9CRo0c .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqij9CRo0c .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqij9CRo0c .content-wrap {
  margin: 0;
}
.cid-uqij9CRo0c .content-wrap .card {
  padding: 0;
}
.cid-uqij9CRo0c .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  overflow: hidden;
  background-color: #000000;
  padding: 40px 32px;
  border-right: 1px solid #150764;
  border-right: none;
  border-left: 1px solid #150764;
}
@media (max-width: 1640px) {
  .cid-uqij9CRo0c .image-wrapper {
    padding: 40px 24px;
  }
}
@media (max-width: 992px) {
  .cid-uqij9CRo0c .image-wrapper {
    padding: 40px 0;
  }
}
@media (max-width: 992px) {
  .cid-uqij9CRo0c .image-wrapper {
    border-right: none;
    border-bottom: 1px solid #150764;
  }
}
@media (max-width: 992px) {
  .cid-uqij9CRo0c .image-wrapper {
    border-left: none;
    border-bottom: 1px solid #150764;
  }
}
.cid-uqij9CRo0c .image-wrapper img {
  height: 620px;
  width: 620px;
  object-fit: cover;
  border-radius: 100% !important;
}
@media (max-width: 1640px) {
  .cid-uqij9CRo0c .image-wrapper img {
    height: 550px;
    width: 550px;
  }
}
@media (max-width: 1200px) {
  .cid-uqij9CRo0c .image-wrapper img {
    height: 350px;
    width: 350px;
  }
}
@media (max-width: 768px) {
  .cid-uqij9CRo0c .image-wrapper img {
    height: 250px;
    width: 250px;
  }
}
.cid-uqij9CRo0c .content-wrapper {
  padding: 40px 72px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
@media (max-width: 1640px) {
  .cid-uqij9CRo0c .content-wrapper {
    padding: 40px 24px;
  }
}
@media (max-width: 992px) {
  .cid-uqij9CRo0c .content-wrapper {
    padding: 40px 0;
  }
}
.cid-uqij9CRo0c .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uqij9CRo0c .content-wrapper .text-wrapper .text-wrap .mbr-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-uqij9CRo0c .content-wrapper .text-wrapper .text-wrap .mbr-text {
    width: 100%;
    margin-bottom: 16px;
  }
}
.cid-uqij9CRo0c .mbr-section-title {
  color: #150764;
}
.cid-uqij9CRo0c .mbr-text {
  color: #150764;
}
.cid-uqij9CRo0c .mbr-section-title,
.cid-uqij9CRo0c .mbr-section-btn {
  color: #000000;
}
.cid-uqij9CRo0c .mbr-text,
.cid-uqij9CRo0c .text-wrap {
  color: #000000;
}
.cid-uqij9DnYJE {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uqij9DnYJE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqij9DnYJE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqij9DSTKp {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d2bfe3;
}
.cid-uqij9DSTKp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqij9DSTKp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqij9DSTKp .row {
  justify-content: center;
}
.cid-uqij9DSTKp .content-wrapper {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-uqij9DSTKp .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-uqij9DSTKp .content-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-uqij9DSTKp .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uqij9DSTKp .item {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-uqij9DSTKp .item {
    margin-bottom: 35px;
  }
}
.cid-uqij9DSTKp .item .item-wrapper .card-box .icon-wrapper {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uqij9DSTKp .item .item-wrapper .card-box .icon-wrapper {
    margin-bottom: 15px;
  }
}
.cid-uqij9DSTKp .item .item-wrapper .card-box .icon-wrapper .mbr-iconfont {
  width: 95px;
  height: 95px;
  border-radius: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #000000;
  color: #ffffff;
  font-size: 60px;
}
.cid-uqij9DSTKp .item .item-wrapper .card-box .item-title {
  margin-bottom: 10px;
}
.cid-uqij9DSTKp .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-uqij9DSTKp .border-wrapper {
  width: 100%;
  height: 1px;
  background-color: #fafafa;
}
.cid-uqij9DSTKp .mbr-section-title {
  color: #fafafa;
}
.cid-uqij9DSTKp .mbr-text {
  color: #000000;
}
.cid-uqij9DSTKp .item-title {
  color: #000000;
}
.cid-uqij9DSTKp .item-text {
  color: #000000;
}
.cid-uqij9EBi4i {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uqij9EBi4i .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqij9EBi4i .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqij9EBi4i .container-fluid {
  padding: 0 56px;
}
@media (max-width: 992px) {
  .cid-uqij9EBi4i .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 992px) {
  .cid-uqij9EBi4i .container {
    padding: 0 26px;
  }
}
.cid-uqij9EBi4i .row {
  justify-content: center;
}
.cid-uqij9EBi4i .content-wrapper {
  display: flex;
  align-items: center;
  padding: 200px 100px 200px 60px;
  background-color: #d2bfe3;
  border-radius: 20px;
}
@media (max-width: 1440px) {
  .cid-uqij9EBi4i .content-wrapper {
    padding: 100px 60px;
  }
}
@media (max-width: 992px) {
  .cid-uqij9EBi4i .content-wrapper {
    padding: 100px 20px;
    display: block;
  }
}
.cid-uqij9EBi4i .content-wrapper .title-wrapper {
  width: 50%;
  padding-right: 45px;
}
@media (max-width: 992px) {
  .cid-uqij9EBi4i .content-wrapper .title-wrapper {
    width: 100%;
    padding-right: 0;
    margin-bottom: 40px;
  }
}
.cid-uqij9EBi4i .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-uqij9EBi4i .content-wrapper .title-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-uqij9EBi4i .content-wrapper .text-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uqij9EBi4i .content-wrapper .text-wrapper {
    width: 100%;
  }
}
.cid-uqij9EBi4i .content-wrapper .text-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-uqij9EBi4i .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-uqij9EBi4i .content-wrapper .text-wrapper .link-wrapper:hover .mbr-link,
.cid-uqij9EBi4i .content-wrapper .text-wrapper .link-wrapper:focus .mbr-link {
  color: #000000;
}
.cid-uqij9EBi4i .content-wrapper .text-wrapper .link-wrapper .mbr-link {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.cid-uqij9EBi4i .mbr-section-title {
  color: #000000;
}
.cid-uqij9EBi4i .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uqij9EBi4i .mbr-desc {
  color: #ffffff;
}
.cid-uqij9EBi4i .mbr-text {
  color: #000000;
}
.cid-uqij9EBi4i .mbr-link {
  color: #ffffff;
}
.cid-uqij9F6wOD {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #d2bfe3;
}
.cid-uqij9F6wOD .mbr-iconfont {
  font-size: 1.5rem !important;
  font-family: 'Moririse2' !important;
  color: white;
  transition: all 0.3s;
  transform: rotate(45deg);
  background: #d2bfe3;
  border-radius: 50%;
  padding: 1.5rem;
}
@media (max-width: 767px) {
  .cid-uqij9F6wOD .mbr-iconfont {
    padding: 1rem;
    font-size: 1.2rem !important;
  }
}
.cid-uqij9F6wOD .panel-group {
  border: none;
}
.cid-uqij9F6wOD .card-header {
  padding: 1.2rem 0.5rem;
}
@media (max-width: 767px) {
  .cid-uqij9F6wOD .card-header {
    padding: 1rem 0rem;
  }
}
.cid-uqij9F6wOD .panel-body {
  padding: 0 0.5rem;
  padding-bottom: 1rem;
}
@media (max-width: 767px) {
  .cid-uqij9F6wOD .panel-body {
    padding: 0rem;
    padding-bottom: 1rem;
  }
}
.cid-uqij9F6wOD .content {
  margin: 5rem auto;
}
.cid-uqij9F6wOD .img-col {
  padding: 0;
}
.cid-uqij9F6wOD .img-item {
  height: 100%;
}
.cid-uqij9F6wOD img {
  height: 100%;
  object-fit: cover;
}
.cid-uqij9F6wOD .collapsed span {
  transform: rotate(0deg);
}
.cid-uqij9F6wOD .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uqij9F6wOD p {
  margin-bottom: 0.3rem;
}
.cid-uqij9F6wOD .panel-title-edit {
  color: #1b1818;
}
.cid-uqij9F6wOD .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
  border: 0;
  border-radius: 2rem;
}
.cid-uqij9F6wOD .card {
  background: #fafafa;
  padding: 0rem 2rem;
  border-radius: 2rem;
}
@media (max-width: 767px) {
  .cid-uqij9F6wOD .card {
    padding: 1rem;
  }
}
.cid-uqij9F6wOD .panel-text {
  color: #1b1818;
}
.cid-uqij9F6wOD H3 {
  text-align: center;
  color: #000000;
}
.cid-uqij9F6wOD H4 {
  text-align: center;
  color: #ffffff;
}
.cid-uqij9FO1Ac {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #f4f4f6;
}
.cid-uqij9FO1Ac .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqij9FO1Ac .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqij9FO1Ac .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uqij9FO1Ac .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uqij9FO1Ac .container {
    padding: 0 24px;
  }
}
.cid-uqij9FO1Ac .row .card {
  padding: 0 12px;
  border-radius: 0 !important;
}
.cid-uqij9FO1Ac .image-wrapper {
  height: 100%;
}
.cid-uqij9FO1Ac .image-wrapper img {
  height: 100%;
  object-fit: cover;
  border-radius: .75rem !important;
}
@media (max-width: 992px) {
  .cid-uqij9FO1Ac .image-wrapper img {
    height: 350px;
  }
}
.cid-uqij9FO1Ac .content-wrapper {
  display: flex;
  align-items: center;
  background-color: #d2bfe3;
  border-radius: .75rem;
  padding: 48px;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uqij9FO1Ac .content-wrapper {
    padding: 24px;
  }
}
.cid-uqij9FO1Ac .content-wrapper .content-wrap {
  width: 100%;
}
.cid-uqij9FO1Ac .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uqij9FO1Ac .content-wrapper .content-wrap .mbr-text {
  margin-bottom: 16px;
}
.cid-uqij9FO1Ac .content-wrapper .content-wrap .mbr-section-btn .btn::before {
  background-image: linear-gradient(90deg, #fb8fc9 0%, transparent 100%);
}
.cid-uqij9FO1Ac .content-wrapper .content-wrap .mbr-section-btn .btn:hover,
.cid-uqij9FO1Ac .content-wrapper .content-wrap .mbr-section-btn .btn:focus {
  box-shadow: inset 250px 10px 5px #7f89e9 !important;
  border-color: #7f89e9 !important;
}
.cid-uqij9FO1Ac .mbr-section-title {
  color: #141414;
}
.cid-uqij9FO1Ac .mbr-text {
  color: #141414;
}
.cid-uqij9Giw6n {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d2bfe3;
}
.cid-uqij9Giw6n .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqij9Giw6n .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqij9Giw6n .content-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  padding: 80px 60px;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .cid-uqij9Giw6n .content-wrapper {
    gap: 16px;
  }
}
@media (max-width: 1199px) {
  .cid-uqij9Giw6n .content-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 992px) {
  .cid-uqij9Giw6n .content-wrapper {
    display: block;
    padding: 32px 16px;
  }
}
.cid-uqij9Giw6n .content-wrapper .image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-uqij9Giw6n .content-wrapper .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .5;
}
@media (max-width: 992px) {
  .cid-uqij9Giw6n .content-wrapper .item {
    margin-bottom: 16px;
  }
  .cid-uqij9Giw6n .content-wrapper .item:last-child {
    margin-bottom: 0;
  }
}
.cid-uqij9Giw6n .content-wrapper .item .item-wrapper {
  position: relative;
  height: 100%;
  border: 3px solid #050f0f;
  box-shadow: 4px 4px 0 0 #050f0f;
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background-color: #fafafa;
}
.cid-uqij9Giw6n .content-wrapper .item .item-wrapper:hover,
.cid-uqij9Giw6n .content-wrapper .item .item-wrapper:focus {
  transform: translate(0.2rem, 0.2rem);
  box-shadow: none;
}
.cid-uqij9Giw6n .content-wrapper .item .item-wrapper .item-content .item-img {
  border-bottom: 3px solid #050f0f;
}
.cid-uqij9Giw6n .content-wrapper .item .item-wrapper .item-content .item-img img {
  height: 390px;
  width: 100%;
  object-fit: cover;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-uqij9Giw6n .content-wrapper .item .item-wrapper .item-content .item-img img {
    height: 350px;
  }
}
.cid-uqij9Giw6n .content-wrapper .item .item-wrapper .item-content .item-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: .8;
}
.cid-uqij9Giw6n .content-wrapper .item .item-wrapper .item-content .text-wrapper {
  padding: 32px;
}
@media (max-width: 1440px) {
  .cid-uqij9Giw6n .content-wrapper .item .item-wrapper .item-content .text-wrapper {
    padding: 32px 24px;
  }
}
@media (max-width: 992px) {
  .cid-uqij9Giw6n .content-wrapper .item .item-wrapper .item-content .text-wrapper {
    padding: 32px 16px;
  }
}
.cid-uqij9Giw6n .content-wrapper .item .item-wrapper .item-content .text-wrapper .item-title {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uqij9Giw6n .content-wrapper .item .item-wrapper .item-content .text-wrapper .item-title {
    margin-bottom: 24px;
  }
}
.cid-uqij9Giw6n .content-wrapper .item .item-wrapper .item-content .text-wrapper .item-text {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uqij9Giw6n .content-wrapper .item .item-wrapper .item-content .text-wrapper .item-text {
    margin-bottom: 0;
  }
}
.cid-uqij9Giw6n .content-wrapper .item .item-wrapper .tags-wrapper {
  padding: 0 32px 24px 32px;
}
@media (max-width: 1440px) {
  .cid-uqij9Giw6n .content-wrapper .item .item-wrapper .tags-wrapper {
    padding: 0 24px 24px 24px;
  }
}
@media (max-width: 992px) {
  .cid-uqij9Giw6n .content-wrapper .item .item-wrapper .tags-wrapper {
    padding: 0 16px 24px 16px;
  }
}
.cid-uqij9Giw6n .content-wrapper .item .item-wrapper .tags-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uqij9Giw6n .content-wrapper .item .item-wrapper .tags-wrapper .list .item-wrap {
  display: inline-flex;
  padding: 11px 20px;
  margin: 0 8px 8px 0;
  background-color: #d3f2ff;
}
.cid-uqij9Giw6n .content-wrapper .item .item-wrapper .tags-wrapper .list .item-wrap:nth-child(2n) {
  background-color: #bafca2;
}
.cid-uqij9Giw6n .content-wrapper .item .item-wrapper .tags-wrapper .list .item-wrap:nth-child(3n) {
  background-color: #fdfd96;
}
.cid-uqij9Giw6n .item-title {
  color: #050f0f;
}
.cid-uqij9Giw6n .item-text {
  color: #050f0f;
}
.cid-uqij9Giw6n .list {
  color: #050f0f;
}
.cid-uqij9GW4xd {
  padding-top: 60px;
  padding-bottom: 60px;
  background: #fafafa;
}
.cid-uqij9GW4xd .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-uqij9GW4xd .video-block {
  margin: auto;
}
@media (max-width: 767px) {
  .cid-uqij9GW4xd .video-block {
    width: 100% !important;
  }
}
.cid-uqij9GW4xd .mbr-section-title {
  color: #000000;
}
.cid-uqij9HBcaB {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #d2bfe3;
}
.cid-uqij9HBcaB blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #d2bfe3;
}
.cid-uqij9HBcaB .mbr-section-title {
  color: #000000;
}
.cid-uqij9HBcaB .mbr-text {
  color: #000000;
}
.cid-uqiS79pOpT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #d2bfe3;
}
.cid-uqiS79pOpT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqiS79pOpT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqiS79pOpT .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uqiS79pOpT .container-fluid {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-uqiS79pOpT .container-fluid {
    padding: 0 12px;
  }
}
@media (max-width: 992px) {
  .cid-uqiS79pOpT .container {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-uqiS79pOpT .container {
    padding: 0 12px;
  }
}
.cid-uqiS79pOpT .title-wrapper {
  padding: 64px;
  background-color: #ffffff;
  border-radius: 32px;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uqiS79pOpT .title-wrapper {
    margin-bottom: 32px;
    height: auto;
    padding: 24px;
  }
}
.cid-uqiS79pOpT .title-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
.cid-uqiS79pOpT .title-wrapper .mbr-text {
  margin-bottom: 0;
  opacity: .6;
}
.cid-uqiS79pOpT .panel-group {
  padding: 64px;
  background-color: #ffffff;
  border-radius: 32px;
}
@media (max-width: 992px) {
  .cid-uqiS79pOpT .panel-group {
    padding: 24px;
  }
}
.cid-uqiS79pOpT .panel-group .card {
  border: 1px solid #bbbbbb;
  border-radius: 32px !important;
  background-color: #d2bfe3;
  margin-bottom: 32px;
}
.cid-uqiS79pOpT .panel-group .card .card-header {
  padding: 32px;
  border: none;
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-uqiS79pOpT .panel-group .card .card-header {
    padding: 24px;
  }
}
.cid-uqiS79pOpT .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uqiS79pOpT .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(90deg);
}
.cid-uqiS79pOpT .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uqiS79pOpT .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  min-width: 40px;
  height: 40px;
  background-color: #ffffff;
  margin-left: 16px;
  transition: all 0.3s ease-in-out;
  border-radius: 100%;
  font-size: 23px;
  color: #1d1d1f;
}
.cid-uqiS79pOpT .panel-group .card .panel-collapse .panel-body {
  padding: 0 32px 32px;
}
@media (max-width: 992px) {
  .cid-uqiS79pOpT .panel-group .card .panel-collapse .panel-body {
    padding: 0 24px 24px;
  }
}
.cid-uqiS79pOpT .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
  opacity: .6;
}
.cid-uqiS79pOpT .mbr-section-title {
  color: #d57df7;
}
.cid-uqiS79pOpT .mbr-text {
  color: #ffffff;
}
.cid-uqiS79pOpT .panel-title-edit {
  color: #000000;
}
.cid-uqiS79pOpT .panel-text {
  color: #000000;
}
.cid-uqij9I3r2L {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uqij9I3r2L .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqij9I3r2L .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqij9I3r2L .content-wrapper {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uqij9I3r2L .content-wrapper {
    padding: 0;
  }
}
.cid-uqij9I3r2L .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uqij9I3r2L .content-wrapper .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uqij9I3r2L .content-wrapper .google-map {
  border: 3px solid #050f0f;
  box-shadow: 4px 4px 0 0 #050f0f;
}
.cid-uqij9I3r2L .content-wrapper .google-map iframe {
  height: 600px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uqij9I3r2L .content-wrapper .google-map iframe {
    height: 350px;
  }
}
.cid-uqij9I3r2L .mbr-section-title {
  color: #050f0f;
}
.cid-uqij9I3r2L .mbr-section-title,
.cid-uqij9I3r2L .mbr-section-btn {
  text-align: center;
}
.cid-uqij9IA0jN {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #d2bfe3;
}
.cid-uqij9IA0jN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqij9IA0jN .item-wrapper {
  display: flex;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-uqij9IA0jN .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uqij9IA0jN .item-wrapper:hover .iconfont-wrapper:after {
  width: 70px;
  height: 70px;
}
.cid-uqij9IA0jN a {
  font-weight: 600;
}
.cid-uqij9IA0jN a:hover {
  background: none !important;
}
@media (min-width: 1400px) {
  .cid-uqij9IA0jN .col-lg-3,
  .cid-uqij9IA0jN .col-xl-3 {
    max-width: 20%;
  }
}
@media (max-width: 1200px) {
  .cid-uqij9IA0jN .col-lg-12 {
    min-width: 100% !important;
  }
}
.cid-uqij9IA0jN .card-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-uqij9IA0jN h5 {
  margin: 0;
}
.cid-uqij9IA0jN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqij9IA0jN .iconfont-wrapper {
  position: relative;
}
.cid-uqij9IA0jN .mbr-iconfont {
  display: flex;
  padding-right: 1rem;
  font-size: 2rem;
  color: #000000;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 2;
  position: relative;
}
.cid-uqij9IA0jN .socicon {
  font-size: 1rem;
  width: 30px;
  height: 30px;
}
.cid-uqij9IA0jN .sociconfont-wrapper {
  display: flex;
}
.cid-uqij9IA0jN .card-title,
.cid-uqij9IA0jN .iconfont-wrapper {
  color: #000000;
}
.cid-uqij9IA0jN .card-text {
  color: #000000;
}
.cid-uqij9IA0jN .mbr-section-title {
  color: #000000;
}
.cid-uqij9IA0jN .main-title,
.cid-uqij9IA0jN .iconfont-wrapper {
  text-align: left;
}
.cid-uqij9JkIvW {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #d2bfe3;
  overflow: hidden;
}
.cid-uqij9JkIvW .media-container-row .mbr-text {
  color: #000000;
}
