body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Arvo', serif;
  font-size: 4.4rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.5rem;
}
.display-2 {
  font-family: 'Arvo', serif;
  font-size: 2.6rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.25rem;
}
.display-4 {
  font-family: 'Arvo', serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Arvo', serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Arvo', 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.52rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.08rem;
    font-size: calc( 2.19rem + (4.4 - 2.19) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.19rem + (4.4 - 2.19) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.08rem;
    font-size: calc( 1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((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: #1055d5 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #1055d5 !important;
  border-color: #1055d5 !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: #0a3584 !important;
  border-color: #0a3584 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #0a3584 !important;
  border-color: #0a3584 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #1055d5;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #0a3584 !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: #1055d5 !important;
  border-color: #1055d5 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #1055d5 !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #092f76 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  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: #1055d5;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #1055d5;
  border-color: #1055d5;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #1055d5;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #b7cffa;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Arvo', serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.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: #1055d5 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Arvo', serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #1055d5;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #1055d5;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #1055d5;
}
.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: #1055d5;
  border-bottom-color: #1055d5;
}
.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: #1055d5 !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='%231055d5' %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-tWwPi0VhEC {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tWwPi0VhEC nav.navbar {
  position: fixed;
}
.cid-tWwPi0VhEC .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-tWwPi0VhEC .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tWwPi0VhEC .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tWwPi0VhEC .dropdown-item:hover,
.cid-tWwPi0VhEC .dropdown-item:focus {
  background: #1055d5 !important;
  color: white !important;
}
.cid-tWwPi0VhEC .dropdown-item:hover span {
  color: white;
}
.cid-tWwPi0VhEC .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tWwPi0VhEC .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tWwPi0VhEC .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tWwPi0VhEC .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tWwPi0VhEC .nav-link {
  position: relative;
}
.cid-tWwPi0VhEC .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tWwPi0VhEC .container {
    flex-wrap: nowrap;
  }
}
.cid-tWwPi0VhEC .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tWwPi0VhEC .dropdown-menu,
.cid-tWwPi0VhEC .navbar.opened {
  background: #e052cc !important;
}
.cid-tWwPi0VhEC .nav-item:focus,
.cid-tWwPi0VhEC .nav-link:focus {
  outline: none;
}
.cid-tWwPi0VhEC .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tWwPi0VhEC .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tWwPi0VhEC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tWwPi0VhEC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tWwPi0VhEC .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tWwPi0VhEC .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tWwPi0VhEC .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: #e052cc;
}
.cid-tWwPi0VhEC .navbar.opened {
  transition: all 0.3s;
}
.cid-tWwPi0VhEC .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tWwPi0VhEC .navbar .navbar-logo img {
  width: auto;
}
.cid-tWwPi0VhEC .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tWwPi0VhEC .navbar.collapsed {
  justify-content: center;
}
.cid-tWwPi0VhEC .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tWwPi0VhEC .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tWwPi0VhEC .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-tWwPi0VhEC .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tWwPi0VhEC .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tWwPi0VhEC .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-tWwPi0VhEC .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tWwPi0VhEC .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tWwPi0VhEC .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tWwPi0VhEC .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tWwPi0VhEC .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tWwPi0VhEC .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tWwPi0VhEC .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tWwPi0VhEC .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-tWwPi0VhEC .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tWwPi0VhEC .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tWwPi0VhEC .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tWwPi0VhEC .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tWwPi0VhEC .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tWwPi0VhEC .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tWwPi0VhEC .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tWwPi0VhEC .navbar.navbar-short {
  min-height: 60px;
}
.cid-tWwPi0VhEC .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tWwPi0VhEC .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tWwPi0VhEC .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-tWwPi0VhEC .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tWwPi0VhEC .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tWwPi0VhEC .dropdown-item.active,
.cid-tWwPi0VhEC .dropdown-item:active {
  background-color: transparent;
}
.cid-tWwPi0VhEC .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tWwPi0VhEC .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tWwPi0VhEC .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tWwPi0VhEC .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #e052cc;
}
.cid-tWwPi0VhEC .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tWwPi0VhEC .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tWwPi0VhEC ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tWwPi0VhEC .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tWwPi0VhEC button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tWwPi0VhEC button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tWwPi0VhEC button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tWwPi0VhEC button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWwPi0VhEC button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWwPi0VhEC button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tWwPi0VhEC nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWwPi0VhEC nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tWwPi0VhEC nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tWwPi0VhEC nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWwPi0VhEC .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tWwPi0VhEC a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tWwPi0VhEC .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-tWwPi0VhEC .navbar {
    height: 70px;
  }
  .cid-tWwPi0VhEC .navbar.opened {
    height: auto;
  }
  .cid-tWwPi0VhEC .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tWBSpuSdZi {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f3d6ef;
}
.cid-tWBSpuSdZi .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWBSpuSdZi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWBSpuSdZi .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 3rem;
}
.cid-tWBSpuSdZi .mbr-section-title {
  text-align: left;
  color: #232323;
}
.cid-tWBSpuSdZi .mbr-text,
.cid-tWBSpuSdZi .mbr-section-btn {
  color: #232323;
}
.cid-tWBSpuSdZi .mbr-section-title,
.cid-tWBSpuSdZi .line {
  color: #232323;
}
.cid-tWBSpuSdZi h2 {
  position: relative;
  width: fit-content;
  padding-left: 35px;
  display: inline-block;
}
.cid-tWBSpuSdZi h2:before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
  position: absolute;
  left: 10px;
  top: calc(50% - 6px);
}
.cid-tWBSpuSdZi .mbr-section-subtitle,
.cid-tWBSpuSdZi .align {
  text-align: left;
  color: #232323;
}
.cid-tWBRsqdgOd {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
  background: linear-gradient(180deg, #ffffff, #eccdf3);
}
@media (min-width: 992px) {
  .cid-tWBRsqdgOd .content-col {
    transform: translateX(-5rem);
    z-index: 1;
  }
}
@media (max-width: 575px) {
  .cid-tWBRsqdgOd .row {
    text-align: center!important;
  }
}
.cid-tWBRsqdgOd .btn {
  width: -webkit-fill-available;
}
.cid-tWBRsqdgOd .col-lg-8 {
  z-index: 2;
}
.cid-tWBRsqdgOd .content-container {
  width: 100%;
  padding: 3rem 1.5rem;
  padding-left: 4.5rem;
  padding-top: 10rem;
  border-radius: 2rem;
  background-color: #6ec7f2;
  background: linear-gradient(180deg, #6ec7f2, #ffffff);
}
@media (max-width: 1400px) {
  .cid-tWBRsqdgOd .content-container {
    padding: 2rem 1rem;
    padding-left: 4rem;
  }
}
@media (max-width: 767px) {
  .cid-tWBRsqdgOd .content-container {
    padding: 1rem 0rem;
    padding-top: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-tWBRsqdgOd .content-container {
    padding: 3rem 2rem;
  }
}
.cid-tWBRsqdgOd img {
  border-radius: 2rem;
}
@media (max-width: 992px) {
  .cid-tWBRsqdgOd img {
    margin-bottom: 2rem;
  }
}
.cid-tWBRsqdgOd .mbr-section-title {
  color: #ffffff;
}
@media (max-width: 575px) {
  .cid-tWBRsqdgOd .mbr-section-title {
    text-align: center;
  }
}
.cid-tWBRsqdgOd .mbr-text {
  color: #272523;
}
.cid-tWBRsqdgOd .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWBRsqdgOd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWBRsqdgOd .mbr-section-title,
.cid-tWBRsqdgOd .mbr-section-btn {
  color: #000000;
}
.cid-tWBTiQyyi1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-tWBTiQyyi1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWBTiQyyi1 .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-tWBTiQyyi1 .container {
    padding: 0 15px;
  }
}
.cid-tWBTiQyyi1 .row {
  justify-content: center;
}
.cid-tWBTiQyyi1 .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-tWBTiQyyi1 .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-tWBTiQyyi1 .subtitle-wrapper {
  padding-right: 28px;
}
@media (max-width: 992px) {
  .cid-tWBTiQyyi1 .subtitle-wrapper {
    padding: 0;
  }
}
.cid-tWBTiQyyi1 .subtitle-wrapper .mbr-section-subtitle {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tWBTiQyyi1 .subtitle-wrapper .mbr-section-subtitle {
    margin-bottom: 20px;
  }
}
.cid-tWBTiQyyi1 .lists-wrapper .list {
  margin-bottom: 0;
  list-style-type: none;
  padding-left: 0;
  padding-left: 50px;
}
@media (max-width: 992px) {
  .cid-tWBTiQyyi1 .lists-wrapper .list {
    padding-left: 36px;
  }
}
.cid-tWBTiQyyi1 .lists-wrapper .list .item-wrap {
  margin-bottom: 20px;
  position: relative;
}
.cid-tWBTiQyyi1 .lists-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-tWBTiQyyi1 .lists-wrapper .list .item-wrap::before {
  content: '✓';
  position: absolute;
  top: 5px;
  margin-left: -50px;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #fafafa;
  color: #171827;
  font-size: 16px;
}
@media (max-width: 992px) {
  .cid-tWBTiQyyi1 .lists-wrapper .list .item-wrap::before {
    margin-left: -36px;
  }
}
.cid-tWBTiQyyi1 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tWBTiQyyi1 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tWBTiQyyi1 .list {
  color: #ffffff;
}
.cid-tWwRaNpaof {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-tWwRaNpaof .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWwRaNpaof .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWwRaNpaof .item-wrap {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 55px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #e052cc, #eccdf3);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
@media (max-width: 767px) {
  .cid-tWwRaNpaof .item-wrap {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .cid-tWwRaNpaof .item-wrap {
    padding: 35px 25px 35px 25px;
  }
}
.cid-tWwRaNpaof .card-title {
  color: #878e99;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-tWwRaNpaof .card-title {
    margin-bottom: 20px;
  }
}
.cid-tWwRaNpaof .card-subtitle {
  color: #878e99;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-tWwRaNpaof .card-subtitle {
    margin-bottom: 20px;
  }
}
.cid-tWwRaNpaof .card-text {
  color: #000000;
  margin-bottom: 0;
}
.cid-tWCkNT9Zif {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #f3d6ef;
}
.cid-tWCkNT9Zif .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWCkNT9Zif .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-tWCkNT9Zif .container {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-tWCkNT9Zif .container {
    padding: 0 12px;
  }
}
.cid-tWCkNT9Zif .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-tWCkNT9Zif .content-wrapper {
    padding: 0 24px;
  }
}
.cid-tWCkNT9Zif .content-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
.cid-tWCkNT9Zif .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-tWCkNT9Zif .mbr-section-title {
  color: #1D1D1F;
}
.cid-tWCkNT9Zif .mbr-text {
  color: #1D1D1F;
  text-align: center;
}
.cid-tWCkNT9Zif .mbr-section-title,
.cid-tWCkNT9Zif .mbr-section-btn {
  text-align: center;
}
.cid-tWwQzfoRsA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #353535;
}
@media (max-width: 992px) {
  .cid-tWwQzfoRsA .container {
    padding: 0 25px;
  }
}
.cid-tWwQzfoRsA .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tWwQzfoRsA .title-wrapper .mbr-section-title {
    margin-bottom: 50px;
  }
}
.cid-tWwQzfoRsA .panel-group {
  border-bottom: 2px solid #e1e1e1;
}
.cid-tWwQzfoRsA .panel-group .card {
  border-top: 2px solid #e1e1e1;
  border-radius: 0 !important;
  padding: 0;
}
.cid-tWwQzfoRsA .panel-group .card .card-header {
  padding: 16px 0;
  border: none;
  background-color: transparent;
}
.cid-tWwQzfoRsA .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tWwQzfoRsA .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  color: #f0f0f0;
  box-shadow: inset 52px 0 0 0 #000000;
}
.cid-tWwQzfoRsA .panel-group .card .card-header .panel-title:hover .mbr-iconfont {
  color: #f0f0f0;
  box-shadow: inset 52px 0 0 0 #000000;
}
.cid-tWwQzfoRsA .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-tWwQzfoRsA .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  min-width: 52px;
  height: 52px;
  font-size: 20px;
  color: #000000;
  background-color: #f0f0f0;
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
}
.cid-tWwQzfoRsA .panel-group .card .panel-collapse .panel-body {
  padding-bottom: 25px;
}
.cid-tWwQzfoRsA .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-tWwQzfoRsA .mbr-section-title {
  color: #fff0b0;
}
.cid-tWwQzfoRsA .panel-title-edit {
  color: #fff0b0;
}
.cid-tWwQzfoRsA .panel-text {
  color: #000000;
}
.cid-tWwRyteMIN {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f3d6ef;
}
.cid-tWwRyteMIN .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWwRyteMIN h1 a {
  width: fit-content;
  position: relative;
  font-weight: 600;
  display: inline-block;
  z-index: 2;
}
.cid-tWwRyteMIN h1 a:before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 10%;
  width: 100%;
  height: 22px;
  background: #1055d5;
  z-index: -1;
}
.cid-tWwRyteMIN h1 a:hover {
  color: inherit !important;
}
.cid-tWwRyteMIN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWwRyteMIN .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tWwRyteMIN .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tWwRyteMIN .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tWwRyteMIN .mbr-section-title {
  color: #19303d;
  text-align: center;
}
.cid-tWwRyteMIN .mbr-section-subtitle,
.cid-tWwRyteMIN .subtitle-wrap {
  color: #19303d;
}
.cid-tWwRyteMIN .mbr-text,
.cid-tWwRyteMIN .mbr-section-btn {
  color: #19303d;
  text-align: left;
}
.cid-tWwRBFvsHz {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #353535;
}
.cid-tWwRBFvsHz .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWwRBFvsHz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWwRBFvsHz .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tWwRBFvsHz .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tWwRBFvsHz .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tWwRBFvsHz .mbr-section-title {
  color: #131313;
}
.cid-tWwRBFvsHz .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tWwRBFvsHz .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tWwRBFvsHz .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tWwRBFvsHz .card-wrapper {
  width: calc(100% - 14px);
  padding: 80px 40px 60px 40px;
  margin: 0 auto;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #f3d6ef;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tWwRBFvsHz .card-wrapper {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) {
  .cid-tWwRBFvsHz .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tWwRBFvsHz .iconfont-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .cid-tWwRBFvsHz .iconfont-wrapper {
    margin-bottom: 25px;
  }
}
.cid-tWwRBFvsHz .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-tWwRBFvsHz .card-title {
  color: #131313;
}
.cid-tWwRBFvsHz .card-text {
  margin-top: 10px;
  color: #131313;
}
.cid-tWwRBFvsHz .card-link {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tWwRBFvsHz .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-tWwRBFvsHz .card-link {
    margin-top: 15px;
  }
}
.cid-tWwRBFvsHz .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tWwRBFvsHz .card-title,
.cid-tWwRBFvsHz .iconfont-wrapper {
  text-align: center;
}
.cid-tWwRL8j6hd {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f3d6ef;
}
.cid-tWwRL8j6hd .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWwRL8j6hd .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-tWwRL8j6hd .container {
    padding: 0 15px;
  }
}
.cid-tWwRL8j6hd .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
  padding-right: 8px;
}
@media (max-width: 992px) {
  .cid-tWwRL8j6hd .title-wrapper .mbr-section-title {
    padding: 0;
  }
}
.cid-tWwRL8j6hd .content-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-tWwRL8j6hd .content-wrapper .mbr-name {
  margin: 0;
}
.cid-tWwRL8j6hd .mbr-section-title {
  color: #000000;
}
.cid-tWwRL8j6hd .mbr-text {
  color: #000000;
}
.cid-tWwRL8j6hd .mbr-name {
  color: #f2ac2b;
}
.cid-tWxNTYtYFK {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tWxNTYtYFK .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWxNTYtYFK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWxNTYtYFK .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tWxNTYtYFK .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tWxNTYtYFK .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tWxNTYtYFK .mbr-section-title {
  color: #131313;
}
.cid-tWxNTYtYFK .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tWxNTYtYFK .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tWxNTYtYFK .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tWxNTYtYFK .card-wrapper {
  width: calc(100% - 14px);
  padding: 80px 40px 60px 40px;
  margin: 0 auto;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #f3d6ef;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tWxNTYtYFK .card-wrapper {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) {
  .cid-tWxNTYtYFK .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tWxNTYtYFK .iconfont-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .cid-tWxNTYtYFK .iconfont-wrapper {
    margin-bottom: 25px;
  }
}
.cid-tWxNTYtYFK .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-tWxNTYtYFK .card-title {
  color: #131313;
}
.cid-tWxNTYtYFK .card-text {
  margin-top: 10px;
  color: #000000;
}
.cid-tWxNTYtYFK .card-link {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tWxNTYtYFK .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-tWxNTYtYFK .card-link {
    margin-top: 15px;
  }
}
.cid-tWxNTYtYFK .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tWxNTYtYFK .card-title,
.cid-tWxNTYtYFK .iconfont-wrapper {
  color: #000000;
}
.cid-tWxP7WQT8U {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-tWxP7WQT8U blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #f3d6ef;
}
.cid-tWxP7WQT8U .mbr-section-title {
  color: #000000;
}
.cid-tWxP7WQT8U .mbr-text {
  color: #000000;
}
.cid-tWxPx4CCvi {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #353535;
}
.cid-tWxPx4CCvi .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWxPx4CCvi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWxPx4CCvi .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tWxPx4CCvi .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tWxPx4CCvi .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tWxPx4CCvi .mbr-section-title {
  color: #131313;
}
.cid-tWxPx4CCvi .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tWxPx4CCvi .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tWxPx4CCvi .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tWxPx4CCvi .card-wrapper {
  display: flex;
  width: calc(100% - 24px);
  padding: 52px 30px 52px 40px;
  margin: 0 auto;
  border: 2px solid #fff0b0;
  box-shadow: 4px 4px 0 #fff0b0;
  background: #f3d6ef;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tWxPx4CCvi .card-wrapper {
    padding: 40px 30px 40px 40px;
  }
}
@media (max-width: 991px) {
  .cid-tWxPx4CCvi .card-wrapper {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .cid-tWxPx4CCvi .card-wrapper {
    width: calc(100% - 14px);
    flex-direction: column;
    padding: 30px 25px 25px;
  }
}
@media (min-width: 992px) {
  .cid-tWxPx4CCvi .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tWxPx4CCvi .iconfont-wrapper {
  margin-right: 40px;
}
@media (max-width: 767px) {
  .cid-tWxPx4CCvi .iconfont-wrapper {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
.cid-tWxPx4CCvi .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-tWxPx4CCvi .content-wrap {
  margin-top: 10px;
}
@media (max-width: 1199px) {
  .cid-tWxPx4CCvi .content-wrap {
    margin-top: 0;
  }
}
.cid-tWxPx4CCvi .card-title {
  color: #131313;
}
.cid-tWxPx4CCvi .card-text {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tWxPx4CCvi .card-text {
    margin-top: 15px;
  }
}
.cid-tWxPx4CCvi .card-link {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tWxPx4CCvi .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .cid-tWxPx4CCvi .card-link {
    margin-top: 15px;
  }
}
.cid-tWxPx4CCvi .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tWxPG1js7i {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f3d6ef;
}
.cid-tWxPUYADYe {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #353535;
}
.cid-tWxPUYADYe .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWxPUYADYe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tWxPUYADYe .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tWxPUYADYe .row {
  flex-direction: row-reverse;
}
.cid-tWxPUYADYe img {
  width: 100%;
}
.cid-tWxQdwSuLd {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f3d6ef;
}
.cid-tWwS7tsLnh {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #353535;
}
.cid-tWwS7tsLnh .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWwS7tsLnh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWwS7tsLnh .google-map {
  height: 30rem;
  position: relative;
}
.cid-tWwS7tsLnh .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tWwS7tsLnh .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tWwS7tsLnh .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tWwS7tsLnh .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tWwS7tsLnh .mbr-section-title {
  color: #fff0b0;
}
.cid-tWwS4TPUX9 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f3d6ef;
  overflow: hidden;
}
.cid-tWwS4TPUX9 .media-container-row .mbr-text {
  color: #aaaaaa;
  text-align: left;
}
.cid-tWwS4TPUX9 .media-container-row .mbr-text2 {
  color: #232323;
}
.cid-tWwS4TPUX9 .media-container-row .mbr-text1 {
  color: #232323;
  text-align: left;
}
.cid-tWwS4TPUX9 .media-container-row .mbr-text3 {
  color: #232323;
  text-align: right;
}
.cid-tWwS4TPUX9 a {
  background-image: none !important;
}
.cid-tWwS4TPUX9 .line {
  width: 100%;
  height: 1px;
  background: currentColor;
}
.cid-tWwS4TPUX9 .container {
  padding: 5rem 1rem;
}
.cid-tWwS4TPUX9 p {
  padding: 0.5rem 0;
}
@media (max-width: 992px) {
  .cid-tWwS4TPUX9 p {
    text-align: center !important;
  }
}
.cid-tWwS4TPUX9 .media-container-row .mbr-text2,
.cid-tWwS4TPUX9 .line {
  color: #232323;
  text-align: left;
}
.cid-tWxWPFbHgj {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tWxWPFbHgj nav.navbar {
  position: fixed;
}
.cid-tWxWPFbHgj .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-tWxWPFbHgj .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tWxWPFbHgj .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tWxWPFbHgj .dropdown-item:hover,
.cid-tWxWPFbHgj .dropdown-item:focus {
  background: #1055d5 !important;
  color: white !important;
}
.cid-tWxWPFbHgj .dropdown-item:hover span {
  color: white;
}
.cid-tWxWPFbHgj .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tWxWPFbHgj .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tWxWPFbHgj .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tWxWPFbHgj .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tWxWPFbHgj .nav-link {
  position: relative;
}
.cid-tWxWPFbHgj .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tWxWPFbHgj .container {
    flex-wrap: nowrap;
  }
}
.cid-tWxWPFbHgj .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tWxWPFbHgj .dropdown-menu,
.cid-tWxWPFbHgj .navbar.opened {
  background: #e052cc !important;
}
.cid-tWxWPFbHgj .nav-item:focus,
.cid-tWxWPFbHgj .nav-link:focus {
  outline: none;
}
.cid-tWxWPFbHgj .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tWxWPFbHgj .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tWxWPFbHgj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tWxWPFbHgj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tWxWPFbHgj .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tWxWPFbHgj .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tWxWPFbHgj .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: #e052cc;
}
.cid-tWxWPFbHgj .navbar.opened {
  transition: all 0.3s;
}
.cid-tWxWPFbHgj .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tWxWPFbHgj .navbar .navbar-logo img {
  width: auto;
}
.cid-tWxWPFbHgj .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tWxWPFbHgj .navbar.collapsed {
  justify-content: center;
}
.cid-tWxWPFbHgj .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tWxWPFbHgj .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tWxWPFbHgj .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-tWxWPFbHgj .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tWxWPFbHgj .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tWxWPFbHgj .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-tWxWPFbHgj .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tWxWPFbHgj .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tWxWPFbHgj .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tWxWPFbHgj .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tWxWPFbHgj .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tWxWPFbHgj .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tWxWPFbHgj .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tWxWPFbHgj .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-tWxWPFbHgj .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tWxWPFbHgj .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tWxWPFbHgj .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tWxWPFbHgj .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tWxWPFbHgj .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tWxWPFbHgj .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tWxWPFbHgj .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tWxWPFbHgj .navbar.navbar-short {
  min-height: 60px;
}
.cid-tWxWPFbHgj .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tWxWPFbHgj .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tWxWPFbHgj .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-tWxWPFbHgj .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tWxWPFbHgj .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tWxWPFbHgj .dropdown-item.active,
.cid-tWxWPFbHgj .dropdown-item:active {
  background-color: transparent;
}
.cid-tWxWPFbHgj .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tWxWPFbHgj .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tWxWPFbHgj .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tWxWPFbHgj .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #e052cc;
}
.cid-tWxWPFbHgj .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tWxWPFbHgj .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tWxWPFbHgj ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tWxWPFbHgj .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tWxWPFbHgj button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tWxWPFbHgj button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tWxWPFbHgj button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tWxWPFbHgj button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWxWPFbHgj button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWxWPFbHgj button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tWxWPFbHgj nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWxWPFbHgj nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tWxWPFbHgj nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tWxWPFbHgj nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWxWPFbHgj .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tWxWPFbHgj a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tWxWPFbHgj .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-tWxWPFbHgj .navbar {
    height: 70px;
  }
  .cid-tWxWPFbHgj .navbar.opened {
    height: auto;
  }
  .cid-tWxWPFbHgj .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tWA5y2dkML {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #eccdf3;
}
.cid-tWA5y2dkML .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWA5y2dkML .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWA5y2dkML .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tWA5y2dkML .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tWA5y2dkML .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tWA5GPVImz {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e052cc;
}
.cid-tWA5GPVImz .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWA5GPVImz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWA5GPVImz .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-tWA5GPVImz .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-tWA5GPVImz .container {
    padding: 0 24px;
  }
}
.cid-tWA5GPVImz .row {
  justify-content: center;
}
.cid-tWA5GPVImz .content-wrapper {
  border-radius: 40px;
  background-color: #f3f4f7;
  padding: 64px;
}
@media (max-width: 992px) {
  .cid-tWA5GPVImz .content-wrapper {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .cid-tWA5GPVImz .content-wrapper {
    padding: 32px;
  }
}
.cid-tWA5GPVImz .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tWA5GPVImz .content-wrapper .mbr-text {
  margin: 16px 0 0;
}
.cid-tWA5GPVImz .mbr-section-title {
  color: #FF3399;
}
.cid-tWA5GPVImz .mbr-text {
  color: #262642;
}
.cid-tWA5LWuqkf {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #eccdf3;
}
.cid-tWA5LWuqkf .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWA5LWuqkf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWA5LWuqkf .google-map {
  height: 30rem;
  position: relative;
}
.cid-tWA5LWuqkf .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tWA5LWuqkf .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tWA5LWuqkf .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tWA5LWuqkf .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tWA63sWtfG {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #fff0b0;
  overflow: hidden;
}
.cid-tWA63sWtfG .media-container-row .mbr-text {
  color: #aaaaaa;
  text-align: left;
}
.cid-tWA63sWtfG .media-container-row .mbr-text2 {
  color: #232323;
}
.cid-tWA63sWtfG .media-container-row .mbr-text1 {
  color: #232323;
  text-align: left;
}
.cid-tWA63sWtfG .media-container-row .mbr-text3 {
  color: #232323;
  text-align: right;
}
.cid-tWA63sWtfG a {
  background-image: none !important;
}
.cid-tWA63sWtfG .line {
  width: 100%;
  height: 1px;
  background: currentColor;
}
.cid-tWA63sWtfG .container {
  padding: 5rem 1rem;
}
.cid-tWA63sWtfG p {
  padding: 0.5rem 0;
}
@media (max-width: 992px) {
  .cid-tWA63sWtfG p {
    text-align: center !important;
  }
}
.cid-tWA63sWtfG .media-container-row .mbr-text2,
.cid-tWA63sWtfG .line {
  color: #232323;
  text-align: left;
}
.cid-tWA6RaeALU {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tWA6RaeALU nav.navbar {
  position: fixed;
}
.cid-tWA6RaeALU .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-tWA6RaeALU .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tWA6RaeALU .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tWA6RaeALU .dropdown-item:hover,
.cid-tWA6RaeALU .dropdown-item:focus {
  background: #1055d5 !important;
  color: white !important;
}
.cid-tWA6RaeALU .dropdown-item:hover span {
  color: white;
}
.cid-tWA6RaeALU .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tWA6RaeALU .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tWA6RaeALU .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tWA6RaeALU .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tWA6RaeALU .nav-link {
  position: relative;
}
.cid-tWA6RaeALU .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tWA6RaeALU .container {
    flex-wrap: nowrap;
  }
}
.cid-tWA6RaeALU .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tWA6RaeALU .dropdown-menu,
.cid-tWA6RaeALU .navbar.opened {
  background: #e052cc !important;
}
.cid-tWA6RaeALU .nav-item:focus,
.cid-tWA6RaeALU .nav-link:focus {
  outline: none;
}
.cid-tWA6RaeALU .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tWA6RaeALU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tWA6RaeALU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tWA6RaeALU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tWA6RaeALU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tWA6RaeALU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tWA6RaeALU .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: #e052cc;
}
.cid-tWA6RaeALU .navbar.opened {
  transition: all 0.3s;
}
.cid-tWA6RaeALU .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tWA6RaeALU .navbar .navbar-logo img {
  width: auto;
}
.cid-tWA6RaeALU .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tWA6RaeALU .navbar.collapsed {
  justify-content: center;
}
.cid-tWA6RaeALU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tWA6RaeALU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tWA6RaeALU .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-tWA6RaeALU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tWA6RaeALU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tWA6RaeALU .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-tWA6RaeALU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tWA6RaeALU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tWA6RaeALU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tWA6RaeALU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tWA6RaeALU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tWA6RaeALU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tWA6RaeALU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tWA6RaeALU .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-tWA6RaeALU .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tWA6RaeALU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tWA6RaeALU .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tWA6RaeALU .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tWA6RaeALU .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tWA6RaeALU .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tWA6RaeALU .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tWA6RaeALU .navbar.navbar-short {
  min-height: 60px;
}
.cid-tWA6RaeALU .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tWA6RaeALU .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tWA6RaeALU .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-tWA6RaeALU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tWA6RaeALU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tWA6RaeALU .dropdown-item.active,
.cid-tWA6RaeALU .dropdown-item:active {
  background-color: transparent;
}
.cid-tWA6RaeALU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tWA6RaeALU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tWA6RaeALU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tWA6RaeALU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #e052cc;
}
.cid-tWA6RaeALU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tWA6RaeALU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tWA6RaeALU ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tWA6RaeALU .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tWA6RaeALU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tWA6RaeALU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tWA6RaeALU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tWA6RaeALU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWA6RaeALU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWA6RaeALU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tWA6RaeALU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWA6RaeALU nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tWA6RaeALU nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tWA6RaeALU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWA6RaeALU .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tWA6RaeALU a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tWA6RaeALU .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-tWA6RaeALU .navbar {
    height: 70px;
  }
  .cid-tWA6RaeALU .navbar.opened {
    height: auto;
  }
  .cid-tWA6RaeALU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tWA6RaF5sf {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #eccdf3;
}
.cid-tWA6RaF5sf .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWA6RaF5sf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWA6RaF5sf .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tWA6RaF5sf .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tWA6RaF5sf .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tWA6Rb1WOc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e052cc;
}
.cid-tWA6Rb1WOc .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWA6Rb1WOc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWA6Rb1WOc .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-tWA6Rb1WOc .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-tWA6Rb1WOc .container {
    padding: 0 24px;
  }
}
.cid-tWA6Rb1WOc .row {
  justify-content: center;
}
.cid-tWA6Rb1WOc .content-wrapper {
  border-radius: 40px;
  background-color: #f3f4f7;
  padding: 64px;
}
@media (max-width: 992px) {
  .cid-tWA6Rb1WOc .content-wrapper {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .cid-tWA6Rb1WOc .content-wrapper {
    padding: 32px;
  }
}
.cid-tWA6Rb1WOc .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tWA6Rb1WOc .content-wrapper .mbr-text {
  margin: 16px 0 0;
}
.cid-tWA6Rb1WOc .mbr-section-title {
  color: #FF3399;
}
.cid-tWA6Rb1WOc .mbr-text {
  color: #262642;
}
.cid-tWA6Rbl3fm {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #eccdf3;
}
.cid-tWA6Rbl3fm .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWA6Rbl3fm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWA6Rbl3fm .google-map {
  height: 30rem;
  position: relative;
}
.cid-tWA6Rbl3fm .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tWA6Rbl3fm .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tWA6Rbl3fm .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tWA6Rbl3fm .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tWA6Rbl3fm .mbr-section-title {
  color: #e052cc;
}
.cid-tWA6RbKotz {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #fff0b0;
  overflow: hidden;
}
.cid-tWA6RbKotz .media-container-row .mbr-text {
  color: #aaaaaa;
  text-align: left;
}
.cid-tWA6RbKotz .media-container-row .mbr-text2 {
  color: #232323;
}
.cid-tWA6RbKotz .media-container-row .mbr-text1 {
  color: #232323;
  text-align: left;
}
.cid-tWA6RbKotz .media-container-row .mbr-text3 {
  color: #232323;
  text-align: right;
}
.cid-tWA6RbKotz a {
  background-image: none !important;
}
.cid-tWA6RbKotz .line {
  width: 100%;
  height: 1px;
  background: currentColor;
}
.cid-tWA6RbKotz .container {
  padding: 5rem 1rem;
}
.cid-tWA6RbKotz p {
  padding: 0.5rem 0;
}
@media (max-width: 992px) {
  .cid-tWA6RbKotz p {
    text-align: center !important;
  }
}
.cid-tWA6RbKotz .media-container-row .mbr-text2,
.cid-tWA6RbKotz .line {
  color: #232323;
  text-align: left;
}
.cid-tWC9SBI2mH {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tWC9SBI2mH nav.navbar {
  position: fixed;
}
.cid-tWC9SBI2mH .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-tWC9SBI2mH .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tWC9SBI2mH .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tWC9SBI2mH .dropdown-item:hover,
.cid-tWC9SBI2mH .dropdown-item:focus {
  background: #1055d5 !important;
  color: white !important;
}
.cid-tWC9SBI2mH .dropdown-item:hover span {
  color: white;
}
.cid-tWC9SBI2mH .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tWC9SBI2mH .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tWC9SBI2mH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tWC9SBI2mH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tWC9SBI2mH .nav-link {
  position: relative;
}
.cid-tWC9SBI2mH .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tWC9SBI2mH .container {
    flex-wrap: nowrap;
  }
}
.cid-tWC9SBI2mH .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tWC9SBI2mH .dropdown-menu,
.cid-tWC9SBI2mH .navbar.opened {
  background: #e052cc !important;
}
.cid-tWC9SBI2mH .nav-item:focus,
.cid-tWC9SBI2mH .nav-link:focus {
  outline: none;
}
.cid-tWC9SBI2mH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tWC9SBI2mH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tWC9SBI2mH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tWC9SBI2mH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tWC9SBI2mH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tWC9SBI2mH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tWC9SBI2mH .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: #e052cc;
}
.cid-tWC9SBI2mH .navbar.opened {
  transition: all 0.3s;
}
.cid-tWC9SBI2mH .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tWC9SBI2mH .navbar .navbar-logo img {
  width: auto;
}
.cid-tWC9SBI2mH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tWC9SBI2mH .navbar.collapsed {
  justify-content: center;
}
.cid-tWC9SBI2mH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tWC9SBI2mH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tWC9SBI2mH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-tWC9SBI2mH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tWC9SBI2mH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tWC9SBI2mH .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-tWC9SBI2mH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tWC9SBI2mH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tWC9SBI2mH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tWC9SBI2mH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tWC9SBI2mH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tWC9SBI2mH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tWC9SBI2mH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tWC9SBI2mH .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-tWC9SBI2mH .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tWC9SBI2mH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tWC9SBI2mH .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tWC9SBI2mH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tWC9SBI2mH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tWC9SBI2mH .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tWC9SBI2mH .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tWC9SBI2mH .navbar.navbar-short {
  min-height: 60px;
}
.cid-tWC9SBI2mH .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tWC9SBI2mH .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tWC9SBI2mH .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-tWC9SBI2mH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tWC9SBI2mH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tWC9SBI2mH .dropdown-item.active,
.cid-tWC9SBI2mH .dropdown-item:active {
  background-color: transparent;
}
.cid-tWC9SBI2mH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tWC9SBI2mH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tWC9SBI2mH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tWC9SBI2mH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #e052cc;
}
.cid-tWC9SBI2mH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tWC9SBI2mH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tWC9SBI2mH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tWC9SBI2mH .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tWC9SBI2mH button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tWC9SBI2mH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tWC9SBI2mH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tWC9SBI2mH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWC9SBI2mH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWC9SBI2mH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tWC9SBI2mH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWC9SBI2mH nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tWC9SBI2mH nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tWC9SBI2mH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWC9SBI2mH .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tWC9SBI2mH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tWC9SBI2mH .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-tWC9SBI2mH .navbar {
    height: 70px;
  }
  .cid-tWC9SBI2mH .navbar.opened {
    height: auto;
  }
  .cid-tWC9SBI2mH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tWC9SCmEfY {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f3d6ef;
}
.cid-tWC9SCmEfY .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWC9SCmEfY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWC9SCmEfY .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 3rem;
}
.cid-tWC9SCmEfY .mbr-section-title {
  text-align: left;
  color: #232323;
}
.cid-tWC9SCmEfY .mbr-text,
.cid-tWC9SCmEfY .mbr-section-btn {
  color: #232323;
}
.cid-tWC9SCmEfY .mbr-section-title,
.cid-tWC9SCmEfY .line {
  color: #232323;
}
.cid-tWC9SCmEfY h2 {
  position: relative;
  width: fit-content;
  padding-left: 35px;
  display: inline-block;
}
.cid-tWC9SCmEfY h2:before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
  position: absolute;
  left: 10px;
  top: calc(50% - 6px);
}
.cid-tWC9SCmEfY .mbr-section-subtitle,
.cid-tWC9SCmEfY .align {
  text-align: left;
  color: #232323;
}
.cid-tWC9SCLkS2 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
  background: linear-gradient(180deg, #ffffff, #eccdf3);
}
@media (min-width: 992px) {
  .cid-tWC9SCLkS2 .content-col {
    transform: translateX(-5rem);
    z-index: 1;
  }
}
@media (max-width: 575px) {
  .cid-tWC9SCLkS2 .row {
    text-align: center!important;
  }
}
.cid-tWC9SCLkS2 .btn {
  width: -webkit-fill-available;
}
.cid-tWC9SCLkS2 .col-lg-8 {
  z-index: 2;
}
.cid-tWC9SCLkS2 .content-container {
  width: 100%;
  padding: 3rem 1.5rem;
  padding-left: 4.5rem;
  padding-top: 10rem;
  border-radius: 2rem;
  background-color: #98dee8;
  background: linear-gradient(180deg, #98dee8, #ffffff);
}
@media (max-width: 1400px) {
  .cid-tWC9SCLkS2 .content-container {
    padding: 2rem 1rem;
    padding-left: 4rem;
  }
}
@media (max-width: 767px) {
  .cid-tWC9SCLkS2 .content-container {
    padding: 1rem 0rem;
    padding-top: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-tWC9SCLkS2 .content-container {
    padding: 3rem 2rem;
  }
}
.cid-tWC9SCLkS2 img {
  border-radius: 2rem;
}
@media (max-width: 992px) {
  .cid-tWC9SCLkS2 img {
    margin-bottom: 2rem;
  }
}
.cid-tWC9SCLkS2 .mbr-section-title {
  color: #ffffff;
}
@media (max-width: 575px) {
  .cid-tWC9SCLkS2 .mbr-section-title {
    text-align: center;
  }
}
.cid-tWC9SCLkS2 .mbr-text {
  color: #272523;
}
.cid-tWC9SCLkS2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWC9SCLkS2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWC9SCLkS2 .mbr-section-title,
.cid-tWC9SCLkS2 .mbr-section-btn {
  color: #000000;
}
.cid-tWC9SDeR8p {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-tWC9SDeR8p .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWC9SDeR8p .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-tWC9SDeR8p .container {
    padding: 0 15px;
  }
}
.cid-tWC9SDeR8p .row {
  justify-content: center;
}
.cid-tWC9SDeR8p .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-tWC9SDeR8p .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-tWC9SDeR8p .subtitle-wrapper {
  padding-right: 28px;
}
@media (max-width: 992px) {
  .cid-tWC9SDeR8p .subtitle-wrapper {
    padding: 0;
  }
}
.cid-tWC9SDeR8p .subtitle-wrapper .mbr-section-subtitle {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tWC9SDeR8p .subtitle-wrapper .mbr-section-subtitle {
    margin-bottom: 20px;
  }
}
.cid-tWC9SDeR8p .lists-wrapper .list {
  margin-bottom: 0;
  list-style-type: none;
  padding-left: 0;
  padding-left: 50px;
}
@media (max-width: 992px) {
  .cid-tWC9SDeR8p .lists-wrapper .list {
    padding-left: 36px;
  }
}
.cid-tWC9SDeR8p .lists-wrapper .list .item-wrap {
  margin-bottom: 20px;
  position: relative;
}
.cid-tWC9SDeR8p .lists-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-tWC9SDeR8p .lists-wrapper .list .item-wrap::before {
  content: '✓';
  position: absolute;
  top: 5px;
  margin-left: -50px;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #fafafa;
  color: #171827;
  font-size: 16px;
}
@media (max-width: 992px) {
  .cid-tWC9SDeR8p .lists-wrapper .list .item-wrap::before {
    margin-left: -36px;
  }
}
.cid-tWC9SDeR8p .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tWC9SDeR8p .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tWC9SDeR8p .list {
  color: #ffffff;
}
.cid-tWC9SDFwpu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-tWC9SDFwpu .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWC9SDFwpu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWC9SDFwpu .item-wrap {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 55px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #e052cc, #eccdf3);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
@media (max-width: 767px) {
  .cid-tWC9SDFwpu .item-wrap {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .cid-tWC9SDFwpu .item-wrap {
    padding: 35px 25px 35px 25px;
  }
}
.cid-tWC9SDFwpu .card-title {
  color: #878e99;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-tWC9SDFwpu .card-title {
    margin-bottom: 20px;
  }
}
.cid-tWC9SDFwpu .card-subtitle {
  color: #878e99;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-tWC9SDFwpu .card-subtitle {
    margin-bottom: 20px;
  }
}
.cid-tWC9SDFwpu .card-text {
  color: #000000;
  margin-bottom: 0;
}
.cid-tWCpOvpYRD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-tWCpOvpYRD .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWCpOvpYRD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWCpOvpYRD .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-tWCpOvpYRD .container-fluid {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-tWCpOvpYRD .container-fluid {
    padding: 0 12px;
  }
}
@media (max-width: 992px) {
  .cid-tWCpOvpYRD .container {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-tWCpOvpYRD .container {
    padding: 0 12px;
  }
}
.cid-tWCpOvpYRD .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-tWCpOvpYRD .content-wrapper {
    padding: 0 24px;
  }
}
.cid-tWCpOvpYRD .content-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
.cid-tWCpOvpYRD .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-tWCpOvpYRD .mbr-section-title {
  color: #1D1D1F;
}
.cid-tWCpOvpYRD .mbr-text {
  color: #1D1D1F;
  text-align: center;
}
.cid-tWCpOvpYRD .mbr-section-title,
.cid-tWCpOvpYRD .mbr-section-btn {
  text-align: center;
}
.cid-tWC9SEErcs {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #353535;
}
@media (max-width: 992px) {
  .cid-tWC9SEErcs .container {
    padding: 0 25px;
  }
}
.cid-tWC9SEErcs .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tWC9SEErcs .title-wrapper .mbr-section-title {
    margin-bottom: 50px;
  }
}
.cid-tWC9SEErcs .panel-group {
  border-bottom: 2px solid #e1e1e1;
}
.cid-tWC9SEErcs .panel-group .card {
  border-top: 2px solid #e1e1e1;
  border-radius: 0 !important;
  padding: 0;
}
.cid-tWC9SEErcs .panel-group .card .card-header {
  padding: 16px 0;
  border: none;
  background-color: transparent;
}
.cid-tWC9SEErcs .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tWC9SEErcs .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  color: #f0f0f0;
  box-shadow: inset 52px 0 0 0 #000000;
}
.cid-tWC9SEErcs .panel-group .card .card-header .panel-title:hover .mbr-iconfont {
  color: #f0f0f0;
  box-shadow: inset 52px 0 0 0 #000000;
}
.cid-tWC9SEErcs .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-tWC9SEErcs .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  min-width: 52px;
  height: 52px;
  font-size: 20px;
  color: #000000;
  background-color: #f0f0f0;
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
}
.cid-tWC9SEErcs .panel-group .card .panel-collapse .panel-body {
  padding-bottom: 25px;
}
.cid-tWC9SEErcs .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-tWC9SEErcs .mbr-section-title {
  color: #fff0b0;
}
.cid-tWC9SEErcs .panel-title-edit {
  color: #fff0b0;
}
.cid-tWC9SEErcs .panel-text {
  color: #000000;
}
.cid-tWC9SFm4R5 {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #f3d6ef;
}
.cid-tWC9SFm4R5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWC9SFm4R5 h1 a {
  width: fit-content;
  position: relative;
  font-weight: 600;
  display: inline-block;
  z-index: 2;
}
.cid-tWC9SFm4R5 h1 a:before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 10%;
  width: 100%;
  height: 22px;
  background: #1055d5;
  z-index: -1;
}
.cid-tWC9SFm4R5 h1 a:hover {
  color: inherit !important;
}
.cid-tWC9SFm4R5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWC9SFm4R5 .row {
  flex-direction: row-reverse;
}
.cid-tWC9SFm4R5 .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tWC9SFm4R5 .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tWC9SFm4R5 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tWC9SFm4R5 .mbr-section-title {
  color: #19303d;
  text-align: center;
}
.cid-tWC9SFm4R5 .mbr-section-subtitle,
.cid-tWC9SFm4R5 .subtitle-wrap {
  color: #19303d;
}
.cid-tWC9SFm4R5 .mbr-text,
.cid-tWC9SFm4R5 .mbr-section-btn {
  color: #19303d;
  text-align: left;
}
.cid-tWC9SFQyic {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #353535;
}
.cid-tWC9SFQyic .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWC9SFQyic .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWC9SFQyic .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tWC9SFQyic .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tWC9SFQyic .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tWC9SFQyic .mbr-section-title {
  color: #131313;
}
.cid-tWC9SFQyic .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tWC9SFQyic .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tWC9SFQyic .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tWC9SFQyic .card-wrapper {
  width: calc(100% - 14px);
  padding: 80px 40px 60px 40px;
  margin: 0 auto;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #f3d6ef;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tWC9SFQyic .card-wrapper {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) {
  .cid-tWC9SFQyic .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tWC9SFQyic .iconfont-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .cid-tWC9SFQyic .iconfont-wrapper {
    margin-bottom: 25px;
  }
}
.cid-tWC9SFQyic .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-tWC9SFQyic .card-title {
  color: #131313;
}
.cid-tWC9SFQyic .card-text {
  margin-top: 10px;
  color: #131313;
}
.cid-tWC9SFQyic .card-link {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tWC9SFQyic .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-tWC9SFQyic .card-link {
    margin-top: 15px;
  }
}
.cid-tWC9SFQyic .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tWC9SFQyic .card-title,
.cid-tWC9SFQyic .iconfont-wrapper {
  text-align: center;
}
.cid-tWC9SGDKPK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f3d6ef;
}
.cid-tWC9SGDKPK .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWC9SGDKPK .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-tWC9SGDKPK .container {
    padding: 0 15px;
  }
}
.cid-tWC9SGDKPK .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
  padding-right: 8px;
}
@media (max-width: 992px) {
  .cid-tWC9SGDKPK .title-wrapper .mbr-section-title {
    padding: 0;
  }
}
.cid-tWC9SGDKPK .content-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-tWC9SGDKPK .content-wrapper .mbr-name {
  margin: 0;
}
.cid-tWC9SGDKPK .mbr-section-title {
  color: #000000;
}
.cid-tWC9SGDKPK .mbr-text {
  color: #000000;
}
.cid-tWC9SGDKPK .mbr-name {
  color: #f2ac2b;
}
.cid-tWC9SH9nlE {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tWC9SH9nlE .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWC9SH9nlE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWC9SH9nlE .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tWC9SH9nlE .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tWC9SH9nlE .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tWC9SH9nlE .mbr-section-title {
  color: #131313;
}
.cid-tWC9SH9nlE .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tWC9SH9nlE .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tWC9SH9nlE .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tWC9SH9nlE .card-wrapper {
  width: calc(100% - 14px);
  padding: 80px 40px 60px 40px;
  margin: 0 auto;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #f3d6ef;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tWC9SH9nlE .card-wrapper {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) {
  .cid-tWC9SH9nlE .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tWC9SH9nlE .iconfont-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .cid-tWC9SH9nlE .iconfont-wrapper {
    margin-bottom: 25px;
  }
}
.cid-tWC9SH9nlE .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-tWC9SH9nlE .card-title {
  color: #131313;
}
.cid-tWC9SH9nlE .card-text {
  margin-top: 10px;
  color: #000000;
}
.cid-tWC9SH9nlE .card-link {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tWC9SH9nlE .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-tWC9SH9nlE .card-link {
    margin-top: 15px;
  }
}
.cid-tWC9SH9nlE .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tWC9SH9nlE .card-title,
.cid-tWC9SH9nlE .iconfont-wrapper {
  color: #000000;
}
.cid-tWC9SHRGst {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-tWC9SHRGst blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #f3d6ef;
}
.cid-tWC9SHRGst .mbr-section-title {
  color: #000000;
}
.cid-tWC9SHRGst .mbr-text {
  color: #000000;
}
.cid-tWC9SIpjCC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #353535;
}
.cid-tWC9SIpjCC .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWC9SIpjCC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWC9SIpjCC .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tWC9SIpjCC .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tWC9SIpjCC .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tWC9SIpjCC .mbr-section-title {
  color: #131313;
}
.cid-tWC9SIpjCC .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tWC9SIpjCC .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tWC9SIpjCC .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tWC9SIpjCC .card-wrapper {
  display: flex;
  width: calc(100% - 24px);
  padding: 52px 30px 52px 40px;
  margin: 0 auto;
  border: 2px solid #fff0b0;
  box-shadow: 4px 4px 0 #fff0b0;
  background: #f3d6ef;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tWC9SIpjCC .card-wrapper {
    padding: 40px 30px 40px 40px;
  }
}
@media (max-width: 991px) {
  .cid-tWC9SIpjCC .card-wrapper {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .cid-tWC9SIpjCC .card-wrapper {
    width: calc(100% - 14px);
    flex-direction: column;
    padding: 30px 25px 25px;
  }
}
@media (min-width: 992px) {
  .cid-tWC9SIpjCC .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tWC9SIpjCC .iconfont-wrapper {
  margin-right: 40px;
}
@media (max-width: 767px) {
  .cid-tWC9SIpjCC .iconfont-wrapper {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
.cid-tWC9SIpjCC .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-tWC9SIpjCC .content-wrap {
  margin-top: 10px;
}
@media (max-width: 1199px) {
  .cid-tWC9SIpjCC .content-wrap {
    margin-top: 0;
  }
}
.cid-tWC9SIpjCC .card-title {
  color: #131313;
}
.cid-tWC9SIpjCC .card-text {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tWC9SIpjCC .card-text {
    margin-top: 15px;
  }
}
.cid-tWC9SIpjCC .card-link {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tWC9SIpjCC .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .cid-tWC9SIpjCC .card-link {
    margin-top: 15px;
  }
}
.cid-tWC9SIpjCC .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tWCrGEzmWN {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #e052cc;
}
.cid-tWCrGEzmWN .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWCrGEzmWN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWCrGEzmWN .container-fluid {
  padding: 0 16px;
}
@media (max-width: 991px) {
  .cid-tWCrGEzmWN .container-fluid {
    padding: 0 12px;
  }
}
.cid-tWCrGEzmWN .container-fluid .row {
  padding: 0;
}
.cid-tWCrGEzmWN .row {
  border: 3px solid #d2d2d2;
  margin-top: -3px;
  border-radius: 5px;
}
.cid-tWCrGEzmWN .card {
  padding: 64px 28px;
  border-radius: 0;
}
@media (max-width: 992px) {
  .cid-tWCrGEzmWN .card {
    padding: 48px 20px;
  }
}
.cid-tWCrGEzmWN .card .title-wrapper {
  width: 80%;
  margin: 0 auto 48px;
}
.cid-tWCrGEzmWN .card .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tWCrGEzmWN .card .video-block {
  width: 80%;
  margin: 0 auto;
  border: 5px solid #d2d2d2;
}
.cid-tWCrGEzmWN .app-video-wrapper::before {
  color: #ff5640;
  text-shadow: none;
}
.cid-tWCrGEzmWN .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-tWC9SJaamv {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f3d6ef;
}
.cid-tWC9SJEesT {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #353535;
}
.cid-tWC9SJEesT .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWC9SJEesT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tWC9SJEesT .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tWC9SJEesT .row {
  flex-direction: row-reverse;
}
.cid-tWC9SJEesT img {
  width: 100%;
}
.cid-tWC9SK7sVC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f3d6ef;
}
.cid-tWCu7xCk7l {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #353535;
}
.cid-tWCu7xCk7l .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWCu7xCk7l .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWCu7xCk7l .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tWCu7xCk7l .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tWCu7xCk7l .container {
    padding: 0 16px;
  }
}
.cid-tWCu7xCk7l .row {
  justify-content: center;
  margin: 0 20px;
}
@media (max-width: 992px) {
  .cid-tWCu7xCk7l .row {
    margin: 0 10px;
  }
}
.cid-tWCu7xCk7l .row .item {
  padding: 0;
}
.cid-tWCu7xCk7l .title-wrapper {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-tWCu7xCk7l .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-tWCu7xCk7l .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tWCu7xCk7l .panel-group {
  border: 1px solid #fdfcfc;
  border-radius: 20px;
  overflow: hidden;
}
.cid-tWCu7xCk7l .panel-group .card {
  border-top: 1px solid #4a5357;
  border-radius: 0 !important;
}
.cid-tWCu7xCk7l .panel-group .card:first-child {
  border-top: none;
}
.cid-tWCu7xCk7l .panel-group .card:last-child {
  border-bottom: none;
}
.cid-tWCu7xCk7l .panel-group .card .card-header {
  padding: 0;
  border: none;
  background-color: transparent;
}
.cid-tWCu7xCk7l .panel-group .card .card-header .panel-title {
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-tWCu7xCk7l .panel-group .card .card-header .panel-title {
    padding: 20px 10px;
  }
}
.cid-tWCu7xCk7l .panel-group .card .card-header .panel-title:not(.collapsed) {
  background-color: #ff6666;
}
.cid-tWCu7xCk7l .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(-180deg);
  color: #f3d6ef;
  background-color: #fff0b0;
}
.cid-tWCu7xCk7l .panel-group .card .card-header .panel-title:not(.collapsed) .panel-title-edit {
  color: #fff0b0;
}
.cid-tWCu7xCk7l .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.cid-tWCu7xCk7l .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 30px;
  color: #fff0b0;
  background-color: #f3d6ef;
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
}
.cid-tWCu7xCk7l .panel-group .card .panel-collapse .panel-body {
  padding: 30px;
}
@media (max-width: 992px) {
  .cid-tWCu7xCk7l .panel-group .card .panel-collapse .panel-body {
    padding: 20px 10px;
  }
}
.cid-tWCu7xCk7l .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-tWCu7xCk7l .image-wrapper {
  height: 100%;
}
.cid-tWCu7xCk7l .image-wrapper img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tWCu7xCk7l .image-wrapper img {
    height: 350px;
  }
}
.cid-tWCu7xCk7l .mbr-section-title {
  color: #fdfcfc;
}
.cid-tWCu7xCk7l .panel-title-edit {
  color: #fafafa;
}
.cid-tWCu7xCk7l .panel-text {
  color: #fdfcfc;
}
.cid-tWCrJfzxXR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #e052cc;
}
.cid-tWCrJfzxXR .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWCrJfzxXR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWCrJfzxXR .google-map {
  height: 30rem;
  position: relative;
}
.cid-tWCrJfzxXR .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tWCrJfzxXR .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tWCrJfzxXR .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tWCrJfzxXR .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tWCrJfzxXR .mbr-section-title {
  color: #fafafa;
}
.cid-tWC9SLh5XG {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f3d6ef;
  overflow: hidden;
}
.cid-tWC9SLh5XG .media-container-row .mbr-text {
  color: #aaaaaa;
  text-align: left;
}
.cid-tWC9SLh5XG .media-container-row .mbr-text2 {
  color: #232323;
}
.cid-tWC9SLh5XG .media-container-row .mbr-text1 {
  color: #232323;
  text-align: left;
}
.cid-tWC9SLh5XG .media-container-row .mbr-text3 {
  color: #232323;
  text-align: right;
}
.cid-tWC9SLh5XG a {
  background-image: none !important;
}
.cid-tWC9SLh5XG .line {
  width: 100%;
  height: 1px;
  background: currentColor;
}
.cid-tWC9SLh5XG .container {
  padding: 5rem 1rem;
}
.cid-tWC9SLh5XG p {
  padding: 0.5rem 0;
}
@media (max-width: 992px) {
  .cid-tWC9SLh5XG p {
    text-align: center !important;
  }
}
.cid-tWC9SLh5XG .media-container-row .mbr-text2,
.cid-tWC9SLh5XG .line {
  color: #232323;
  text-align: left;
}
.cid-tWCE8efJdL {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tWCE8efJdL nav.navbar {
  position: fixed;
}
.cid-tWCE8efJdL .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-tWCE8efJdL .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tWCE8efJdL .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tWCE8efJdL .dropdown-item:hover,
.cid-tWCE8efJdL .dropdown-item:focus {
  background: #1055d5 !important;
  color: white !important;
}
.cid-tWCE8efJdL .dropdown-item:hover span {
  color: white;
}
.cid-tWCE8efJdL .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tWCE8efJdL .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tWCE8efJdL .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tWCE8efJdL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tWCE8efJdL .nav-link {
  position: relative;
}
.cid-tWCE8efJdL .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tWCE8efJdL .container {
    flex-wrap: nowrap;
  }
}
.cid-tWCE8efJdL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tWCE8efJdL .dropdown-menu,
.cid-tWCE8efJdL .navbar.opened {
  background: #e052cc !important;
}
.cid-tWCE8efJdL .nav-item:focus,
.cid-tWCE8efJdL .nav-link:focus {
  outline: none;
}
.cid-tWCE8efJdL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tWCE8efJdL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tWCE8efJdL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tWCE8efJdL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tWCE8efJdL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tWCE8efJdL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tWCE8efJdL .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: #e052cc;
}
.cid-tWCE8efJdL .navbar.opened {
  transition: all 0.3s;
}
.cid-tWCE8efJdL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tWCE8efJdL .navbar .navbar-logo img {
  width: auto;
}
.cid-tWCE8efJdL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tWCE8efJdL .navbar.collapsed {
  justify-content: center;
}
.cid-tWCE8efJdL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tWCE8efJdL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tWCE8efJdL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-tWCE8efJdL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tWCE8efJdL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tWCE8efJdL .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-tWCE8efJdL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tWCE8efJdL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tWCE8efJdL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tWCE8efJdL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tWCE8efJdL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tWCE8efJdL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tWCE8efJdL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tWCE8efJdL .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-tWCE8efJdL .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tWCE8efJdL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tWCE8efJdL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tWCE8efJdL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tWCE8efJdL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tWCE8efJdL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tWCE8efJdL .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tWCE8efJdL .navbar.navbar-short {
  min-height: 60px;
}
.cid-tWCE8efJdL .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tWCE8efJdL .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tWCE8efJdL .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-tWCE8efJdL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tWCE8efJdL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tWCE8efJdL .dropdown-item.active,
.cid-tWCE8efJdL .dropdown-item:active {
  background-color: transparent;
}
.cid-tWCE8efJdL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tWCE8efJdL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tWCE8efJdL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tWCE8efJdL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #e052cc;
}
.cid-tWCE8efJdL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tWCE8efJdL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tWCE8efJdL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tWCE8efJdL .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tWCE8efJdL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tWCE8efJdL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tWCE8efJdL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tWCE8efJdL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWCE8efJdL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWCE8efJdL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tWCE8efJdL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWCE8efJdL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tWCE8efJdL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tWCE8efJdL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWCE8efJdL .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tWCE8efJdL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tWCE8efJdL .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-tWCE8efJdL .navbar {
    height: 70px;
  }
  .cid-tWCE8efJdL .navbar.opened {
    height: auto;
  }
  .cid-tWCE8efJdL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tWCE8feH7U {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f3d6ef;
}
.cid-tWCE8feH7U .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWCE8feH7U .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWCE8feH7U .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 3rem;
}
.cid-tWCE8feH7U .mbr-section-title {
  text-align: left;
  color: #232323;
}
.cid-tWCE8feH7U .mbr-text,
.cid-tWCE8feH7U .mbr-section-btn {
  color: #232323;
}
.cid-tWCE8feH7U .mbr-section-title,
.cid-tWCE8feH7U .line {
  color: #232323;
}
.cid-tWCE8feH7U h2 {
  position: relative;
  width: fit-content;
  padding-left: 35px;
  display: inline-block;
}
.cid-tWCE8feH7U h2:before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
  position: absolute;
  left: 10px;
  top: calc(50% - 6px);
}
.cid-tWCE8feH7U .mbr-section-subtitle,
.cid-tWCE8feH7U .align {
  text-align: left;
  color: #232323;
}
.cid-tWCE8fZVAT {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
  background: linear-gradient(180deg, #ffffff, #eccdf3);
}
@media (min-width: 992px) {
  .cid-tWCE8fZVAT .content-col {
    transform: translateX(-5rem);
    z-index: 1;
  }
}
@media (max-width: 575px) {
  .cid-tWCE8fZVAT .row {
    text-align: center!important;
  }
}
.cid-tWCE8fZVAT .btn {
  width: -webkit-fill-available;
}
.cid-tWCE8fZVAT .col-lg-8 {
  z-index: 2;
}
.cid-tWCE8fZVAT .content-container {
  width: 100%;
  padding: 3rem 1.5rem;
  padding-left: 4.5rem;
  padding-top: 10rem;
  border-radius: 2rem;
  background-color: #98dee8;
  background: linear-gradient(180deg, #98dee8, #ffffff);
}
@media (max-width: 1400px) {
  .cid-tWCE8fZVAT .content-container {
    padding: 2rem 1rem;
    padding-left: 4rem;
  }
}
@media (max-width: 767px) {
  .cid-tWCE8fZVAT .content-container {
    padding: 1rem 0rem;
    padding-top: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-tWCE8fZVAT .content-container {
    padding: 3rem 2rem;
  }
}
.cid-tWCE8fZVAT img {
  border-radius: 2rem;
}
@media (max-width: 992px) {
  .cid-tWCE8fZVAT img {
    margin-bottom: 2rem;
  }
}
.cid-tWCE8fZVAT .mbr-section-title {
  color: #ffffff;
}
@media (max-width: 575px) {
  .cid-tWCE8fZVAT .mbr-section-title {
    text-align: center;
  }
}
.cid-tWCE8fZVAT .mbr-text {
  color: #272523;
}
.cid-tWCE8fZVAT .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWCE8fZVAT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWCE8fZVAT .mbr-section-title,
.cid-tWCE8fZVAT .mbr-section-btn {
  color: #000000;
}
.cid-tWCE8gPl6c {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-tWCE8gPl6c .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWCE8gPl6c .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-tWCE8gPl6c .container {
    padding: 0 15px;
  }
}
.cid-tWCE8gPl6c .row {
  justify-content: center;
}
.cid-tWCE8gPl6c .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-tWCE8gPl6c .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-tWCE8gPl6c .subtitle-wrapper {
  padding-right: 28px;
}
@media (max-width: 992px) {
  .cid-tWCE8gPl6c .subtitle-wrapper {
    padding: 0;
  }
}
.cid-tWCE8gPl6c .subtitle-wrapper .mbr-section-subtitle {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tWCE8gPl6c .subtitle-wrapper .mbr-section-subtitle {
    margin-bottom: 20px;
  }
}
.cid-tWCE8gPl6c .lists-wrapper .list {
  margin-bottom: 0;
  list-style-type: none;
  padding-left: 0;
  padding-left: 50px;
}
@media (max-width: 992px) {
  .cid-tWCE8gPl6c .lists-wrapper .list {
    padding-left: 36px;
  }
}
.cid-tWCE8gPl6c .lists-wrapper .list .item-wrap {
  margin-bottom: 20px;
  position: relative;
}
.cid-tWCE8gPl6c .lists-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-tWCE8gPl6c .lists-wrapper .list .item-wrap::before {
  content: '✓';
  position: absolute;
  top: 5px;
  margin-left: -50px;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #fafafa;
  color: #171827;
  font-size: 16px;
}
@media (max-width: 992px) {
  .cid-tWCE8gPl6c .lists-wrapper .list .item-wrap::before {
    margin-left: -36px;
  }
}
.cid-tWCE8gPl6c .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tWCE8gPl6c .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tWCE8gPl6c .list {
  color: #ffffff;
}
.cid-tWCE8hmBo5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-tWCE8hmBo5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWCE8hmBo5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWCE8hmBo5 .item-wrap {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 55px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #e052cc, #eccdf3);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
@media (max-width: 767px) {
  .cid-tWCE8hmBo5 .item-wrap {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .cid-tWCE8hmBo5 .item-wrap {
    padding: 35px 25px 35px 25px;
  }
}
.cid-tWCE8hmBo5 .card-title {
  color: #878e99;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-tWCE8hmBo5 .card-title {
    margin-bottom: 20px;
  }
}
.cid-tWCE8hmBo5 .card-subtitle {
  color: #878e99;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-tWCE8hmBo5 .card-subtitle {
    margin-bottom: 20px;
  }
}
.cid-tWCE8hmBo5 .card-text {
  color: #000000;
  margin-bottom: 0;
}
.cid-tWCE8i1FLD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-tWCE8i1FLD .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWCE8i1FLD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWCE8i1FLD .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-tWCE8i1FLD .container-fluid {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-tWCE8i1FLD .container-fluid {
    padding: 0 12px;
  }
}
@media (max-width: 992px) {
  .cid-tWCE8i1FLD .container {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-tWCE8i1FLD .container {
    padding: 0 12px;
  }
}
.cid-tWCE8i1FLD .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-tWCE8i1FLD .content-wrapper {
    padding: 0 24px;
  }
}
.cid-tWCE8i1FLD .content-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
.cid-tWCE8i1FLD .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-tWCE8i1FLD .mbr-section-title {
  color: #1D1D1F;
}
.cid-tWCE8i1FLD .mbr-text {
  color: #1D1D1F;
  text-align: center;
}
.cid-tWCE8i1FLD .mbr-section-title,
.cid-tWCE8i1FLD .mbr-section-btn {
  text-align: center;
}
.cid-tWCE8iHEC2 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #353535;
}
@media (max-width: 992px) {
  .cid-tWCE8iHEC2 .container {
    padding: 0 25px;
  }
}
.cid-tWCE8iHEC2 .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tWCE8iHEC2 .title-wrapper .mbr-section-title {
    margin-bottom: 50px;
  }
}
.cid-tWCE8iHEC2 .panel-group {
  border-bottom: 2px solid #e1e1e1;
}
.cid-tWCE8iHEC2 .panel-group .card {
  border-top: 2px solid #e1e1e1;
  border-radius: 0 !important;
  padding: 0;
}
.cid-tWCE8iHEC2 .panel-group .card .card-header {
  padding: 16px 0;
  border: none;
  background-color: transparent;
}
.cid-tWCE8iHEC2 .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tWCE8iHEC2 .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  color: #f0f0f0;
  box-shadow: inset 52px 0 0 0 #000000;
}
.cid-tWCE8iHEC2 .panel-group .card .card-header .panel-title:hover .mbr-iconfont {
  color: #f0f0f0;
  box-shadow: inset 52px 0 0 0 #000000;
}
.cid-tWCE8iHEC2 .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-tWCE8iHEC2 .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  min-width: 52px;
  height: 52px;
  font-size: 20px;
  color: #000000;
  background-color: #f0f0f0;
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
}
.cid-tWCE8iHEC2 .panel-group .card .panel-collapse .panel-body {
  padding-bottom: 25px;
}
.cid-tWCE8iHEC2 .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-tWCE8iHEC2 .mbr-section-title {
  color: #fff0b0;
}
.cid-tWCE8iHEC2 .panel-title-edit {
  color: #fff0b0;
}
.cid-tWCE8iHEC2 .panel-text {
  color: #000000;
}
.cid-tWCE8jMTVC {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #f3d6ef;
}
.cid-tWCE8jMTVC .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWCE8jMTVC h1 a {
  width: fit-content;
  position: relative;
  font-weight: 600;
  display: inline-block;
  z-index: 2;
}
.cid-tWCE8jMTVC h1 a:before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 10%;
  width: 100%;
  height: 22px;
  background: #1055d5;
  z-index: -1;
}
.cid-tWCE8jMTVC h1 a:hover {
  color: inherit !important;
}
.cid-tWCE8jMTVC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWCE8jMTVC .row {
  flex-direction: row-reverse;
}
.cid-tWCE8jMTVC .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tWCE8jMTVC .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tWCE8jMTVC .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tWCE8jMTVC .mbr-section-title {
  color: #19303d;
  text-align: center;
}
.cid-tWCE8jMTVC .mbr-section-subtitle,
.cid-tWCE8jMTVC .subtitle-wrap {
  color: #19303d;
}
.cid-tWCE8jMTVC .mbr-text,
.cid-tWCE8jMTVC .mbr-section-btn {
  color: #19303d;
  text-align: left;
}
.cid-tWCE8koQqg {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #353535;
}
.cid-tWCE8koQqg .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWCE8koQqg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWCE8koQqg .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tWCE8koQqg .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tWCE8koQqg .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tWCE8koQqg .mbr-section-title {
  color: #131313;
}
.cid-tWCE8koQqg .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tWCE8koQqg .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tWCE8koQqg .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tWCE8koQqg .card-wrapper {
  width: calc(100% - 14px);
  padding: 80px 40px 60px 40px;
  margin: 0 auto;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #f3d6ef;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tWCE8koQqg .card-wrapper {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) {
  .cid-tWCE8koQqg .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tWCE8koQqg .iconfont-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .cid-tWCE8koQqg .iconfont-wrapper {
    margin-bottom: 25px;
  }
}
.cid-tWCE8koQqg .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-tWCE8koQqg .card-title {
  color: #131313;
}
.cid-tWCE8koQqg .card-text {
  margin-top: 10px;
  color: #131313;
}
.cid-tWCE8koQqg .card-link {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tWCE8koQqg .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-tWCE8koQqg .card-link {
    margin-top: 15px;
  }
}
.cid-tWCE8koQqg .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tWCE8koQqg .card-title,
.cid-tWCE8koQqg .iconfont-wrapper {
  text-align: center;
}
.cid-tWCE8loazG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f3d6ef;
}
.cid-tWCE8loazG .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWCE8loazG .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-tWCE8loazG .container {
    padding: 0 15px;
  }
}
.cid-tWCE8loazG .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
  padding-right: 8px;
}
@media (max-width: 992px) {
  .cid-tWCE8loazG .title-wrapper .mbr-section-title {
    padding: 0;
  }
}
.cid-tWCE8loazG .content-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-tWCE8loazG .content-wrapper .mbr-name {
  margin: 0;
}
.cid-tWCE8loazG .mbr-section-title {
  color: #000000;
}
.cid-tWCE8loazG .mbr-text {
  color: #000000;
}
.cid-tWCE8loazG .mbr-name {
  color: #f2ac2b;
}
.cid-tWCE8mbioA {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tWCE8mbioA .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWCE8mbioA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWCE8mbioA .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tWCE8mbioA .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tWCE8mbioA .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tWCE8mbioA .mbr-section-title {
  color: #131313;
}
.cid-tWCE8mbioA .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tWCE8mbioA .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tWCE8mbioA .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tWCE8mbioA .card-wrapper {
  width: calc(100% - 14px);
  padding: 80px 40px 60px 40px;
  margin: 0 auto;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #f3d6ef;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tWCE8mbioA .card-wrapper {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) {
  .cid-tWCE8mbioA .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tWCE8mbioA .iconfont-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .cid-tWCE8mbioA .iconfont-wrapper {
    margin-bottom: 25px;
  }
}
.cid-tWCE8mbioA .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-tWCE8mbioA .card-title {
  color: #131313;
}
.cid-tWCE8mbioA .card-text {
  margin-top: 10px;
  color: #000000;
}
.cid-tWCE8mbioA .card-link {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tWCE8mbioA .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-tWCE8mbioA .card-link {
    margin-top: 15px;
  }
}
.cid-tWCE8mbioA .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tWCE8mbioA .card-title,
.cid-tWCE8mbioA .iconfont-wrapper {
  color: #000000;
}
.cid-tWDmv5qKEC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eccdf3;
}
.cid-tWCE8nL7Jy {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #353535;
}
.cid-tWCE8nL7Jy .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWCE8nL7Jy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWCE8nL7Jy .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tWCE8nL7Jy .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tWCE8nL7Jy .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tWCE8nL7Jy .mbr-section-title {
  color: #131313;
}
.cid-tWCE8nL7Jy .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tWCE8nL7Jy .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tWCE8nL7Jy .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tWCE8nL7Jy .card-wrapper {
  display: flex;
  width: calc(100% - 24px);
  padding: 52px 30px 52px 40px;
  margin: 0 auto;
  border: 2px solid #fff0b0;
  box-shadow: 4px 4px 0 #fff0b0;
  background: #f3d6ef;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tWCE8nL7Jy .card-wrapper {
    padding: 40px 30px 40px 40px;
  }
}
@media (max-width: 991px) {
  .cid-tWCE8nL7Jy .card-wrapper {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .cid-tWCE8nL7Jy .card-wrapper {
    width: calc(100% - 14px);
    flex-direction: column;
    padding: 30px 25px 25px;
  }
}
@media (min-width: 992px) {
  .cid-tWCE8nL7Jy .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tWCE8nL7Jy .iconfont-wrapper {
  margin-right: 40px;
}
@media (max-width: 767px) {
  .cid-tWCE8nL7Jy .iconfont-wrapper {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
.cid-tWCE8nL7Jy .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-tWCE8nL7Jy .content-wrap {
  margin-top: 10px;
}
@media (max-width: 1199px) {
  .cid-tWCE8nL7Jy .content-wrap {
    margin-top: 0;
  }
}
.cid-tWCE8nL7Jy .card-title {
  color: #131313;
}
.cid-tWCE8nL7Jy .card-text {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tWCE8nL7Jy .card-text {
    margin-top: 15px;
  }
}
.cid-tWCE8nL7Jy .card-link {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tWCE8nL7Jy .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .cid-tWCE8nL7Jy .card-link {
    margin-top: 15px;
  }
}
.cid-tWCE8nL7Jy .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tWCE8p9wZa {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #e052cc;
}
.cid-tWCE8p9wZa .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWCE8p9wZa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWCE8p9wZa .container-fluid {
  padding: 0 16px;
}
@media (max-width: 991px) {
  .cid-tWCE8p9wZa .container-fluid {
    padding: 0 12px;
  }
}
.cid-tWCE8p9wZa .container-fluid .row {
  padding: 0;
}
.cid-tWCE8p9wZa .row {
  border: 3px solid #d2d2d2;
  margin-top: -3px;
  border-radius: 5px;
}
.cid-tWCE8p9wZa .card {
  padding: 64px 28px;
  border-radius: 0;
}
@media (max-width: 992px) {
  .cid-tWCE8p9wZa .card {
    padding: 48px 20px;
  }
}
.cid-tWCE8p9wZa .card .title-wrapper {
  width: 80%;
  margin: 0 auto 48px;
}
.cid-tWCE8p9wZa .card .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tWCE8p9wZa .card .video-block {
  width: 80%;
  margin: 0 auto;
  border: 5px solid #d2d2d2;
}
.cid-tWCE8p9wZa .app-video-wrapper::before {
  color: #ff5640;
  text-shadow: none;
}
.cid-tWCE8p9wZa .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-tWCE8pNpXo {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f3d6ef;
}
.cid-tWCE8qq4Q3 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #353535;
}
.cid-tWCE8qq4Q3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWCE8qq4Q3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tWCE8qq4Q3 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tWCE8qq4Q3 .row {
  flex-direction: row-reverse;
}
.cid-tWCE8qq4Q3 img {
  width: 100%;
}
.cid-tWCE8r8P0c {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f3d6ef;
}
.cid-tWCE8seFAS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #353535;
}
.cid-tWCE8seFAS .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWCE8seFAS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWCE8seFAS .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tWCE8seFAS .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tWCE8seFAS .container {
    padding: 0 16px;
  }
}
.cid-tWCE8seFAS .row {
  justify-content: center;
  margin: 0 20px;
}
@media (max-width: 992px) {
  .cid-tWCE8seFAS .row {
    margin: 0 10px;
  }
}
.cid-tWCE8seFAS .row .item {
  padding: 0;
}
.cid-tWCE8seFAS .title-wrapper {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-tWCE8seFAS .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-tWCE8seFAS .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tWCE8seFAS .panel-group {
  border: 1px solid #fdfcfc;
  border-radius: 20px;
  overflow: hidden;
}
.cid-tWCE8seFAS .panel-group .card {
  border-top: 1px solid #4a5357;
  border-radius: 0 !important;
}
.cid-tWCE8seFAS .panel-group .card:first-child {
  border-top: none;
}
.cid-tWCE8seFAS .panel-group .card:last-child {
  border-bottom: none;
}
.cid-tWCE8seFAS .panel-group .card .card-header {
  padding: 0;
  border: none;
  background-color: transparent;
}
.cid-tWCE8seFAS .panel-group .card .card-header .panel-title {
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-tWCE8seFAS .panel-group .card .card-header .panel-title {
    padding: 20px 10px;
  }
}
.cid-tWCE8seFAS .panel-group .card .card-header .panel-title:not(.collapsed) {
  background-color: #ff6666;
}
.cid-tWCE8seFAS .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(-180deg);
  color: #f3d6ef;
  background-color: #fff0b0;
}
.cid-tWCE8seFAS .panel-group .card .card-header .panel-title:not(.collapsed) .panel-title-edit {
  color: #fff0b0;
}
.cid-tWCE8seFAS .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.cid-tWCE8seFAS .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 30px;
  color: #fff0b0;
  background-color: #f3d6ef;
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
}
.cid-tWCE8seFAS .panel-group .card .panel-collapse .panel-body {
  padding: 30px;
}
@media (max-width: 992px) {
  .cid-tWCE8seFAS .panel-group .card .panel-collapse .panel-body {
    padding: 20px 10px;
  }
}
.cid-tWCE8seFAS .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-tWCE8seFAS .image-wrapper {
  height: 100%;
}
.cid-tWCE8seFAS .image-wrapper img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tWCE8seFAS .image-wrapper img {
    height: 350px;
  }
}
.cid-tWCE8seFAS .mbr-section-title {
  color: #fdfcfc;
}
.cid-tWCE8seFAS .panel-title-edit {
  color: #fafafa;
}
.cid-tWCE8seFAS .panel-text {
  color: #fdfcfc;
}
.cid-tWCE8t5GOU {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #e052cc;
}
.cid-tWCE8t5GOU .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWCE8t5GOU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWCE8t5GOU .google-map {
  height: 30rem;
  position: relative;
}
.cid-tWCE8t5GOU .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tWCE8t5GOU .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tWCE8t5GOU .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tWCE8t5GOU .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tWCE8t5GOU .mbr-section-title {
  color: #fafafa;
}
.cid-tWCE8u1QLu {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f3d6ef;
  overflow: hidden;
}
.cid-tWCE8u1QLu .media-container-row .mbr-text {
  color: #aaaaaa;
  text-align: left;
}
.cid-tWCE8u1QLu .media-container-row .mbr-text2 {
  color: #232323;
}
.cid-tWCE8u1QLu .media-container-row .mbr-text1 {
  color: #232323;
  text-align: left;
}
.cid-tWCE8u1QLu .media-container-row .mbr-text3 {
  color: #232323;
  text-align: right;
}
.cid-tWCE8u1QLu a {
  background-image: none !important;
}
.cid-tWCE8u1QLu .line {
  width: 100%;
  height: 1px;
  background: currentColor;
}
.cid-tWCE8u1QLu .container {
  padding: 5rem 1rem;
}
.cid-tWCE8u1QLu p {
  padding: 0.5rem 0;
}
@media (max-width: 992px) {
  .cid-tWCE8u1QLu p {
    text-align: center !important;
  }
}
.cid-tWCE8u1QLu .media-container-row .mbr-text2,
.cid-tWCE8u1QLu .line {
  color: #232323;
  text-align: left;
}
.cid-tWD2eXGTqb {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tWD2eXGTqb nav.navbar {
  position: fixed;
}
.cid-tWD2eXGTqb .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-tWD2eXGTqb .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tWD2eXGTqb .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tWD2eXGTqb .dropdown-item:hover,
.cid-tWD2eXGTqb .dropdown-item:focus {
  background: #1055d5 !important;
  color: white !important;
}
.cid-tWD2eXGTqb .dropdown-item:hover span {
  color: white;
}
.cid-tWD2eXGTqb .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tWD2eXGTqb .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tWD2eXGTqb .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tWD2eXGTqb .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tWD2eXGTqb .nav-link {
  position: relative;
}
.cid-tWD2eXGTqb .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tWD2eXGTqb .container {
    flex-wrap: nowrap;
  }
}
.cid-tWD2eXGTqb .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tWD2eXGTqb .dropdown-menu,
.cid-tWD2eXGTqb .navbar.opened {
  background: #e052cc !important;
}
.cid-tWD2eXGTqb .nav-item:focus,
.cid-tWD2eXGTqb .nav-link:focus {
  outline: none;
}
.cid-tWD2eXGTqb .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tWD2eXGTqb .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tWD2eXGTqb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tWD2eXGTqb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tWD2eXGTqb .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tWD2eXGTqb .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tWD2eXGTqb .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: #e052cc;
}
.cid-tWD2eXGTqb .navbar.opened {
  transition: all 0.3s;
}
.cid-tWD2eXGTqb .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tWD2eXGTqb .navbar .navbar-logo img {
  width: auto;
}
.cid-tWD2eXGTqb .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tWD2eXGTqb .navbar.collapsed {
  justify-content: center;
}
.cid-tWD2eXGTqb .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tWD2eXGTqb .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tWD2eXGTqb .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-tWD2eXGTqb .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tWD2eXGTqb .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tWD2eXGTqb .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-tWD2eXGTqb .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tWD2eXGTqb .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tWD2eXGTqb .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tWD2eXGTqb .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tWD2eXGTqb .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tWD2eXGTqb .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tWD2eXGTqb .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tWD2eXGTqb .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-tWD2eXGTqb .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tWD2eXGTqb .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tWD2eXGTqb .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tWD2eXGTqb .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tWD2eXGTqb .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tWD2eXGTqb .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tWD2eXGTqb .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tWD2eXGTqb .navbar.navbar-short {
  min-height: 60px;
}
.cid-tWD2eXGTqb .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tWD2eXGTqb .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tWD2eXGTqb .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-tWD2eXGTqb .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tWD2eXGTqb .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tWD2eXGTqb .dropdown-item.active,
.cid-tWD2eXGTqb .dropdown-item:active {
  background-color: transparent;
}
.cid-tWD2eXGTqb .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tWD2eXGTqb .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tWD2eXGTqb .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tWD2eXGTqb .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #e052cc;
}
.cid-tWD2eXGTqb .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tWD2eXGTqb .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tWD2eXGTqb ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tWD2eXGTqb .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tWD2eXGTqb button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tWD2eXGTqb button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tWD2eXGTqb button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tWD2eXGTqb button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWD2eXGTqb button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWD2eXGTqb button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tWD2eXGTqb nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWD2eXGTqb nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tWD2eXGTqb nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tWD2eXGTqb nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWD2eXGTqb .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tWD2eXGTqb a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tWD2eXGTqb .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-tWD2eXGTqb .navbar {
    height: 70px;
  }
  .cid-tWD2eXGTqb .navbar.opened {
    height: auto;
  }
  .cid-tWD2eXGTqb .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tWD2eYgLiD {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f3d6ef;
}
.cid-tWD2eYgLiD .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWD2eYgLiD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWD2eYgLiD .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 3rem;
}
.cid-tWD2eYgLiD .mbr-section-title {
  text-align: left;
  color: #232323;
}
.cid-tWD2eYgLiD .mbr-text,
.cid-tWD2eYgLiD .mbr-section-btn {
  color: #232323;
}
.cid-tWD2eYgLiD .mbr-section-title,
.cid-tWD2eYgLiD .line {
  color: #232323;
}
.cid-tWD2eYgLiD h2 {
  position: relative;
  width: fit-content;
  padding-left: 35px;
  display: inline-block;
}
.cid-tWD2eYgLiD h2:before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
  position: absolute;
  left: 10px;
  top: calc(50% - 6px);
}
.cid-tWD2eYgLiD .mbr-section-subtitle,
.cid-tWD2eYgLiD .align {
  text-align: left;
  color: #232323;
}
.cid-tWD2eYKalI {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
  background: linear-gradient(180deg, #ffffff, #eccdf3);
}
@media (min-width: 992px) {
  .cid-tWD2eYKalI .content-col {
    transform: translateX(-5rem);
    z-index: 1;
  }
}
@media (max-width: 575px) {
  .cid-tWD2eYKalI .row {
    text-align: center!important;
  }
}
.cid-tWD2eYKalI .btn {
  width: -webkit-fill-available;
}
.cid-tWD2eYKalI .col-lg-8 {
  z-index: 2;
}
.cid-tWD2eYKalI .content-container {
  width: 100%;
  padding: 3rem 1.5rem;
  padding-left: 4.5rem;
  padding-top: 10rem;
  border-radius: 2rem;
  background-color: #98dee8;
  background: linear-gradient(180deg, #98dee8, #ffffff);
}
@media (max-width: 1400px) {
  .cid-tWD2eYKalI .content-container {
    padding: 2rem 1rem;
    padding-left: 4rem;
  }
}
@media (max-width: 767px) {
  .cid-tWD2eYKalI .content-container {
    padding: 1rem 0rem;
    padding-top: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-tWD2eYKalI .content-container {
    padding: 3rem 2rem;
  }
}
.cid-tWD2eYKalI img {
  border-radius: 2rem;
}
@media (max-width: 992px) {
  .cid-tWD2eYKalI img {
    margin-bottom: 2rem;
  }
}
.cid-tWD2eYKalI .mbr-section-title {
  color: #ffffff;
}
@media (max-width: 575px) {
  .cid-tWD2eYKalI .mbr-section-title {
    text-align: center;
  }
}
.cid-tWD2eYKalI .mbr-text {
  color: #272523;
}
.cid-tWD2eYKalI .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWD2eYKalI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWD2eYKalI .mbr-section-title,
.cid-tWD2eYKalI .mbr-section-btn {
  color: #000000;
}
.cid-tWD2eZa1W9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-tWD2eZa1W9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWD2eZa1W9 .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-tWD2eZa1W9 .container {
    padding: 0 15px;
  }
}
.cid-tWD2eZa1W9 .row {
  justify-content: center;
}
.cid-tWD2eZa1W9 .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-tWD2eZa1W9 .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-tWD2eZa1W9 .subtitle-wrapper {
  padding-right: 28px;
}
@media (max-width: 992px) {
  .cid-tWD2eZa1W9 .subtitle-wrapper {
    padding: 0;
  }
}
.cid-tWD2eZa1W9 .subtitle-wrapper .mbr-section-subtitle {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tWD2eZa1W9 .subtitle-wrapper .mbr-section-subtitle {
    margin-bottom: 20px;
  }
}
.cid-tWD2eZa1W9 .lists-wrapper .list {
  margin-bottom: 0;
  list-style-type: none;
  padding-left: 0;
  padding-left: 50px;
}
@media (max-width: 992px) {
  .cid-tWD2eZa1W9 .lists-wrapper .list {
    padding-left: 36px;
  }
}
.cid-tWD2eZa1W9 .lists-wrapper .list .item-wrap {
  margin-bottom: 20px;
  position: relative;
}
.cid-tWD2eZa1W9 .lists-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-tWD2eZa1W9 .lists-wrapper .list .item-wrap::before {
  content: '✓';
  position: absolute;
  top: 5px;
  margin-left: -50px;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #fafafa;
  color: #171827;
  font-size: 16px;
}
@media (max-width: 992px) {
  .cid-tWD2eZa1W9 .lists-wrapper .list .item-wrap::before {
    margin-left: -36px;
  }
}
.cid-tWD2eZa1W9 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tWD2eZa1W9 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tWD2eZa1W9 .list {
  color: #ffffff;
}
.cid-tWD2eZG1eu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-tWD2eZG1eu .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWD2eZG1eu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWD2eZG1eu .item-wrap {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 55px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #e052cc, #eccdf3);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
@media (max-width: 767px) {
  .cid-tWD2eZG1eu .item-wrap {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .cid-tWD2eZG1eu .item-wrap {
    padding: 35px 25px 35px 25px;
  }
}
.cid-tWD2eZG1eu .card-title {
  color: #878e99;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-tWD2eZG1eu .card-title {
    margin-bottom: 20px;
  }
}
.cid-tWD2eZG1eu .card-subtitle {
  color: #878e99;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-tWD2eZG1eu .card-subtitle {
    margin-bottom: 20px;
  }
}
.cid-tWD2eZG1eu .card-text {
  color: #000000;
  margin-bottom: 0;
}
.cid-tWD2f08iwj {
  padding-top: 5rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-tWD2f08iwj .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWD2f08iwj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWD2f08iwj .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-tWD2f08iwj .container-fluid {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-tWD2f08iwj .container-fluid {
    padding: 0 12px;
  }
}
@media (max-width: 992px) {
  .cid-tWD2f08iwj .container {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-tWD2f08iwj .container {
    padding: 0 12px;
  }
}
.cid-tWD2f08iwj .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-tWD2f08iwj .content-wrapper {
    padding: 0 24px;
  }
}
.cid-tWD2f08iwj .content-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
.cid-tWD2f08iwj .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-tWD2f08iwj .mbr-section-title {
  color: #1D1D1F;
}
.cid-tWD2f08iwj .mbr-text {
  color: #1D1D1F;
  text-align: center;
}
.cid-tWD2f08iwj .mbr-section-title,
.cid-tWD2f08iwj .mbr-section-btn {
  text-align: center;
}
.cid-tWD2f0xpPv {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #353535;
}
@media (max-width: 992px) {
  .cid-tWD2f0xpPv .container {
    padding: 0 25px;
  }
}
.cid-tWD2f0xpPv .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tWD2f0xpPv .title-wrapper .mbr-section-title {
    margin-bottom: 50px;
  }
}
.cid-tWD2f0xpPv .panel-group {
  border-bottom: 2px solid #e1e1e1;
}
.cid-tWD2f0xpPv .panel-group .card {
  border-top: 2px solid #e1e1e1;
  border-radius: 0 !important;
  padding: 0;
}
.cid-tWD2f0xpPv .panel-group .card .card-header {
  padding: 16px 0;
  border: none;
  background-color: transparent;
}
.cid-tWD2f0xpPv .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tWD2f0xpPv .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  color: #f0f0f0;
  box-shadow: inset 52px 0 0 0 #000000;
}
.cid-tWD2f0xpPv .panel-group .card .card-header .panel-title:hover .mbr-iconfont {
  color: #f0f0f0;
  box-shadow: inset 52px 0 0 0 #000000;
}
.cid-tWD2f0xpPv .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-tWD2f0xpPv .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  min-width: 52px;
  height: 52px;
  font-size: 20px;
  color: #000000;
  background-color: #f0f0f0;
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
}
.cid-tWD2f0xpPv .panel-group .card .panel-collapse .panel-body {
  padding-bottom: 25px;
}
.cid-tWD2f0xpPv .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-tWD2f0xpPv .mbr-section-title {
  color: #fff0b0;
}
.cid-tWD2f0xpPv .panel-title-edit {
  color: #fff0b0;
}
.cid-tWD2f0xpPv .panel-text {
  color: #000000;
}
.cid-tWD2f1jyLp {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #f3d6ef;
}
.cid-tWD2f1jyLp .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWD2f1jyLp h1 a {
  width: fit-content;
  position: relative;
  font-weight: 600;
  display: inline-block;
  z-index: 2;
}
.cid-tWD2f1jyLp h1 a:before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 10%;
  width: 100%;
  height: 22px;
  background: #1055d5;
  z-index: -1;
}
.cid-tWD2f1jyLp h1 a:hover {
  color: inherit !important;
}
.cid-tWD2f1jyLp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWD2f1jyLp .row {
  flex-direction: row-reverse;
}
.cid-tWD2f1jyLp .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tWD2f1jyLp .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tWD2f1jyLp .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tWD2f1jyLp .mbr-section-title {
  color: #19303d;
  text-align: center;
}
.cid-tWD2f1jyLp .mbr-section-subtitle,
.cid-tWD2f1jyLp .subtitle-wrap {
  color: #19303d;
}
.cid-tWD2f1jyLp .mbr-text,
.cid-tWD2f1jyLp .mbr-section-btn {
  color: #19303d;
  text-align: left;
}
.cid-tWD2f1Nxo7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #353535;
}
.cid-tWD2f1Nxo7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWD2f1Nxo7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWD2f1Nxo7 .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tWD2f1Nxo7 .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tWD2f1Nxo7 .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tWD2f1Nxo7 .mbr-section-title {
  color: #131313;
}
.cid-tWD2f1Nxo7 .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tWD2f1Nxo7 .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tWD2f1Nxo7 .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tWD2f1Nxo7 .card-wrapper {
  width: calc(100% - 14px);
  padding: 80px 40px 60px 40px;
  margin: 0 auto;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #f3d6ef;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tWD2f1Nxo7 .card-wrapper {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) {
  .cid-tWD2f1Nxo7 .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tWD2f1Nxo7 .iconfont-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .cid-tWD2f1Nxo7 .iconfont-wrapper {
    margin-bottom: 25px;
  }
}
.cid-tWD2f1Nxo7 .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-tWD2f1Nxo7 .card-title {
  color: #131313;
}
.cid-tWD2f1Nxo7 .card-text {
  margin-top: 10px;
  color: #131313;
}
.cid-tWD2f1Nxo7 .card-link {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tWD2f1Nxo7 .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-tWD2f1Nxo7 .card-link {
    margin-top: 15px;
  }
}
.cid-tWD2f1Nxo7 .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tWD2f1Nxo7 .card-title,
.cid-tWD2f1Nxo7 .iconfont-wrapper {
  text-align: center;
}
.cid-tWD2f2ufVA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f3d6ef;
}
.cid-tWD2f2ufVA .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWD2f2ufVA .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-tWD2f2ufVA .container {
    padding: 0 15px;
  }
}
.cid-tWD2f2ufVA .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
  padding-right: 8px;
}
@media (max-width: 992px) {
  .cid-tWD2f2ufVA .title-wrapper .mbr-section-title {
    padding: 0;
  }
}
.cid-tWD2f2ufVA .content-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-tWD2f2ufVA .content-wrapper .mbr-name {
  margin: 0;
}
.cid-tWD2f2ufVA .mbr-section-title {
  color: #000000;
}
.cid-tWD2f2ufVA .mbr-text {
  color: #000000;
}
.cid-tWD2f2ufVA .mbr-name {
  color: #f2ac2b;
}
.cid-tWD2f319D7 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tWD2f319D7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWD2f319D7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWD2f319D7 .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tWD2f319D7 .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tWD2f319D7 .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tWD2f319D7 .mbr-section-title {
  color: #131313;
}
.cid-tWD2f319D7 .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tWD2f319D7 .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tWD2f319D7 .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tWD2f319D7 .card-wrapper {
  width: calc(100% - 14px);
  padding: 80px 40px 60px 40px;
  margin: 0 auto;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #f3d6ef;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tWD2f319D7 .card-wrapper {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) {
  .cid-tWD2f319D7 .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tWD2f319D7 .iconfont-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .cid-tWD2f319D7 .iconfont-wrapper {
    margin-bottom: 25px;
  }
}
.cid-tWD2f319D7 .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-tWD2f319D7 .card-title {
  color: #131313;
}
.cid-tWD2f319D7 .card-text {
  margin-top: 10px;
  color: #000000;
}
.cid-tWD2f319D7 .card-link {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tWD2f319D7 .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-tWD2f319D7 .card-link {
    margin-top: 15px;
  }
}
.cid-tWD2f319D7 .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tWD2f319D7 .card-title,
.cid-tWD2f319D7 .iconfont-wrapper {
  color: #000000;
}
.cid-tWD4n2YkJS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eccdf3;
}
.cid-tWD4n2YkJS .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWD4n2YkJS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWD4n2YkJS .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-tWD2f4oX2y {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #353535;
}
.cid-tWD2f4oX2y .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWD2f4oX2y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWD2f4oX2y .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tWD2f4oX2y .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tWD2f4oX2y .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tWD2f4oX2y .mbr-section-title {
  color: #131313;
}
.cid-tWD2f4oX2y .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tWD2f4oX2y .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tWD2f4oX2y .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tWD2f4oX2y .card-wrapper {
  display: flex;
  width: calc(100% - 24px);
  padding: 52px 30px 52px 40px;
  margin: 0 auto;
  border: 2px solid #fff0b0;
  box-shadow: 4px 4px 0 #fff0b0;
  background: #f3d6ef;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tWD2f4oX2y .card-wrapper {
    padding: 40px 30px 40px 40px;
  }
}
@media (max-width: 991px) {
  .cid-tWD2f4oX2y .card-wrapper {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .cid-tWD2f4oX2y .card-wrapper {
    width: calc(100% - 14px);
    flex-direction: column;
    padding: 30px 25px 25px;
  }
}
@media (min-width: 992px) {
  .cid-tWD2f4oX2y .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tWD2f4oX2y .iconfont-wrapper {
  margin-right: 40px;
}
@media (max-width: 767px) {
  .cid-tWD2f4oX2y .iconfont-wrapper {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
.cid-tWD2f4oX2y .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-tWD2f4oX2y .content-wrap {
  margin-top: 10px;
}
@media (max-width: 1199px) {
  .cid-tWD2f4oX2y .content-wrap {
    margin-top: 0;
  }
}
.cid-tWD2f4oX2y .card-title {
  color: #131313;
}
.cid-tWD2f4oX2y .card-text {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tWD2f4oX2y .card-text {
    margin-top: 15px;
  }
}
.cid-tWD2f4oX2y .card-link {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tWD2f4oX2y .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .cid-tWD2f4oX2y .card-link {
    margin-top: 15px;
  }
}
.cid-tWD2f4oX2y .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tWD2f55yjn {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #e052cc;
}
.cid-tWD2f55yjn .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWD2f55yjn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWD2f55yjn .container-fluid {
  padding: 0 16px;
}
@media (max-width: 991px) {
  .cid-tWD2f55yjn .container-fluid {
    padding: 0 12px;
  }
}
.cid-tWD2f55yjn .container-fluid .row {
  padding: 0;
}
.cid-tWD2f55yjn .row {
  border: 3px solid #d2d2d2;
  margin-top: -3px;
  border-radius: 5px;
}
.cid-tWD2f55yjn .card {
  padding: 64px 28px;
  border-radius: 0;
}
@media (max-width: 992px) {
  .cid-tWD2f55yjn .card {
    padding: 48px 20px;
  }
}
.cid-tWD2f55yjn .card .title-wrapper {
  width: 80%;
  margin: 0 auto 48px;
}
.cid-tWD2f55yjn .card .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tWD2f55yjn .card .video-block {
  width: 80%;
  margin: 0 auto;
  border: 5px solid #d2d2d2;
}
.cid-tWD2f55yjn .app-video-wrapper::before {
  color: #ff5640;
  text-shadow: none;
}
.cid-tWD2f55yjn .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-tWD2f5AshN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f3d6ef;
}
.cid-tWD2f61XCC {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #353535;
}
.cid-tWD2f61XCC .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWD2f61XCC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tWD2f61XCC .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tWD2f61XCC .row {
  flex-direction: row-reverse;
}
.cid-tWD2f61XCC img {
  width: 100%;
}
.cid-tWD2f6tsEv {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f3d6ef;
}
.cid-tWD2f6VbX8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #353535;
}
.cid-tWD2f6VbX8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWD2f6VbX8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWD2f6VbX8 .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tWD2f6VbX8 .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tWD2f6VbX8 .container {
    padding: 0 16px;
  }
}
.cid-tWD2f6VbX8 .row {
  justify-content: center;
  margin: 0 20px;
}
@media (max-width: 992px) {
  .cid-tWD2f6VbX8 .row {
    margin: 0 10px;
  }
}
.cid-tWD2f6VbX8 .row .item {
  padding: 0;
}
.cid-tWD2f6VbX8 .title-wrapper {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-tWD2f6VbX8 .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-tWD2f6VbX8 .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tWD2f6VbX8 .panel-group {
  border: 1px solid #fdfcfc;
  border-radius: 20px;
  overflow: hidden;
}
.cid-tWD2f6VbX8 .panel-group .card {
  border-top: 1px solid #4a5357;
  border-radius: 0 !important;
}
.cid-tWD2f6VbX8 .panel-group .card:first-child {
  border-top: none;
}
.cid-tWD2f6VbX8 .panel-group .card:last-child {
  border-bottom: none;
}
.cid-tWD2f6VbX8 .panel-group .card .card-header {
  padding: 0;
  border: none;
  background-color: transparent;
}
.cid-tWD2f6VbX8 .panel-group .card .card-header .panel-title {
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-tWD2f6VbX8 .panel-group .card .card-header .panel-title {
    padding: 20px 10px;
  }
}
.cid-tWD2f6VbX8 .panel-group .card .card-header .panel-title:not(.collapsed) {
  background-color: #ff6666;
}
.cid-tWD2f6VbX8 .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(-180deg);
  color: #f3d6ef;
  background-color: #fff0b0;
}
.cid-tWD2f6VbX8 .panel-group .card .card-header .panel-title:not(.collapsed) .panel-title-edit {
  color: #fff0b0;
}
.cid-tWD2f6VbX8 .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.cid-tWD2f6VbX8 .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 30px;
  color: #fff0b0;
  background-color: #f3d6ef;
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
}
.cid-tWD2f6VbX8 .panel-group .card .panel-collapse .panel-body {
  padding: 30px;
}
@media (max-width: 992px) {
  .cid-tWD2f6VbX8 .panel-group .card .panel-collapse .panel-body {
    padding: 20px 10px;
  }
}
.cid-tWD2f6VbX8 .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-tWD2f6VbX8 .image-wrapper {
  height: 100%;
}
.cid-tWD2f6VbX8 .image-wrapper img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tWD2f6VbX8 .image-wrapper img {
    height: 350px;
  }
}
.cid-tWD2f6VbX8 .mbr-section-title {
  color: #fdfcfc;
}
.cid-tWD2f6VbX8 .panel-title-edit {
  color: #fafafa;
}
.cid-tWD2f6VbX8 .panel-text {
  color: #fdfcfc;
}
.cid-tWD2f7wZpL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #e052cc;
}
.cid-tWD2f7wZpL .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWD2f7wZpL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWD2f7wZpL .google-map {
  height: 30rem;
  position: relative;
}
.cid-tWD2f7wZpL .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tWD2f7wZpL .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tWD2f7wZpL .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tWD2f7wZpL .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tWD2f7wZpL .mbr-section-title {
  color: #fafafa;
}
.cid-tWD2f8kjFp {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f3d6ef;
  overflow: hidden;
}
.cid-tWD2f8kjFp .media-container-row .mbr-text {
  color: #aaaaaa;
  text-align: left;
}
.cid-tWD2f8kjFp .media-container-row .mbr-text2 {
  color: #232323;
}
.cid-tWD2f8kjFp .media-container-row .mbr-text1 {
  color: #232323;
  text-align: left;
}
.cid-tWD2f8kjFp .media-container-row .mbr-text3 {
  color: #232323;
  text-align: right;
}
.cid-tWD2f8kjFp a {
  background-image: none !important;
}
.cid-tWD2f8kjFp .line {
  width: 100%;
  height: 1px;
  background: currentColor;
}
.cid-tWD2f8kjFp .container {
  padding: 5rem 1rem;
}
.cid-tWD2f8kjFp p {
  padding: 0.5rem 0;
}
@media (max-width: 992px) {
  .cid-tWD2f8kjFp p {
    text-align: center !important;
  }
}
.cid-tWD2f8kjFp .media-container-row .mbr-text2,
.cid-tWD2f8kjFp .line {
  color: #232323;
  text-align: left;
}
