body {
  font-family: Jost;
}
.display-1 {
  font-family: 'InterTight-VariableFont_wght';
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'InterTight-VariableFont_wght';
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'InterTight-VariableFont_wght';
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'InterTight-VariableFont_wght';
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'InterTight-VariableFont_wght';
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #a34f8b !important;
}
.bg-success {
  background-color: #6ea4a6 !important;
}
.bg-info {
  background-color: #aad0cd !important;
}
.bg-warning {
  background-color: #eff6fa !important;
}
.bg-danger {
  background-color: #c5d348 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #a34f8b !important;
  border-color: #a34f8b !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: #693359 !important;
  border-color: #693359 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #693359 !important;
  border-color: #693359 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #2f7682 !important;
  border-color: #2f7682 !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: #183c42 !important;
  border-color: #183c42 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #183c42 !important;
  border-color: #183c42 !important;
}
.btn-info,
.btn-info:active {
  background-color: #aad0cd !important;
  border-color: #aad0cd !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: #72b1ac !important;
  border-color: #72b1ac !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #72b1ac !important;
  border-color: #72b1ac !important;
}
.btn-success,
.btn-success:active {
  background-color: #6ea4a6 !important;
  border-color: #6ea4a6 !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: #487475 !important;
  border-color: #487475 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #487475 !important;
  border-color: #487475 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #eff6fa !important;
  border-color: #eff6fa !important;
  color: #3886b2 !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: #235470 !important;
  background-color: #add1e5 !important;
  border-color: #add1e5 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #3886b2 !important;
  background-color: #add1e5 !important;
  border-color: #add1e5 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #c5d348 !important;
  border-color: #c5d348 !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: #929e26 !important;
  border-color: #929e26 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #929e26 !important;
  border-color: #929e26 !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: #a34f8b;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #693359 !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: #a34f8b !important;
  border-color: #a34f8b !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #2f7682;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #183c42 !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: #2f7682 !important;
  border-color: #2f7682 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #aad0cd;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #72b1ac !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: #aad0cd !important;
  border-color: #aad0cd !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #6ea4a6;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #487475 !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: #6ea4a6 !important;
  border-color: #6ea4a6 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #eff6fa;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #add1e5 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #3886b2 !important;
  background-color: #eff6fa !important;
  border-color: #eff6fa !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #c5d348;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #929e26 !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: #c5d348 !important;
  border-color: #c5d348 !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: #a34f8b !important;
}
.text-secondary {
  color: #2f7682 !important;
}
.text-success {
  color: #6ea4a6 !important;
}
.text-info {
  color: #aad0cd !important;
}
.text-warning {
  color: #eff6fa !important;
}
.text-danger {
  color: #c5d348 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #5e2e50 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #143237 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #426a6c !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #68aca6 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #a1cae2 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #879223 !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: #a34f8b;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #aad0cd;
}
.alert-warning {
  background-color: #eff6fa;
}
.alert-danger {
  background-color: #c5d348;
}
.mbr-gallery-filter li.active .btn {
  background-color: #a34f8b;
  border-color: #a34f8b;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #a34f8b;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #d1a0c3;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #bdd6d6;
}
.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: #f9fbec;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'InterTight-VariableFont_wght';
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #a34f8b !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'InterTight-VariableFont_wght';
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #a34f8b;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #a34f8b;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #a34f8b;
}
.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: #a34f8b;
  border-bottom-color: #a34f8b;
}
.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: #a34f8b !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #2f7682 !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='%23a34f8b' %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;
}
*:focus-visible {
  outline: red solid 2px !important;
  outline-offset: 2px !important;
  transition: outline 0.2s ease-in-out;
}
.cid-uZedzuPBdI {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 110px;
}
.cid-uZedzuPBdI nav.navbar {
  position: fixed;
}
.cid-uZedzuPBdI .container-fluid {
  padding-left: 64px;
  padding-right: 64px;
}
@media (max-width: 992px) {
  .cid-uZedzuPBdI .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cid-uZedzuPBdI .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-uZedzuPBdI .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uZedzuPBdI .dropdown-item {
  border-bottom: 1px solid #c5d348;
  background: #eff6fa !important;
  color: #a34f8b !important;
}
.cid-uZedzuPBdI .dropdown-item:hover,
.cid-uZedzuPBdI .dropdown-item:focus {
  background: #eff6fa !important;
  color: #a34f8b !important;
}
.cid-uZedzuPBdI .dropdown-item:hover span {
  color: white;
}
.cid-uZedzuPBdI .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uZedzuPBdI .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uZedzuPBdI .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uZedzuPBdI .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uZedzuPBdI .nav-link {
  position: relative;
}
.cid-uZedzuPBdI .container {
  display: flex;
  margin: 0 auto;
  max-width: 1600px;
}
@media (min-width: 992px) {
  .cid-uZedzuPBdI .container {
    flex-wrap: nowrap;
  }
}
.cid-uZedzuPBdI .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.cid-uZedzuPBdI .iconfont-wrapper:hover {
  color: #a34f8b !important;
}
.cid-uZedzuPBdI .dropdown-menu,
.cid-uZedzuPBdI .navbar.opened {
  background: #eff6fa !important;
}
.cid-uZedzuPBdI .nav-item:focus,
.cid-uZedzuPBdI .nav-link:focus {
  outline: none;
}
.cid-uZedzuPBdI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uZedzuPBdI .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.cid-uZedzuPBdI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uZedzuPBdI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uZedzuPBdI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uZedzuPBdI .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uZedzuPBdI .navbar {
  min-height: 110px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #eff6fa;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uZedzuPBdI .navbar.opened {
  transition: all 0.3s;
}
.cid-uZedzuPBdI .navbar .dropdown-item {
  padding: 0.5rem 3.2rem 0.5rem 1.8rem;
  border-radius: 0.6rem;
}
.cid-uZedzuPBdI .navbar .navbar-logo img {
  width: auto;
  border-radius: 6px !important;
}
.cid-uZedzuPBdI .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uZedzuPBdI .navbar.collapsed {
  justify-content: center;
}
.cid-uZedzuPBdI .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uZedzuPBdI .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uZedzuPBdI .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uZedzuPBdI .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uZedzuPBdI .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-uZedzuPBdI .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uZedzuPBdI .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uZedzuPBdI .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uZedzuPBdI .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uZedzuPBdI .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uZedzuPBdI .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uZedzuPBdI .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uZedzuPBdI .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-uZedzuPBdI .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uZedzuPBdI .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uZedzuPBdI .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uZedzuPBdI .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-uZedzuPBdI .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uZedzuPBdI .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uZedzuPBdI .navbar.navbar-short {
  min-height: 96px;
}
.cid-uZedzuPBdI .navbar.navbar-short .navbar-brand {
  min-height: 96px;
}
.cid-uZedzuPBdI .navbar-brand {
  min-height: 96px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-uZedzuPBdI .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uZedzuPBdI .navbar-brand .navbar-caption:hover,
.cid-uZedzuPBdI .navbar-brand .navbar-caption:focus {
  color: #a34f8b !important;
}
.cid-uZedzuPBdI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uZedzuPBdI .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-uZedzuPBdI .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #a34f8b !important;
}
.cid-uZedzuPBdI .dropdown-item.active,
.cid-uZedzuPBdI .dropdown-item:active {
  background-color: transparent;
}
.cid-uZedzuPBdI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uZedzuPBdI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uZedzuPBdI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uZedzuPBdI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #eff6fa;
  top: 3rem;
  border-radius: 0.6rem;
}
@media (max-width: 992px) {
  .cid-uZedzuPBdI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-uZedzuPBdI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-uZedzuPBdI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uZedzuPBdI ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .cid-uZedzuPBdI ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.cid-uZedzuPBdI .navbar-buttons {
  text-align: center;
}
.cid-uZedzuPBdI .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  padding: 11px 32px;
  min-height: auto;
}
.cid-uZedzuPBdI .navbar-buttons .btn .mbr-iconfont {
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  margin-left: 32px;
  margin-right: -20px;
}
@media (max-width: 575px) {
  .cid-uZedzuPBdI .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-uZedzuPBdI button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #eff6fa !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uZedzuPBdI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #2f7682;
}
.cid-uZedzuPBdI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.cid-uZedzuPBdI button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uZedzuPBdI button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uZedzuPBdI button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.cid-uZedzuPBdI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uZedzuPBdI nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uZedzuPBdI nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uZedzuPBdI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uZedzuPBdI .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uZedzuPBdI a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uZedzuPBdI .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-uZedzuPBdI .navbar {
    height: 70px;
  }
  .cid-uZedzuPBdI .navbar.opened {
    height: auto;
  }
  .cid-uZedzuPBdI .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uZedzuPBdI .navbar-nav {
  margin: 0 auto;
}
.cid-uZedzuPBdI .nav-item {
  padding: 0;
  margin: 0;
}
.cid-uZedzuPBdI .nav-item .nav-link {
  padding: 5px 32px !important;
  margin: 0 !important;
  transition: all 0.3s ease-in-out;
  font-weight: 600;
}
.cid-uZedzuPBdI .nav-item .nav-link::after {
  color: #a34f8b !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-uZedzuPBdI .nav-item .nav-link:hover {
  background-color: transparent;
  color: #a34f8b !important;
}
.cid-uZedzuPBdI .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-uZedzuPBdI .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-uZedzuPBdI .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
.cid-uZedzuPBdI .nav-item .dropdown-menu .dropdown-item {
  color: #a34f8b !important;
}
.cid-uZedzuPBdI .nav-item .dropdown-menu .dropdown-item:hover {
  color: #a34f8b !important;
}
@media (max-width: 991px) {
  .cid-uZedzuPBdI .navbar {
    justify-content: flex-start !important;
  }
  .cid-uZedzuPBdI .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-uZedzuPBdI .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-uZedzuPBdI .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-uZedzuPBdI .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-uZedzuPBdI .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .cid-uZedzuPBdI .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
  }
}
.cid-uZedzuPBdI .content-wrap {
  min-height: 110px;
}
.cid-uZffOgFsqu {
  background-image: url("../../../assets/images/dr-jana-grube-ernaehrungsberaterin-hero.webp");
}
.cid-uZffOgFsqu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZffOgFsqu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZffOgFsqu .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 80%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uZffOgFsqu .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
    width: 100%;
  }
}
.cid-uZffOgFsqu .text-wrapper .mbr-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uZffOgFsqu .text-wrapper .mbr-text {
    margin-bottom: 14px;
  }
}
.cid-uZffOgFsqu .mbr-section-title {
  color: #0f0f0f;
}
.cid-uZffOgFsqu .mbr-text {
  color: #fffbf8;
}
.cid-uZffOgFsqu .mbr-section-title,
.cid-uZffOgFsqu .mbr-section-btn,
.cid-uZffOgFsqu .title-wrapper {
  color: #ffffff;
}
.cid-uZeA75puyW {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uZeA75puyW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZeA75puyW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZeA75puyW .row {
  justify-content: space-between;
}
.cid-uZeA75puyW .title-wrapper .label-wrapper .mbr-label {
  display: inline-block;
  padding: 4px 20px;
  margin-bottom: 20px;
  border: 1px solid #6ea4a6;
}
@media (max-width: 992px) {
  .cid-uZeA75puyW .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uZeA75puyW .content-wrapper .mbr-desc {
  margin-bottom: 20px;
}
.cid-uZeA75puyW .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uZeA75puyW .content-wrapper .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 992px) {
  .cid-uZeA75puyW .content-wrapper .mbr-section-btn {
    margin-top: 20px;
  }
}
.cid-uZeA75puyW .mbr-label {
  color: #000000;
}
.cid-uZeA75puyW .mbr-section-title {
  color: #2f7682;
}
.cid-uZeA75puyW .mbr-desc {
  color: #000000;
}
.cid-uZeA75puyW .mbr-text {
  color: #8a8a8a;
}
.cid-uZeA75puyW .mbr-text,
.cid-uZeA75puyW .mbr-section-btn {
  color: #232323;
}
.cid-uZeA75puyW .mbr-label,
.cid-uZeA75puyW .label-wrapper {
  color: #a34f8b;
}
.cid-uXPsdCP0ur {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uXPsdCP0ur .mbr-fallback-image.disabled {
  display: none;
}
.cid-uXPsdCP0ur .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uXPsdCP0ur .card-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-uXPsdCP0ur .card-wrapper .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uXPsdCP0ur .card-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #121212;
  opacity: 0.3;
  transition: all 0.3s ease-in-out;
  pointer-events: none;
  z-index: 1;
}
.cid-uXPsdCP0ur .card-wrapper .card-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  padding-top: 135px;
  pointer-events: none;
}
@media (max-width: 992px) {
  .cid-uXPsdCP0ur .card-wrapper .card-wrap {
    display: block;
    padding-top: 0;
  }
}
.cid-uXPsdCP0ur .card-wrapper .card-wrap .item-wrapper {
  width: 50%;
  background-color: #2f7682;
  padding: 160px 110px;
  pointer-events: visible;
}
@media (max-width: 1440px) {
  .cid-uXPsdCP0ur .card-wrapper .card-wrap .item-wrapper {
    padding: 160px 40px;
  }
}
@media (max-width: 992px) {
  .cid-uXPsdCP0ur .card-wrapper .card-wrap .item-wrapper {
    width: 100%;
    padding: 20px;
  }
}
.cid-uXPsdCP0ur .card-wrapper .card-wrap .item-wrapper .icon-wrapper {
  margin-bottom: 20px;
}
.cid-uXPsdCP0ur .card-wrapper .card-wrap .item-wrapper .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  font-size: 32px;
  color: #ffffff;
}
.cid-uXPsdCP0ur .card-wrapper .card-wrap .item-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-uXPsdCP0ur .card-wrapper .card-wrap .item-wrapper .mbr-name {
  margin-bottom: 0;
}
.cid-uXPsdCP0ur .card-wrapper .card-wrap .content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 40%;
  padding-right: 110px;
  padding-bottom: 110px;
  pointer-events: visible;
  padding-right: 0;
  padding-left: 110px;
}
@media (max-width: 1440px) {
  .cid-uXPsdCP0ur .card-wrapper .card-wrap .content-wrapper {
    padding-right: 40px;
  }
}
@media (max-width: 992px) {
  .cid-uXPsdCP0ur .card-wrapper .card-wrap .content-wrapper {
    width: 100%;
    padding: 40px 20px;
  }
}
@media (max-width: 1440px) {
  .cid-uXPsdCP0ur .card-wrapper .card-wrap .content-wrapper {
    padding-left: 40px;
  }
}
@media (max-width: 992px) {
  .cid-uXPsdCP0ur .card-wrapper .card-wrap .content-wrapper {
    padding: 40px 20px;
  }
}
.cid-uXPsdCP0ur .card-wrapper .card-wrap .content-wrapper .title-wrapper .mbr-tag {
  margin-bottom: 16px;
}
.cid-uXPsdCP0ur .card-wrapper .card-wrap .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-uXPsdCP0ur .card-wrapper .card-wrap .content-wrapper .number-wrapper .mbr-number {
  margin-bottom: 0;
}
.cid-uXPsdCP0ur .card-wrapper .card-wrap .content-wrapper .number-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-uXPsdCP0ur .mbr-section-title {
  color: #ffffff;
}
.cid-uXPsdCP0ur .mbr-tag {
  color: #ffffff;
}
.cid-uXPsdCP0ur .mbr-number {
  color: #ffffff;
}
.cid-uXPsdCP0ur .mbr-desc {
  color: #ffffff;
}
.cid-uXPsdCP0ur .mbr-text {
  color: #ffffff;
}
.cid-uXPsdCP0ur .mbr-name {
  color: #ffffff;
}
.cid-uXPsdCP0ur .mbr-text,
.cid-uXPsdCP0ur .icon-wrapper {
  color: #ffffff;
}
.cid-uXPsdCP0ur .mbr-section-title,
.cid-uXPsdCP0ur .main-btn {
  color: #ffffff;
}
.cid-uZfidBjbID {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uZfidBjbID .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZfidBjbID .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZfidBjbID .items-wrapper {
  justify-content: center;
  margin: 0 -40px;
}
.cid-uZfidBjbID .items-wrapper .item {
  position: relative;
  padding: 0 40px;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uZfidBjbID .items-wrapper .item {
    margin-bottom: 40px;
  }
}
.cid-uZfidBjbID .items-wrapper .item .item-wrapper .icon-wrapper {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uZfidBjbID .items-wrapper .item .item-wrapper .icon-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uZfidBjbID .items-wrapper .item .item-wrapper .icon-wrapper .mbr-iconfont {
  width: 56px;
  height: 56px;
  min-width: 56px;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #a34f8b;
}
.cid-uZfidBjbID .items-wrapper .item .item-wrapper .item-title {
  margin-bottom: 16px;
}
.cid-uZfidBjbID .items-wrapper .item .item-wrapper .item-text {
  margin-bottom: 0;
}
.cid-uZfidBjbID .items-wrapper .item .item-wrapper .mbr-section-btn {
  margin-top: 16px;
}
.cid-uZfidBjbID .items-wrapper .item .item-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uZfidBjbID .item-title {
  color: #ffffff;
}
.cid-uZfidBjbID .item-text {
  color: #232323;
}
.cid-uZfidBjbID .item-title,
.cid-uZfidBjbID .mbr-section-btn,
.cid-uZfidBjbID .icon-wrapper {
  color: #232323;
}
.cid-uZeBNXrN4M {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uZeBNXrN4M .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZeBNXrN4M .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZeBNXrN4M .row {
  justify-content: space-between;
}
.cid-uZeBNXrN4M .title-wrapper .label-wrapper .mbr-label {
  display: inline-block;
  padding: 4px 20px;
  margin-bottom: 20px;
  border: 1px solid #6ea4a6;
}
@media (max-width: 992px) {
  .cid-uZeBNXrN4M .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uZeBNXrN4M .content-wrapper .mbr-desc {
  margin-bottom: 20px;
}
.cid-uZeBNXrN4M .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uZeBNXrN4M .content-wrapper .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 992px) {
  .cid-uZeBNXrN4M .content-wrapper .mbr-section-btn {
    margin-top: 20px;
  }
}
.cid-uZeBNXrN4M .mbr-label {
  color: #000000;
}
.cid-uZeBNXrN4M .mbr-section-title {
  color: #2f7682;
}
.cid-uZeBNXrN4M .mbr-desc {
  color: #000000;
}
.cid-uZeBNXrN4M .mbr-text {
  color: #8a8a8a;
}
.cid-uZeBNXrN4M .mbr-text,
.cid-uZeBNXrN4M .mbr-section-btn {
  color: #000000;
}
.cid-uZeBNXrN4M .mbr-label,
.cid-uZeBNXrN4M .label-wrapper {
  color: #a34f8b;
}
.cid-uZetKcHkHb {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uZetKcHkHb .card-title {
  position: relative;
  width: 100%;
  cursor: pointer;
  display: block;
  margin-right: 1rem;
  margin-bottom: 2rem;
  color: #6ea4a6;
  text-align: left;
}
.cid-uZetKcHkHb .card {
  margin-bottom: 1.5rem;
}
.cid-uZetKcHkHb .card-wrapper {
  overflow: visible;
  padding: 5rem 4rem;
}
@media (max-width: 767px) {
  .cid-uZetKcHkHb .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-uZetKcHkHb .card-wrapper-1 {
  background-color: #eff6fa;
}
.cid-uZetKcHkHb .card-wrapper-2 {
  background-color: #eff6fa;
}
.cid-uZetKcHkHb .card-wrapper-3 {
  background-color: #bcd9df;
}
.cid-uZetKcHkHb .card-wrapper-4 {
  background-color: #419e8e;
}
.cid-uZetKcHkHb .card-text {
  color: #454545;
  text-align: left;
  margin-bottom: 2.5rem;
}
.cid-uZetKcHkHb .mbr-section-title {
  text-align: justify;
  color: #6ea4a6;
}
.cid-uZetKcHkHb .card-text,
.cid-uZetKcHkHb .mbr-section-btn {
  text-align: left;
  color: #232323;
}
.cid-uZetKcHkHb .button-section {
  margin-top: 1.5rem;
}
.cid-uZetKcHkHb .button-section .btn {
  font-weight: 700 !important;
}
.cid-uZetKcHkHb .section-text,
.cid-uZetKcHkHb .button-section {
  text-align: left;
}
.cid-uZetKcHkHb .section-text {
  text-align: left;
}
.cid-uZetKcHkHb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZetKcHkHb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uXPzmfsPHa {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #2f7682;
}
.cid-uXPzmfsPHa .mbr-fallback-image.disabled {
  display: none;
}
.cid-uXPzmfsPHa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uXPzmfsPHa .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uXPzmfsPHa .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uXPzmfsPHa .items-wrapper .item {
  margin-bottom: 4px;
}
@media (max-width: 992px) {
  .cid-uXPzmfsPHa .items-wrapper .item {
    margin-bottom: 2px;
  }
}
.cid-uXPzmfsPHa .items-wrapper .item .item-wrapper {
  height: 100%;
  display: flex;
  background-color: #ffffff;
  transition: all .3s ease;
}
@media (max-width: 992px) {
  .cid-uXPzmfsPHa .items-wrapper .item .item-wrapper {
    display: block;
  }
}
.cid-uXPzmfsPHa .items-wrapper .item .item-wrapper .card-box {
  width: 50%;
  padding: 64px;
}
@media (max-width: 992px) {
  .cid-uXPzmfsPHa .items-wrapper .item .item-wrapper .card-box {
    padding: 20px;
    width: 100%;
  }
}
.cid-uXPzmfsPHa .items-wrapper .item .item-wrapper .card-box .card-title {
  margin-bottom: 14px;
  transition: all .3s ease;
}
.cid-uXPzmfsPHa .items-wrapper .item .item-wrapper .card-box .card-text {
  margin-bottom: 14px;
  transition: all .3s ease;
}
.cid-uXPzmfsPHa .items-wrapper .item .item-wrapper .card-box .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uXPzmfsPHa .items-wrapper .item .item-wrapper .item-img {
  width: 50%;
  padding: 64px;
}
@media (max-width: 992px) {
  .cid-uXPzmfsPHa .items-wrapper .item .item-wrapper .item-img {
    padding: 0 20px 20px;
    width: 100%;
  }
}
.cid-uXPzmfsPHa .items-wrapper .item .item-wrapper .item-img img {
  height: 400px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uXPzmfsPHa .items-wrapper .item .item-wrapper .item-img img {
    height: 300px;
  }
}
@media (max-width: 992px) {
  .cid-uXPzmfsPHa .items-wrapper .item .item-wrapper .card_2 {
    padding: 20px 20px 0;
  }
}
.cid-uXPzmfsPHa .mbr-section-title {
  color: #0f0f0f;
}
.cid-uXPzmfsPHa .card-title {
  color: #0f0f0f;
}
.cid-uXPzmfsPHa .card-text {
  color: #232323;
}
.cid-uXPzmfsPHa .card-title,
.cid-uXPzmfsPHa .mbr-section-btn {
  color: #2f7682;
}
.cid-uXPzmfsPHa .mbr-section-title,
.cid-uXPzmfsPHa .mbr-section-btn {
  color: #6ea4a6;
}
.cid-uZeEci69fe {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uZeEci69fe .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZeEci69fe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZeEci69fe .title-wrapper {
  display: flex;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uZeEci69fe .title-wrapper {
    display: block;
    margin-bottom: 30px;
  }
}
.cid-uZeEci69fe .title-wrapper .label-wrapper {
  width: 35%;
}
@media (max-width: 992px) {
  .cid-uZeEci69fe .title-wrapper .label-wrapper {
    width: 100%;
  }
}
.cid-uZeEci69fe .title-wrapper .label-wrapper .mbr-label {
  display: inline-block;
  padding: 4px 20px;
  margin-bottom: 20px;
  border: 1px solid #6ea4a6;
}
.cid-uZeEci69fe .title-wrapper .mbr-section-title {
  width: 65%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uZeEci69fe .title-wrapper .mbr-section-title {
    width: 100%;
  }
}
.cid-uZeEci69fe .panel-group .card {
  position: relative;
  padding: 40px 0;
  background-color: transparent;
  border-top: 1px solid #e0e0e0;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-uZeEci69fe .panel-group .card {
    padding: 30px 0;
  }
}
.cid-uZeEci69fe .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uZeEci69fe .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-uZeEci69fe .panel-group .card .card-header .panel-title .icon-wrap {
  width: 35%;
  position: relative;
}
@media (max-width: 992px) {
  .cid-uZeEci69fe .panel-group .card .card-header .panel-title .icon-wrap {
    width: 25%;
  }
}
.cid-uZeEci69fe .panel-group .card .card-header .panel-title .icon-wrap .mbr-iconfont {
  width: 50px;
  height: 50px;
  min-width: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  margin-right: 10px;
  transition: all .3s ease;
  font-size: 24px;
  background-color: #a34f8b;
  color: #ffffff;
}
.cid-uZeEci69fe .panel-group .card .card-header .panel-title .icon-wrap .svg1 {
  position: absolute;
  bottom: 0;
  left: 24px;
  transform: rotate(180deg);
  width: 26px;
}
.cid-uZeEci69fe .panel-group .card .card-header .panel-title .icon-wrap .svg1 path {
  transition: all .3s ease;
  fill: #a34f8b;
}
.cid-uZeEci69fe .panel-group .card .card-header .panel-title .panel-title-edit {
  width: 65%;
  padding-right: 30px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uZeEci69fe .panel-group .card .card-header .panel-title .panel-title-edit {
    width: 70%;
  }
}
.cid-uZeEci69fe .panel-group .card .card-header .panel-title .icon-wrapper {
  position: absolute;
  right: 0;
  width: 20px;
  height: 20px;
  min-width: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}
.cid-uZeEci69fe .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  font-size: 18px;
  transition: all 0.3s ease-in-out;
  color: #232323;
}
.cid-uZeEci69fe .panel-group .card .card-header .panel-title:hover .icon-wrap .mbr-iconfont {
  background-color: #2f7682;
  color: #ffffff;
}
.cid-uZeEci69fe .panel-group .card .card-header .panel-title:hover .icon-wrap .svg1 path {
  fill: #2f7682;
}
.cid-uZeEci69fe .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  transform: rotate(-180deg);
}
.cid-uZeEci69fe .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrap .mbr-iconfont {
  background-color: #2f7682;
  color: #ffffff;
}
.cid-uZeEci69fe .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrap .svg1 path {
  fill: #2f7682;
}
.cid-uZeEci69fe .panel-group .card .panel-collapse .panel-body {
  margin-top: 40px;
  margin-left: 35%;
}
@media (max-width: 992px) {
  .cid-uZeEci69fe .panel-group .card .panel-collapse .panel-body {
    margin-top: 20px;
    margin-left: 0;
  }
}
.cid-uZeEci69fe .panel-group .card .panel-collapse .panel-body .panel-text {
  display: inline-flex;
  width: 60%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uZeEci69fe .panel-group .card .panel-collapse .panel-body .panel-text {
    width: 100%;
  }
}
.cid-uZeEci69fe .mbr-label {
  color: #000000;
}
.cid-uZeEci69fe .mbr-section-title {
  color: #2f7682;
}
.cid-uZeEci69fe .panel-title-edit {
  color: #232323;
}
.cid-uZeEci69fe .panel-text {
  color: #232323;
}
.cid-uZeEci69fe .mbr-label,
.cid-uZeEci69fe .label-wrapper {
  color: #a34f8b;
}
.cid-uZeHCcn7GK {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uZeHCcn7GK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZeHCcn7GK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZeHCcn7GK .title-wrapper {
  display: flex;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uZeHCcn7GK .title-wrapper {
    display: block;
    margin-bottom: 30px;
  }
}
.cid-uZeHCcn7GK .title-wrapper .label-wrapper {
  width: 35%;
}
@media (max-width: 992px) {
  .cid-uZeHCcn7GK .title-wrapper .label-wrapper {
    width: 100%;
  }
}
.cid-uZeHCcn7GK .title-wrapper .label-wrapper .mbr-label {
  display: inline-block;
  padding: 4px 20px;
  margin-bottom: 20px;
  border: 1px solid #c5d348;
}
.cid-uZeHCcn7GK .title-wrapper .mbr-section-title {
  width: 65%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uZeHCcn7GK .title-wrapper .mbr-section-title {
    width: 100%;
  }
}
.cid-uZeHCcn7GK .panel-group .card {
  position: relative;
  padding: 40px 0;
  background-color: transparent;
  border-top: 1px solid #e0e0e0;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-uZeHCcn7GK .panel-group .card {
    padding: 30px 0;
  }
}
.cid-uZeHCcn7GK .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uZeHCcn7GK .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-uZeHCcn7GK .panel-group .card .card-header .panel-title .icon-wrap {
  width: 35%;
  position: relative;
}
@media (max-width: 992px) {
  .cid-uZeHCcn7GK .panel-group .card .card-header .panel-title .icon-wrap {
    width: 25%;
  }
}
.cid-uZeHCcn7GK .panel-group .card .card-header .panel-title .icon-wrap .mbr-iconfont {
  width: 50px;
  height: 50px;
  min-width: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  margin-right: 10px;
  transition: all .3s ease;
  font-size: 24px;
  background-color: #a34f8b;
  color: #ffffff;
}
.cid-uZeHCcn7GK .panel-group .card .card-header .panel-title .icon-wrap .svg1 {
  position: absolute;
  bottom: 0;
  left: 24px;
  transform: rotate(180deg);
  width: 26px;
}
.cid-uZeHCcn7GK .panel-group .card .card-header .panel-title .icon-wrap .svg1 path {
  transition: all .3s ease;
  fill: #a34f8b;
}
.cid-uZeHCcn7GK .panel-group .card .card-header .panel-title .panel-title-edit {
  width: 65%;
  padding-right: 30px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uZeHCcn7GK .panel-group .card .card-header .panel-title .panel-title-edit {
    width: 70%;
  }
}
.cid-uZeHCcn7GK .panel-group .card .card-header .panel-title .icon-wrapper {
  position: absolute;
  right: 0;
  width: 20px;
  height: 20px;
  min-width: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}
.cid-uZeHCcn7GK .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  font-size: 18px;
  transition: all 0.3s ease-in-out;
  color: #232323;
}
.cid-uZeHCcn7GK .panel-group .card .card-header .panel-title:hover .icon-wrap .mbr-iconfont {
  background-color: #2f7682;
  color: #ffffff;
}
.cid-uZeHCcn7GK .panel-group .card .card-header .panel-title:hover .icon-wrap .svg1 path {
  fill: #2f7682;
}
.cid-uZeHCcn7GK .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  transform: rotate(-180deg);
}
.cid-uZeHCcn7GK .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrap .mbr-iconfont {
  background-color: #2f7682;
  color: #ffffff;
}
.cid-uZeHCcn7GK .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrap .svg1 path {
  fill: #2f7682;
}
.cid-uZeHCcn7GK .panel-group .card .panel-collapse .panel-body {
  margin-top: 40px;
  margin-left: 35%;
}
@media (max-width: 992px) {
  .cid-uZeHCcn7GK .panel-group .card .panel-collapse .panel-body {
    margin-top: 20px;
    margin-left: 0;
  }
}
.cid-uZeHCcn7GK .panel-group .card .panel-collapse .panel-body .panel-text {
  display: inline-flex;
  width: 60%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uZeHCcn7GK .panel-group .card .panel-collapse .panel-body .panel-text {
    width: 100%;
  }
}
.cid-uZeHCcn7GK .mbr-label {
  color: #000000;
}
.cid-uZeHCcn7GK .mbr-section-title {
  color: #2f7682;
}
.cid-uZeHCcn7GK .panel-title-edit {
  color: #232323;
}
.cid-uZeHCcn7GK .panel-text {
  color: #232323;
}
.cid-uZeHGQu1PF {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uZeHGQu1PF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZeHGQu1PF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZeHGQu1PF .title-wrapper {
  display: flex;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uZeHGQu1PF .title-wrapper {
    display: block;
    margin-bottom: 30px;
  }
}
.cid-uZeHGQu1PF .title-wrapper .label-wrapper {
  width: 35%;
}
@media (max-width: 992px) {
  .cid-uZeHGQu1PF .title-wrapper .label-wrapper {
    width: 100%;
  }
}
.cid-uZeHGQu1PF .title-wrapper .label-wrapper .mbr-label {
  display: inline-block;
  padding: 4px 20px;
  margin-bottom: 20px;
  border: 1px solid #c5d348;
}
.cid-uZeHGQu1PF .title-wrapper .mbr-section-title {
  width: 65%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uZeHGQu1PF .title-wrapper .mbr-section-title {
    width: 100%;
  }
}
.cid-uZeHGQu1PF .panel-group .card {
  position: relative;
  padding: 40px 0;
  background-color: transparent;
  border-top: 1px solid #e0e0e0;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-uZeHGQu1PF .panel-group .card {
    padding: 30px 0;
  }
}
.cid-uZeHGQu1PF .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uZeHGQu1PF .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-uZeHGQu1PF .panel-group .card .card-header .panel-title .icon-wrap {
  width: 35%;
  position: relative;
}
@media (max-width: 992px) {
  .cid-uZeHGQu1PF .panel-group .card .card-header .panel-title .icon-wrap {
    width: 25%;
  }
}
.cid-uZeHGQu1PF .panel-group .card .card-header .panel-title .icon-wrap .mbr-iconfont {
  width: 50px;
  height: 50px;
  min-width: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  margin-right: 10px;
  transition: all .3s ease;
  font-size: 24px;
  background-color: #a34f8b;
  color: #ffffff;
}
.cid-uZeHGQu1PF .panel-group .card .card-header .panel-title .icon-wrap .svg1 {
  position: absolute;
  bottom: 0;
  left: 24px;
  transform: rotate(180deg);
  width: 26px;
}
.cid-uZeHGQu1PF .panel-group .card .card-header .panel-title .icon-wrap .svg1 path {
  transition: all .3s ease;
  fill: #a34f8b;
}
.cid-uZeHGQu1PF .panel-group .card .card-header .panel-title .panel-title-edit {
  width: 65%;
  padding-right: 30px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uZeHGQu1PF .panel-group .card .card-header .panel-title .panel-title-edit {
    width: 70%;
  }
}
.cid-uZeHGQu1PF .panel-group .card .card-header .panel-title .icon-wrapper {
  position: absolute;
  right: 0;
  width: 20px;
  height: 20px;
  min-width: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}
.cid-uZeHGQu1PF .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  font-size: 18px;
  transition: all 0.3s ease-in-out;
  color: #232323;
}
.cid-uZeHGQu1PF .panel-group .card .card-header .panel-title:hover .icon-wrap .mbr-iconfont {
  background-color: #2f7682;
  color: #ffffff;
}
.cid-uZeHGQu1PF .panel-group .card .card-header .panel-title:hover .icon-wrap .svg1 path {
  fill: #2f7682;
}
.cid-uZeHGQu1PF .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  transform: rotate(-180deg);
}
.cid-uZeHGQu1PF .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrap .mbr-iconfont {
  background-color: #2f7682;
  color: #ffffff;
}
.cid-uZeHGQu1PF .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrap .svg1 path {
  fill: #2f7682;
}
.cid-uZeHGQu1PF .panel-group .card .panel-collapse .panel-body {
  margin-top: 40px;
  margin-left: 35%;
}
@media (max-width: 992px) {
  .cid-uZeHGQu1PF .panel-group .card .panel-collapse .panel-body {
    margin-top: 20px;
    margin-left: 0;
  }
}
.cid-uZeHGQu1PF .panel-group .card .panel-collapse .panel-body .panel-text {
  display: inline-flex;
  width: 60%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uZeHGQu1PF .panel-group .card .panel-collapse .panel-body .panel-text {
    width: 100%;
  }
}
.cid-uZeHGQu1PF .mbr-label {
  color: #000000;
}
.cid-uZeHGQu1PF .mbr-section-title {
  color: #2f7682;
}
.cid-uZeHGQu1PF .panel-title-edit {
  color: #232323;
}
.cid-uZeHGQu1PF .panel-text {
  color: #232323;
}
.cid-uZeHKl8l79 {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uZeHKl8l79 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZeHKl8l79 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZeHKl8l79 .title-wrapper {
  display: flex;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uZeHKl8l79 .title-wrapper {
    display: block;
    margin-bottom: 30px;
  }
}
.cid-uZeHKl8l79 .title-wrapper .label-wrapper {
  width: 35%;
}
@media (max-width: 992px) {
  .cid-uZeHKl8l79 .title-wrapper .label-wrapper {
    width: 100%;
  }
}
.cid-uZeHKl8l79 .title-wrapper .label-wrapper .mbr-label {
  display: inline-block;
  padding: 4px 20px;
  margin-bottom: 20px;
  border: 1px solid #c5d348;
}
.cid-uZeHKl8l79 .title-wrapper .mbr-section-title {
  width: 65%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uZeHKl8l79 .title-wrapper .mbr-section-title {
    width: 100%;
  }
}
.cid-uZeHKl8l79 .panel-group .card {
  position: relative;
  padding: 40px 0;
  background-color: transparent;
  border-top: 1px solid #e0e0e0;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-uZeHKl8l79 .panel-group .card {
    padding: 30px 0;
  }
}
.cid-uZeHKl8l79 .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uZeHKl8l79 .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-uZeHKl8l79 .panel-group .card .card-header .panel-title .icon-wrap {
  width: 35%;
  position: relative;
}
@media (max-width: 992px) {
  .cid-uZeHKl8l79 .panel-group .card .card-header .panel-title .icon-wrap {
    width: 25%;
  }
}
.cid-uZeHKl8l79 .panel-group .card .card-header .panel-title .icon-wrap .mbr-iconfont {
  width: 50px;
  height: 50px;
  min-width: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  margin-right: 10px;
  transition: all .3s ease;
  font-size: 24px;
  background-color: #a34f8b;
  color: #ffffff;
}
.cid-uZeHKl8l79 .panel-group .card .card-header .panel-title .icon-wrap .svg1 {
  position: absolute;
  bottom: 0;
  left: 24px;
  transform: rotate(180deg);
  width: 26px;
}
.cid-uZeHKl8l79 .panel-group .card .card-header .panel-title .icon-wrap .svg1 path {
  transition: all .3s ease;
  fill: #a34f8b;
}
.cid-uZeHKl8l79 .panel-group .card .card-header .panel-title .panel-title-edit {
  width: 65%;
  padding-right: 30px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uZeHKl8l79 .panel-group .card .card-header .panel-title .panel-title-edit {
    width: 70%;
  }
}
.cid-uZeHKl8l79 .panel-group .card .card-header .panel-title .icon-wrapper {
  position: absolute;
  right: 0;
  width: 20px;
  height: 20px;
  min-width: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}
.cid-uZeHKl8l79 .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  font-size: 18px;
  transition: all 0.3s ease-in-out;
  color: #232323;
}
.cid-uZeHKl8l79 .panel-group .card .card-header .panel-title:hover .icon-wrap .mbr-iconfont {
  background-color: #2f7682;
  color: #ffffff;
}
.cid-uZeHKl8l79 .panel-group .card .card-header .panel-title:hover .icon-wrap .svg1 path {
  fill: #2f7682;
}
.cid-uZeHKl8l79 .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  transform: rotate(-180deg);
}
.cid-uZeHKl8l79 .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrap .mbr-iconfont {
  background-color: #2f7682;
  color: #ffffff;
}
.cid-uZeHKl8l79 .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrap .svg1 path {
  fill: #2f7682;
}
.cid-uZeHKl8l79 .panel-group .card .panel-collapse .panel-body {
  margin-top: 40px;
  margin-left: 35%;
}
@media (max-width: 992px) {
  .cid-uZeHKl8l79 .panel-group .card .panel-collapse .panel-body {
    margin-top: 20px;
    margin-left: 0;
  }
}
.cid-uZeHKl8l79 .panel-group .card .panel-collapse .panel-body .panel-text {
  display: inline-flex;
  width: 60%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uZeHKl8l79 .panel-group .card .panel-collapse .panel-body .panel-text {
    width: 100%;
  }
}
.cid-uZeHKl8l79 .mbr-label {
  color: #000000;
}
.cid-uZeHKl8l79 .mbr-section-title {
  color: #2f7682;
}
.cid-uZeHKl8l79 .panel-title-edit {
  color: #232323;
}
.cid-uZeHKl8l79 .panel-text {
  color: #232323;
}
.cid-uZeHUF4I1D {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #eff6fa;
}
.cid-uZeHUF4I1D .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZeHUF4I1D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZeHUF4I1D .row {
  justify-content: space-between;
}
.cid-uZeHUF4I1D .title-wrapper .label-wrapper .mbr-label {
  display: inline-block;
  padding: 4px 20px;
  margin-bottom: 20px;
  border: 1px solid #6ea4a6;
}
@media (max-width: 992px) {
  .cid-uZeHUF4I1D .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uZeHUF4I1D .content-wrapper .mbr-desc {
  margin-bottom: 20px;
}
.cid-uZeHUF4I1D .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uZeHUF4I1D .content-wrapper .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 992px) {
  .cid-uZeHUF4I1D .content-wrapper .mbr-section-btn {
    margin-top: 20px;
  }
}
.cid-uZeHUF4I1D .mbr-label {
  color: #000000;
}
.cid-uZeHUF4I1D .mbr-section-title {
  color: #2f7682;
}
.cid-uZeHUF4I1D .mbr-desc {
  color: #000000;
}
.cid-uZeHUF4I1D .mbr-text {
  color: #8a8a8a;
}
.cid-uZeHUF4I1D .mbr-text,
.cid-uZeHUF4I1D .mbr-section-btn {
  color: #000000;
}
.cid-uZeHUF4I1D .mbr-label,
.cid-uZeHUF4I1D .label-wrapper {
  color: #a34f8b;
}
.cid-uZeJ8qDBav {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #eff6fa;
}
.cid-uZeJ8qDBav .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZeJ8qDBav .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZeJ8qDBav .row {
  flex-direction: row-reverse;
}
.cid-uZeRmaBuHr {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uZeRmaBuHr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZeRmaBuHr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZeRmaBuHr .row {
  justify-content: space-between;
}
.cid-uZeRmaBuHr .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-uZeRmaBuHr .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-uZeRmaBuHr .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-uZeRmaBuHr .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uZeRmaBuHr .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-uZeRmaBuHr .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-uZeRmaBuHr .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-uZeRmaBuHr .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-uZeRmaBuHr .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uZeRmaBuHr .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-uZeRmaBuHr .list-wrapper .list .item-wrap:hover,
.cid-uZeRmaBuHr .list-wrapper .list .item-wrap:focus {
  color: #6ea4a6;
}
.cid-uZeRmaBuHr .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uZeRmaBuHr .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-uZeRmaBuHr .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-uZeRmaBuHr .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-uZeRmaBuHr .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-uZeRmaBuHr .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-uZeRmaBuHr .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uZeRmaBuHr .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uZeRmaBuHr .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-uZeRmaBuHr .content-wrap .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #000000;
  font-size: 26px;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px;
}
.cid-uZeRmaBuHr .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uZeRmaBuHr .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-uZeRmaBuHr .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-uZeRmaBuHr .mbr-section-title {
  color: #000000;
}
.cid-uZeRmaBuHr .mbr-text {
  color: #232323;
}
.cid-uZeRmaBuHr .list {
  color: #000000;
}
.cid-uZeRmaBuHr .mbr-desc {
  color: #000000;
}
.cid-uZeRmaBuHr .mbr-copy {
  color: #000000;
}
.cid-uZeRmaBuHr .mbr-desc,
.cid-uZeRmaBuHr .social-wrapper {
  text-align: center;
}
.cid-uZeRmaBuHr .mbr-copy,
.cid-uZeRmaBuHr .mbr-section-btn-main {
  text-align: center;
  color: #232323;
}
.cid-uZeRmaBuHr .mbr-section-title,
.cid-uZeRmaBuHr .mbr-section-btn {
  color: #2f7682;
}
.cid-uZeRmaBuHr .list,
.cid-uZeRmaBuHr .item-wrap {
  color: #a34f8b;
}
.cid-uZf1HeU9UB {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 110px;
}
.cid-uZf1HeU9UB nav.navbar {
  position: fixed;
}
.cid-uZf1HeU9UB .container-fluid {
  padding-left: 64px;
  padding-right: 64px;
}
@media (max-width: 992px) {
  .cid-uZf1HeU9UB .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cid-uZf1HeU9UB .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-uZf1HeU9UB .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uZf1HeU9UB .dropdown-item {
  border-bottom: 1px solid #c5d348;
  background: #eff6fa !important;
  color: #a34f8b !important;
}
.cid-uZf1HeU9UB .dropdown-item:hover,
.cid-uZf1HeU9UB .dropdown-item:focus {
  background: #eff6fa !important;
  color: #a34f8b !important;
}
.cid-uZf1HeU9UB .dropdown-item:hover span {
  color: white;
}
.cid-uZf1HeU9UB .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uZf1HeU9UB .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uZf1HeU9UB .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uZf1HeU9UB .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uZf1HeU9UB .nav-link {
  position: relative;
}
.cid-uZf1HeU9UB .container {
  display: flex;
  margin: 0 auto;
  max-width: 1600px;
}
@media (min-width: 992px) {
  .cid-uZf1HeU9UB .container {
    flex-wrap: nowrap;
  }
}
.cid-uZf1HeU9UB .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.cid-uZf1HeU9UB .iconfont-wrapper:hover {
  color: #a34f8b !important;
}
.cid-uZf1HeU9UB .dropdown-menu,
.cid-uZf1HeU9UB .navbar.opened {
  background: #eff6fa !important;
}
.cid-uZf1HeU9UB .nav-item:focus,
.cid-uZf1HeU9UB .nav-link:focus {
  outline: none;
}
.cid-uZf1HeU9UB .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uZf1HeU9UB .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.cid-uZf1HeU9UB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uZf1HeU9UB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uZf1HeU9UB .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uZf1HeU9UB .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uZf1HeU9UB .navbar {
  min-height: 110px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #eff6fa;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uZf1HeU9UB .navbar.opened {
  transition: all 0.3s;
}
.cid-uZf1HeU9UB .navbar .dropdown-item {
  padding: 0.5rem 3.2rem 0.5rem 1.8rem;
  border-radius: 0.6rem;
}
.cid-uZf1HeU9UB .navbar .navbar-logo img {
  width: auto;
  border-radius: 6px !important;
}
.cid-uZf1HeU9UB .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uZf1HeU9UB .navbar.collapsed {
  justify-content: center;
}
.cid-uZf1HeU9UB .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uZf1HeU9UB .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uZf1HeU9UB .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uZf1HeU9UB .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uZf1HeU9UB .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-uZf1HeU9UB .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uZf1HeU9UB .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uZf1HeU9UB .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uZf1HeU9UB .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uZf1HeU9UB .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uZf1HeU9UB .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uZf1HeU9UB .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uZf1HeU9UB .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-uZf1HeU9UB .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uZf1HeU9UB .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uZf1HeU9UB .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uZf1HeU9UB .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-uZf1HeU9UB .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uZf1HeU9UB .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uZf1HeU9UB .navbar.navbar-short {
  min-height: 96px;
}
.cid-uZf1HeU9UB .navbar.navbar-short .navbar-brand {
  min-height: 96px;
}
.cid-uZf1HeU9UB .navbar-brand {
  min-height: 96px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-uZf1HeU9UB .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uZf1HeU9UB .navbar-brand .navbar-caption:hover,
.cid-uZf1HeU9UB .navbar-brand .navbar-caption:focus {
  color: #a34f8b !important;
}
.cid-uZf1HeU9UB .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uZf1HeU9UB .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-uZf1HeU9UB .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #a34f8b !important;
}
.cid-uZf1HeU9UB .dropdown-item.active,
.cid-uZf1HeU9UB .dropdown-item:active {
  background-color: transparent;
}
.cid-uZf1HeU9UB .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uZf1HeU9UB .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uZf1HeU9UB .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uZf1HeU9UB .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #eff6fa;
  top: 3rem;
  border-radius: 0.6rem;
}
@media (max-width: 992px) {
  .cid-uZf1HeU9UB .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-uZf1HeU9UB .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-uZf1HeU9UB .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uZf1HeU9UB ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .cid-uZf1HeU9UB ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.cid-uZf1HeU9UB .navbar-buttons {
  text-align: center;
}
.cid-uZf1HeU9UB .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  padding: 11px 32px;
  min-height: auto;
}
.cid-uZf1HeU9UB .navbar-buttons .btn .mbr-iconfont {
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  margin-left: 32px;
  margin-right: -20px;
}
@media (max-width: 575px) {
  .cid-uZf1HeU9UB .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-uZf1HeU9UB button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #eff6fa !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uZf1HeU9UB button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #2f7682;
}
.cid-uZf1HeU9UB button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.cid-uZf1HeU9UB button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uZf1HeU9UB button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uZf1HeU9UB button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.cid-uZf1HeU9UB nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uZf1HeU9UB nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uZf1HeU9UB nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uZf1HeU9UB nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uZf1HeU9UB .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uZf1HeU9UB a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uZf1HeU9UB .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-uZf1HeU9UB .navbar {
    height: 70px;
  }
  .cid-uZf1HeU9UB .navbar.opened {
    height: auto;
  }
  .cid-uZf1HeU9UB .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uZf1HeU9UB .navbar-nav {
  margin: 0 auto;
}
.cid-uZf1HeU9UB .nav-item {
  padding: 0;
  margin: 0;
}
.cid-uZf1HeU9UB .nav-item .nav-link {
  padding: 5px 32px !important;
  margin: 0 !important;
  transition: all 0.3s ease-in-out;
  font-weight: 600;
}
.cid-uZf1HeU9UB .nav-item .nav-link::after {
  color: #a34f8b !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-uZf1HeU9UB .nav-item .nav-link:hover {
  background-color: transparent;
  color: #a34f8b !important;
}
.cid-uZf1HeU9UB .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-uZf1HeU9UB .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-uZf1HeU9UB .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
.cid-uZf1HeU9UB .nav-item .dropdown-menu .dropdown-item {
  color: #a34f8b !important;
}
.cid-uZf1HeU9UB .nav-item .dropdown-menu .dropdown-item:hover {
  color: #a34f8b !important;
}
@media (max-width: 991px) {
  .cid-uZf1HeU9UB .navbar {
    justify-content: flex-start !important;
  }
  .cid-uZf1HeU9UB .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-uZf1HeU9UB .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-uZf1HeU9UB .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-uZf1HeU9UB .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-uZf1HeU9UB .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .cid-uZf1HeU9UB .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
  }
}
.cid-uZf1HeU9UB .content-wrap {
  min-height: 110px;
}
.cid-uZf1HfRAv6 {
  background-image: url("../../../assets/images/hero-dr-jana-grube-beratung-therapie-1.webp");
}
.cid-uZf1HfRAv6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZf1HfRAv6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZf1HfRAv6 .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 80%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uZf1HfRAv6 .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
    width: 100%;
  }
}
.cid-uZf1HfRAv6 .text-wrapper .mbr-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uZf1HfRAv6 .text-wrapper .mbr-text {
    margin-bottom: 14px;
  }
}
.cid-uZf1HfRAv6 .mbr-section-title {
  color: #0f0f0f;
}
.cid-uZf1HfRAv6 .mbr-text {
  color: #ffffff;
}
.cid-uZf1HfRAv6 .mbr-section-title,
.cid-uZf1HfRAv6 .mbr-section-btn,
.cid-uZf1HfRAv6 .title-wrapper {
  color: #ffffff;
}
.cid-uZf1HgnMHa {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uZf1HgnMHa .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZf1HgnMHa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZf1HgnMHa .row {
  justify-content: space-between;
}
.cid-uZf1HgnMHa .title-wrapper .label-wrapper .mbr-label {
  display: inline-block;
  padding: 4px 20px;
  margin-bottom: 20px;
  border: 1px solid #6ea4a6;
}
@media (max-width: 992px) {
  .cid-uZf1HgnMHa .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uZf1HgnMHa .content-wrapper .mbr-desc {
  margin-bottom: 20px;
}
.cid-uZf1HgnMHa .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uZf1HgnMHa .content-wrapper .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 992px) {
  .cid-uZf1HgnMHa .content-wrapper .mbr-section-btn {
    margin-top: 20px;
  }
}
.cid-uZf1HgnMHa .mbr-label {
  color: #000000;
}
.cid-uZf1HgnMHa .mbr-section-title {
  color: #2f7682;
}
.cid-uZf1HgnMHa .mbr-desc {
  color: #000000;
}
.cid-uZf1HgnMHa .mbr-text {
  color: #8a8a8a;
}
.cid-uZf1HgnMHa .mbr-text,
.cid-uZf1HgnMHa .mbr-section-btn {
  color: #232323;
}
.cid-uZf1HgnMHa .mbr-label,
.cid-uZf1HgnMHa .label-wrapper {
  color: #a34f8b;
}
.cid-uZfscC6Oon {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uZfscC6Oon .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZfscC6Oon .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZfscC6Oon .row {
  justify-content: center;
}
.cid-uZfscC6Oon .image-wrapper img {
  height: 700px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uZfscC6Oon .image-wrapper img {
    height: 300px;
  }
}
.cid-uZfscC6Oon .card-wrapper {
  position: relative;
  padding: 64px;
  overflow: hidden;
  margin-top: -25%;
}
@media (max-width: 1440px) {
  .cid-uZfscC6Oon .card-wrapper {
    padding: 32px;
  }
}
@media (max-width: 992px) {
  .cid-uZfscC6Oon .card-wrapper {
    padding: 24px;
    margin-top: 12px;
  }
}
.cid-uZfscC6Oon .card-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(10px);
  pointer-events: none;
}
.cid-uZfscC6Oon .card-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #2f7682;
  opacity: 1;
  pointer-events: none;
}
.cid-uZfscC6Oon .card-wrapper .mbr-section-title {
  position: relative;
  z-index: 1;
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uZfscC6Oon .card-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uZfscC6Oon .card-wrapper .text-wrapper {
  position: relative;
  z-index: 1;
}
.cid-uZfscC6Oon .card-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uZfscC6Oon .card-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uZfscC6Oon .card-wrapper .mbr-section-btn {
  position: relative;
  z-index: 1;
}
.cid-uZfscC6Oon .card-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uZfscC6Oon .mbr-section-title {
  color: #2c2c26;
}
.cid-uZfscC6Oon .mbr-text,
.cid-uZfscC6Oon .text-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uZfscC6Oon .mbr-section-title,
.cid-uZfscC6Oon .mbr-section-btn {
  text-align: center;
}
.cid-uZBRDdCllF {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uZBRDdCllF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZBRDdCllF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZBRDdCllF .content-wrapper .label-wrapper {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uZBRDdCllF .content-wrapper .label-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uZBRDdCllF .content-wrapper .label-wrapper .mbr-label {
  display: inline-block;
  padding: 6px 20px;
  background-color: #f2f1f3;
  margin-bottom: 0;
}
.cid-uZBRDdCllF .content-wrapper .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 55%;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uZBRDdCllF .content-wrapper .title-wrapper .mbr-section-title {
    width: 100%;
    margin-bottom: 20px;
  }
}
.cid-uZBRDdCllF .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 40%;
  margin-bottom: 40px;
}
@media (max-width: 1200px) {
  .cid-uZBRDdCllF .content-wrapper .text-wrapper .mbr-text {
    width: 60%;
  }
}
@media (max-width: 992px) {
  .cid-uZBRDdCllF .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 20px;
  }
}
.cid-uZBRDdCllF .mbr-label,
.cid-uZBRDdCllF .label-wrapper {
  color: #19171c;
  text-align: center;
}
.cid-uZBRDdCllF .mbr-section-title {
  color: #19171c;
  line-height: 130%;
}
.cid-uZBRDdCllF .mbr-text,
.cid-uZBRDdCllF .text-wrapper {
  color: #19171c;
  text-align: center;
}
.cid-uZBRDdCllF .mbr-section-title,
.cid-uZBRDdCllF .title-wrapper,
.cid-uZBRDdCllF .mbr-section-btn {
  text-align: center;
}
.cid-uZBRDdCllF .mbr-section-title,
.cid-uZBRDdCllF .mbr-section-btn,
.cid-uZBRDdCllF .title-wrapper {
  color: #a34f8b;
}
.cid-uZf1HixP2X {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uZf1HixP2X .card-title {
  position: relative;
  width: 100%;
  cursor: pointer;
  display: block;
  margin-right: 1rem;
  margin-bottom: 2rem;
  color: #6ea4a6;
  text-align: left;
  line-height: 130%;
}
.cid-uZf1HixP2X .card {
  margin-bottom: 1.5rem;
}
.cid-uZf1HixP2X .card-wrapper {
  overflow: visible;
  padding: 5rem 4rem;
}
@media (max-width: 767px) {
  .cid-uZf1HixP2X .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-uZf1HixP2X .card-wrapper-1 {
  background-color: #eff6fa;
}
.cid-uZf1HixP2X .card-wrapper-2 {
  background-color: #eff6fa;
}
.cid-uZf1HixP2X .card-wrapper-3 {
  background-color: #bcd9df;
}
.cid-uZf1HixP2X .card-wrapper-4 {
  background-color: #419e8e;
}
.cid-uZf1HixP2X .card-text {
  color: #454545;
  text-align: left;
  margin-bottom: 2.5rem;
  margin-bottom: 0;
}
.cid-uZf1HixP2X .mbr-section-title {
  text-align: justify;
  color: #6ea4a6;
}
.cid-uZf1HixP2X .card-text,
.cid-uZf1HixP2X .mbr-section-btn {
  text-align: left;
  color: #232323;
}
.cid-uZf1HixP2X .button-section {
  margin-top: 1.5rem;
}
.cid-uZf1HixP2X .button-section .btn {
  font-weight: 700 !important;
}
.cid-uZf1HixP2X .section-text,
.cid-uZf1HixP2X .button-section {
  text-align: left;
}
.cid-uZf1HixP2X .section-text {
  text-align: left;
}
.cid-uZf1HixP2X .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZf1HixP2X .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZfvYUbZ11 {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uZfvYUbZ11 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZfvYUbZ11 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZfvYUbZ11 .row {
  justify-content: space-between;
}
.cid-uZfvYUbZ11 .title-wrapper .label-wrapper .mbr-label {
  display: inline-block;
  padding: 4px 10px;
  margin-bottom: 20px;
  border: 1px solid #6ea4a6;
}
@media (max-width: 992px) {
  .cid-uZfvYUbZ11 .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uZfvYUbZ11 .content-wrapper .mbr-desc {
  margin-bottom: 20px;
}
.cid-uZfvYUbZ11 .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uZfvYUbZ11 .content-wrapper .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 992px) {
  .cid-uZfvYUbZ11 .content-wrapper .mbr-section-btn {
    margin-top: 20px;
  }
}
.cid-uZfvYUbZ11 .mbr-label {
  color: #000000;
}
.cid-uZfvYUbZ11 .mbr-section-title {
  color: #2f7682;
}
.cid-uZfvYUbZ11 .mbr-desc {
  color: #000000;
}
.cid-uZfvYUbZ11 .mbr-text {
  color: #8a8a8a;
}
.cid-uZfvYUbZ11 .mbr-text,
.cid-uZfvYUbZ11 .mbr-section-btn {
  color: #232323;
}
.cid-uZfvYUbZ11 .mbr-label,
.cid-uZfvYUbZ11 .label-wrapper {
  color: #a34f8b;
}
.cid-uZfyVmNUve {
  padding-top: 4rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uZfyVmNUve .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZfyVmNUve .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZfyVmNUve .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 50%;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uZfyVmNUve .title-wrapper .mbr-section-title {
    width: 100%;
    margin-bottom: 40px;
  }
}
.cid-uZfyVmNUve .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 64px;
}
@media (max-width: 1440px) {
  .cid-uZfyVmNUve .items-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 992px) {
  .cid-uZfyVmNUve .items-wrapper {
    display: block;
  }
}
@media (max-width: 992px) {
  .cid-uZfyVmNUve .item {
    margin-bottom: 40px;
  }
}
.cid-uZfyVmNUve .item .item-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cid-uZfyVmNUve .item .item-wrapper .card-box .iconfont-wrapper {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uZfyVmNUve .item .item-wrapper .card-box .iconfont-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uZfyVmNUve .item .item-wrapper .card-box .iconfont-wrapper .mbr-iconfont {
  width: 64px;
  height: 64px;
  min-width: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: #ffffff;
  background-color: #a34f8b;
}
.cid-uZfyVmNUve .item .item-wrapper .card-box .card-title {
  margin-bottom: 20px;
}
.cid-uZfyVmNUve .item .item-wrapper .card-box .card-text {
  margin-bottom: 0;
}
.cid-uZfyVmNUve .item .item-wrapper .mbr-section-btn {
  margin-top: 20px;
}
.cid-uZfyVmNUve .item .item-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uZfyVmNUve .mbr-section-title,
.cid-uZfyVmNUve .title-wrapper {
  color: #6ea4a6;
  text-align: left;
}
.cid-uZfyVmNUve .card-title {
  color: #323432;
}
.cid-uZfyVmNUve .card-text {
  color: #232323;
}
.cid-uZf1Hj8JFK {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #eff6fa;
}
.cid-uZf1Hj8JFK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZf1Hj8JFK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZf1Hj8JFK .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uZf1Hj8JFK .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uZf1Hj8JFK .items-wrapper .item {
  margin-bottom: 4px;
}
@media (max-width: 992px) {
  .cid-uZf1Hj8JFK .items-wrapper .item {
    margin-bottom: 2px;
  }
}
.cid-uZf1Hj8JFK .items-wrapper .item .item-wrapper {
  height: 100%;
  display: flex;
  background-color: #ffffff;
  transition: all .3s ease;
}
@media (max-width: 992px) {
  .cid-uZf1Hj8JFK .items-wrapper .item .item-wrapper {
    display: block;
  }
}
.cid-uZf1Hj8JFK .items-wrapper .item .item-wrapper .card-box {
  width: 50%;
  padding: 64px;
}
@media (max-width: 992px) {
  .cid-uZf1Hj8JFK .items-wrapper .item .item-wrapper .card-box {
    padding: 20px;
    width: 100%;
  }
}
.cid-uZf1Hj8JFK .items-wrapper .item .item-wrapper .card-box .card-title {
  margin-bottom: 14px;
  transition: all .3s ease;
}
.cid-uZf1Hj8JFK .items-wrapper .item .item-wrapper .card-box .card-text {
  margin-bottom: 14px;
  transition: all .3s ease;
}
.cid-uZf1Hj8JFK .items-wrapper .item .item-wrapper .card-box .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uZf1Hj8JFK .items-wrapper .item .item-wrapper .item-img {
  width: 50%;
  padding: 64px;
}
@media (max-width: 992px) {
  .cid-uZf1Hj8JFK .items-wrapper .item .item-wrapper .item-img {
    padding: 0 20px 20px;
    width: 100%;
  }
}
.cid-uZf1Hj8JFK .items-wrapper .item .item-wrapper .item-img img {
  height: 400px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uZf1Hj8JFK .items-wrapper .item .item-wrapper .item-img img {
    height: 300px;
  }
}
@media (max-width: 992px) {
  .cid-uZf1Hj8JFK .items-wrapper .item .item-wrapper .card_2 {
    padding: 20px 20px 0;
  }
}
.cid-uZf1Hj8JFK .mbr-section-title {
  color: #0f0f0f;
}
.cid-uZf1Hj8JFK .card-title {
  color: #0f0f0f;
}
.cid-uZf1Hj8JFK .card-text {
  color: #232323;
}
.cid-uZf1Hj8JFK .card-title,
.cid-uZf1Hj8JFK .mbr-section-btn {
  color: #2f7682;
}
.cid-uZf1Hj8JFK .mbr-section-title,
.cid-uZf1Hj8JFK .mbr-section-btn {
  color: #6ea4a6;
}
.cid-uZf1HmfSqF {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #eff6fa;
}
.cid-uZf1HmfSqF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZf1HmfSqF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZf1HmfSqF .row {
  justify-content: space-between;
}
.cid-uZf1HmfSqF .title-wrapper .label-wrapper .mbr-label {
  display: inline-block;
  padding: 4px 20px;
  margin-bottom: 20px;
  border: 1px solid #6ea4a6;
}
@media (max-width: 992px) {
  .cid-uZf1HmfSqF .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uZf1HmfSqF .content-wrapper .mbr-desc {
  margin-bottom: 20px;
}
.cid-uZf1HmfSqF .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uZf1HmfSqF .content-wrapper .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 992px) {
  .cid-uZf1HmfSqF .content-wrapper .mbr-section-btn {
    margin-top: 20px;
  }
}
.cid-uZf1HmfSqF .mbr-label {
  color: #000000;
}
.cid-uZf1HmfSqF .mbr-section-title {
  color: #2f7682;
}
.cid-uZf1HmfSqF .mbr-desc {
  color: #000000;
}
.cid-uZf1HmfSqF .mbr-text {
  color: #8a8a8a;
}
.cid-uZf1HmfSqF .mbr-text,
.cid-uZf1HmfSqF .mbr-section-btn {
  color: #232323;
}
.cid-uZf1HmfSqF .mbr-label,
.cid-uZf1HmfSqF .label-wrapper {
  color: #a34f8b;
}
.cid-uZf1HmT5tU {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #eff6fa;
}
.cid-uZf1HmT5tU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZf1HmT5tU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZf1HmT5tU .row {
  flex-direction: row-reverse;
}
.cid-uZf1Hnye2Q {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #f5f8f9;
}
.cid-uZf1Hnye2Q .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZf1Hnye2Q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZf1Hnye2Q .row {
  justify-content: space-between;
}
.cid-uZf1Hnye2Q .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-uZf1Hnye2Q .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-uZf1Hnye2Q .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-uZf1Hnye2Q .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uZf1Hnye2Q .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-uZf1Hnye2Q .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-uZf1Hnye2Q .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-uZf1Hnye2Q .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-uZf1Hnye2Q .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uZf1Hnye2Q .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-uZf1Hnye2Q .list-wrapper .list .item-wrap:hover,
.cid-uZf1Hnye2Q .list-wrapper .list .item-wrap:focus {
  color: #6ea4a6;
}
.cid-uZf1Hnye2Q .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uZf1Hnye2Q .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-uZf1Hnye2Q .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-uZf1Hnye2Q .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-uZf1Hnye2Q .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-uZf1Hnye2Q .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-uZf1Hnye2Q .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uZf1Hnye2Q .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uZf1Hnye2Q .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-uZf1Hnye2Q .content-wrap .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #000000;
  font-size: 26px;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px;
}
.cid-uZf1Hnye2Q .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uZf1Hnye2Q .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-uZf1Hnye2Q .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-uZf1Hnye2Q .mbr-section-title {
  color: #000000;
}
.cid-uZf1Hnye2Q .mbr-text {
  color: #232323;
}
.cid-uZf1Hnye2Q .list {
  color: #000000;
}
.cid-uZf1Hnye2Q .mbr-desc {
  color: #000000;
}
.cid-uZf1Hnye2Q .mbr-copy {
  color: #000000;
}
.cid-uZf1Hnye2Q .mbr-desc,
.cid-uZf1Hnye2Q .social-wrapper {
  text-align: center;
}
.cid-uZf1Hnye2Q .mbr-copy,
.cid-uZf1Hnye2Q .mbr-section-btn-main {
  text-align: center;
  color: #232323;
}
.cid-uZf1Hnye2Q .mbr-section-title,
.cid-uZf1Hnye2Q .mbr-section-btn {
  color: #2f7682;
}
.cid-uZf1Hnye2Q .list,
.cid-uZf1Hnye2Q .item-wrap {
  color: #a34f8b;
}
.cid-uZBVTHTfOr {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 110px;
}
.cid-uZBVTHTfOr nav.navbar {
  position: fixed;
}
.cid-uZBVTHTfOr .container-fluid {
  padding-left: 64px;
  padding-right: 64px;
}
@media (max-width: 992px) {
  .cid-uZBVTHTfOr .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cid-uZBVTHTfOr .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-uZBVTHTfOr .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uZBVTHTfOr .dropdown-item {
  border-bottom: 1px solid #c5d348;
  background: #eff6fa !important;
  color: #a34f8b !important;
}
.cid-uZBVTHTfOr .dropdown-item:hover,
.cid-uZBVTHTfOr .dropdown-item:focus {
  background: #eff6fa !important;
  color: #a34f8b !important;
}
.cid-uZBVTHTfOr .dropdown-item:hover span {
  color: white;
}
.cid-uZBVTHTfOr .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uZBVTHTfOr .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uZBVTHTfOr .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uZBVTHTfOr .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uZBVTHTfOr .nav-link {
  position: relative;
}
.cid-uZBVTHTfOr .container {
  display: flex;
  margin: 0 auto;
  max-width: 1600px;
}
@media (min-width: 992px) {
  .cid-uZBVTHTfOr .container {
    flex-wrap: nowrap;
  }
}
.cid-uZBVTHTfOr .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.cid-uZBVTHTfOr .iconfont-wrapper:hover {
  color: #a34f8b !important;
}
.cid-uZBVTHTfOr .dropdown-menu,
.cid-uZBVTHTfOr .navbar.opened {
  background: #eff6fa !important;
}
.cid-uZBVTHTfOr .nav-item:focus,
.cid-uZBVTHTfOr .nav-link:focus {
  outline: none;
}
.cid-uZBVTHTfOr .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uZBVTHTfOr .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.cid-uZBVTHTfOr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uZBVTHTfOr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uZBVTHTfOr .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uZBVTHTfOr .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uZBVTHTfOr .navbar {
  min-height: 110px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #eff6fa;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uZBVTHTfOr .navbar.opened {
  transition: all 0.3s;
}
.cid-uZBVTHTfOr .navbar .dropdown-item {
  padding: 0.5rem 3.2rem 0.5rem 1.8rem;
  border-radius: 0.6rem;
}
.cid-uZBVTHTfOr .navbar .navbar-logo img {
  width: auto;
  border-radius: 6px !important;
}
.cid-uZBVTHTfOr .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uZBVTHTfOr .navbar.collapsed {
  justify-content: center;
}
.cid-uZBVTHTfOr .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uZBVTHTfOr .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uZBVTHTfOr .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uZBVTHTfOr .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uZBVTHTfOr .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-uZBVTHTfOr .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uZBVTHTfOr .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uZBVTHTfOr .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uZBVTHTfOr .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uZBVTHTfOr .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uZBVTHTfOr .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uZBVTHTfOr .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uZBVTHTfOr .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-uZBVTHTfOr .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uZBVTHTfOr .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uZBVTHTfOr .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uZBVTHTfOr .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-uZBVTHTfOr .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uZBVTHTfOr .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uZBVTHTfOr .navbar.navbar-short {
  min-height: 96px;
}
.cid-uZBVTHTfOr .navbar.navbar-short .navbar-brand {
  min-height: 96px;
}
.cid-uZBVTHTfOr .navbar-brand {
  min-height: 96px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-uZBVTHTfOr .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uZBVTHTfOr .navbar-brand .navbar-caption:hover,
.cid-uZBVTHTfOr .navbar-brand .navbar-caption:focus {
  color: #a34f8b !important;
}
.cid-uZBVTHTfOr .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uZBVTHTfOr .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-uZBVTHTfOr .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #a34f8b !important;
}
.cid-uZBVTHTfOr .dropdown-item.active,
.cid-uZBVTHTfOr .dropdown-item:active {
  background-color: transparent;
}
.cid-uZBVTHTfOr .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uZBVTHTfOr .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uZBVTHTfOr .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uZBVTHTfOr .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #eff6fa;
  top: 3rem;
  border-radius: 0.6rem;
}
@media (max-width: 992px) {
  .cid-uZBVTHTfOr .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-uZBVTHTfOr .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-uZBVTHTfOr .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uZBVTHTfOr ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .cid-uZBVTHTfOr ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.cid-uZBVTHTfOr .navbar-buttons {
  text-align: center;
}
.cid-uZBVTHTfOr .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  padding: 11px 32px;
  min-height: auto;
}
.cid-uZBVTHTfOr .navbar-buttons .btn .mbr-iconfont {
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  margin-left: 32px;
  margin-right: -20px;
}
@media (max-width: 575px) {
  .cid-uZBVTHTfOr .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-uZBVTHTfOr button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #eff6fa !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uZBVTHTfOr button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #2f7682;
}
.cid-uZBVTHTfOr button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.cid-uZBVTHTfOr button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uZBVTHTfOr button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uZBVTHTfOr button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.cid-uZBVTHTfOr nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uZBVTHTfOr nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uZBVTHTfOr nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uZBVTHTfOr nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uZBVTHTfOr .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uZBVTHTfOr a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uZBVTHTfOr .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-uZBVTHTfOr .navbar {
    height: 70px;
  }
  .cid-uZBVTHTfOr .navbar.opened {
    height: auto;
  }
  .cid-uZBVTHTfOr .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uZBVTHTfOr .navbar-nav {
  margin: 0 auto;
}
.cid-uZBVTHTfOr .nav-item {
  padding: 0;
  margin: 0;
}
.cid-uZBVTHTfOr .nav-item .nav-link {
  padding: 5px 32px !important;
  margin: 0 !important;
  transition: all 0.3s ease-in-out;
  font-weight: 600;
}
.cid-uZBVTHTfOr .nav-item .nav-link::after {
  color: #a34f8b !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-uZBVTHTfOr .nav-item .nav-link:hover {
  background-color: transparent;
  color: #a34f8b !important;
}
.cid-uZBVTHTfOr .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-uZBVTHTfOr .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-uZBVTHTfOr .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
.cid-uZBVTHTfOr .nav-item .dropdown-menu .dropdown-item {
  color: #a34f8b !important;
}
.cid-uZBVTHTfOr .nav-item .dropdown-menu .dropdown-item:hover {
  color: #a34f8b !important;
}
@media (max-width: 991px) {
  .cid-uZBVTHTfOr .navbar {
    justify-content: flex-start !important;
  }
  .cid-uZBVTHTfOr .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-uZBVTHTfOr .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-uZBVTHTfOr .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-uZBVTHTfOr .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-uZBVTHTfOr .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .cid-uZBVTHTfOr .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
  }
}
.cid-uZBVTHTfOr .content-wrap {
  min-height: 110px;
}
.cid-uZBVTIlnHD {
  background-image: url("../../../assets/images/dr-jana-grube-ernaehrungstherapie-hero.webp");
}
.cid-uZBVTIlnHD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZBVTIlnHD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZBVTIlnHD .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 80%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uZBVTIlnHD .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
    width: 100%;
  }
}
.cid-uZBVTIlnHD .text-wrapper .mbr-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uZBVTIlnHD .text-wrapper .mbr-text {
    margin-bottom: 14px;
  }
}
.cid-uZBVTIlnHD .mbr-section-title {
  color: #0f0f0f;
}
.cid-uZBVTIlnHD .mbr-text {
  color: #ffffff;
}
.cid-uZBVTIlnHD .mbr-section-title,
.cid-uZBVTIlnHD .mbr-section-btn,
.cid-uZBVTIlnHD .title-wrapper {
  color: #ffffff;
}
.cid-uZBVTIEGrf {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uZBVTIEGrf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZBVTIEGrf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZBVTIEGrf .row {
  justify-content: space-between;
}
.cid-uZBVTIEGrf .title-wrapper .label-wrapper .mbr-label {
  display: inline-block;
  padding: 4px 20px;
  margin-bottom: 20px;
  border: 1px solid #6ea4a6;
}
@media (max-width: 992px) {
  .cid-uZBVTIEGrf .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uZBVTIEGrf .content-wrapper .mbr-desc {
  margin-bottom: 20px;
}
.cid-uZBVTIEGrf .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uZBVTIEGrf .content-wrapper .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 992px) {
  .cid-uZBVTIEGrf .content-wrapper .mbr-section-btn {
    margin-top: 20px;
  }
}
.cid-uZBVTIEGrf .mbr-label {
  color: #000000;
}
.cid-uZBVTIEGrf .mbr-section-title {
  color: #2f7682;
}
.cid-uZBVTIEGrf .mbr-desc {
  color: #000000;
}
.cid-uZBVTIEGrf .mbr-text {
  color: #8a8a8a;
}
.cid-uZBVTIEGrf .mbr-text,
.cid-uZBVTIEGrf .mbr-section-btn {
  color: #232323;
}
.cid-uZBVTIEGrf .mbr-label,
.cid-uZBVTIEGrf .label-wrapper {
  color: #a34f8b;
}
.cid-uZCsBrqTUl {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #eff6fa;
}
.cid-uZCsBrqTUl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZCsBrqTUl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZCsBrqTUl .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 50%;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uZCsBrqTUl .title-wrapper .mbr-section-title {
    width: 100%;
    margin-bottom: 40px;
  }
}
.cid-uZCsBrqTUl .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 64px;
}
@media (max-width: 1440px) {
  .cid-uZCsBrqTUl .items-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 992px) {
  .cid-uZCsBrqTUl .items-wrapper {
    display: block;
  }
}
@media (max-width: 992px) {
  .cid-uZCsBrqTUl .item {
    margin-bottom: 40px;
  }
}
.cid-uZCsBrqTUl .item .item-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cid-uZCsBrqTUl .item .item-wrapper .card-box .iconfont-wrapper {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uZCsBrqTUl .item .item-wrapper .card-box .iconfont-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uZCsBrqTUl .item .item-wrapper .card-box .iconfont-wrapper .mbr-iconfont {
  width: 64px;
  height: 64px;
  min-width: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: #ffffff;
  background-color: #a34f8b;
}
.cid-uZCsBrqTUl .item .item-wrapper .card-box .card-title {
  margin-bottom: 20px;
}
.cid-uZCsBrqTUl .item .item-wrapper .card-box .card-text {
  margin-bottom: 0;
}
.cid-uZCsBrqTUl .item .item-wrapper .mbr-section-btn {
  margin-top: 20px;
}
.cid-uZCsBrqTUl .item .item-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uZCsBrqTUl .mbr-section-title,
.cid-uZCsBrqTUl .title-wrapper {
  color: #6ea4a6;
  text-align: justify;
}
.cid-uZCsBrqTUl .card-title {
  color: #323432;
}
.cid-uZCsBrqTUl .card-text {
  color: #232323;
}
.cid-uZCtGrC9nq {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #eff6fa;
}
.cid-uZCtGrC9nq .mbr-text {
  color: #232323;
}
.cid-uZCoETYSyt {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #eff6fa;
}
.cid-uZCoETYSyt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZCoETYSyt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZCoETYSyt .card-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-uZCoETYSyt .card-wrapper .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uZCoETYSyt .card-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #121212;
  opacity: 0.5;
  transition: all 0.3s ease-in-out;
  pointer-events: none;
  z-index: 1;
}
.cid-uZCoETYSyt .card-wrapper .card-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  padding-top: 135px;
  pointer-events: none;
}
@media (max-width: 992px) {
  .cid-uZCoETYSyt .card-wrapper .card-wrap {
    display: block;
    padding-top: 0;
  }
}
.cid-uZCoETYSyt .card-wrapper .card-wrap .item-wrapper {
  width: 50%;
  background-color: #2f7682;
  padding: 160px 110px;
  pointer-events: visible;
}
@media (max-width: 1440px) {
  .cid-uZCoETYSyt .card-wrapper .card-wrap .item-wrapper {
    padding: 160px 40px;
  }
}
@media (max-width: 992px) {
  .cid-uZCoETYSyt .card-wrapper .card-wrap .item-wrapper {
    width: 100%;
    padding: 20px;
  }
}
.cid-uZCoETYSyt .card-wrapper .card-wrap .item-wrapper .icon-wrapper {
  margin-bottom: 20px;
}
.cid-uZCoETYSyt .card-wrapper .card-wrap .item-wrapper .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  font-size: 32px;
  color: #ffffff;
}
.cid-uZCoETYSyt .card-wrapper .card-wrap .item-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-uZCoETYSyt .card-wrapper .card-wrap .item-wrapper .mbr-name {
  margin-bottom: 0;
}
.cid-uZCoETYSyt .card-wrapper .card-wrap .content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 40%;
  padding-right: 110px;
  padding-bottom: 110px;
  pointer-events: visible;
  padding-right: 0;
  padding-left: 110px;
}
@media (max-width: 1440px) {
  .cid-uZCoETYSyt .card-wrapper .card-wrap .content-wrapper {
    padding-right: 40px;
  }
}
@media (max-width: 992px) {
  .cid-uZCoETYSyt .card-wrapper .card-wrap .content-wrapper {
    width: 100%;
    padding: 40px 20px;
  }
}
@media (max-width: 1440px) {
  .cid-uZCoETYSyt .card-wrapper .card-wrap .content-wrapper {
    padding-left: 40px;
  }
}
@media (max-width: 992px) {
  .cid-uZCoETYSyt .card-wrapper .card-wrap .content-wrapper {
    padding: 40px 20px;
  }
}
.cid-uZCoETYSyt .card-wrapper .card-wrap .content-wrapper .title-wrapper .mbr-tag {
  margin-bottom: 16px;
}
.cid-uZCoETYSyt .card-wrapper .card-wrap .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-uZCoETYSyt .card-wrapper .card-wrap .content-wrapper .number-wrapper .mbr-number {
  margin-bottom: 0;
}
.cid-uZCoETYSyt .card-wrapper .card-wrap .content-wrapper .number-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-uZCoETYSyt .mbr-section-title {
  color: #ffffff;
}
.cid-uZCoETYSyt .mbr-tag {
  color: #ffffff;
}
.cid-uZCoETYSyt .mbr-number {
  color: #ffffff;
}
.cid-uZCoETYSyt .mbr-desc {
  color: #ffffff;
}
.cid-uZCoETYSyt .mbr-text {
  color: #ffffff;
}
.cid-uZCoETYSyt .mbr-name {
  color: #ffffff;
}
.cid-uZBVTJX4Dk {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uZBVTJX4Dk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZBVTJX4Dk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZBVTJX4Dk .row {
  justify-content: space-between;
}
.cid-uZBVTJX4Dk .title-wrapper .label-wrapper .mbr-label {
  display: inline-block;
  padding: 4px 20px;
  margin-bottom: 20px;
  border: 1px solid #6ea4a6;
}
@media (max-width: 992px) {
  .cid-uZBVTJX4Dk .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uZBVTJX4Dk .content-wrapper .mbr-desc {
  margin-bottom: 20px;
}
.cid-uZBVTJX4Dk .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uZBVTJX4Dk .content-wrapper .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 992px) {
  .cid-uZBVTJX4Dk .content-wrapper .mbr-section-btn {
    margin-top: 20px;
  }
}
.cid-uZBVTJX4Dk .mbr-label {
  color: #000000;
}
.cid-uZBVTJX4Dk .mbr-section-title {
  color: #2f7682;
}
.cid-uZBVTJX4Dk .mbr-desc {
  color: #000000;
}
.cid-uZBVTJX4Dk .mbr-text {
  color: #8a8a8a;
}
.cid-uZBVTJX4Dk .mbr-text,
.cid-uZBVTJX4Dk .mbr-section-btn {
  color: #232323;
}
.cid-uZBVTJX4Dk .mbr-label,
.cid-uZBVTJX4Dk .label-wrapper {
  color: #a34f8b;
}
.cid-v0bV6viZ7e {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v0bV6viZ7e .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0bV6viZ7e .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0bV6viZ7e .title .num {
  width: 100%;
  display: block;
}
.cid-v0bV6viZ7e .title .card-title {
  z-index: 1;
}
.cid-v0bV6viZ7e .num {
  color: #a34f8b;
}
.cid-v0bV6viZ7e .item-mb {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-v0bV6viZ7e .item-mb {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-v0bV6viZ7e * {
    text-align: left !important;
  }
  .cid-v0bV6viZ7e .content-column {
    margin-bottom: 2rem;
  }
}
.cid-v0bV6viZ7e .content-head {
  max-width: 800px;
}
.cid-v0bV6viZ7e .card-text {
  text-align: left;
}
.cid-v0bV6viZ7e .card-title,
.cid-v0bV6viZ7e .card-img {
  color: #232323;
}
.cid-uZBVTKI4ij {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eff6fa;
}
.cid-uZBVTKI4ij .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZBVTKI4ij .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZBVTKI4ij .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uZBVTKI4ij .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uZBVTKI4ij .items-wrapper .item {
  margin-bottom: 4px;
}
@media (max-width: 992px) {
  .cid-uZBVTKI4ij .items-wrapper .item {
    margin-bottom: 2px;
  }
}
.cid-uZBVTKI4ij .items-wrapper .item .item-wrapper {
  height: 100%;
  display: flex;
  background-color: #ffffff;
  transition: all .3s ease;
}
@media (max-width: 992px) {
  .cid-uZBVTKI4ij .items-wrapper .item .item-wrapper {
    display: block;
  }
}
.cid-uZBVTKI4ij .items-wrapper .item .item-wrapper .card-box {
  width: 50%;
  padding: 64px;
}
@media (max-width: 992px) {
  .cid-uZBVTKI4ij .items-wrapper .item .item-wrapper .card-box {
    padding: 20px;
    width: 100%;
  }
}
.cid-uZBVTKI4ij .items-wrapper .item .item-wrapper .card-box .card-title {
  margin-bottom: 14px;
  transition: all .3s ease;
}
.cid-uZBVTKI4ij .items-wrapper .item .item-wrapper .card-box .card-text {
  margin-bottom: 14px;
  transition: all .3s ease;
}
.cid-uZBVTKI4ij .items-wrapper .item .item-wrapper .card-box .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uZBVTKI4ij .items-wrapper .item .item-wrapper .item-img {
  width: 50%;
  padding: 64px;
}
@media (max-width: 992px) {
  .cid-uZBVTKI4ij .items-wrapper .item .item-wrapper .item-img {
    padding: 0 20px 20px;
    width: 100%;
  }
}
.cid-uZBVTKI4ij .items-wrapper .item .item-wrapper .item-img img {
  height: 400px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uZBVTKI4ij .items-wrapper .item .item-wrapper .item-img img {
    height: 300px;
  }
}
@media (max-width: 992px) {
  .cid-uZBVTKI4ij .items-wrapper .item .item-wrapper .card_2 {
    padding: 20px 20px 0;
  }
}
.cid-uZBVTKI4ij .mbr-section-title {
  color: #0f0f0f;
}
.cid-uZBVTKI4ij .card-title {
  color: #0f0f0f;
}
.cid-uZBVTKI4ij .card-text {
  color: #232323;
}
.cid-uZBVTKI4ij .card-title,
.cid-uZBVTKI4ij .mbr-section-btn {
  color: #2f7682;
}
.cid-uZBVTKI4ij .mbr-section-title,
.cid-uZBVTKI4ij .mbr-section-btn {
  color: #6ea4a6;
}
.cid-uZBVTL3hrP {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #eff6fa;
}
.cid-uZBVTL3hrP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZBVTL3hrP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZBVTL3hrP .row {
  justify-content: space-between;
}
.cid-uZBVTL3hrP .title-wrapper .label-wrapper .mbr-label {
  display: inline-block;
  padding: 4px 20px;
  margin-bottom: 20px;
  border: 1px solid #6ea4a6;
}
@media (max-width: 992px) {
  .cid-uZBVTL3hrP .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uZBVTL3hrP .content-wrapper .mbr-desc {
  margin-bottom: 20px;
}
.cid-uZBVTL3hrP .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uZBVTL3hrP .content-wrapper .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 992px) {
  .cid-uZBVTL3hrP .content-wrapper .mbr-section-btn {
    margin-top: 20px;
  }
}
.cid-uZBVTL3hrP .mbr-label {
  color: #000000;
}
.cid-uZBVTL3hrP .mbr-section-title {
  color: #2f7682;
}
.cid-uZBVTL3hrP .mbr-desc {
  color: #000000;
}
.cid-uZBVTL3hrP .mbr-text {
  color: #8a8a8a;
}
.cid-uZBVTL3hrP .mbr-text,
.cid-uZBVTL3hrP .mbr-section-btn {
  color: #232323;
}
.cid-uZBVTL3hrP .mbr-label,
.cid-uZBVTL3hrP .label-wrapper {
  color: #a34f8b;
}
.cid-uZBVTLokpB {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #eff6fa;
}
.cid-uZBVTLokpB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZBVTLokpB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZBVTLokpB .row {
  flex-direction: row-reverse;
}
.cid-v0bNrl8ler {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #eff6fa;
}
.cid-v0bNrl8ler .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0bNrl8ler .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0bNrl8ler .title-wrapper {
  display: flex;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-v0bNrl8ler .title-wrapper {
    display: block;
    margin-bottom: 30px;
  }
}
.cid-v0bNrl8ler .title-wrapper .label-wrapper {
  width: 35%;
}
@media (max-width: 992px) {
  .cid-v0bNrl8ler .title-wrapper .label-wrapper {
    width: 100%;
  }
}
.cid-v0bNrl8ler .title-wrapper .label-wrapper .mbr-label {
  display: inline-block;
  padding: 4px 20px;
  margin-bottom: 20px;
  border: 1px solid #6ea4a6;
}
.cid-v0bNrl8ler .title-wrapper .mbr-section-title {
  width: 65%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v0bNrl8ler .title-wrapper .mbr-section-title {
    width: 100%;
  }
}
.cid-v0bNrl8ler .panel-group .card {
  position: relative;
  padding: 40px 0;
  background-color: transparent;
  border-top: 1px solid #e0e0e0;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-v0bNrl8ler .panel-group .card {
    padding: 30px 0;
  }
}
.cid-v0bNrl8ler .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-v0bNrl8ler .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-v0bNrl8ler .panel-group .card .card-header .panel-title .icon-wrap {
  width: 35%;
  position: relative;
}
@media (max-width: 992px) {
  .cid-v0bNrl8ler .panel-group .card .card-header .panel-title .icon-wrap {
    width: 25%;
  }
}
.cid-v0bNrl8ler .panel-group .card .card-header .panel-title .icon-wrap .mbr-iconfont {
  width: 50px;
  height: 50px;
  min-width: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  margin-right: 10px;
  transition: all .3s ease;
  font-size: 24px;
  background-color: #a34f8b;
  color: #ffffff;
}
.cid-v0bNrl8ler .panel-group .card .card-header .panel-title .icon-wrap .svg1 {
  position: absolute;
  bottom: 0;
  left: 24px;
  transform: rotate(180deg);
  width: 26px;
}
.cid-v0bNrl8ler .panel-group .card .card-header .panel-title .icon-wrap .svg1 path {
  transition: all .3s ease;
  fill: #a34f8b;
}
.cid-v0bNrl8ler .panel-group .card .card-header .panel-title .panel-title-edit {
  width: 65%;
  padding-right: 30px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v0bNrl8ler .panel-group .card .card-header .panel-title .panel-title-edit {
    width: 70%;
  }
}
.cid-v0bNrl8ler .panel-group .card .card-header .panel-title .icon-wrapper {
  position: absolute;
  right: 0;
  width: 20px;
  height: 20px;
  min-width: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}
.cid-v0bNrl8ler .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  font-size: 18px;
  transition: all 0.3s ease-in-out;
  color: #232323;
}
.cid-v0bNrl8ler .panel-group .card .card-header .panel-title:hover .icon-wrap .mbr-iconfont {
  background-color: #6ea4a6;
  color: #ffffff;
}
.cid-v0bNrl8ler .panel-group .card .card-header .panel-title:hover .icon-wrap .svg1 path {
  fill: #6ea4a6;
}
.cid-v0bNrl8ler .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  transform: rotate(-180deg);
}
.cid-v0bNrl8ler .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrap .mbr-iconfont {
  background-color: #6ea4a6;
  color: #ffffff;
}
.cid-v0bNrl8ler .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrap .svg1 path {
  fill: #6ea4a6;
}
.cid-v0bNrl8ler .panel-group .card .panel-collapse .panel-body {
  margin-top: 40px;
  margin-left: 35%;
}
@media (max-width: 992px) {
  .cid-v0bNrl8ler .panel-group .card .panel-collapse .panel-body {
    margin-top: 20px;
    margin-left: 0;
  }
}
.cid-v0bNrl8ler .panel-group .card .panel-collapse .panel-body .panel-text {
  display: inline-flex;
  width: 60%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v0bNrl8ler .panel-group .card .panel-collapse .panel-body .panel-text {
    width: 100%;
  }
}
.cid-v0bNrl8ler .mbr-label {
  color: #000000;
}
.cid-v0bNrl8ler .mbr-section-title {
  color: #2f7682;
}
.cid-v0bNrl8ler .panel-title-edit {
  color: #232323;
}
.cid-v0bNrl8ler .panel-text {
  color: #232323;
}
.cid-v0bNrl8ler .mbr-label,
.cid-v0bNrl8ler .label-wrapper {
  color: #a34f8b;
}
.cid-uZBVTLJUU0 {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #f5f8f9;
}
.cid-uZBVTLJUU0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZBVTLJUU0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZBVTLJUU0 .row {
  justify-content: space-between;
}
.cid-uZBVTLJUU0 .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-uZBVTLJUU0 .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-uZBVTLJUU0 .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-uZBVTLJUU0 .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uZBVTLJUU0 .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-uZBVTLJUU0 .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-uZBVTLJUU0 .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-uZBVTLJUU0 .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-uZBVTLJUU0 .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uZBVTLJUU0 .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-uZBVTLJUU0 .list-wrapper .list .item-wrap:hover,
.cid-uZBVTLJUU0 .list-wrapper .list .item-wrap:focus {
  color: #6ea4a6;
}
.cid-uZBVTLJUU0 .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uZBVTLJUU0 .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-uZBVTLJUU0 .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-uZBVTLJUU0 .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-uZBVTLJUU0 .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-uZBVTLJUU0 .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-uZBVTLJUU0 .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uZBVTLJUU0 .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uZBVTLJUU0 .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-uZBVTLJUU0 .content-wrap .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #000000;
  font-size: 26px;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px;
}
.cid-uZBVTLJUU0 .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uZBVTLJUU0 .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-uZBVTLJUU0 .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-uZBVTLJUU0 .mbr-section-title {
  color: #000000;
}
.cid-uZBVTLJUU0 .mbr-text {
  color: #232323;
}
.cid-uZBVTLJUU0 .list {
  color: #000000;
}
.cid-uZBVTLJUU0 .mbr-desc {
  color: #000000;
}
.cid-uZBVTLJUU0 .mbr-copy {
  color: #000000;
}
.cid-uZBVTLJUU0 .mbr-desc,
.cid-uZBVTLJUU0 .social-wrapper {
  text-align: center;
}
.cid-uZBVTLJUU0 .mbr-copy,
.cid-uZBVTLJUU0 .mbr-section-btn-main {
  text-align: center;
  color: #232323;
}
.cid-uZBVTLJUU0 .mbr-section-title,
.cid-uZBVTLJUU0 .mbr-section-btn {
  color: #2f7682;
}
.cid-uZBVTLJUU0 .list,
.cid-uZBVTLJUU0 .item-wrap {
  color: #a34f8b;
}
.cid-v0ysQWAHue {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 110px;
}
.cid-v0ysQWAHue nav.navbar {
  position: fixed;
}
.cid-v0ysQWAHue .container-fluid {
  padding-left: 64px;
  padding-right: 64px;
}
@media (max-width: 992px) {
  .cid-v0ysQWAHue .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cid-v0ysQWAHue .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-v0ysQWAHue .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0ysQWAHue .dropdown-item {
  border-bottom: 1px solid #c5d348;
  background: #eff6fa !important;
  color: #a34f8b !important;
}
.cid-v0ysQWAHue .dropdown-item:hover,
.cid-v0ysQWAHue .dropdown-item:focus {
  background: #eff6fa !important;
  color: #a34f8b !important;
}
.cid-v0ysQWAHue .dropdown-item:hover span {
  color: white;
}
.cid-v0ysQWAHue .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0ysQWAHue .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0ysQWAHue .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v0ysQWAHue .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0ysQWAHue .nav-link {
  position: relative;
}
.cid-v0ysQWAHue .container {
  display: flex;
  margin: 0 auto;
  max-width: 1600px;
}
@media (min-width: 992px) {
  .cid-v0ysQWAHue .container {
    flex-wrap: nowrap;
  }
}
.cid-v0ysQWAHue .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.cid-v0ysQWAHue .iconfont-wrapper:hover {
  color: #a34f8b !important;
}
.cid-v0ysQWAHue .dropdown-menu,
.cid-v0ysQWAHue .navbar.opened {
  background: #eff6fa !important;
}
.cid-v0ysQWAHue .nav-item:focus,
.cid-v0ysQWAHue .nav-link:focus {
  outline: none;
}
.cid-v0ysQWAHue .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0ysQWAHue .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.cid-v0ysQWAHue .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0ysQWAHue .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ysQWAHue .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0ysQWAHue .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0ysQWAHue .navbar {
  min-height: 110px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #eff6fa;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-v0ysQWAHue .navbar.opened {
  transition: all 0.3s;
}
.cid-v0ysQWAHue .navbar .dropdown-item {
  padding: 0.5rem 3.2rem 0.5rem 1.8rem;
  border-radius: 0.6rem;
}
.cid-v0ysQWAHue .navbar .navbar-logo img {
  width: auto;
  border-radius: 6px !important;
}
.cid-v0ysQWAHue .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0ysQWAHue .navbar.collapsed {
  justify-content: center;
}
.cid-v0ysQWAHue .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0ysQWAHue .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-v0ysQWAHue .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0ysQWAHue .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0ysQWAHue .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-v0ysQWAHue .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0ysQWAHue .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0ysQWAHue .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0ysQWAHue .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0ysQWAHue .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0ysQWAHue .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0ysQWAHue .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0ysQWAHue .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-v0ysQWAHue .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0ysQWAHue .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0ysQWAHue .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0ysQWAHue .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-v0ysQWAHue .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0ysQWAHue .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v0ysQWAHue .navbar.navbar-short {
  min-height: 96px;
}
.cid-v0ysQWAHue .navbar.navbar-short .navbar-brand {
  min-height: 96px;
}
.cid-v0ysQWAHue .navbar-brand {
  min-height: 96px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-v0ysQWAHue .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-v0ysQWAHue .navbar-brand .navbar-caption:hover,
.cid-v0ysQWAHue .navbar-brand .navbar-caption:focus {
  color: #a34f8b !important;
}
.cid-v0ysQWAHue .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0ysQWAHue .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-v0ysQWAHue .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #a34f8b !important;
}
.cid-v0ysQWAHue .dropdown-item.active,
.cid-v0ysQWAHue .dropdown-item:active {
  background-color: transparent;
}
.cid-v0ysQWAHue .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0ysQWAHue .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0ysQWAHue .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0ysQWAHue .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #eff6fa;
  top: 3rem;
  border-radius: 0.6rem;
}
@media (max-width: 992px) {
  .cid-v0ysQWAHue .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-v0ysQWAHue .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-v0ysQWAHue .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0ysQWAHue ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .cid-v0ysQWAHue ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.cid-v0ysQWAHue .navbar-buttons {
  text-align: center;
}
.cid-v0ysQWAHue .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  padding: 11px 32px;
  min-height: auto;
}
.cid-v0ysQWAHue .navbar-buttons .btn .mbr-iconfont {
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  margin-left: 32px;
  margin-right: -20px;
}
@media (max-width: 575px) {
  .cid-v0ysQWAHue .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-v0ysQWAHue button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #eff6fa !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-v0ysQWAHue button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #2f7682;
}
.cid-v0ysQWAHue button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.cid-v0ysQWAHue button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-v0ysQWAHue button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-v0ysQWAHue button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.cid-v0ysQWAHue nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ysQWAHue nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0ysQWAHue nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0ysQWAHue nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ysQWAHue .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0ysQWAHue a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0ysQWAHue .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-v0ysQWAHue .navbar {
    height: 70px;
  }
  .cid-v0ysQWAHue .navbar.opened {
    height: auto;
  }
  .cid-v0ysQWAHue .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v0ysQWAHue .navbar-nav {
  margin: 0 auto;
}
.cid-v0ysQWAHue .nav-item {
  padding: 0;
  margin: 0;
}
.cid-v0ysQWAHue .nav-item .nav-link {
  padding: 5px 32px !important;
  margin: 0 !important;
  transition: all 0.3s ease-in-out;
  font-weight: 600;
}
.cid-v0ysQWAHue .nav-item .nav-link::after {
  color: #a34f8b !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-v0ysQWAHue .nav-item .nav-link:hover {
  background-color: transparent;
  color: #a34f8b !important;
}
.cid-v0ysQWAHue .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-v0ysQWAHue .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-v0ysQWAHue .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
.cid-v0ysQWAHue .nav-item .dropdown-menu .dropdown-item {
  color: #a34f8b !important;
}
.cid-v0ysQWAHue .nav-item .dropdown-menu .dropdown-item:hover {
  color: #a34f8b !important;
}
@media (max-width: 991px) {
  .cid-v0ysQWAHue .navbar {
    justify-content: flex-start !important;
  }
  .cid-v0ysQWAHue .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-v0ysQWAHue .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-v0ysQWAHue .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-v0ysQWAHue .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-v0ysQWAHue .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .cid-v0ysQWAHue .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
  }
}
.cid-v0ysQWAHue .content-wrap {
  min-height: 110px;
}
.cid-v0ysQX0iqF {
  background-image: url("../../../assets/images/dr-jana-grube-ernaehrungsberaterin-hero-1.webp");
}
.cid-v0ysQX0iqF .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0ysQX0iqF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0ysQX0iqF .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 80%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v0ysQX0iqF .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
    width: 100%;
  }
}
.cid-v0ysQX0iqF .text-wrapper .mbr-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-v0ysQX0iqF .text-wrapper .mbr-text {
    margin-bottom: 14px;
  }
}
.cid-v0ysQX0iqF .mbr-section-title {
  color: #0f0f0f;
}
.cid-v0ysQX0iqF .mbr-text {
  color: #ffffff;
}
.cid-v0ysQX0iqF .mbr-section-title,
.cid-v0ysQX0iqF .mbr-section-btn,
.cid-v0ysQX0iqF .title-wrapper {
  color: #ffffff;
}
.cid-v0ysQZ2pO4 {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #eff6fa;
}
.cid-v0ysQZ2pO4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0ysQZ2pO4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0ysQZ2pO4 .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-v0ysQZ2pO4 .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-v0ysQZ2pO4 .items-wrapper .item {
  margin-bottom: 4px;
}
@media (max-width: 992px) {
  .cid-v0ysQZ2pO4 .items-wrapper .item {
    margin-bottom: 2px;
  }
}
.cid-v0ysQZ2pO4 .items-wrapper .item .item-wrapper {
  height: 100%;
  display: flex;
  background-color: #ffffff;
  transition: all .3s ease;
}
@media (max-width: 992px) {
  .cid-v0ysQZ2pO4 .items-wrapper .item .item-wrapper {
    display: block;
  }
}
.cid-v0ysQZ2pO4 .items-wrapper .item .item-wrapper .card-box {
  width: 50%;
  padding: 64px;
}
@media (max-width: 992px) {
  .cid-v0ysQZ2pO4 .items-wrapper .item .item-wrapper .card-box {
    padding: 20px;
    width: 100%;
  }
}
.cid-v0ysQZ2pO4 .items-wrapper .item .item-wrapper .card-box .card-title {
  margin-bottom: 14px;
  transition: all .3s ease;
}
.cid-v0ysQZ2pO4 .items-wrapper .item .item-wrapper .card-box .card-text {
  margin-bottom: 14px;
  transition: all .3s ease;
}
.cid-v0ysQZ2pO4 .items-wrapper .item .item-wrapper .card-box .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-v0ysQZ2pO4 .items-wrapper .item .item-wrapper .item-img {
  width: 50%;
  padding: 64px;
}
@media (max-width: 992px) {
  .cid-v0ysQZ2pO4 .items-wrapper .item .item-wrapper .item-img {
    padding: 0 20px 20px;
    width: 100%;
  }
}
.cid-v0ysQZ2pO4 .items-wrapper .item .item-wrapper .item-img img {
  height: 400px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-v0ysQZ2pO4 .items-wrapper .item .item-wrapper .item-img img {
    height: 300px;
  }
}
@media (max-width: 992px) {
  .cid-v0ysQZ2pO4 .items-wrapper .item .item-wrapper .card_2 {
    padding: 20px 20px 0;
  }
}
.cid-v0ysQZ2pO4 .mbr-section-title {
  color: #0f0f0f;
}
.cid-v0ysQZ2pO4 .card-title {
  color: #0f0f0f;
}
.cid-v0ysQZ2pO4 .card-text {
  color: #232323;
}
.cid-v0ysQZ2pO4 .card-title,
.cid-v0ysQZ2pO4 .mbr-section-btn {
  color: #2f7682;
}
.cid-v0ysQZ2pO4 .mbr-section-title,
.cid-v0ysQZ2pO4 .mbr-section-btn {
  color: #6ea4a6;
}
.cid-v0yHYPZMQF {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #eff6fa;
}
.cid-v0yHYPZMQF .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0yHYPZMQF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0yHYPZMQF .items-wrapper {
  justify-content: center;
  margin: 0 -40px;
}
.cid-v0yHYPZMQF .items-wrapper .item {
  position: relative;
  padding: 0 40px;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-v0yHYPZMQF .items-wrapper .item {
    margin-bottom: 40px;
  }
}
.cid-v0yHYPZMQF .items-wrapper .item .item-wrapper .icon-wrapper {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-v0yHYPZMQF .items-wrapper .item .item-wrapper .icon-wrapper {
    margin-bottom: 24px;
  }
}
.cid-v0yHYPZMQF .items-wrapper .item .item-wrapper .icon-wrapper .mbr-iconfont {
  width: 56px;
  height: 56px;
  min-width: 56px;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #a34f8b;
}
.cid-v0yHYPZMQF .items-wrapper .item .item-wrapper .item-title {
  margin-bottom: 16px;
}
.cid-v0yHYPZMQF .items-wrapper .item .item-wrapper .item-text {
  margin-bottom: 0;
}
.cid-v0yHYPZMQF .items-wrapper .item .item-wrapper .mbr-section-btn {
  margin-top: 16px;
}
.cid-v0yHYPZMQF .items-wrapper .item .item-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-v0yHYPZMQF .item-title {
  color: #ffffff;
}
.cid-v0yHYPZMQF .item-text {
  color: #232323;
}
.cid-v0yHYPZMQF .item-title,
.cid-v0yHYPZMQF .mbr-section-btn,
.cid-v0yHYPZMQF .icon-wrapper {
  color: #232323;
}
.cid-v0yErPafIp {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-v0yErPafIp .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0yErPafIp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0yErPafIp .row {
  justify-content: center;
}
.cid-v0yErPafIp .image-wrapper img {
  height: 700px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-v0yErPafIp .image-wrapper img {
    height: 300px;
  }
}
.cid-v0yErPafIp .card-wrapper {
  position: relative;
  padding: 64px;
  overflow: hidden;
  margin-top: -25%;
}
@media (max-width: 1440px) {
  .cid-v0yErPafIp .card-wrapper {
    padding: 32px;
  }
}
@media (max-width: 992px) {
  .cid-v0yErPafIp .card-wrapper {
    padding: 24px;
    margin-top: 12px;
  }
}
.cid-v0yErPafIp .card-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(10px);
  pointer-events: none;
}
.cid-v0yErPafIp .card-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #a34f8b;
  opacity: 1;
  pointer-events: none;
}
.cid-v0yErPafIp .card-wrapper .mbr-section-title {
  position: relative;
  z-index: 1;
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-v0yErPafIp .card-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-v0yErPafIp .card-wrapper .text-wrapper {
  position: relative;
  z-index: 1;
}
.cid-v0yErPafIp .card-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-v0yErPafIp .card-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-v0yErPafIp .card-wrapper .mbr-section-btn {
  position: relative;
  z-index: 1;
}
.cid-v0yErPafIp .card-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-v0yErPafIp .mbr-section-title {
  color: #2c2c26;
}
.cid-v0yErPafIp .mbr-text,
.cid-v0yErPafIp .text-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-v0yErPafIp .mbr-section-title,
.cid-v0yErPafIp .mbr-section-btn {
  text-align: center;
}
.cid-v0ysQXy2f5 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v0ysQXy2f5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0ysQXy2f5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0ysQXy2f5 .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 50%;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-v0ysQXy2f5 .title-wrapper .mbr-section-title {
    width: 100%;
    margin-bottom: 40px;
  }
}
.cid-v0ysQXy2f5 .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 64px;
}
@media (max-width: 1440px) {
  .cid-v0ysQXy2f5 .items-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 992px) {
  .cid-v0ysQXy2f5 .items-wrapper {
    display: block;
  }
}
@media (max-width: 992px) {
  .cid-v0ysQXy2f5 .item {
    margin-bottom: 40px;
  }
}
.cid-v0ysQXy2f5 .item .item-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cid-v0ysQXy2f5 .item .item-wrapper .card-box .iconfont-wrapper {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v0ysQXy2f5 .item .item-wrapper .card-box .iconfont-wrapper {
    margin-bottom: 20px;
  }
}
.cid-v0ysQXy2f5 .item .item-wrapper .card-box .iconfont-wrapper .mbr-iconfont {
  width: 64px;
  height: 64px;
  min-width: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: #ffffff;
  background-color: #c5d348;
}
.cid-v0ysQXy2f5 .item .item-wrapper .card-box .card-title {
  margin-bottom: 20px;
}
.cid-v0ysQXy2f5 .item .item-wrapper .card-box .card-text {
  margin-bottom: 0;
}
.cid-v0ysQXy2f5 .item .item-wrapper .mbr-section-btn {
  margin-top: 20px;
}
.cid-v0ysQXy2f5 .item .item-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-v0ysQXy2f5 .mbr-section-title,
.cid-v0ysQXy2f5 .title-wrapper {
  color: #2f7682;
  text-align: justify;
}
.cid-v0ysQXy2f5 .card-title {
  color: #323432;
}
.cid-v0ysQXy2f5 .card-text {
  color: #232323;
}
.cid-v0ysQY7eTQ {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v0ysQY7eTQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0ysQY7eTQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0ysQY7eTQ .card-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-v0ysQY7eTQ .card-wrapper .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-v0ysQY7eTQ .card-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #121212;
  opacity: 0.5;
  transition: all 0.3s ease-in-out;
  pointer-events: none;
  z-index: 1;
}
.cid-v0ysQY7eTQ .card-wrapper .card-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  padding-top: 135px;
  pointer-events: none;
}
@media (max-width: 992px) {
  .cid-v0ysQY7eTQ .card-wrapper .card-wrap {
    display: block;
    padding-top: 0;
  }
}
.cid-v0ysQY7eTQ .card-wrapper .card-wrap .item-wrapper {
  width: 50%;
  background-color: #2f7682;
  padding: 160px 110px;
  pointer-events: visible;
}
@media (max-width: 1440px) {
  .cid-v0ysQY7eTQ .card-wrapper .card-wrap .item-wrapper {
    padding: 160px 40px;
  }
}
@media (max-width: 992px) {
  .cid-v0ysQY7eTQ .card-wrapper .card-wrap .item-wrapper {
    width: 100%;
    padding: 20px;
  }
}
.cid-v0ysQY7eTQ .card-wrapper .card-wrap .item-wrapper .icon-wrapper {
  margin-bottom: 20px;
}
.cid-v0ysQY7eTQ .card-wrapper .card-wrap .item-wrapper .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  font-size: 32px;
  color: #ffffff;
}
.cid-v0ysQY7eTQ .card-wrapper .card-wrap .item-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-v0ysQY7eTQ .card-wrapper .card-wrap .item-wrapper .mbr-name {
  margin-bottom: 0;
}
.cid-v0ysQY7eTQ .card-wrapper .card-wrap .content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 40%;
  padding-right: 110px;
  padding-bottom: 110px;
  pointer-events: visible;
  padding-right: 0;
  padding-left: 110px;
}
@media (max-width: 1440px) {
  .cid-v0ysQY7eTQ .card-wrapper .card-wrap .content-wrapper {
    padding-right: 40px;
  }
}
@media (max-width: 992px) {
  .cid-v0ysQY7eTQ .card-wrapper .card-wrap .content-wrapper {
    width: 100%;
    padding: 40px 20px;
  }
}
@media (max-width: 1440px) {
  .cid-v0ysQY7eTQ .card-wrapper .card-wrap .content-wrapper {
    padding-left: 40px;
  }
}
@media (max-width: 992px) {
  .cid-v0ysQY7eTQ .card-wrapper .card-wrap .content-wrapper {
    padding: 40px 20px;
  }
}
.cid-v0ysQY7eTQ .card-wrapper .card-wrap .content-wrapper .title-wrapper .mbr-tag {
  margin-bottom: 16px;
}
.cid-v0ysQY7eTQ .card-wrapper .card-wrap .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-v0ysQY7eTQ .card-wrapper .card-wrap .content-wrapper .number-wrapper .mbr-number {
  margin-bottom: 0;
}
.cid-v0ysQY7eTQ .card-wrapper .card-wrap .content-wrapper .number-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-v0ysQY7eTQ .mbr-section-title {
  color: #ffffff;
}
.cid-v0ysQY7eTQ .mbr-tag {
  color: #ffffff;
}
.cid-v0ysQY7eTQ .mbr-number {
  color: #ffffff;
}
.cid-v0ysQY7eTQ .mbr-desc {
  color: #ffffff;
}
.cid-v0ysQY7eTQ .mbr-text {
  color: #ffffff;
}
.cid-v0ysQY7eTQ .mbr-name {
  color: #ffffff;
}
.cid-v0ysQZko3P {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #eff6fa;
}
.cid-v0ysQZko3P .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0ysQZko3P .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0ysQZko3P .row {
  justify-content: space-between;
}
.cid-v0ysQZko3P .title-wrapper .label-wrapper .mbr-label {
  display: inline-block;
  padding: 4px 20px;
  margin-bottom: 20px;
  border: 1px solid #6ea4a6;
}
@media (max-width: 992px) {
  .cid-v0ysQZko3P .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-v0ysQZko3P .content-wrapper .mbr-desc {
  margin-bottom: 20px;
}
.cid-v0ysQZko3P .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v0ysQZko3P .content-wrapper .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 992px) {
  .cid-v0ysQZko3P .content-wrapper .mbr-section-btn {
    margin-top: 20px;
  }
}
.cid-v0ysQZko3P .mbr-label {
  color: #000000;
}
.cid-v0ysQZko3P .mbr-section-title {
  color: #2f7682;
}
.cid-v0ysQZko3P .mbr-desc {
  color: #000000;
}
.cid-v0ysQZko3P .mbr-text {
  color: #8a8a8a;
}
.cid-v0ysQZko3P .mbr-text,
.cid-v0ysQZko3P .mbr-section-btn {
  color: #232323;
}
.cid-v0ysQZko3P .mbr-label,
.cid-v0ysQZko3P .label-wrapper {
  color: #a34f8b;
}
.cid-v0ysQZBJ1j {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #eff6fa;
}
.cid-v0ysQZBJ1j .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0ysQZBJ1j .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0ysQZBJ1j .row {
  flex-direction: row-reverse;
}
.cid-v0ysR0iuw6 {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #f5f8f9;
}
.cid-v0ysR0iuw6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0ysR0iuw6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0ysR0iuw6 .row {
  justify-content: space-between;
}
.cid-v0ysR0iuw6 .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v0ysR0iuw6 .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v0ysR0iuw6 .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v0ysR0iuw6 .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v0ysR0iuw6 .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v0ysR0iuw6 .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v0ysR0iuw6 .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v0ysR0iuw6 .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v0ysR0iuw6 .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v0ysR0iuw6 .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v0ysR0iuw6 .list-wrapper .list .item-wrap:hover,
.cid-v0ysR0iuw6 .list-wrapper .list .item-wrap:focus {
  color: #6ea4a6;
}
.cid-v0ysR0iuw6 .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v0ysR0iuw6 .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v0ysR0iuw6 .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v0ysR0iuw6 .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v0ysR0iuw6 .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v0ysR0iuw6 .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v0ysR0iuw6 .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v0ysR0iuw6 .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v0ysR0iuw6 .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v0ysR0iuw6 .content-wrap .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #000000;
  font-size: 26px;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px;
}
.cid-v0ysR0iuw6 .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v0ysR0iuw6 .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v0ysR0iuw6 .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v0ysR0iuw6 .mbr-section-title {
  color: #000000;
}
.cid-v0ysR0iuw6 .mbr-text {
  color: #232323;
}
.cid-v0ysR0iuw6 .list {
  color: #000000;
}
.cid-v0ysR0iuw6 .mbr-desc {
  color: #000000;
}
.cid-v0ysR0iuw6 .mbr-copy {
  color: #000000;
}
.cid-v0ysR0iuw6 .mbr-desc,
.cid-v0ysR0iuw6 .social-wrapper {
  text-align: center;
}
.cid-v0ysR0iuw6 .mbr-copy,
.cid-v0ysR0iuw6 .mbr-section-btn-main {
  text-align: center;
  color: #232323;
}
.cid-v0ysR0iuw6 .mbr-section-title,
.cid-v0ysR0iuw6 .mbr-section-btn {
  color: #2f7682;
}
.cid-v0ysR0iuw6 .list,
.cid-v0ysR0iuw6 .item-wrap {
  color: #a34f8b;
}
.cid-v3FFV3Xgc8 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 110px;
}
.cid-v3FFV3Xgc8 nav.navbar {
  position: fixed;
}
.cid-v3FFV3Xgc8 .container-fluid {
  padding-left: 64px;
  padding-right: 64px;
}
@media (max-width: 992px) {
  .cid-v3FFV3Xgc8 .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cid-v3FFV3Xgc8 .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-v3FFV3Xgc8 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v3FFV3Xgc8 .dropdown-item {
  border-bottom: 1px solid #c5d348;
  background: #eff6fa !important;
  color: #a34f8b !important;
}
.cid-v3FFV3Xgc8 .dropdown-item:hover,
.cid-v3FFV3Xgc8 .dropdown-item:focus {
  background: #eff6fa !important;
  color: #a34f8b !important;
}
.cid-v3FFV3Xgc8 .dropdown-item:hover span {
  color: white;
}
.cid-v3FFV3Xgc8 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v3FFV3Xgc8 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v3FFV3Xgc8 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v3FFV3Xgc8 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v3FFV3Xgc8 .nav-link {
  position: relative;
}
.cid-v3FFV3Xgc8 .container {
  display: flex;
  margin: 0 auto;
  max-width: 1600px;
}
@media (min-width: 992px) {
  .cid-v3FFV3Xgc8 .container {
    flex-wrap: nowrap;
  }
}
.cid-v3FFV3Xgc8 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.cid-v3FFV3Xgc8 .iconfont-wrapper:hover {
  color: #a34f8b !important;
}
.cid-v3FFV3Xgc8 .dropdown-menu,
.cid-v3FFV3Xgc8 .navbar.opened {
  background: #eff6fa !important;
}
.cid-v3FFV3Xgc8 .nav-item:focus,
.cid-v3FFV3Xgc8 .nav-link:focus {
  outline: none;
}
.cid-v3FFV3Xgc8 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v3FFV3Xgc8 .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.cid-v3FFV3Xgc8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v3FFV3Xgc8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v3FFV3Xgc8 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v3FFV3Xgc8 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v3FFV3Xgc8 .navbar {
  min-height: 110px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #eff6fa;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-v3FFV3Xgc8 .navbar.opened {
  transition: all 0.3s;
}
.cid-v3FFV3Xgc8 .navbar .dropdown-item {
  padding: 0.5rem 3.2rem 0.5rem 1.8rem;
  border-radius: 0.6rem;
}
.cid-v3FFV3Xgc8 .navbar .navbar-logo img {
  width: auto;
  border-radius: 6px !important;
}
.cid-v3FFV3Xgc8 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v3FFV3Xgc8 .navbar.collapsed {
  justify-content: center;
}
.cid-v3FFV3Xgc8 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v3FFV3Xgc8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-v3FFV3Xgc8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v3FFV3Xgc8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v3FFV3Xgc8 .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-v3FFV3Xgc8 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v3FFV3Xgc8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v3FFV3Xgc8 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v3FFV3Xgc8 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v3FFV3Xgc8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v3FFV3Xgc8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v3FFV3Xgc8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v3FFV3Xgc8 .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-v3FFV3Xgc8 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v3FFV3Xgc8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v3FFV3Xgc8 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v3FFV3Xgc8 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-v3FFV3Xgc8 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v3FFV3Xgc8 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v3FFV3Xgc8 .navbar.navbar-short {
  min-height: 96px;
}
.cid-v3FFV3Xgc8 .navbar.navbar-short .navbar-brand {
  min-height: 96px;
}
.cid-v3FFV3Xgc8 .navbar-brand {
  min-height: 96px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-v3FFV3Xgc8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-v3FFV3Xgc8 .navbar-brand .navbar-caption:hover,
.cid-v3FFV3Xgc8 .navbar-brand .navbar-caption:focus {
  color: #a34f8b !important;
}
.cid-v3FFV3Xgc8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v3FFV3Xgc8 .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-v3FFV3Xgc8 .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #a34f8b !important;
}
.cid-v3FFV3Xgc8 .dropdown-item.active,
.cid-v3FFV3Xgc8 .dropdown-item:active {
  background-color: transparent;
}
.cid-v3FFV3Xgc8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v3FFV3Xgc8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v3FFV3Xgc8 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v3FFV3Xgc8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #eff6fa;
  top: 3rem;
  border-radius: 0.6rem;
}
@media (max-width: 992px) {
  .cid-v3FFV3Xgc8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-v3FFV3Xgc8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-v3FFV3Xgc8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3FFV3Xgc8 ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .cid-v3FFV3Xgc8 ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.cid-v3FFV3Xgc8 .navbar-buttons {
  text-align: center;
}
.cid-v3FFV3Xgc8 .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  padding: 11px 32px;
  min-height: auto;
}
.cid-v3FFV3Xgc8 .navbar-buttons .btn .mbr-iconfont {
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  margin-left: 32px;
  margin-right: -20px;
}
@media (max-width: 575px) {
  .cid-v3FFV3Xgc8 .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-v3FFV3Xgc8 button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #eff6fa !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-v3FFV3Xgc8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #2f7682;
}
.cid-v3FFV3Xgc8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.cid-v3FFV3Xgc8 button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-v3FFV3Xgc8 button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-v3FFV3Xgc8 button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.cid-v3FFV3Xgc8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v3FFV3Xgc8 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v3FFV3Xgc8 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v3FFV3Xgc8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v3FFV3Xgc8 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v3FFV3Xgc8 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v3FFV3Xgc8 .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-v3FFV3Xgc8 .navbar {
    height: 70px;
  }
  .cid-v3FFV3Xgc8 .navbar.opened {
    height: auto;
  }
  .cid-v3FFV3Xgc8 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v3FFV3Xgc8 .navbar-nav {
  margin: 0 auto;
}
.cid-v3FFV3Xgc8 .nav-item {
  padding: 0;
  margin: 0;
}
.cid-v3FFV3Xgc8 .nav-item .nav-link {
  padding: 5px 32px !important;
  margin: 0 !important;
  transition: all 0.3s ease-in-out;
  font-weight: 600;
}
.cid-v3FFV3Xgc8 .nav-item .nav-link::after {
  color: #a34f8b !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-v3FFV3Xgc8 .nav-item .nav-link:hover {
  background-color: transparent;
  color: #a34f8b !important;
}
.cid-v3FFV3Xgc8 .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-v3FFV3Xgc8 .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-v3FFV3Xgc8 .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
.cid-v3FFV3Xgc8 .nav-item .dropdown-menu .dropdown-item {
  color: #a34f8b !important;
}
.cid-v3FFV3Xgc8 .nav-item .dropdown-menu .dropdown-item:hover {
  color: #a34f8b !important;
}
@media (max-width: 991px) {
  .cid-v3FFV3Xgc8 .navbar {
    justify-content: flex-start !important;
  }
  .cid-v3FFV3Xgc8 .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-v3FFV3Xgc8 .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-v3FFV3Xgc8 .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-v3FFV3Xgc8 .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-v3FFV3Xgc8 .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .cid-v3FFV3Xgc8 .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
  }
}
.cid-v3FFV3Xgc8 .content-wrap {
  min-height: 110px;
}
.cid-v3FFZO93ed {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v3FFZO93ed .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3FFZO93ed .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3FFZO93ed .mbr-section-title {
  text-align: justify;
  color: #2f7682;
}
.cid-v3FFZO93ed .mbr-section-subtitle {
  text-align: justify;
  color: #6ea4a6;
}
.cid-v3FG1jhFBU {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v4pELM4THi {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #eff6fa;
}
.cid-v4pELM4THi .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4pELM4THi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4pELM4THi .row {
  flex-direction: row-reverse;
}
.cid-v3FFV6ZxaT {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #f5f8f9;
}
.cid-v3FFV6ZxaT .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3FFV6ZxaT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3FFV6ZxaT .row {
  justify-content: space-between;
}
.cid-v3FFV6ZxaT .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3FFV6ZxaT .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3FFV6ZxaT .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3FFV6ZxaT .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3FFV6ZxaT .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3FFV6ZxaT .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3FFV6ZxaT .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3FFV6ZxaT .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3FFV6ZxaT .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3FFV6ZxaT .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3FFV6ZxaT .list-wrapper .list .item-wrap:hover,
.cid-v3FFV6ZxaT .list-wrapper .list .item-wrap:focus {
  color: #6ea4a6;
}
.cid-v3FFV6ZxaT .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3FFV6ZxaT .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3FFV6ZxaT .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3FFV6ZxaT .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3FFV6ZxaT .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3FFV6ZxaT .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3FFV6ZxaT .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3FFV6ZxaT .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3FFV6ZxaT .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3FFV6ZxaT .content-wrap .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #000000;
  font-size: 26px;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px;
}
.cid-v3FFV6ZxaT .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3FFV6ZxaT .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3FFV6ZxaT .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3FFV6ZxaT .mbr-section-title {
  color: #000000;
}
.cid-v3FFV6ZxaT .mbr-text {
  color: #232323;
}
.cid-v3FFV6ZxaT .list {
  color: #000000;
}
.cid-v3FFV6ZxaT .mbr-desc {
  color: #000000;
}
.cid-v3FFV6ZxaT .mbr-copy {
  color: #000000;
}
.cid-v3FFV6ZxaT .mbr-desc,
.cid-v3FFV6ZxaT .social-wrapper {
  text-align: center;
}
.cid-v3FFV6ZxaT .mbr-copy,
.cid-v3FFV6ZxaT .mbr-section-btn-main {
  text-align: center;
  color: #232323;
}
.cid-v3FFV6ZxaT .mbr-section-title,
.cid-v3FFV6ZxaT .mbr-section-btn {
  color: #2f7682;
}
.cid-v3FFV6ZxaT .list,
.cid-v3FFV6ZxaT .item-wrap {
  color: #a34f8b;
}
.cid-v3FI0V2r4X {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 110px;
}
.cid-v3FI0V2r4X nav.navbar {
  position: fixed;
}
.cid-v3FI0V2r4X .container-fluid {
  padding-left: 64px;
  padding-right: 64px;
}
@media (max-width: 992px) {
  .cid-v3FI0V2r4X .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cid-v3FI0V2r4X .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-v3FI0V2r4X .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v3FI0V2r4X .dropdown-item {
  border-bottom: 1px solid #c5d348;
  background: #eff6fa !important;
  color: #a34f8b !important;
}
.cid-v3FI0V2r4X .dropdown-item:hover,
.cid-v3FI0V2r4X .dropdown-item:focus {
  background: #eff6fa !important;
  color: #a34f8b !important;
}
.cid-v3FI0V2r4X .dropdown-item:hover span {
  color: white;
}
.cid-v3FI0V2r4X .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v3FI0V2r4X .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v3FI0V2r4X .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v3FI0V2r4X .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v3FI0V2r4X .nav-link {
  position: relative;
}
.cid-v3FI0V2r4X .container {
  display: flex;
  margin: 0 auto;
  max-width: 1600px;
}
@media (min-width: 992px) {
  .cid-v3FI0V2r4X .container {
    flex-wrap: nowrap;
  }
}
.cid-v3FI0V2r4X .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.cid-v3FI0V2r4X .iconfont-wrapper:hover {
  color: #a34f8b !important;
}
.cid-v3FI0V2r4X .dropdown-menu,
.cid-v3FI0V2r4X .navbar.opened {
  background: #eff6fa !important;
}
.cid-v3FI0V2r4X .nav-item:focus,
.cid-v3FI0V2r4X .nav-link:focus {
  outline: none;
}
.cid-v3FI0V2r4X .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v3FI0V2r4X .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.cid-v3FI0V2r4X .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v3FI0V2r4X .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v3FI0V2r4X .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v3FI0V2r4X .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v3FI0V2r4X .navbar {
  min-height: 110px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #eff6fa;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-v3FI0V2r4X .navbar.opened {
  transition: all 0.3s;
}
.cid-v3FI0V2r4X .navbar .dropdown-item {
  padding: 0.5rem 3.2rem 0.5rem 1.8rem;
  border-radius: 0.6rem;
}
.cid-v3FI0V2r4X .navbar .navbar-logo img {
  width: auto;
  border-radius: 6px !important;
}
.cid-v3FI0V2r4X .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v3FI0V2r4X .navbar.collapsed {
  justify-content: center;
}
.cid-v3FI0V2r4X .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v3FI0V2r4X .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-v3FI0V2r4X .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v3FI0V2r4X .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v3FI0V2r4X .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-v3FI0V2r4X .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v3FI0V2r4X .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v3FI0V2r4X .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v3FI0V2r4X .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v3FI0V2r4X .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v3FI0V2r4X .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v3FI0V2r4X .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v3FI0V2r4X .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-v3FI0V2r4X .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v3FI0V2r4X .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v3FI0V2r4X .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v3FI0V2r4X .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-v3FI0V2r4X .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v3FI0V2r4X .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v3FI0V2r4X .navbar.navbar-short {
  min-height: 96px;
}
.cid-v3FI0V2r4X .navbar.navbar-short .navbar-brand {
  min-height: 96px;
}
.cid-v3FI0V2r4X .navbar-brand {
  min-height: 96px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-v3FI0V2r4X .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-v3FI0V2r4X .navbar-brand .navbar-caption:hover,
.cid-v3FI0V2r4X .navbar-brand .navbar-caption:focus {
  color: #a34f8b !important;
}
.cid-v3FI0V2r4X .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v3FI0V2r4X .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-v3FI0V2r4X .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #a34f8b !important;
}
.cid-v3FI0V2r4X .dropdown-item.active,
.cid-v3FI0V2r4X .dropdown-item:active {
  background-color: transparent;
}
.cid-v3FI0V2r4X .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v3FI0V2r4X .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v3FI0V2r4X .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v3FI0V2r4X .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #eff6fa;
  top: 3rem;
  border-radius: 0.6rem;
}
@media (max-width: 992px) {
  .cid-v3FI0V2r4X .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-v3FI0V2r4X .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-v3FI0V2r4X .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3FI0V2r4X ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .cid-v3FI0V2r4X ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.cid-v3FI0V2r4X .navbar-buttons {
  text-align: center;
}
.cid-v3FI0V2r4X .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  padding: 11px 32px;
  min-height: auto;
}
.cid-v3FI0V2r4X .navbar-buttons .btn .mbr-iconfont {
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  margin-left: 32px;
  margin-right: -20px;
}
@media (max-width: 575px) {
  .cid-v3FI0V2r4X .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-v3FI0V2r4X button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #eff6fa !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-v3FI0V2r4X button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #2f7682;
}
.cid-v3FI0V2r4X button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.cid-v3FI0V2r4X button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-v3FI0V2r4X button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-v3FI0V2r4X button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.cid-v3FI0V2r4X nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v3FI0V2r4X nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v3FI0V2r4X nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v3FI0V2r4X nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v3FI0V2r4X .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v3FI0V2r4X a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v3FI0V2r4X .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-v3FI0V2r4X .navbar {
    height: 70px;
  }
  .cid-v3FI0V2r4X .navbar.opened {
    height: auto;
  }
  .cid-v3FI0V2r4X .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v3FI0V2r4X .navbar-nav {
  margin: 0 auto;
}
.cid-v3FI0V2r4X .nav-item {
  padding: 0;
  margin: 0;
}
.cid-v3FI0V2r4X .nav-item .nav-link {
  padding: 5px 32px !important;
  margin: 0 !important;
  transition: all 0.3s ease-in-out;
  font-weight: 600;
}
.cid-v3FI0V2r4X .nav-item .nav-link::after {
  color: #a34f8b !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-v3FI0V2r4X .nav-item .nav-link:hover {
  background-color: transparent;
  color: #a34f8b !important;
}
.cid-v3FI0V2r4X .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-v3FI0V2r4X .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-v3FI0V2r4X .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
.cid-v3FI0V2r4X .nav-item .dropdown-menu .dropdown-item {
  color: #a34f8b !important;
}
.cid-v3FI0V2r4X .nav-item .dropdown-menu .dropdown-item:hover {
  color: #a34f8b !important;
}
@media (max-width: 991px) {
  .cid-v3FI0V2r4X .navbar {
    justify-content: flex-start !important;
  }
  .cid-v3FI0V2r4X .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-v3FI0V2r4X .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-v3FI0V2r4X .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-v3FI0V2r4X .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-v3FI0V2r4X .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .cid-v3FI0V2r4X .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
  }
}
.cid-v3FI0V2r4X .content-wrap {
  min-height: 110px;
}
.cid-v3FI0Vq3Br {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v3FI0Vq3Br .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3FI0Vq3Br .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3FI0Vq3Br .mbr-section-title {
  text-align: justify;
  color: #2f7682;
}
.cid-v3FI0Vq3Br .mbr-section-subtitle {
  text-align: justify;
  color: #6ea4a6;
}
.cid-v3FRSZ53b2 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v3FRSZ53b2 .mbr-section-subtitle {
  text-align: justify;
  color: #a34f8b;
}
.cid-v3FSlnkfhJ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v3FSlnkfhJ .mbr-section-subtitle {
  text-align: justify;
  color: #a34f8b;
}
.cid-v4pKmY0oce {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v4pKmY0oce .mbr-section-subtitle {
  text-align: justify;
  color: #a34f8b;
}
.cid-v3FSTX9g9X {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v3FSTX9g9X .mbr-section-subtitle {
  text-align: justify;
  color: #a34f8b;
}
.cid-v3FTsxLT0e {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v3FTsxLT0e .mbr-section-subtitle {
  text-align: justify;
  color: #a34f8b;
}
.cid-v4pEX0ZE89 {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #eff6fa;
}
.cid-v4pEX0ZE89 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4pEX0ZE89 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4pEX0ZE89 .row {
  flex-direction: row-reverse;
}
.cid-v3FI0VS24D {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #f5f8f9;
}
.cid-v3FI0VS24D .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3FI0VS24D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3FI0VS24D .row {
  justify-content: space-between;
}
.cid-v3FI0VS24D .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3FI0VS24D .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3FI0VS24D .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3FI0VS24D .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3FI0VS24D .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3FI0VS24D .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3FI0VS24D .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3FI0VS24D .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3FI0VS24D .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3FI0VS24D .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3FI0VS24D .list-wrapper .list .item-wrap:hover,
.cid-v3FI0VS24D .list-wrapper .list .item-wrap:focus {
  color: #6ea4a6;
}
.cid-v3FI0VS24D .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3FI0VS24D .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3FI0VS24D .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3FI0VS24D .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3FI0VS24D .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3FI0VS24D .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3FI0VS24D .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3FI0VS24D .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3FI0VS24D .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3FI0VS24D .content-wrap .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #000000;
  font-size: 26px;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px;
}
.cid-v3FI0VS24D .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3FI0VS24D .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3FI0VS24D .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3FI0VS24D .mbr-section-title {
  color: #000000;
}
.cid-v3FI0VS24D .mbr-text {
  color: #232323;
}
.cid-v3FI0VS24D .list {
  color: #000000;
}
.cid-v3FI0VS24D .mbr-desc {
  color: #000000;
}
.cid-v3FI0VS24D .mbr-copy {
  color: #000000;
}
.cid-v3FI0VS24D .mbr-desc,
.cid-v3FI0VS24D .social-wrapper {
  text-align: center;
}
.cid-v3FI0VS24D .mbr-copy,
.cid-v3FI0VS24D .mbr-section-btn-main {
  text-align: center;
  color: #232323;
}
.cid-v3FI0VS24D .mbr-section-title,
.cid-v3FI0VS24D .mbr-section-btn {
  color: #2f7682;
}
.cid-v3FI0VS24D .list,
.cid-v3FI0VS24D .item-wrap {
  color: #a34f8b;
}
.cid-v3Rw5Dj6vf {
  background-image: url("../../../assets/images/bestaetigung.webp");
}
.cid-v3Rw5Dj6vf .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3Rw5Dj6vf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3Rw5Dj6vf .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 80%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v3Rw5Dj6vf .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
    width: 100%;
  }
}
.cid-v3Rw5Dj6vf .text-wrapper .mbr-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-v3Rw5Dj6vf .text-wrapper .mbr-text {
    margin-bottom: 14px;
  }
}
.cid-v3Rw5Dj6vf .mbr-section-title {
  color: #0f0f0f;
}
.cid-v3Rw5Dj6vf .mbr-text {
  color: #fffbf8;
}
.cid-v3Rw5Dj6vf .mbr-section-title,
.cid-v3Rw5Dj6vf .mbr-section-btn,
.cid-v3Rw5Dj6vf .title-wrapper {
  color: #ffffff;
}
.cid-v3Rw5IpYbC {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #f5f8f9;
}
.cid-v3Rw5IpYbC .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3Rw5IpYbC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3Rw5IpYbC .row {
  justify-content: space-between;
}
.cid-v3Rw5IpYbC .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3Rw5IpYbC .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3Rw5IpYbC .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3Rw5IpYbC .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3Rw5IpYbC .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3Rw5IpYbC .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3Rw5IpYbC .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3Rw5IpYbC .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3Rw5IpYbC .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3Rw5IpYbC .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3Rw5IpYbC .list-wrapper .list .item-wrap:hover,
.cid-v3Rw5IpYbC .list-wrapper .list .item-wrap:focus {
  color: #6ea4a6;
}
.cid-v3Rw5IpYbC .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3Rw5IpYbC .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3Rw5IpYbC .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3Rw5IpYbC .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3Rw5IpYbC .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3Rw5IpYbC .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3Rw5IpYbC .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3Rw5IpYbC .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3Rw5IpYbC .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3Rw5IpYbC .content-wrap .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #000000;
  font-size: 26px;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px;
}
.cid-v3Rw5IpYbC .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3Rw5IpYbC .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3Rw5IpYbC .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3Rw5IpYbC .mbr-section-title {
  color: #000000;
}
.cid-v3Rw5IpYbC .mbr-text {
  color: #232323;
}
.cid-v3Rw5IpYbC .list {
  color: #000000;
}
.cid-v3Rw5IpYbC .mbr-desc {
  color: #000000;
}
.cid-v3Rw5IpYbC .mbr-copy {
  color: #000000;
}
.cid-v3Rw5IpYbC .mbr-desc,
.cid-v3Rw5IpYbC .social-wrapper {
  text-align: center;
}
.cid-v3Rw5IpYbC .mbr-copy,
.cid-v3Rw5IpYbC .mbr-section-btn-main {
  text-align: center;
  color: #232323;
}
.cid-v3Rw5IpYbC .mbr-section-title,
.cid-v3Rw5IpYbC .mbr-section-btn {
  color: #2f7682;
}
.cid-v3Rw5IpYbC .list,
.cid-v3Rw5IpYbC .item-wrap {
  color: #a34f8b;
}
