body {
  font-family: Sofia Sans;
}
.display-1 {
  font-family: 'Courgette', handwriting;
  font-size: 5rem;
  line-height: 150%;
}
.display-1 > .mbr-iconfont {
  font-size: 6.25rem;
}
.display-2 {
  font-family: 'Courgette', handwriting;
  font-size: 3rem;
  line-height: 100%;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Courgette', handwriting;
  font-size: 1.2rem;
  line-height: 24px;
}
.display-4 > .mbr-iconfont {
  font-size: 1.5rem;
}
.display-5 {
  font-family: 'Courgette', handwriting;
  font-size: 1.8rem;
  line-height: 150%;
}
.display-5 > .mbr-iconfont {
  font-size: 2.25rem;
}
.display-7 {
  font-family: 'Courgette', handwriting;
  font-size: 1rem;
  line-height: 150%;
}
.display-7 > .mbr-iconfont {
  font-size: 1.25rem;
}
/* ---- 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: 4rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.5rem;
    font-size: calc( 2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.4rem + (5 - 2.4) * ((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.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))));
  }
  .display-5 {
    font-size: 1.44rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 12px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 12px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 12px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 12px;
}
.bg-primary {
  background-color: #fd1f03 !important;
}
.bg-success {
  background-color: #ffcd9f !important;
}
.bg-info {
  background-color: #b4dcfa !important;
}
.bg-warning {
  background-color: #e3b4fa !important;
}
.bg-danger {
  background-color: #fd282d !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #fd1f03 !important;
  border-color: #fd1f03 !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: #a81401 !important;
  border-color: #a81401 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #a81401 !important;
  border-color: #a81401 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6928 !important;
  border-color: #ff6928 !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: #d03f00 !important;
  border-color: #d03f00 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #d03f00 !important;
  border-color: #d03f00 !important;
}
.btn-info,
.btn-info:active {
  background-color: #b4dcfa !important;
  border-color: #b4dcfa !important;
  color: #0b62a4 !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: #63b6f5 !important;
  border-color: #63b6f5 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #0b62a4 !important;
  background-color: #63b6f5 !important;
  border-color: #63b6f5 !important;
}
.btn-success,
.btn-success:active {
  background-color: #ffcd9f !important;
  border-color: #ffcd9f !important;
  color: #9f4c00 !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: #ffa048 !important;
  border-color: #ffa048 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #9f4c00 !important;
  background-color: #ffa048 !important;
  border-color: #ffa048 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #e3b4fa !important;
  border-color: #e3b4fa !important;
  color: #ffffff !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: #ffffff !important;
  background-color: #c563f5 !important;
  border-color: #c563f5 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #c563f5 !important;
  border-color: #c563f5 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #fd282d !important;
  border-color: #fd282d !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: #cc0207 !important;
  border-color: #cc0207 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #cc0207 !important;
  border-color: #cc0207 !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: #fd1f03;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #a81401 !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: #fd1f03 !important;
  border-color: #fd1f03 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6928;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #d03f00 !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: #ff6928 !important;
  border-color: #ff6928 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #b4dcfa;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #63b6f5 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #0b62a4 !important;
  background-color: #b4dcfa !important;
  border-color: #b4dcfa !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffcd9f;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #ffa048 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #9f4c00 !important;
  background-color: #ffcd9f !important;
  border-color: #ffcd9f !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #e3b4fa;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #c563f5 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #e3b4fa !important;
  border-color: #e3b4fa !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fd282d;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #cc0207 !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: #fd282d !important;
  border-color: #fd282d !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: #fd1f03 !important;
}
.text-secondary {
  color: #ff6928 !important;
}
.text-success {
  color: #ffcd9f !important;
}
.text-info {
  color: #b4dcfa !important;
}
.text-warning {
  color: #e3b4fa !important;
}
.text-danger {
  color: #fd282d !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #991201 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #c13a00 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #ff9839 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #54aff4 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #bf54f4 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #bd0206 !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: #fd1f03;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #b4dcfa;
}
.alert-warning {
  background-color: #e3b4fa;
}
.alert-danger {
  background-color: #fd282d;
}
.mbr-gallery-filter li.active .btn {
  background-color: #fd1f03;
  border-color: #fd1f03;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #fd1f03;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffd3cd;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.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: #fff2f2;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Courgette', handwriting;
  font-size: 1.2rem;
  line-height: 24px;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.5rem;
}
.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: #fd1f03 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Courgette', handwriting;
  font-size: 1.2rem;
  line-height: 24px;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.5rem;
}
blockquote {
  border-color: #fd1f03;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #fd1f03;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #fd1f03;
}
.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: #fd1f03;
  border-bottom-color: #fd1f03;
}
.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: #fd1f03 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ff6928 !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='%23fd1f03' %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;
}
.mbr-section-btn .btn,
.mbr-section-btn-main .btn {
  box-shadow: none;
  padding: 22px;
}
@media (max-width: 768px) {
  .mbr-section-btn .btn,
  .mbr-section-btn-main .btn {
    padding: 10px 16px;
  }
}
.mbr-section-btn .btn:hover,
.mbr-section-btn-main .btn:hover,
.mbr-section-btn .btn:focus,
.mbr-section-btn-main .btn:focus {
  box-shadow: none;
}
.mbr-section-btn .btn-primary-outline,
.mbr-section-btn-main .btn-primary-outline,
.mbr-section-btn .btn-primary,
.mbr-section-btn-main .btn-primary {
  border: 2px solid #fd1f03 !important;
}
.mbr-section-btn .btn-primary-outline:hover,
.mbr-section-btn-main .btn-primary-outline:hover,
.mbr-section-btn .btn-primary:hover,
.mbr-section-btn-main .btn-primary:hover,
.mbr-section-btn .btn-primary-outline:focus,
.mbr-section-btn-main .btn-primary-outline:focus,
.mbr-section-btn .btn-primary:focus,
.mbr-section-btn-main .btn-primary:focus {
  border: 2px solid #fd1f03 !important;
}
.mbr-section-btn .btn-secondary-outline,
.mbr-section-btn-main .btn-secondary-outline,
.mbr-section-btn .btn-secondary,
.mbr-section-btn-main .btn-secondary {
  border: 2px solid #ff6928 !important;
}
.mbr-section-btn .btn-secondary-outline:hover,
.mbr-section-btn-main .btn-secondary-outline:hover,
.mbr-section-btn .btn-secondary:hover,
.mbr-section-btn-main .btn-secondary:hover,
.mbr-section-btn .btn-secondary-outline:focus,
.mbr-section-btn-main .btn-secondary-outline:focus,
.mbr-section-btn .btn-secondary:focus,
.mbr-section-btn-main .btn-secondary:focus {
  border: 2px solid #ff6928 !important;
}
.mbr-section-btn .btn-success-outline,
.mbr-section-btn-main .btn-success-outline,
.mbr-section-btn .btn-success,
.mbr-section-btn-main .btn-success {
  border: 2px solid #ffcd9f !important;
}
.mbr-section-btn .btn-success-outline:hover,
.mbr-section-btn-main .btn-success-outline:hover,
.mbr-section-btn .btn-success:hover,
.mbr-section-btn-main .btn-success:hover,
.mbr-section-btn .btn-success-outline:focus,
.mbr-section-btn-main .btn-success-outline:focus,
.mbr-section-btn .btn-success:focus,
.mbr-section-btn-main .btn-success:focus {
  border: 2px solid #ffcd9f !important;
}
.mbr-section-btn .btn-info-outline,
.mbr-section-btn-main .btn-info-outline,
.mbr-section-btn .btn-info,
.mbr-section-btn-main .btn-info {
  border: 2px solid #b4dcfa !important;
}
.mbr-section-btn .btn-info-outline:hover,
.mbr-section-btn-main .btn-info-outline:hover,
.mbr-section-btn .btn-info:hover,
.mbr-section-btn-main .btn-info:hover,
.mbr-section-btn .btn-info-outline:focus,
.mbr-section-btn-main .btn-info-outline:focus,
.mbr-section-btn .btn-info:focus,
.mbr-section-btn-main .btn-info:focus {
  border: 2px solid #b4dcfa !important;
}
.mbr-section-btn .btn-warning-outline,
.mbr-section-btn-main .btn-warning-outline,
.mbr-section-btn .btn-warning,
.mbr-section-btn-main .btn-warning {
  border: 2px solid #e3b4fa !important;
}
.mbr-section-btn .btn-warning-outline:hover,
.mbr-section-btn-main .btn-warning-outline:hover,
.mbr-section-btn .btn-warning:hover,
.mbr-section-btn-main .btn-warning:hover,
.mbr-section-btn .btn-warning-outline:focus,
.mbr-section-btn-main .btn-warning-outline:focus,
.mbr-section-btn .btn-warning:focus,
.mbr-section-btn-main .btn-warning:focus {
  border: 2px solid #e3b4fa !important;
}
.mbr-section-btn .btn-danger-outline,
.mbr-section-btn-main .btn-danger-outline,
.mbr-section-btn .btn-danger,
.mbr-section-btn-main .btn-danger {
  border: 2px solid #fd282d !important;
}
.mbr-section-btn .btn-danger-outline:hover,
.mbr-section-btn-main .btn-danger-outline:hover,
.mbr-section-btn .btn-danger:hover,
.mbr-section-btn-main .btn-danger:hover,
.mbr-section-btn .btn-danger-outline:focus,
.mbr-section-btn-main .btn-danger-outline:focus,
.mbr-section-btn .btn-danger:focus,
.mbr-section-btn-main .btn-danger:focus {
  border: 2px solid #fd282d !important;
}
.mbr-section-btn .btn-black-outline,
.mbr-section-btn-main .btn-black-outline,
.mbr-section-btn .btn-black,
.mbr-section-btn-main .btn-black {
  border: 2px solid #000000 !important;
}
.mbr-section-btn .btn-black-outline:hover,
.mbr-section-btn-main .btn-black-outline:hover,
.mbr-section-btn .btn-black:hover,
.mbr-section-btn-main .btn-black:hover,
.mbr-section-btn .btn-black-outline:focus,
.mbr-section-btn-main .btn-black-outline:focus,
.mbr-section-btn .btn-black:focus,
.mbr-section-btn-main .btn-black:focus {
  border: 2px solid #000000 !important;
}
.mbr-section-btn .btn-white-outline,
.mbr-section-btn-main .btn-white-outline,
.mbr-section-btn .btn-white,
.mbr-section-btn-main .btn-white {
  border: 2px solid #ffffff !important;
}
.mbr-section-btn .btn-white-outline:hover,
.mbr-section-btn-main .btn-white-outline:hover,
.mbr-section-btn .btn-white:hover,
.mbr-section-btn-main .btn-white:hover,
.mbr-section-btn .btn-white-outline:focus,
.mbr-section-btn-main .btn-white-outline:focus,
.mbr-section-btn .btn-white:focus,
.mbr-section-btn-main .btn-white:focus {
  border: 2px solid #ffffff !important;
}
.cid-ui04V3Lo7r .navbar-dropdown {
  position: relative !important;
}
.cid-ui04V3Lo7r .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-ui04V3Lo7r .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ui04V3Lo7r .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ui04V3Lo7r .dropdown-item:hover,
.cid-ui04V3Lo7r .dropdown-item:focus {
  background: #fd1f03 !important;
  color: white !important;
}
.cid-ui04V3Lo7r .dropdown-item:hover span {
  color: white;
}
.cid-ui04V3Lo7r .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ui04V3Lo7r .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ui04V3Lo7r .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 2em !important;
}
@media (max-width: 991px) {
  .cid-ui04V3Lo7r .nav-dropdown .link {
    padding: 0 !important;
    margin: 6px 0 !important;
  }
}
.cid-ui04V3Lo7r .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ui04V3Lo7r .nav-link {
  position: relative;
}
@media (max-width: 991px) {
  .cid-ui04V3Lo7r .nav-link {
    display: flex !important;
    justify-content: flex-start !important;
    width: 100% !important;
  }
}
.cid-ui04V3Lo7r .nav-link:before {
  content: '' !important;
  width: 6px !important;
  height: 6px !important;
  left: 0 !important;
  margin-right: 9px !important;
  position: relative !important;
  border: 1px solid currentColor !important;
  border-radius: 100% !important;
  display: inline-block !important;
  vertical-align: middle !important;
}
.cid-ui04V3Lo7r .nav-link:hover:before {
  background-color: currentColor !important;
}
.cid-ui04V3Lo7r .container {
  display: flex;
  margin: auto;
}
.cid-ui04V3Lo7r .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ui04V3Lo7r .navbar-nav {
  min-height: 70px;
  align-items: flex-start;
  flex-grow: 1;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-ui04V3Lo7r .navbar-nav {
    align-items: center;
  }
}
.cid-ui04V3Lo7r .dropdown-menu,
.cid-ui04V3Lo7r .navbar.opened {
  background: #fffdf7 !important;
}
.cid-ui04V3Lo7r .nav-item:focus,
.cid-ui04V3Lo7r .nav-link:focus {
  outline: none;
}
.cid-ui04V3Lo7r .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
  border-bottom: 1px solid #7f8678;
}
.cid-ui04V3Lo7r .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ui04V3Lo7r .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ui04V3Lo7r .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ui04V3Lo7r .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ui04V3Lo7r .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ui04V3Lo7r .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid #7f8678;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fffdf7;
  padding: 0 !important;
  box-shadow: none;
}
.cid-ui04V3Lo7r .navbar.opened {
  transition: all 0.3s;
}
.cid-ui04V3Lo7r .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ui04V3Lo7r .navbar .navbar-logo img {
  width: auto;
}
.cid-ui04V3Lo7r .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-ui04V3Lo7r .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ui04V3Lo7r .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ui04V3Lo7r .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ui04V3Lo7r .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ui04V3Lo7r .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-ui04V3Lo7r .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ui04V3Lo7r .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ui04V3Lo7r .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ui04V3Lo7r .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ui04V3Lo7r .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ui04V3Lo7r .navbar.navbar-short {
  min-height: 60px;
}
.cid-ui04V3Lo7r .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ui04V3Lo7r .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ui04V3Lo7r .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 38px 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-ui04V3Lo7r .navbar-brand {
    border-right: 1px solid #7f8678;
  }
}
.cid-ui04V3Lo7r .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ui04V3Lo7r .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ui04V3Lo7r .navbar.navbar-short .navbar-brand {
  padding: 10px 38px 10px 0;
}
.cid-ui04V3Lo7r .dropdown-item.active,
.cid-ui04V3Lo7r .dropdown-item:active {
  background-color: transparent;
}
.cid-ui04V3Lo7r .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ui04V3Lo7r .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ui04V3Lo7r .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ui04V3Lo7r .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fffdf7;
}
.cid-ui04V3Lo7r .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ui04V3Lo7r .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ui04V3Lo7r ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ui04V3Lo7r .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ui04V3Lo7r button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ui04V3Lo7r button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 40px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-ui04V3Lo7r button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ui04V3Lo7r button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ui04V3Lo7r button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ui04V3Lo7r button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ui04V3Lo7r nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ui04V3Lo7r nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ui04V3Lo7r nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ui04V3Lo7r nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ui04V3Lo7r .navbar-dropdown {
  padding: 0 1rem;
}
.cid-ui04V3Lo7r a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ui04V3Lo7r .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-ui04V3Lo7r .navbar {
    height: 70px;
  }
  .cid-ui04V3Lo7r .navbar.opened {
    height: auto;
  }
  .cid-ui04V3Lo7r .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ui04V3Lo7r .container-fluid {
  padding: 0 33px;
}
@media (min-width: 992px) {
  .cid-ui04V3Lo7r .container-fluid {
    padding: 0 40px;
  }
}
.cid-ui04V3Lo7r .layout-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-ui04V3Lo7r .layout-container {
    flex-wrap: nowrap;
  }
}
@media (max-width: 991px) {
  .cid-ui04V3Lo7r .nav-item {
    width: 100%;
    text-align: left;
    display: flex;
    flex-wrap: wrap;
  }
  .cid-ui04V3Lo7r .nav-item .dropdown-toggle::after {
    margin: 0 0 0 auto !important;
  }
  .cid-ui04V3Lo7r .nav-item .dropdown-menu {
    width: 100%;
    border: none;
    box-shadow: none;
    border-radius: 0 !important;
  }
  .cid-ui04V3Lo7r .nav-item .dropdown-menu .dropdown-item {
    display: flex;
    justify-content: flex-start;
    padding: 6px 0 !important;
  }
  .cid-ui04V3Lo7r .nav-item .dropdown-menu .dropdown-toggle {
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center !important;
    padding: 6px 0 !important;
  }
  .cid-ui04V3Lo7r .nav-item .dropdown-menu .dropdown-toggle::after {
    position: static !important;
  }
}
.cid-ui04V3Lo7r .mbr-section-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  min-width: min-content;
}
@media (min-width: 992px) {
  .cid-ui04V3Lo7r .mbr-section-btn {
    border-left: 1px solid #7f8678;
    min-height: 100%;
  }
}
.cid-ui04V3Lo7r .mbr-section-btn .btn {
  margin: 0;
  min-height: 70px;
  padding: 0 17px 0 17px;
  border-radius: 0;
  word-break: normal;
  flex-grow: 1;
}
@media (max-width: 991px) {
  .cid-ui04V3Lo7r .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-ui04u9QwH4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #cdf9de;
}
.cid-ui04u9QwH4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ui04u9QwH4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ui04u9QwH4 .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-ui04u9QwH4 .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-ui04u9QwH4 .container-fluid {
    padding: 0 12px;
  }
}
@media (max-width: 992px) {
  .cid-ui04u9QwH4 .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-ui04u9QwH4 .container {
    padding: 0 12px;
  }
}
.cid-ui04u9QwH4 .title-wrapper .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-ui04u9QwH4 .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-ui04u9QwH4 .title-wrapper .mbr-section-title span {
  padding: 6px 12px;
  background-color: #ffcd9f;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-ui04u9QwH4 .title-wrapper .mbr-section-title span {
    padding: 0 10px;
    border-radius: 8px;
  }
}
.cid-ui04u9QwH4 .title-wrapper .mbr-text {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-ui04u9QwH4 .title-wrapper .mbr-text {
    margin-bottom: 24px;
  }
}
@media (max-width: 992px) {
  .cid-ui04u9QwH4 .title-wrapper .mbr-section-btn {
    margin-bottom: 40px;
  }
}
.cid-ui04u9QwH4 .title-wrapper .tags-wrapper {
  margin-bottom: 24px;
}
.cid-ui04u9QwH4 .title-wrapper .tags-wrapper .tags-wrap {
  display: inline-block;
}
.cid-ui04u9QwH4 .title-wrapper .tags-wrapper .tags-wrap .tag-item {
  display: inline-flex;
  align-items: center;
  margin-right: 40px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.cid-ui04u9QwH4 .title-wrapper .tags-wrapper .tags-wrap .tag-item .mbr-iconfont {
  font-size: 44px;
  margin-right: 8px;
  color: #222222;
}
.cid-ui04u9QwH4 .title-wrapper .tags-wrapper .tags-wrap .tag-item .mbr-tag {
  margin-bottom: 0;
}
.cid-ui04u9QwH4 .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.cid-ui04u9QwH4 .image-wrapper img {
  width: 420px;
  height: 420px;
  border-radius: 100%;
  border: 3px solid #db0309;
  box-shadow: 4px 4px #db0309;
  background-color: #db0309;
  object-fit: cover;
}
@media (max-width: 1300px) {
  .cid-ui04u9QwH4 .image-wrapper img {
    width: 350px;
    height: 350px;
  }
}
@media (max-width: 1200px) {
  .cid-ui04u9QwH4 .image-wrapper img {
    width: 310px;
    height: 310px;
  }
}
@media (max-width: 768px) {
  .cid-ui04u9QwH4 .image-wrapper img {
    width: 280px;
    height: 280px;
  }
}
.cid-ui04u9QwH4 .mbr-section-title {
  color: #222222;
}
.cid-ui04u9QwH4 .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-ui04u9QwH4 .mbr-tag {
  color: #222222;
}
.cid-ui04u9QwH4 .mbr-section-title,
.cid-ui04u9QwH4 .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-umf4lJ9jhD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-umf4lJ9jhD .mbr-fallback-image.disabled {
  display: none;
}
.cid-umf4lJ9jhD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-umf4lJ9jhD .container {
    padding: 0 30px;
  }
}
.cid-umf4lJ9jhD .row {
  justify-content: center;
}
.cid-umf4lJ9jhD .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-umf4lJ9jhD .content-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-umf4lJ9jhD .content-wrapper .mbr-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-umf4lJ9jhD .content-wrapper .mbr-text {
    margin-bottom: 40px;
  }
}
.cid-umf4lJ9jhD .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  color: #144031;
}
.cid-umf4lJ9jhD .list .item-wrap {
  margin-bottom: 20px;
  padding-left: 30px;
  position: relative;
}
.cid-umf4lJ9jhD .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-umf4lJ9jhD .list .item-wrap::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  width: 9px;
  height: 9px;
  background-color: #000000;
}
.cid-umf4lJ9jhD .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-umf4lJ9jhD .mbr-text {
  color: #144031;
}
.cid-ui09LjWLgN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #cdf9de;
}
.cid-ui09LjWLgN .mbr-fallback-image.disabled {
  display: none;
}
.cid-ui09LjWLgN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ui09LjWLgN .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-ui09LjWLgN .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-ui09LjWLgN .container-fluid {
    padding: 0 12px;
  }
}
@media (max-width: 992px) {
  .cid-ui09LjWLgN .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-ui09LjWLgN .container {
    padding: 0 12px;
  }
}
.cid-ui09LjWLgN .row {
  justify-content: center;
}
.cid-ui09LjWLgN .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-ui09LjWLgN .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
@media (max-width: 992px) {
  .cid-ui09LjWLgN .card {
    margin-bottom: 32px;
  }
}
.cid-ui09LjWLgN .card .card-wrapper .icon-wrapper {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-ui09LjWLgN .card .card-wrapper .icon-wrapper {
    text-align: center;
  }
}
.cid-ui09LjWLgN .card .card-wrapper .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  color: #000000;
}
.cid-ui09LjWLgN .card .card-wrapper .icon-wrapper .icon_1 {
  background-color: #e3b4fa;
}
.cid-ui09LjWLgN .card .card-wrapper .icon-wrapper .icon_2 {
  background-color: #ffcd9f;
}
.cid-ui09LjWLgN .card .card-wrapper .icon-wrapper .icon_3 {
  background-color: #b4dcfa;
}
.cid-ui09LjWLgN .card .card-wrapper .mbr-card-title {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-ui09LjWLgN .card .card-wrapper .mbr-card-title {
    text-align: center;
  }
}
.cid-ui09LjWLgN .card .card-wrapper .mbr-text {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-ui09LjWLgN .card .card-wrapper .mbr-text {
    text-align: center;
  }
}
.cid-ui09LjWLgN .mbr-section-title {
  color: #222222;
  text-align: center;
}
.cid-ui09LjWLgN .mbr-card-title {
  color: #222222;
}
.cid-ui09LjWLgN .mbr-text {
  color: #222222;
}
.cid-ui09LjWLgN .mbr-card-title,
.cid-ui09LjWLgN .icon-wrapper {
  text-align: center;
  color: #000000;
}
.cid-ui04Bfzuqt {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ui04Bfzuqt .mbr-fallback-image.disabled {
  display: none;
}
.cid-ui04Bfzuqt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-ui04Bfzuqt .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-ui04Bfzuqt .container {
    padding: 0 12px;
  }
}
.cid-ui04Bfzuqt .row {
  justify-content: center;
}
.cid-ui04Bfzuqt .image-wrapper {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-ui04Bfzuqt .image-wrapper {
    margin-bottom: 24px;
    height: auto;
  }
}
.cid-ui04Bfzuqt .image-wrapper img {
  height: 270px;
  width: 270px;
  margin: 0 auto;
  border-radius: 100%;
  border: 3px solid #cdf9de;
  box-shadow: 4px 4px #cdf9de;
  background-color: #cdf9de;
  object-fit: cover;
}
.cid-ui04Bfzuqt .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ui04Bfzuqt .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-ui0lYromI9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #cdf9de;
}
.cid-ui0lYromI9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ui0lYromI9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ui0lYromI9 .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-ui0lYromI9 .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-ui0lYromI9 .container-fluid {
    padding: 0 12px;
  }
}
@media (max-width: 992px) {
  .cid-ui0lYromI9 .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-ui0lYromI9 .container {
    padding: 0 12px;
  }
}
.cid-ui0lYromI9 .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-ui0lYromI9 .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-ui0lYromI9 .card {
  margin-bottom: 32px;
}
.cid-ui0lYromI9 .card .card-wrapper {
  padding: 32px;
  border: 3px solid #ffffff;
  box-shadow: 4px 4px #ffffff;
  border-radius: 32px;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-ui0lYromI9 .card .card-wrapper {
    padding: 20px;
    border-radius: 24px;
  }
}
.cid-ui0lYromI9 .card .card-wrapper .mbr-card-title {
  margin-bottom: 16px;
}
.cid-ui0lYromI9 .card .card-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ui0lYromI9 .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-ui0lYromI9 .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-ui0lYromI9 .mbr-card-title {
  color: #222222;
}
.cid-ui0lYromI9 .mbr-card-title,
.cid-ui0lYromI9 .title-wrap {
  text-align: center;
  color: #000000;
}
.cid-tFclRoOxlD {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-tFclRoOxlD .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFclRoOxlD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFclRoOxlD .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-tFclRoOxlD .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-tFclRoOxlD .container-fluid {
    padding: 0 12px;
  }
}
@media (max-width: 992px) {
  .cid-tFclRoOxlD .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-tFclRoOxlD .container {
    padding: 0 12px;
  }
}
.cid-tFclRoOxlD .row {
  justify-content: center;
}
.cid-tFclRoOxlD .card-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px;
  background-color: #cdf9de;
  border-radius: 50px;
}
@media (max-width: 992px) {
  .cid-tFclRoOxlD .card-wrapper {
    display: block;
    padding: 24px;
    border-radius: 32px;
  }
}
@media (max-width: 992px) {
  .cid-tFclRoOxlD .card-wrapper .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-tFclRoOxlD .card-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-tFclRoOxlD .card-wrapper .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tFclRoOxlD .card-wrapper .title-wrapper .mbr-text span {
  background-color: #e3b4fa;
  padding: 2px 6px;
  border-radius: 8px;
}
.cid-tFclRoOxlD .card-wrapper .mbr-section-btn {
  height: 100%;
}
.cid-tFclRoOxlD .card-wrapper .mbr-section-btn .btn {
  min-width: 200px;
}
.cid-tFclRoOxlD .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tFclRoOxlD .mbr-text {
  color: #222222;
}
.cid-tFclRoOxlD .mbr-text,
.cid-tFclRoOxlD .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-tFckd7vcf3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #cdf9de;
}
.cid-tFckd7vcf3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFckd7vcf3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFckd7vcf3 .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-tFckd7vcf3 .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-tFckd7vcf3 .container-fluid {
    padding: 0 12px;
  }
}
@media (max-width: 992px) {
  .cid-tFckd7vcf3 .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-tFckd7vcf3 .container {
    padding: 0 12px;
  }
}
.cid-tFckd7vcf3 .item {
  margin-bottom: 32px;
}
.cid-tFckd7vcf3 .item a {
  display: block;
}
.cid-tFckd7vcf3 .item a:hover .item-wrapper .item-img img {
  transform: scale(1.05);
}
.cid-tFckd7vcf3 .item a .item-wrapper .item-img {
  overflow: hidden;
  border-radius: 32px;
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-tFckd7vcf3 .item a .item-wrapper .item-img {
    border-radius: 24px;
  }
}
.cid-tFckd7vcf3 .item a .item-wrapper .item-img img {
  height: 350px;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-tFckd7vcf3 .item a .item-wrapper .item-img img {
    height: 300px;
  }
}
.cid-tFckd7vcf3 .item a .item-wrapper .item-content .item-title {
  margin-bottom: 0;
}
.cid-tFckd7vcf3 .mbr-section-btn {
  text-align: center;
}
.cid-tFckd7vcf3 .item-content {
  color: #222222;
}
.cid-ui0sMzG1ew {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-ui0sMzG1ew .mbr-fallback-image.disabled {
  display: none;
}
.cid-ui0sMzG1ew .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ui0sMzG1ew .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-ui0sMzG1ew .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-ui0sMzG1ew .container {
    padding: 0 16px;
  }
}
.cid-ui0sMzG1ew .card {
  justify-content: center;
}
.cid-ui0sMzG1ew .title-wrapper .mbr-section-title {
  display: inline-flex;
  margin-bottom: 0;
  padding: 18px 24px;
  border-radius: 16px !important;
  box-shadow: 6px 8px 0 0 #000000;
  background-color: #cdf9de;
  transform: rotate(-4deg);
}
@media (max-width: 992px) {
  .cid-ui0sMzG1ew .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-ui0sMzG1ew .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
.cid-ui0sMzG1ew .text-wrapper .mbr-desc {
  margin-top: 24px;
  margin-bottom: 0;
}
.cid-ui0sMzG1ew .mbr-section-title {
  color: #000000;
}
.cid-ui0sMzG1ew .mbr-text {
  color: #000000;
}
.cid-ui0sMzG1ew .mbr-desc {
  color: #000000;
}
.cid-ui0sMzG1ew .mbr-text,
.cid-ui0sMzG1ew .mbr-section-btn {
  color: #000000;
}
.cid-ui0sMzG1ew .mbr-section-title,
.cid-ui0sMzG1ew .title-wrapper {
  text-align: center;
}
.cid-ui0tM6OYt0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #cdf9de;
}
.cid-ui0tM6OYt0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ui0tM6OYt0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-ui0tM6OYt0 .container {
    padding: 0 16px;
  }
}
.cid-ui0tM6OYt0 .row {
  position: relative;
  z-index: 1;
}
.cid-ui0tM6OYt0 .card {
  justify-content: flex-end;
}
.cid-ui0tM6OYt0 .card-wrapper {
  margin-right: 64px;
}
@media (max-width: 1440px) {
  .cid-ui0tM6OYt0 .card-wrapper {
    margin-right: 0;
  }
}
@media (max-width: 992px) {
  .cid-ui0tM6OYt0 .card-wrapper {
    margin-bottom: 32px;
  }
}
.cid-ui0tM6OYt0 .card-wrapper .image-wrapper {
  position: relative;
  margin-bottom: -8rem;
}
.cid-ui0tM6OYt0 .card-wrapper .image-wrapper img {
  width: 520px;
  height: 520px;
  object-fit: cover;
  border-radius: 100% !important;
}
@media (max-width: 1200px) {
  .cid-ui0tM6OYt0 .card-wrapper .image-wrapper img {
    width: 420px;
    height: 420px;
  }
}
@media (max-width: 768px) {
  .cid-ui0tM6OYt0 .card-wrapper .image-wrapper img {
    width: 260px;
    height: 260px;
  }
}
.cid-ui0tM6OYt0 .card-wrapper .image-wrapper .card-desc {
  position: absolute;
  top: 55%;
  left: -1rem;
  display: inline-flex;
  margin-bottom: 0;
  padding: 6px 16px;
  border-radius: 4rem !important;
  box-shadow: 4px 6px 0 0 #000000;
  background-color: #c6f15c;
  transform: rotate(-4deg);
}
@media (max-width: 992px) {
  .cid-ui0tM6OYt0 .card-wrapper .image-wrapper .card-desc {
    left: .5rem;
  }
}
.cid-ui0tM6OYt0 .card-wrapper .card-wrap {
  background-color: #ffffff;
  box-shadow: 4px 6px 0 0 #000000;
  border-radius: 16px;
  padding: 175px 48px 36px;
  margin: 0 50px;
}
@media (max-width: 992px) {
  .cid-ui0tM6OYt0 .card-wrapper .card-wrap {
    margin: 0;
    padding: 150px 24px 24px;
  }
}
.cid-ui0tM6OYt0 .card-wrapper .card-wrap .card-text {
  margin-bottom: 16px;
}
.cid-ui0tM6OYt0 .card-wrapper .card-wrap .person-wrap .card-name {
  margin-bottom: 0;
}
.cid-ui0tM6OYt0 .card-wrapper .card-wrap .person-wrap .card-role {
  margin-bottom: 0;
}
.cid-ui0tM6OYt0 .title-wrapper {
  margin-bottom: 96px;
}
@media (max-width: 992px) {
  .cid-ui0tM6OYt0 .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-ui0tM6OYt0 .title-wrapper .mbr-section-subtitle {
  margin-bottom: 32px;
}
.cid-ui0tM6OYt0 .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-ui0tM6OYt0 .text-wrapper {
  margin-left: 104px;
}
@media (max-width: 1440px) {
  .cid-ui0tM6OYt0 .text-wrapper {
    margin-left: 48px;
  }
}
@media (max-width: 992px) {
  .cid-ui0tM6OYt0 .text-wrapper {
    margin-left: 0;
  }
}
.cid-ui0tM6OYt0 .text-wrapper .mbr-text {
  margin-bottom: 32px;
}
.cid-ui0tM6OYt0 .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-ui0tM6OYt0 .mbr-section-subtitle {
  color: #000000;
  text-align: right;
}
.cid-ui0tM6OYt0 .mbr-text {
  color: #000000;
}
.cid-ui0tM6OYt0 .card-desc {
  color: #000000;
}
.cid-ui0tM6OYt0 .card-text {
  color: #000000;
}
.cid-ui0tM6OYt0 .card-name {
  color: #ffffff;
}
.cid-ui0tM6OYt0 .card-role {
  color: #ffffff;
}
.cid-ui0tM6OYt0 .mbr-text,
.cid-ui0tM6OYt0 .mbr-section-btn {
  color: #000000;
}
.cid-tFckXTcftl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tFckXTcftl .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFckXTcftl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFckXTcftl .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-tFckXTcftl .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-tFckXTcftl .container-fluid {
    padding: 0 12px;
  }
}
@media (max-width: 992px) {
  .cid-tFckXTcftl .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-tFckXTcftl .container {
    padding: 0 12px;
  }
}
.cid-tFckXTcftl .row {
  justify-content: center;
}
.cid-tFckXTcftl .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-tFckXTcftl .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-tFckXTcftl .panel-group .card {
  border-radius: 50px;
  border: 3px solid #000000;
  box-shadow: 4px 4px #000000;
  background-color: #cdf9de;
  padding: 60px;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-tFckXTcftl .panel-group .card {
    padding: 24px;
    border-radius: 24px;
  }
}
.cid-tFckXTcftl .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  margin-bottom: 0;
  padding: 0;
}
.cid-tFckXTcftl .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tFckXTcftl .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-tFckXTcftl .panel-group .card .card-header .panel-title .mbr-iconfont {
  font-size: 24px;
  color: #000000;
  transition: all 0.3s ease-in-out;
}
.cid-tFckXTcftl .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(-180deg);
}
.cid-tFckXTcftl .panel-group .card .panel-collapse .panel-body {
  padding-top: 24px;
}
@media (max-width: 992px) {
  .cid-tFckXTcftl .panel-group .card .panel-collapse .panel-body {
    padding-top: 16px;
  }
}
.cid-tFckXTcftl .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-tFckXTcftl .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tFckXTcftl .panel-title-edit {
  color: #222222;
}
.cid-tFckXTcftl .panel-text {
  color: #222222;
}
.cid-uhUzQ5ywZ0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #cdf9de;
}
.cid-uhUzQ5ywZ0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhUzQ5ywZ0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhUzQ5ywZ0 .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-uhUzQ5ywZ0 .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-uhUzQ5ywZ0 .container-fluid {
    padding: 0 12px;
  }
}
.cid-uhUzQ5ywZ0 .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uhUzQ5ywZ0 .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-uhUzQ5ywZ0 .container {
    padding: 0 12px;
  }
}
.cid-uhUzQ5ywZ0 .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uhUzQ5ywZ0 .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uhUzQ5ywZ0 .card-wrapper {
  padding: 40px;
  border-radius: 50px;
  border: 3px solid #222222;
  box-shadow: 4px 4px #222222;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uhUzQ5ywZ0 .card-wrapper {
    padding: 24px;
    border-radius: 24px;
  }
}
.cid-uhUzQ5ywZ0 .card-wrapper .card-wrap {
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uhUzQ5ywZ0 .card-wrapper .card-wrap {
    display: block;
  }
}
.cid-uhUzQ5ywZ0 .card-wrapper .card-wrap .icon-wrapper {
  margin-right: 40px;
}
@media (max-width: 992px) {
  .cid-uhUzQ5ywZ0 .card-wrapper .card-wrap .icon-wrapper {
    margin: 0 0 16px 0;
    text-align: center;
  }
}
.cid-uhUzQ5ywZ0 .card-wrapper .card-wrap .icon-wrapper .mbr-iconfont {
  font-size: 140px;
  color: #ff6928;
}
@media (max-width: 992px) {
  .cid-uhUzQ5ywZ0 .card-wrapper .card-wrap .icon-wrapper .mbr-iconfont {
    font-size: 100px;
  }
}
.cid-uhUzQ5ywZ0 .card-wrapper .card-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-uhUzQ5ywZ0 .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uhUzQ5ywZ0 .mbr-section-subtitle {
  color: #222222;
}
.cid-uhUzQ5ywZ0 .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uhUzQ5ywZ0 .list {
  color: #222222;
}
.cid-uhUBhUEzL4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uhUBhUEzL4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhUBhUEzL4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uhUBhUEzL4 .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-uhUBhUEzL4 .container {
    padding: 0 12px;
  }
}
.cid-uhUBhUEzL4 .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uhUBhUEzL4 .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uhUBhUEzL4 .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uhUBhUEzL4 .mbr-text {
  color: #222222;
}
.cid-uhUBhUEzL4 .mbr-text,
.cid-uhUBhUEzL4 .mbr-section-btn {
  color: #000000;
}
.cid-ui0tTQcEyN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #cdf9de;
}
.cid-ui0tTQcEyN .mbr-fallback-image.disabled {
  display: none;
}
.cid-ui0tTQcEyN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-ui0tTQcEyN .container {
    padding: 0 16px;
  }
}
.cid-ui0tTQcEyN .row {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-ui0tTQcEyN .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-ui0tTQcEyN .title-wrapper .subtitle-wrapper .mbr-section-subtitle {
  display: inline-flex;
  margin-bottom: 42px;
  padding: 14px 24px;
  border-radius: 8px !important;
  box-shadow: 4px 6px 0 0 #000000;
  background-color: #ffffff;
  transform: rotate(-4deg);
}
@media (max-width: 992px) {
  .cid-ui0tTQcEyN .title-wrapper .subtitle-wrapper .mbr-section-subtitle {
    margin-bottom: 32px;
  }
}
.cid-ui0tTQcEyN .title-wrapper .mbr-section-title {
  margin-bottom: 72px;
}
@media (max-width: 992px) {
  .cid-ui0tTQcEyN .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-ui0tTQcEyN .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ui0tTQcEyN .card-wrapper {
  background-color: #ffffff;
  box-shadow: 6px 8px 0 0 #000000;
  border-radius: 24px;
  padding: 80px;
}
.cid-ui0tTQcEyN .card-wrapper .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 72px;
}
@media (max-width: 992px) {
  .cid-ui0tTQcEyN .card-wrapper .image-wrapper {
    margin-bottom: 32px;
    display: block;
  }
}
.cid-ui0tTQcEyN .card-wrapper .image-wrapper img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  box-shadow: 4px 6px 0 0 #000000;
  transform: rotate(4deg);
}
.cid-ui0tTQcEyN .card-wrapper .card-text {
  margin-bottom: 24px;
}
.cid-ui0tTQcEyN .mbr-section-title {
  color: #ffffff;
}
.cid-ui0tTQcEyN .mbr-section-subtitle {
  color: #000000;
}
.cid-ui0tTQcEyN .mbr-text {
  color: #ffffff;
}
.cid-ui0tTQcEyN .card-text {
  text-align: center;
  color: #000000;
}
.cid-ui0tTQcEyN .mbr-section-subtitle,
.cid-ui0tTQcEyN .subtitle-wrapper {
  text-align: center;
}
.cid-ui0tTQcEyN .mbr-text,
.cid-ui0tTQcEyN .text-wrapper {
  color: #000000;
}
.cid-umfamUN09V {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #fffdf7;
}
.cid-umfamUN09V .google-map {
  height: 686px;
  position: relative;
  border: 1px solid #7F8678;
  border-left: none;
  border-right: none;
  margin-top: -1px;
}
.cid-umfamUN09V .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-umfamUN09V .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-umfamUN09V .google-map[data-state] {
  background: #e9e5dc;
}
.cid-umfamUN09V .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-umfamUN09V .container {
  padding: 0;
}
.cid-umfamUN09V .mbr-section-title {
  color: #000000;
}
.cid-umfamUN09V .mbr-section-subtitle {
  color: #3d3d3d;
}
.cid-tFckWS9pIk {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #cdf9de;
}
.cid-tFckWS9pIk .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFckWS9pIk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFckWS9pIk .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-tFckWS9pIk .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-tFckWS9pIk .container-fluid {
    padding: 0 12px;
  }
}
@media (max-width: 992px) {
  .cid-tFckWS9pIk .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-tFckWS9pIk .container {
    padding: 0 12px;
  }
}
.cid-tFckWS9pIk .title-wrapper a {
  display: block;
}
.cid-tFckWS9pIk .title-wrapper a .mbr-section-title {
  margin-bottom: 24px;
}
.cid-tFckWS9pIk .list-wrapper .mbr-list-title {
  margin-bottom: 12px;
}
.cid-tFckWS9pIk .list-wrapper .list,
.cid-tFckWS9pIk .list-wrapper .list_main {
  margin-bottom: 70px;
  padding: 0;
  list-style-type: none;
}
@media (max-width: 992px) {
  .cid-tFckWS9pIk .list-wrapper .list,
  .cid-tFckWS9pIk .list-wrapper .list_main {
    margin-bottom: 24px;
  }
}
.cid-tFckWS9pIk .list-wrapper .list .item-wrap,
.cid-tFckWS9pIk .list-wrapper .list_main .item-wrap {
  margin: 12px 0 6px 0;
  transition: all 0.3s ease-in-out;
}
.cid-tFckWS9pIk .list-wrapper .list .item-wrap:hover,
.cid-tFckWS9pIk .list-wrapper .list_main .item-wrap:hover,
.cid-tFckWS9pIk .list-wrapper .list .item-wrap:focus,
.cid-tFckWS9pIk .list-wrapper .list_main .item-wrap:focus {
  color: #ff6928;
  text-decoration: underline;
}
.cid-tFckWS9pIk .contacts-wrapper .list {
  margin-bottom: 40px;
  padding: 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  list-style-type: none;
}
@media (max-width: 992px) {
  .cid-tFckWS9pIk .contacts-wrapper .list {
    margin-bottom: 24px;
  }
}
.cid-tFckWS9pIk .contacts-wrapper .list .item-wrap {
  opacity: .7;
  margin: 0 32px 16px 0;
  transition: all 0.3s ease-in-out;
}
.cid-tFckWS9pIk .contacts-wrapper .list .item-wrap:hover,
.cid-tFckWS9pIk .contacts-wrapper .list .item-wrap:focus {
  color: #ff6928;
  text-decoration: underline;
}
.cid-tFckWS9pIk .social-row {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  height: 100px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-tFckWS9pIk .social-row {
    justify-content: center;
    margin-bottom: 24px;
  }
}
.cid-tFckWS9pIk .social-row .soc-item {
  margin-right: 24px;
}
.cid-tFckWS9pIk .social-row .soc-item a:hover .mbr-iconfont,
.cid-tFckWS9pIk .social-row .soc-item a:focus .mbr-iconfont {
  background-color: #ff6928;
}
.cid-tFckWS9pIk .social-row .soc-item a .mbr-iconfont {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 20px;
  background-color: #ffffff;
  color: #222222;
  transition: all 0.3s ease-in-out;
}
.cid-tFckWS9pIk .copyright {
  margin-bottom: 0;
  opacity: .7;
  color: #000000;
  text-align: center;
}
.cid-tFckWS9pIk .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-tFckWS9pIk .mbr-list-title {
  color: #000000;
  text-align: center;
}
.cid-tFckWS9pIk .list {
  color: #000000;
  text-align: left;
}
.cid-tFckWS9pIk .list_main {
  color: #000000;
  text-align: left;
}
.cid-ui0BXAJvPl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #cdf9de;
}
.cid-ui0BXAJvPl .mbr-fallback-image.disabled {
  display: none;
}
.cid-ui0BXAJvPl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ui0BXAJvPl .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-ui0BXAJvPl .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-ui0BXAJvPl .container-fluid {
    padding: 0 12px;
  }
}
@media (max-width: 992px) {
  .cid-ui0BXAJvPl .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-ui0BXAJvPl .container {
    padding: 0 12px;
  }
}
.cid-ui0BXAJvPl .title-wrapper .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-ui0BXAJvPl .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-ui0BXAJvPl .title-wrapper .mbr-section-title span {
  padding: 6px 12px;
  background-color: #ffcd9f;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-ui0BXAJvPl .title-wrapper .mbr-section-title span {
    padding: 0 10px;
    border-radius: 8px;
  }
}
.cid-ui0BXAJvPl .title-wrapper .mbr-text {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-ui0BXAJvPl .title-wrapper .mbr-text {
    margin-bottom: 24px;
  }
}
@media (max-width: 992px) {
  .cid-ui0BXAJvPl .title-wrapper .mbr-section-btn {
    margin-bottom: 40px;
  }
}
.cid-ui0BXAJvPl .title-wrapper .tags-wrapper {
  margin-bottom: 24px;
}
.cid-ui0BXAJvPl .title-wrapper .tags-wrapper .tags-wrap {
  display: inline-block;
}
.cid-ui0BXAJvPl .title-wrapper .tags-wrapper .tags-wrap .tag-item {
  display: inline-flex;
  align-items: center;
  margin-right: 40px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.cid-ui0BXAJvPl .title-wrapper .tags-wrapper .tags-wrap .tag-item .mbr-iconfont {
  font-size: 44px;
  margin-right: 8px;
  color: #222222;
}
.cid-ui0BXAJvPl .title-wrapper .tags-wrapper .tags-wrap .tag-item .mbr-tag {
  margin-bottom: 0;
}
.cid-ui0BXAJvPl .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.cid-ui0BXAJvPl .image-wrapper img {
  width: 420px;
  height: 420px;
  border-radius: 100%;
  border: 3px solid #db0309;
  box-shadow: 4px 4px #db0309;
  background-color: #db0309;
  object-fit: cover;
}
@media (max-width: 1300px) {
  .cid-ui0BXAJvPl .image-wrapper img {
    width: 350px;
    height: 350px;
  }
}
@media (max-width: 1200px) {
  .cid-ui0BXAJvPl .image-wrapper img {
    width: 310px;
    height: 310px;
  }
}
@media (max-width: 768px) {
  .cid-ui0BXAJvPl .image-wrapper img {
    width: 280px;
    height: 280px;
  }
}
.cid-ui0BXAJvPl .mbr-section-title {
  color: #222222;
}
.cid-ui0BXAJvPl .mbr-text {
  color: #000000;
}
.cid-ui0BXAJvPl .mbr-tag {
  color: #222222;
}
.cid-ui0BXAJvPl .mbr-section-title,
.cid-ui0BXAJvPl .mbr-section-btn {
  color: #000000;
}
.cid-uhULAOIIr9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uhULAOIIr9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhULAOIIr9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uhULAOIIr9 .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-uhULAOIIr9 .container {
    padding: 0 12px;
  }
}
.cid-uhULAOIIr9 .row {
  justify-content: center;
}
.cid-uhULAOIIr9 .card-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px;
  background-color: #cdf9de;
  border-radius: 50px;
}
@media (max-width: 992px) {
  .cid-uhULAOIIr9 .card-wrapper {
    display: block;
    padding: 24px;
    border-radius: 32px;
  }
}
@media (max-width: 992px) {
  .cid-uhULAOIIr9 .card-wrapper .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uhULAOIIr9 .card-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-uhULAOIIr9 .card-wrapper .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uhULAOIIr9 .card-wrapper .title-wrapper .mbr-text span {
  background-color: #e3b4fa;
  padding: 2px 6px;
  border-radius: 8px;
}
.cid-uhULAOIIr9 .card-wrapper .mbr-section-btn {
  height: 100%;
}
.cid-uhULAOIIr9 .card-wrapper .mbr-section-btn .btn {
  min-width: 200px;
}
.cid-uhULAOIIr9 .mbr-section-title {
  color: #222222;
}
.cid-uhULAOIIr9 .mbr-text {
  color: #222222;
}
.cid-umfhXyykCI {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #fffdf7;
}
.cid-umfhXyykCI .google-map {
  height: 686px;
  position: relative;
  border: 1px solid #7F8678;
  border-left: none;
  border-right: none;
  margin-top: -1px;
}
.cid-umfhXyykCI .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-umfhXyykCI .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-umfhXyykCI .google-map[data-state] {
  background: #e9e5dc;
}
.cid-umfhXyykCI .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-umfhXyykCI .container {
  padding: 0;
}
.cid-umfhXyykCI .mbr-section-title {
  color: #000000;
}
.cid-umfhXyykCI .mbr-section-subtitle {
  color: #3d3d3d;
}
.cid-uhULATymc6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #cdf9de;
}
.cid-uhULATymc6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhULATymc6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhULATymc6 .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-uhULATymc6 .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-uhULATymc6 .container-fluid {
    padding: 0 12px;
  }
}
@media (max-width: 992px) {
  .cid-uhULATymc6 .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-uhULATymc6 .container {
    padding: 0 12px;
  }
}
.cid-uhULATymc6 .title-wrapper a {
  display: block;
}
.cid-uhULATymc6 .title-wrapper a .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uhULATymc6 .list-wrapper .mbr-list-title {
  margin-bottom: 12px;
}
.cid-uhULATymc6 .list-wrapper .list,
.cid-uhULATymc6 .list-wrapper .list_main {
  margin-bottom: 70px;
  padding: 0;
  list-style-type: none;
}
@media (max-width: 992px) {
  .cid-uhULATymc6 .list-wrapper .list,
  .cid-uhULATymc6 .list-wrapper .list_main {
    margin-bottom: 24px;
  }
}
.cid-uhULATymc6 .list-wrapper .list .item-wrap,
.cid-uhULATymc6 .list-wrapper .list_main .item-wrap {
  margin: 12px 0 6px 0;
  transition: all 0.3s ease-in-out;
}
.cid-uhULATymc6 .list-wrapper .list .item-wrap:hover,
.cid-uhULATymc6 .list-wrapper .list_main .item-wrap:hover,
.cid-uhULATymc6 .list-wrapper .list .item-wrap:focus,
.cid-uhULATymc6 .list-wrapper .list_main .item-wrap:focus {
  color: #ff6928;
  text-decoration: underline;
}
.cid-uhULATymc6 .contacts-wrapper .list {
  margin-bottom: 40px;
  padding: 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  list-style-type: none;
}
@media (max-width: 992px) {
  .cid-uhULATymc6 .contacts-wrapper .list {
    margin-bottom: 24px;
  }
}
.cid-uhULATymc6 .contacts-wrapper .list .item-wrap {
  opacity: .7;
  margin: 0 32px 16px 0;
  transition: all 0.3s ease-in-out;
}
.cid-uhULATymc6 .contacts-wrapper .list .item-wrap:hover,
.cid-uhULATymc6 .contacts-wrapper .list .item-wrap:focus {
  color: #ff6928;
  text-decoration: underline;
}
.cid-uhULATymc6 .social-row {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  height: 100px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uhULATymc6 .social-row {
    justify-content: center;
    margin-bottom: 24px;
  }
}
.cid-uhULATymc6 .social-row .soc-item {
  margin-right: 24px;
}
.cid-uhULATymc6 .social-row .soc-item a:hover .mbr-iconfont,
.cid-uhULATymc6 .social-row .soc-item a:focus .mbr-iconfont {
  background-color: #ff6928;
}
.cid-uhULATymc6 .social-row .soc-item a .mbr-iconfont {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 20px;
  background-color: #ffffff;
  color: #222222;
  transition: all 0.3s ease-in-out;
}
.cid-uhULATymc6 .copyright {
  margin-bottom: 0;
  opacity: .7;
  color: #000000;
  text-align: center;
}
.cid-uhULATymc6 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uhULATymc6 .mbr-list-title {
  color: #000000;
  text-align: center;
}
.cid-uhULATymc6 .list {
  color: #000000;
  text-align: left;
}
.cid-uhULATymc6 .list_main {
  color: #000000;
  text-align: left;
}
.cid-ui04V3Lo7r .navbar-dropdown {
  position: relative !important;
}
.cid-ui04V3Lo7r .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-ui04V3Lo7r .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ui04V3Lo7r .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ui04V3Lo7r .dropdown-item:hover,
.cid-ui04V3Lo7r .dropdown-item:focus {
  background: #fd1f03 !important;
  color: white !important;
}
.cid-ui04V3Lo7r .dropdown-item:hover span {
  color: white;
}
.cid-ui04V3Lo7r .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ui04V3Lo7r .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ui04V3Lo7r .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 2em !important;
}
@media (max-width: 991px) {
  .cid-ui04V3Lo7r .nav-dropdown .link {
    padding: 0 !important;
    margin: 6px 0 !important;
  }
}
.cid-ui04V3Lo7r .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ui04V3Lo7r .nav-link {
  position: relative;
}
@media (max-width: 991px) {
  .cid-ui04V3Lo7r .nav-link {
    display: flex !important;
    justify-content: flex-start !important;
    width: 100% !important;
  }
}
.cid-ui04V3Lo7r .nav-link:before {
  content: '' !important;
  width: 6px !important;
  height: 6px !important;
  left: 0 !important;
  margin-right: 9px !important;
  position: relative !important;
  border: 1px solid currentColor !important;
  border-radius: 100% !important;
  display: inline-block !important;
  vertical-align: middle !important;
}
.cid-ui04V3Lo7r .nav-link:hover:before {
  background-color: currentColor !important;
}
.cid-ui04V3Lo7r .container {
  display: flex;
  margin: auto;
}
.cid-ui04V3Lo7r .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ui04V3Lo7r .navbar-nav {
  min-height: 70px;
  align-items: flex-start;
  flex-grow: 1;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-ui04V3Lo7r .navbar-nav {
    align-items: center;
  }
}
.cid-ui04V3Lo7r .dropdown-menu,
.cid-ui04V3Lo7r .navbar.opened {
  background: #fffdf7 !important;
}
.cid-ui04V3Lo7r .nav-item:focus,
.cid-ui04V3Lo7r .nav-link:focus {
  outline: none;
}
.cid-ui04V3Lo7r .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
  border-bottom: 1px solid #7f8678;
}
.cid-ui04V3Lo7r .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ui04V3Lo7r .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ui04V3Lo7r .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ui04V3Lo7r .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ui04V3Lo7r .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ui04V3Lo7r .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid #7f8678;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fffdf7;
  padding: 0 !important;
  box-shadow: none;
}
.cid-ui04V3Lo7r .navbar.opened {
  transition: all 0.3s;
}
.cid-ui04V3Lo7r .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ui04V3Lo7r .navbar .navbar-logo img {
  width: auto;
}
.cid-ui04V3Lo7r .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-ui04V3Lo7r .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ui04V3Lo7r .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ui04V3Lo7r .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ui04V3Lo7r .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ui04V3Lo7r .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-ui04V3Lo7r .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ui04V3Lo7r .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ui04V3Lo7r .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ui04V3Lo7r .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ui04V3Lo7r .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ui04V3Lo7r .navbar.navbar-short {
  min-height: 60px;
}
.cid-ui04V3Lo7r .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ui04V3Lo7r .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ui04V3Lo7r .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 38px 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-ui04V3Lo7r .navbar-brand {
    border-right: 1px solid #7f8678;
  }
}
.cid-ui04V3Lo7r .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ui04V3Lo7r .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ui04V3Lo7r .navbar.navbar-short .navbar-brand {
  padding: 10px 38px 10px 0;
}
.cid-ui04V3Lo7r .dropdown-item.active,
.cid-ui04V3Lo7r .dropdown-item:active {
  background-color: transparent;
}
.cid-ui04V3Lo7r .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ui04V3Lo7r .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ui04V3Lo7r .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ui04V3Lo7r .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fffdf7;
}
.cid-ui04V3Lo7r .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ui04V3Lo7r .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ui04V3Lo7r ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ui04V3Lo7r .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ui04V3Lo7r button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ui04V3Lo7r button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 40px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-ui04V3Lo7r button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ui04V3Lo7r button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ui04V3Lo7r button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ui04V3Lo7r button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ui04V3Lo7r nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ui04V3Lo7r nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ui04V3Lo7r nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ui04V3Lo7r nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ui04V3Lo7r .navbar-dropdown {
  padding: 0 1rem;
}
.cid-ui04V3Lo7r a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ui04V3Lo7r .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-ui04V3Lo7r .navbar {
    height: 70px;
  }
  .cid-ui04V3Lo7r .navbar.opened {
    height: auto;
  }
  .cid-ui04V3Lo7r .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ui04V3Lo7r .container-fluid {
  padding: 0 33px;
}
@media (min-width: 992px) {
  .cid-ui04V3Lo7r .container-fluid {
    padding: 0 40px;
  }
}
.cid-ui04V3Lo7r .layout-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-ui04V3Lo7r .layout-container {
    flex-wrap: nowrap;
  }
}
@media (max-width: 991px) {
  .cid-ui04V3Lo7r .nav-item {
    width: 100%;
    text-align: left;
    display: flex;
    flex-wrap: wrap;
  }
  .cid-ui04V3Lo7r .nav-item .dropdown-toggle::after {
    margin: 0 0 0 auto !important;
  }
  .cid-ui04V3Lo7r .nav-item .dropdown-menu {
    width: 100%;
    border: none;
    box-shadow: none;
    border-radius: 0 !important;
  }
  .cid-ui04V3Lo7r .nav-item .dropdown-menu .dropdown-item {
    display: flex;
    justify-content: flex-start;
    padding: 6px 0 !important;
  }
  .cid-ui04V3Lo7r .nav-item .dropdown-menu .dropdown-toggle {
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center !important;
    padding: 6px 0 !important;
  }
  .cid-ui04V3Lo7r .nav-item .dropdown-menu .dropdown-toggle::after {
    position: static !important;
  }
}
.cid-ui04V3Lo7r .mbr-section-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  min-width: min-content;
}
@media (min-width: 992px) {
  .cid-ui04V3Lo7r .mbr-section-btn {
    border-left: 1px solid #7f8678;
    min-height: 100%;
  }
}
.cid-ui04V3Lo7r .mbr-section-btn .btn {
  margin: 0;
  min-height: 70px;
  padding: 0 17px 0 17px;
  border-radius: 0;
  word-break: normal;
  flex-grow: 1;
}
@media (max-width: 991px) {
  .cid-ui04V3Lo7r .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-umfiGShj0z {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #cdf9de;
}
.cid-umfiGShj0z .mbr-fallback-image.disabled {
  display: none;
}
.cid-umfiGShj0z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umfiGShj0z .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-umfiGShj0z .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-umfiGShj0z .container-fluid {
    padding: 0 12px;
  }
}
@media (max-width: 992px) {
  .cid-umfiGShj0z .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-umfiGShj0z .container {
    padding: 0 12px;
  }
}
.cid-umfiGShj0z .title-wrapper .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-umfiGShj0z .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-umfiGShj0z .title-wrapper .mbr-section-title span {
  padding: 6px 12px;
  background-color: #ffcd9f;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-umfiGShj0z .title-wrapper .mbr-section-title span {
    padding: 0 10px;
    border-radius: 8px;
  }
}
.cid-umfiGShj0z .title-wrapper .mbr-text {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-umfiGShj0z .title-wrapper .mbr-text {
    margin-bottom: 24px;
  }
}
@media (max-width: 992px) {
  .cid-umfiGShj0z .title-wrapper .mbr-section-btn {
    margin-bottom: 40px;
  }
}
.cid-umfiGShj0z .title-wrapper .tags-wrapper {
  margin-bottom: 24px;
}
.cid-umfiGShj0z .title-wrapper .tags-wrapper .tags-wrap {
  display: inline-block;
}
.cid-umfiGShj0z .title-wrapper .tags-wrapper .tags-wrap .tag-item {
  display: inline-flex;
  align-items: center;
  margin-right: 40px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.cid-umfiGShj0z .title-wrapper .tags-wrapper .tags-wrap .tag-item .mbr-iconfont {
  font-size: 44px;
  margin-right: 8px;
  color: #222222;
}
.cid-umfiGShj0z .title-wrapper .tags-wrapper .tags-wrap .tag-item .mbr-tag {
  margin-bottom: 0;
}
.cid-umfiGShj0z .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.cid-umfiGShj0z .image-wrapper img {
  width: 420px;
  height: 420px;
  border-radius: 100%;
  border: 3px solid #db0309;
  box-shadow: 4px 4px #db0309;
  background-color: #db0309;
  object-fit: cover;
}
@media (max-width: 1300px) {
  .cid-umfiGShj0z .image-wrapper img {
    width: 350px;
    height: 350px;
  }
}
@media (max-width: 1200px) {
  .cid-umfiGShj0z .image-wrapper img {
    width: 310px;
    height: 310px;
  }
}
@media (max-width: 768px) {
  .cid-umfiGShj0z .image-wrapper img {
    width: 280px;
    height: 280px;
  }
}
.cid-umfiGShj0z .mbr-section-title {
  color: #222222;
}
.cid-umfiGShj0z .mbr-text {
  color: #000000;
}
.cid-umfiGShj0z .mbr-tag {
  color: #222222;
}
.cid-umfiGShj0z .mbr-section-title,
.cid-umfiGShj0z .mbr-section-btn {
  color: #000000;
}
.cid-umfiGSNBs8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-umfiGSNBs8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-umfiGSNBs8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-umfiGSNBs8 .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-umfiGSNBs8 .container {
    padding: 0 12px;
  }
}
.cid-umfiGSNBs8 .row {
  justify-content: center;
}
.cid-umfiGSNBs8 .card-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px;
  background-color: #cdf9de;
  border-radius: 50px;
}
@media (max-width: 992px) {
  .cid-umfiGSNBs8 .card-wrapper {
    display: block;
    padding: 24px;
    border-radius: 32px;
  }
}
@media (max-width: 992px) {
  .cid-umfiGSNBs8 .card-wrapper .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-umfiGSNBs8 .card-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-umfiGSNBs8 .card-wrapper .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-umfiGSNBs8 .card-wrapper .title-wrapper .mbr-text span {
  background-color: #e3b4fa;
  padding: 2px 6px;
  border-radius: 8px;
}
.cid-umfiGSNBs8 .card-wrapper .mbr-section-btn {
  height: 100%;
}
.cid-umfiGSNBs8 .card-wrapper .mbr-section-btn .btn {
  min-width: 200px;
}
.cid-umfiGSNBs8 .mbr-section-title {
  color: #222222;
}
.cid-umfiGSNBs8 .mbr-text {
  color: #222222;
}
.cid-umfiGT9rUD {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #fffdf7;
}
.cid-umfiGT9rUD .google-map {
  height: 686px;
  position: relative;
  border: 1px solid #7F8678;
  border-left: none;
  border-right: none;
  margin-top: -1px;
}
.cid-umfiGT9rUD .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-umfiGT9rUD .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-umfiGT9rUD .google-map[data-state] {
  background: #e9e5dc;
}
.cid-umfiGT9rUD .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-umfiGT9rUD .container {
  padding: 0;
}
.cid-umfiGT9rUD .mbr-section-title {
  color: #000000;
}
.cid-umfiGT9rUD .mbr-section-subtitle {
  color: #3d3d3d;
}
.cid-umfiGTFdMx {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #cdf9de;
}
.cid-umfiGTFdMx .mbr-fallback-image.disabled {
  display: none;
}
.cid-umfiGTFdMx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umfiGTFdMx .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-umfiGTFdMx .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-umfiGTFdMx .container-fluid {
    padding: 0 12px;
  }
}
@media (max-width: 992px) {
  .cid-umfiGTFdMx .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-umfiGTFdMx .container {
    padding: 0 12px;
  }
}
.cid-umfiGTFdMx .title-wrapper a {
  display: block;
}
.cid-umfiGTFdMx .title-wrapper a .mbr-section-title {
  margin-bottom: 24px;
}
.cid-umfiGTFdMx .list-wrapper .mbr-list-title {
  margin-bottom: 12px;
}
.cid-umfiGTFdMx .list-wrapper .list,
.cid-umfiGTFdMx .list-wrapper .list_main {
  margin-bottom: 70px;
  padding: 0;
  list-style-type: none;
}
@media (max-width: 992px) {
  .cid-umfiGTFdMx .list-wrapper .list,
  .cid-umfiGTFdMx .list-wrapper .list_main {
    margin-bottom: 24px;
  }
}
.cid-umfiGTFdMx .list-wrapper .list .item-wrap,
.cid-umfiGTFdMx .list-wrapper .list_main .item-wrap {
  margin: 12px 0 6px 0;
  transition: all 0.3s ease-in-out;
}
.cid-umfiGTFdMx .list-wrapper .list .item-wrap:hover,
.cid-umfiGTFdMx .list-wrapper .list_main .item-wrap:hover,
.cid-umfiGTFdMx .list-wrapper .list .item-wrap:focus,
.cid-umfiGTFdMx .list-wrapper .list_main .item-wrap:focus {
  color: #ff6928;
  text-decoration: underline;
}
.cid-umfiGTFdMx .contacts-wrapper .list {
  margin-bottom: 40px;
  padding: 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  list-style-type: none;
}
@media (max-width: 992px) {
  .cid-umfiGTFdMx .contacts-wrapper .list {
    margin-bottom: 24px;
  }
}
.cid-umfiGTFdMx .contacts-wrapper .list .item-wrap {
  opacity: .7;
  margin: 0 32px 16px 0;
  transition: all 0.3s ease-in-out;
}
.cid-umfiGTFdMx .contacts-wrapper .list .item-wrap:hover,
.cid-umfiGTFdMx .contacts-wrapper .list .item-wrap:focus {
  color: #ff6928;
  text-decoration: underline;
}
.cid-umfiGTFdMx .social-row {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  height: 100px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-umfiGTFdMx .social-row {
    justify-content: center;
    margin-bottom: 24px;
  }
}
.cid-umfiGTFdMx .social-row .soc-item {
  margin-right: 24px;
}
.cid-umfiGTFdMx .social-row .soc-item a:hover .mbr-iconfont,
.cid-umfiGTFdMx .social-row .soc-item a:focus .mbr-iconfont {
  background-color: #ff6928;
}
.cid-umfiGTFdMx .social-row .soc-item a .mbr-iconfont {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 20px;
  background-color: #ffffff;
  color: #222222;
  transition: all 0.3s ease-in-out;
}
.cid-umfiGTFdMx .copyright {
  margin-bottom: 0;
  opacity: .7;
  color: #000000;
  text-align: center;
}
.cid-umfiGTFdMx .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-umfiGTFdMx .mbr-list-title {
  color: #000000;
  text-align: center;
}
.cid-umfiGTFdMx .list {
  color: #000000;
  text-align: left;
}
.cid-umfiGTFdMx .list_main {
  color: #000000;
  text-align: left;
}
.cid-umfiGUktLe .navbar-dropdown {
  position: relative !important;
}
.cid-umfiGUktLe .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-umfiGUktLe .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-umfiGUktLe .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-umfiGUktLe .dropdown-item:hover,
.cid-umfiGUktLe .dropdown-item:focus {
  background: #fd1f03 !important;
  color: white !important;
}
.cid-umfiGUktLe .dropdown-item:hover span {
  color: white;
}
.cid-umfiGUktLe .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-umfiGUktLe .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-umfiGUktLe .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 2em !important;
}
@media (max-width: 991px) {
  .cid-umfiGUktLe .nav-dropdown .link {
    padding: 0 !important;
    margin: 6px 0 !important;
  }
}
.cid-umfiGUktLe .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-umfiGUktLe .nav-link {
  position: relative;
}
@media (max-width: 991px) {
  .cid-umfiGUktLe .nav-link {
    display: flex !important;
    justify-content: flex-start !important;
    width: 100% !important;
  }
}
.cid-umfiGUktLe .nav-link:before {
  content: '' !important;
  width: 6px !important;
  height: 6px !important;
  left: 0 !important;
  margin-right: 9px !important;
  position: relative !important;
  border: 1px solid currentColor !important;
  border-radius: 100% !important;
  display: inline-block !important;
  vertical-align: middle !important;
}
.cid-umfiGUktLe .nav-link:hover:before {
  background-color: currentColor !important;
}
.cid-umfiGUktLe .container {
  display: flex;
  margin: auto;
}
.cid-umfiGUktLe .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-umfiGUktLe .navbar-nav {
  min-height: 70px;
  align-items: flex-start;
  flex-grow: 1;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-umfiGUktLe .navbar-nav {
    align-items: center;
  }
}
.cid-umfiGUktLe .dropdown-menu,
.cid-umfiGUktLe .navbar.opened {
  background: #fffdf7 !important;
}
.cid-umfiGUktLe .nav-item:focus,
.cid-umfiGUktLe .nav-link:focus {
  outline: none;
}
.cid-umfiGUktLe .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
  border-bottom: 1px solid #7f8678;
}
.cid-umfiGUktLe .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-umfiGUktLe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-umfiGUktLe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-umfiGUktLe .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-umfiGUktLe .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-umfiGUktLe .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid #7f8678;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fffdf7;
  padding: 0 !important;
  box-shadow: none;
}
.cid-umfiGUktLe .navbar.opened {
  transition: all 0.3s;
}
.cid-umfiGUktLe .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-umfiGUktLe .navbar .navbar-logo img {
  width: auto;
}
.cid-umfiGUktLe .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-umfiGUktLe .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-umfiGUktLe .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-umfiGUktLe .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-umfiGUktLe .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-umfiGUktLe .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-umfiGUktLe .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-umfiGUktLe .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-umfiGUktLe .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-umfiGUktLe .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-umfiGUktLe .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-umfiGUktLe .navbar.navbar-short {
  min-height: 60px;
}
.cid-umfiGUktLe .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-umfiGUktLe .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-umfiGUktLe .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 38px 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-umfiGUktLe .navbar-brand {
    border-right: 1px solid #7f8678;
  }
}
.cid-umfiGUktLe .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-umfiGUktLe .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-umfiGUktLe .navbar.navbar-short .navbar-brand {
  padding: 10px 38px 10px 0;
}
.cid-umfiGUktLe .dropdown-item.active,
.cid-umfiGUktLe .dropdown-item:active {
  background-color: transparent;
}
.cid-umfiGUktLe .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-umfiGUktLe .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-umfiGUktLe .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-umfiGUktLe .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fffdf7;
}
.cid-umfiGUktLe .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-umfiGUktLe .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-umfiGUktLe ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-umfiGUktLe .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-umfiGUktLe button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-umfiGUktLe button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 40px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-umfiGUktLe button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-umfiGUktLe button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umfiGUktLe button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umfiGUktLe button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-umfiGUktLe nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-umfiGUktLe nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-umfiGUktLe nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-umfiGUktLe nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-umfiGUktLe .navbar-dropdown {
  padding: 0 1rem;
}
.cid-umfiGUktLe a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-umfiGUktLe .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-umfiGUktLe .navbar {
    height: 70px;
  }
  .cid-umfiGUktLe .navbar.opened {
    height: auto;
  }
  .cid-umfiGUktLe .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-umfiGUktLe .container-fluid {
  padding: 0 33px;
}
@media (min-width: 992px) {
  .cid-umfiGUktLe .container-fluid {
    padding: 0 40px;
  }
}
.cid-umfiGUktLe .layout-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-umfiGUktLe .layout-container {
    flex-wrap: nowrap;
  }
}
@media (max-width: 991px) {
  .cid-umfiGUktLe .nav-item {
    width: 100%;
    text-align: left;
    display: flex;
    flex-wrap: wrap;
  }
  .cid-umfiGUktLe .nav-item .dropdown-toggle::after {
    margin: 0 0 0 auto !important;
  }
  .cid-umfiGUktLe .nav-item .dropdown-menu {
    width: 100%;
    border: none;
    box-shadow: none;
    border-radius: 0 !important;
  }
  .cid-umfiGUktLe .nav-item .dropdown-menu .dropdown-item {
    display: flex;
    justify-content: flex-start;
    padding: 6px 0 !important;
  }
  .cid-umfiGUktLe .nav-item .dropdown-menu .dropdown-toggle {
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center !important;
    padding: 6px 0 !important;
  }
  .cid-umfiGUktLe .nav-item .dropdown-menu .dropdown-toggle::after {
    position: static !important;
  }
}
.cid-umfiGUktLe .mbr-section-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  min-width: min-content;
}
@media (min-width: 992px) {
  .cid-umfiGUktLe .mbr-section-btn {
    border-left: 1px solid #7f8678;
    min-height: 100%;
  }
}
.cid-umfiGUktLe .mbr-section-btn .btn {
  margin: 0;
  min-height: 70px;
  padding: 0 17px 0 17px;
  border-radius: 0;
  word-break: normal;
  flex-grow: 1;
}
@media (max-width: 991px) {
  .cid-umfiGUktLe .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-umfkgyixG1 .navbar-dropdown {
  position: relative !important;
}
.cid-umfkgyixG1 .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-umfkgyixG1 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-umfkgyixG1 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-umfkgyixG1 .dropdown-item:hover,
.cid-umfkgyixG1 .dropdown-item:focus {
  background: #fd1f03 !important;
  color: white !important;
}
.cid-umfkgyixG1 .dropdown-item:hover span {
  color: white;
}
.cid-umfkgyixG1 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-umfkgyixG1 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-umfkgyixG1 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 2em !important;
}
@media (max-width: 991px) {
  .cid-umfkgyixG1 .nav-dropdown .link {
    padding: 0 !important;
    margin: 6px 0 !important;
  }
}
.cid-umfkgyixG1 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-umfkgyixG1 .nav-link {
  position: relative;
}
@media (max-width: 991px) {
  .cid-umfkgyixG1 .nav-link {
    display: flex !important;
    justify-content: flex-start !important;
    width: 100% !important;
  }
}
.cid-umfkgyixG1 .nav-link:before {
  content: '' !important;
  width: 6px !important;
  height: 6px !important;
  left: 0 !important;
  margin-right: 9px !important;
  position: relative !important;
  border: 1px solid currentColor !important;
  border-radius: 100% !important;
  display: inline-block !important;
  vertical-align: middle !important;
}
.cid-umfkgyixG1 .nav-link:hover:before {
  background-color: currentColor !important;
}
.cid-umfkgyixG1 .container {
  display: flex;
  margin: auto;
}
.cid-umfkgyixG1 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-umfkgyixG1 .navbar-nav {
  min-height: 70px;
  align-items: flex-start;
  flex-grow: 1;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-umfkgyixG1 .navbar-nav {
    align-items: center;
  }
}
.cid-umfkgyixG1 .dropdown-menu,
.cid-umfkgyixG1 .navbar.opened {
  background: #fffdf7 !important;
}
.cid-umfkgyixG1 .nav-item:focus,
.cid-umfkgyixG1 .nav-link:focus {
  outline: none;
}
.cid-umfkgyixG1 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
  border-bottom: 1px solid #7f8678;
}
.cid-umfkgyixG1 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-umfkgyixG1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-umfkgyixG1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-umfkgyixG1 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-umfkgyixG1 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-umfkgyixG1 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid #7f8678;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fffdf7;
  padding: 0 !important;
  box-shadow: none;
}
.cid-umfkgyixG1 .navbar.opened {
  transition: all 0.3s;
}
.cid-umfkgyixG1 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-umfkgyixG1 .navbar .navbar-logo img {
  width: auto;
}
.cid-umfkgyixG1 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-umfkgyixG1 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-umfkgyixG1 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-umfkgyixG1 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-umfkgyixG1 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-umfkgyixG1 .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-umfkgyixG1 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-umfkgyixG1 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-umfkgyixG1 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-umfkgyixG1 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-umfkgyixG1 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-umfkgyixG1 .navbar.navbar-short {
  min-height: 60px;
}
.cid-umfkgyixG1 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-umfkgyixG1 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-umfkgyixG1 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 38px 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-umfkgyixG1 .navbar-brand {
    border-right: 1px solid #7f8678;
  }
}
.cid-umfkgyixG1 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-umfkgyixG1 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-umfkgyixG1 .navbar.navbar-short .navbar-brand {
  padding: 10px 38px 10px 0;
}
.cid-umfkgyixG1 .dropdown-item.active,
.cid-umfkgyixG1 .dropdown-item:active {
  background-color: transparent;
}
.cid-umfkgyixG1 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-umfkgyixG1 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-umfkgyixG1 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-umfkgyixG1 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fffdf7;
}
.cid-umfkgyixG1 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-umfkgyixG1 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-umfkgyixG1 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-umfkgyixG1 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-umfkgyixG1 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-umfkgyixG1 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 40px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-umfkgyixG1 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-umfkgyixG1 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umfkgyixG1 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umfkgyixG1 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-umfkgyixG1 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-umfkgyixG1 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-umfkgyixG1 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-umfkgyixG1 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-umfkgyixG1 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-umfkgyixG1 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-umfkgyixG1 .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-umfkgyixG1 .navbar {
    height: 70px;
  }
  .cid-umfkgyixG1 .navbar.opened {
    height: auto;
  }
  .cid-umfkgyixG1 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-umfkgyixG1 .container-fluid {
  padding: 0 33px;
}
@media (min-width: 992px) {
  .cid-umfkgyixG1 .container-fluid {
    padding: 0 40px;
  }
}
.cid-umfkgyixG1 .layout-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-umfkgyixG1 .layout-container {
    flex-wrap: nowrap;
  }
}
@media (max-width: 991px) {
  .cid-umfkgyixG1 .nav-item {
    width: 100%;
    text-align: left;
    display: flex;
    flex-wrap: wrap;
  }
  .cid-umfkgyixG1 .nav-item .dropdown-toggle::after {
    margin: 0 0 0 auto !important;
  }
  .cid-umfkgyixG1 .nav-item .dropdown-menu {
    width: 100%;
    border: none;
    box-shadow: none;
    border-radius: 0 !important;
  }
  .cid-umfkgyixG1 .nav-item .dropdown-menu .dropdown-item {
    display: flex;
    justify-content: flex-start;
    padding: 6px 0 !important;
  }
  .cid-umfkgyixG1 .nav-item .dropdown-menu .dropdown-toggle {
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center !important;
    padding: 6px 0 !important;
  }
  .cid-umfkgyixG1 .nav-item .dropdown-menu .dropdown-toggle::after {
    position: static !important;
  }
}
.cid-umfkgyixG1 .mbr-section-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  min-width: min-content;
}
@media (min-width: 992px) {
  .cid-umfkgyixG1 .mbr-section-btn {
    border-left: 1px solid #7f8678;
    min-height: 100%;
  }
}
.cid-umfkgyixG1 .mbr-section-btn .btn {
  margin: 0;
  min-height: 70px;
  padding: 0 17px 0 17px;
  border-radius: 0;
  word-break: normal;
  flex-grow: 1;
}
@media (max-width: 991px) {
  .cid-umfkgyixG1 .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-umfkgz6qIr {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #cdf9de;
}
.cid-umfkgz6qIr .mbr-fallback-image.disabled {
  display: none;
}
.cid-umfkgz6qIr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umfkgz6qIr .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-umfkgz6qIr .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-umfkgz6qIr .container-fluid {
    padding: 0 12px;
  }
}
@media (max-width: 992px) {
  .cid-umfkgz6qIr .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-umfkgz6qIr .container {
    padding: 0 12px;
  }
}
.cid-umfkgz6qIr .title-wrapper .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-umfkgz6qIr .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-umfkgz6qIr .title-wrapper .mbr-section-title span {
  padding: 6px 12px;
  background-color: #ffcd9f;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-umfkgz6qIr .title-wrapper .mbr-section-title span {
    padding: 0 10px;
    border-radius: 8px;
  }
}
.cid-umfkgz6qIr .title-wrapper .mbr-text {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-umfkgz6qIr .title-wrapper .mbr-text {
    margin-bottom: 24px;
  }
}
@media (max-width: 992px) {
  .cid-umfkgz6qIr .title-wrapper .mbr-section-btn {
    margin-bottom: 40px;
  }
}
.cid-umfkgz6qIr .title-wrapper .tags-wrapper {
  margin-bottom: 24px;
}
.cid-umfkgz6qIr .title-wrapper .tags-wrapper .tags-wrap {
  display: inline-block;
}
.cid-umfkgz6qIr .title-wrapper .tags-wrapper .tags-wrap .tag-item {
  display: inline-flex;
  align-items: center;
  margin-right: 40px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.cid-umfkgz6qIr .title-wrapper .tags-wrapper .tags-wrap .tag-item .mbr-iconfont {
  font-size: 44px;
  margin-right: 8px;
  color: #222222;
}
.cid-umfkgz6qIr .title-wrapper .tags-wrapper .tags-wrap .tag-item .mbr-tag {
  margin-bottom: 0;
}
.cid-umfkgz6qIr .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.cid-umfkgz6qIr .image-wrapper img {
  width: 420px;
  height: 420px;
  border-radius: 100%;
  border: 3px solid #db0309;
  box-shadow: 4px 4px #db0309;
  background-color: #db0309;
  object-fit: cover;
}
@media (max-width: 1300px) {
  .cid-umfkgz6qIr .image-wrapper img {
    width: 350px;
    height: 350px;
  }
}
@media (max-width: 1200px) {
  .cid-umfkgz6qIr .image-wrapper img {
    width: 310px;
    height: 310px;
  }
}
@media (max-width: 768px) {
  .cid-umfkgz6qIr .image-wrapper img {
    width: 280px;
    height: 280px;
  }
}
.cid-umfkgz6qIr .mbr-section-title {
  color: #222222;
}
.cid-umfkgz6qIr .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-umfkgz6qIr .mbr-tag {
  color: #222222;
}
.cid-umfkgz6qIr .mbr-section-title,
.cid-umfkgz6qIr .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-umfkgzN1sD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-umfkgzN1sD .mbr-fallback-image.disabled {
  display: none;
}
.cid-umfkgzN1sD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-umfkgzN1sD .container {
    padding: 0 30px;
  }
}
.cid-umfkgzN1sD .row {
  justify-content: center;
}
.cid-umfkgzN1sD .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-umfkgzN1sD .content-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-umfkgzN1sD .content-wrapper .mbr-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-umfkgzN1sD .content-wrapper .mbr-text {
    margin-bottom: 40px;
  }
}
.cid-umfkgzN1sD .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  color: #144031;
}
.cid-umfkgzN1sD .list .item-wrap {
  margin-bottom: 20px;
  padding-left: 30px;
  position: relative;
}
.cid-umfkgzN1sD .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-umfkgzN1sD .list .item-wrap::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  width: 9px;
  height: 9px;
  background-color: #000000;
}
.cid-umfkgzN1sD .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-umfkgzN1sD .mbr-text {
  color: #144031;
}
.cid-umfkgzN1sD .list,
.cid-umfkgzN1sD .item-wrap {
  color: #000000;
}
.cid-umfkgAkZqP {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #cdf9de;
}
.cid-umfkgAkZqP .mbr-fallback-image.disabled {
  display: none;
}
.cid-umfkgAkZqP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umfkgAkZqP .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-umfkgAkZqP .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-umfkgAkZqP .container-fluid {
    padding: 0 12px;
  }
}
@media (max-width: 992px) {
  .cid-umfkgAkZqP .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-umfkgAkZqP .container {
    padding: 0 12px;
  }
}
.cid-umfkgAkZqP .row {
  justify-content: center;
}
.cid-umfkgAkZqP .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-umfkgAkZqP .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
@media (max-width: 992px) {
  .cid-umfkgAkZqP .card {
    margin-bottom: 32px;
  }
}
.cid-umfkgAkZqP .card .card-wrapper .icon-wrapper {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-umfkgAkZqP .card .card-wrapper .icon-wrapper {
    text-align: center;
  }
}
.cid-umfkgAkZqP .card .card-wrapper .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  color: #000000;
}
.cid-umfkgAkZqP .card .card-wrapper .icon-wrapper .icon_1 {
  background-color: #e3b4fa;
}
.cid-umfkgAkZqP .card .card-wrapper .icon-wrapper .icon_2 {
  background-color: #ffcd9f;
}
.cid-umfkgAkZqP .card .card-wrapper .icon-wrapper .icon_3 {
  background-color: #b4dcfa;
}
.cid-umfkgAkZqP .card .card-wrapper .mbr-card-title {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-umfkgAkZqP .card .card-wrapper .mbr-card-title {
    text-align: center;
  }
}
.cid-umfkgAkZqP .card .card-wrapper .mbr-text {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-umfkgAkZqP .card .card-wrapper .mbr-text {
    text-align: center;
  }
}
.cid-umfkgAkZqP .mbr-section-title {
  color: #222222;
  text-align: center;
}
.cid-umfkgAkZqP .mbr-card-title {
  color: #222222;
}
.cid-umfkgAkZqP .mbr-text {
  color: #222222;
}
.cid-umfkgAkZqP .mbr-card-title,
.cid-umfkgAkZqP .icon-wrapper {
  text-align: center;
  color: #000000;
}
.cid-umfkgBgJBi {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-umfkgBgJBi .mbr-fallback-image.disabled {
  display: none;
}
.cid-umfkgBgJBi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-umfkgBgJBi .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-umfkgBgJBi .container {
    padding: 0 12px;
  }
}
.cid-umfkgBgJBi .row {
  justify-content: center;
}
.cid-umfkgBgJBi .image-wrapper {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-umfkgBgJBi .image-wrapper {
    margin-bottom: 24px;
    height: auto;
  }
}
.cid-umfkgBgJBi .image-wrapper img {
  height: 270px;
  width: 270px;
  margin: 0 auto;
  border-radius: 100%;
  border: 3px solid #cdf9de;
  box-shadow: 4px 4px #cdf9de;
  background-color: #cdf9de;
  object-fit: cover;
}
.cid-umfkgBgJBi .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-umfkgBgJBi .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-umfkgBIYw0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #cdf9de;
}
.cid-umfkgBIYw0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-umfkgBIYw0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umfkgBIYw0 .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-umfkgBIYw0 .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-umfkgBIYw0 .container-fluid {
    padding: 0 12px;
  }
}
@media (max-width: 992px) {
  .cid-umfkgBIYw0 .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-umfkgBIYw0 .container {
    padding: 0 12px;
  }
}
.cid-umfkgBIYw0 .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-umfkgBIYw0 .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-umfkgBIYw0 .card {
  margin-bottom: 32px;
}
.cid-umfkgBIYw0 .card .card-wrapper {
  padding: 32px;
  border: 3px solid #ffffff;
  box-shadow: 4px 4px #ffffff;
  border-radius: 32px;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-umfkgBIYw0 .card .card-wrapper {
    padding: 20px;
    border-radius: 24px;
  }
}
.cid-umfkgBIYw0 .card .card-wrapper .mbr-card-title {
  margin-bottom: 16px;
}
.cid-umfkgBIYw0 .card .card-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-umfkgBIYw0 .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-umfkgBIYw0 .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-umfkgBIYw0 .mbr-card-title {
  color: #222222;
}
.cid-umfkgBIYw0 .mbr-card-title,
.cid-umfkgBIYw0 .title-wrap {
  text-align: center;
  color: #000000;
}
.cid-umfkgCkaBS {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-umfkgCkaBS .mbr-fallback-image.disabled {
  display: none;
}
.cid-umfkgCkaBS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umfkgCkaBS .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-umfkgCkaBS .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-umfkgCkaBS .container-fluid {
    padding: 0 12px;
  }
}
@media (max-width: 992px) {
  .cid-umfkgCkaBS .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-umfkgCkaBS .container {
    padding: 0 12px;
  }
}
.cid-umfkgCkaBS .row {
  justify-content: center;
}
.cid-umfkgCkaBS .card-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px;
  background-color: #cdf9de;
  border-radius: 50px;
}
@media (max-width: 992px) {
  .cid-umfkgCkaBS .card-wrapper {
    display: block;
    padding: 24px;
    border-radius: 32px;
  }
}
@media (max-width: 992px) {
  .cid-umfkgCkaBS .card-wrapper .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-umfkgCkaBS .card-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-umfkgCkaBS .card-wrapper .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-umfkgCkaBS .card-wrapper .title-wrapper .mbr-text span {
  background-color: #e3b4fa;
  padding: 2px 6px;
  border-radius: 8px;
}
.cid-umfkgCkaBS .card-wrapper .mbr-section-btn {
  height: 100%;
}
.cid-umfkgCkaBS .card-wrapper .mbr-section-btn .btn {
  min-width: 200px;
}
.cid-umfkgCkaBS .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-umfkgCkaBS .mbr-text {
  color: #222222;
}
.cid-umfkgCkaBS .mbr-text,
.cid-umfkgCkaBS .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-umfkgCXkRP {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #cdf9de;
}
.cid-umfkgCXkRP .mbr-fallback-image.disabled {
  display: none;
}
.cid-umfkgCXkRP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umfkgCXkRP .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-umfkgCXkRP .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-umfkgCXkRP .container-fluid {
    padding: 0 12px;
  }
}
@media (max-width: 992px) {
  .cid-umfkgCXkRP .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-umfkgCXkRP .container {
    padding: 0 12px;
  }
}
.cid-umfkgCXkRP .item {
  margin-bottom: 32px;
}
.cid-umfkgCXkRP .item a {
  display: block;
}
.cid-umfkgCXkRP .item a:hover .item-wrapper .item-img img {
  transform: scale(1.05);
}
.cid-umfkgCXkRP .item a .item-wrapper .item-img {
  overflow: hidden;
  border-radius: 32px;
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-umfkgCXkRP .item a .item-wrapper .item-img {
    border-radius: 24px;
  }
}
.cid-umfkgCXkRP .item a .item-wrapper .item-img img {
  height: 350px;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-umfkgCXkRP .item a .item-wrapper .item-img img {
    height: 300px;
  }
}
.cid-umfkgCXkRP .item a .item-wrapper .item-content .item-title {
  margin-bottom: 0;
}
.cid-umfkgCXkRP .mbr-section-btn {
  text-align: center;
}
.cid-umfkgCXkRP .item-content {
  color: #222222;
}
.cid-umfkgE6g6g {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-umfkgE6g6g .mbr-fallback-image.disabled {
  display: none;
}
.cid-umfkgE6g6g .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umfkgE6g6g .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-umfkgE6g6g .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-umfkgE6g6g .container {
    padding: 0 16px;
  }
}
.cid-umfkgE6g6g .card {
  justify-content: center;
}
.cid-umfkgE6g6g .title-wrapper .mbr-section-title {
  display: inline-flex;
  margin-bottom: 0;
  padding: 18px 24px;
  border-radius: 16px !important;
  box-shadow: 6px 8px 0 0 #000000;
  background-color: #cdf9de;
  transform: rotate(-4deg);
}
@media (max-width: 992px) {
  .cid-umfkgE6g6g .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-umfkgE6g6g .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
.cid-umfkgE6g6g .text-wrapper .mbr-desc {
  margin-top: 24px;
  margin-bottom: 0;
}
.cid-umfkgE6g6g .mbr-section-title {
  color: #000000;
}
.cid-umfkgE6g6g .mbr-text {
  color: #000000;
}
.cid-umfkgE6g6g .mbr-desc {
  color: #000000;
}
.cid-umfkgE6g6g .mbr-text,
.cid-umfkgE6g6g .mbr-section-btn {
  color: #000000;
}
.cid-umfkgE6g6g .mbr-section-title,
.cid-umfkgE6g6g .title-wrapper {
  text-align: center;
}
.cid-umfkgEQX6C {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #cdf9de;
}
.cid-umfkgEQX6C .mbr-fallback-image.disabled {
  display: none;
}
.cid-umfkgEQX6C .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-umfkgEQX6C .container {
    padding: 0 16px;
  }
}
.cid-umfkgEQX6C .row {
  position: relative;
  z-index: 1;
}
.cid-umfkgEQX6C .card {
  justify-content: flex-end;
}
.cid-umfkgEQX6C .card-wrapper {
  margin-right: 64px;
}
@media (max-width: 1440px) {
  .cid-umfkgEQX6C .card-wrapper {
    margin-right: 0;
  }
}
@media (max-width: 992px) {
  .cid-umfkgEQX6C .card-wrapper {
    margin-bottom: 32px;
  }
}
.cid-umfkgEQX6C .card-wrapper .image-wrapper {
  position: relative;
  margin-bottom: -8rem;
}
.cid-umfkgEQX6C .card-wrapper .image-wrapper img {
  width: 520px;
  height: 520px;
  object-fit: cover;
  border-radius: 100% !important;
}
@media (max-width: 1200px) {
  .cid-umfkgEQX6C .card-wrapper .image-wrapper img {
    width: 420px;
    height: 420px;
  }
}
@media (max-width: 768px) {
  .cid-umfkgEQX6C .card-wrapper .image-wrapper img {
    width: 260px;
    height: 260px;
  }
}
.cid-umfkgEQX6C .card-wrapper .image-wrapper .card-desc {
  position: absolute;
  top: 55%;
  left: -1rem;
  display: inline-flex;
  margin-bottom: 0;
  padding: 6px 16px;
  border-radius: 4rem !important;
  box-shadow: 4px 6px 0 0 #000000;
  background-color: #c6f15c;
  transform: rotate(-4deg);
}
@media (max-width: 992px) {
  .cid-umfkgEQX6C .card-wrapper .image-wrapper .card-desc {
    left: .5rem;
  }
}
.cid-umfkgEQX6C .card-wrapper .card-wrap {
  background-color: #ffffff;
  box-shadow: 4px 6px 0 0 #000000;
  border-radius: 16px;
  padding: 175px 48px 36px;
  margin: 0 50px;
}
@media (max-width: 992px) {
  .cid-umfkgEQX6C .card-wrapper .card-wrap {
    margin: 0;
    padding: 150px 24px 24px;
  }
}
.cid-umfkgEQX6C .card-wrapper .card-wrap .card-text {
  margin-bottom: 16px;
}
.cid-umfkgEQX6C .card-wrapper .card-wrap .person-wrap .card-name {
  margin-bottom: 0;
}
.cid-umfkgEQX6C .card-wrapper .card-wrap .person-wrap .card-role {
  margin-bottom: 0;
}
.cid-umfkgEQX6C .title-wrapper {
  margin-bottom: 96px;
}
@media (max-width: 992px) {
  .cid-umfkgEQX6C .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-umfkgEQX6C .title-wrapper .mbr-section-subtitle {
  margin-bottom: 32px;
}
.cid-umfkgEQX6C .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-umfkgEQX6C .text-wrapper {
  margin-left: 104px;
}
@media (max-width: 1440px) {
  .cid-umfkgEQX6C .text-wrapper {
    margin-left: 48px;
  }
}
@media (max-width: 992px) {
  .cid-umfkgEQX6C .text-wrapper {
    margin-left: 0;
  }
}
.cid-umfkgEQX6C .text-wrapper .mbr-text {
  margin-bottom: 32px;
}
.cid-umfkgEQX6C .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-umfkgEQX6C .mbr-section-subtitle {
  color: #000000;
  text-align: right;
}
.cid-umfkgEQX6C .mbr-text {
  color: #000000;
}
.cid-umfkgEQX6C .card-desc {
  color: #000000;
}
.cid-umfkgEQX6C .card-text {
  color: #000000;
}
.cid-umfkgEQX6C .card-name {
  color: #ffffff;
}
.cid-umfkgEQX6C .card-role {
  color: #ffffff;
}
.cid-umfkgEQX6C .mbr-text,
.cid-umfkgEQX6C .mbr-section-btn {
  color: #000000;
}
.cid-umfkgFA962 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-umfkgFA962 .mbr-fallback-image.disabled {
  display: none;
}
.cid-umfkgFA962 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umfkgFA962 .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-umfkgFA962 .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-umfkgFA962 .container-fluid {
    padding: 0 12px;
  }
}
@media (max-width: 992px) {
  .cid-umfkgFA962 .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-umfkgFA962 .container {
    padding: 0 12px;
  }
}
.cid-umfkgFA962 .row {
  justify-content: center;
}
.cid-umfkgFA962 .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-umfkgFA962 .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-umfkgFA962 .panel-group .card {
  border-radius: 50px;
  border: 3px solid #000000;
  box-shadow: 4px 4px #000000;
  background-color: #cdf9de;
  padding: 60px;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-umfkgFA962 .panel-group .card {
    padding: 24px;
    border-radius: 24px;
  }
}
.cid-umfkgFA962 .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  margin-bottom: 0;
  padding: 0;
}
.cid-umfkgFA962 .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-umfkgFA962 .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-umfkgFA962 .panel-group .card .card-header .panel-title .mbr-iconfont {
  font-size: 24px;
  color: #000000;
  transition: all 0.3s ease-in-out;
}
.cid-umfkgFA962 .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(-180deg);
}
.cid-umfkgFA962 .panel-group .card .panel-collapse .panel-body {
  padding-top: 24px;
}
@media (max-width: 992px) {
  .cid-umfkgFA962 .panel-group .card .panel-collapse .panel-body {
    padding-top: 16px;
  }
}
.cid-umfkgFA962 .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-umfkgFA962 .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-umfkgFA962 .panel-title-edit {
  color: #222222;
}
.cid-umfkgFA962 .panel-text {
  color: #222222;
}
.cid-umfkgGuRpL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #cdf9de;
}
.cid-umfkgGuRpL .mbr-fallback-image.disabled {
  display: none;
}
.cid-umfkgGuRpL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umfkgGuRpL .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-umfkgGuRpL .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-umfkgGuRpL .container-fluid {
    padding: 0 12px;
  }
}
.cid-umfkgGuRpL .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-umfkgGuRpL .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-umfkgGuRpL .container {
    padding: 0 12px;
  }
}
.cid-umfkgGuRpL .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-umfkgGuRpL .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-umfkgGuRpL .card-wrapper {
  padding: 40px;
  border-radius: 50px;
  border: 3px solid #222222;
  box-shadow: 4px 4px #222222;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-umfkgGuRpL .card-wrapper {
    padding: 24px;
    border-radius: 24px;
  }
}
.cid-umfkgGuRpL .card-wrapper .card-wrap {
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-umfkgGuRpL .card-wrapper .card-wrap {
    display: block;
  }
}
.cid-umfkgGuRpL .card-wrapper .card-wrap .icon-wrapper {
  margin-right: 40px;
}
@media (max-width: 992px) {
  .cid-umfkgGuRpL .card-wrapper .card-wrap .icon-wrapper {
    margin: 0 0 16px 0;
    text-align: center;
  }
}
.cid-umfkgGuRpL .card-wrapper .card-wrap .icon-wrapper .mbr-iconfont {
  font-size: 140px;
  color: #ff6928;
}
@media (max-width: 992px) {
  .cid-umfkgGuRpL .card-wrapper .card-wrap .icon-wrapper .mbr-iconfont {
    font-size: 100px;
  }
}
.cid-umfkgGuRpL .card-wrapper .card-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-umfkgGuRpL .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-umfkgGuRpL .mbr-section-subtitle {
  color: #222222;
}
.cid-umfkgGuRpL .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-umfkgGuRpL .list {
  color: #222222;
}
.cid-umfkgH473K {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-umfkgH473K .mbr-fallback-image.disabled {
  display: none;
}
.cid-umfkgH473K .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-umfkgH473K .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-umfkgH473K .container {
    padding: 0 12px;
  }
}
.cid-umfkgH473K .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-umfkgH473K .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-umfkgH473K .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-umfkgH473K .mbr-text {
  color: #222222;
}
.cid-umfkgH473K .mbr-text,
.cid-umfkgH473K .mbr-section-btn {
  color: #000000;
}
.cid-umfkgHB8cY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #cdf9de;
}
.cid-umfkgHB8cY .mbr-fallback-image.disabled {
  display: none;
}
.cid-umfkgHB8cY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-umfkgHB8cY .container {
    padding: 0 16px;
  }
}
.cid-umfkgHB8cY .row {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-umfkgHB8cY .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-umfkgHB8cY .title-wrapper .subtitle-wrapper .mbr-section-subtitle {
  display: inline-flex;
  margin-bottom: 42px;
  padding: 14px 24px;
  border-radius: 8px !important;
  box-shadow: 4px 6px 0 0 #000000;
  background-color: #ffffff;
  transform: rotate(-4deg);
}
@media (max-width: 992px) {
  .cid-umfkgHB8cY .title-wrapper .subtitle-wrapper .mbr-section-subtitle {
    margin-bottom: 32px;
  }
}
.cid-umfkgHB8cY .title-wrapper .mbr-section-title {
  margin-bottom: 72px;
}
@media (max-width: 992px) {
  .cid-umfkgHB8cY .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-umfkgHB8cY .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-umfkgHB8cY .card-wrapper {
  background-color: #ffffff;
  box-shadow: 6px 8px 0 0 #000000;
  border-radius: 24px;
  padding: 80px;
}
.cid-umfkgHB8cY .card-wrapper .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 72px;
}
@media (max-width: 992px) {
  .cid-umfkgHB8cY .card-wrapper .image-wrapper {
    margin-bottom: 32px;
    display: block;
  }
}
.cid-umfkgHB8cY .card-wrapper .image-wrapper img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  box-shadow: 4px 6px 0 0 #000000;
  transform: rotate(4deg);
}
.cid-umfkgHB8cY .card-wrapper .card-text {
  margin-bottom: 24px;
}
.cid-umfkgHB8cY .mbr-section-title {
  color: #ffffff;
}
.cid-umfkgHB8cY .mbr-section-subtitle {
  color: #000000;
}
.cid-umfkgHB8cY .mbr-text {
  color: #ffffff;
}
.cid-umfkgHB8cY .card-text {
  text-align: center;
  color: #000000;
}
.cid-umfkgHB8cY .mbr-section-subtitle,
.cid-umfkgHB8cY .subtitle-wrapper {
  text-align: center;
}
.cid-umfkgHB8cY .mbr-text,
.cid-umfkgHB8cY .text-wrapper {
  color: #000000;
}
.cid-umfuBctSDQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-umfuBctSDQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-umfuBctSDQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umfuBctSDQ .content-wrap {
  padding: 60px;
  background-color: #cdf9de;
}
@media (max-width: 992px) {
  .cid-umfuBctSDQ .content-wrap {
    padding: 30px 20px;
  }
}
.cid-umfuBctSDQ .content-wrap .title-wrapper {
  margin-bottom: 54px;
}
@media (max-width: 992px) {
  .cid-umfuBctSDQ .content-wrap .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-umfuBctSDQ .content-wrap .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 60%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-umfuBctSDQ .content-wrap .title-wrapper .mbr-section-title {
    width: 100%;
  }
}
.cid-umfuBctSDQ .content-wrap .panel-group .card {
  position: relative;
  padding: 30px;
  margin-top: 20px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-umfuBctSDQ .content-wrap .panel-group .card {
    padding: 20px;
  }
}
.cid-umfuBctSDQ .content-wrap .panel-group .card:first-child {
  margin-top: 0;
}
.cid-umfuBctSDQ .content-wrap .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-umfuBctSDQ .content-wrap .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-umfuBctSDQ .content-wrap .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-umfuBctSDQ .content-wrap .panel-group .card .card-header .panel-title .icon-wrapper {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 30px;
  transition: all 0.3s ease-in-out;
  border-radius: 100%;
  background-color: #cdf9de;
}
@media (max-width: 992px) {
  .cid-umfuBctSDQ .content-wrap .panel-group .card .card-header .panel-title .icon-wrapper {
    margin-left: 16px;
  }
}
.cid-umfuBctSDQ .content-wrap .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  color: #b19a7c;
}
.cid-umfuBctSDQ .content-wrap .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper {
  transform: rotate(-45deg);
}
.cid-umfuBctSDQ .content-wrap .panel-group .card .panel-collapse .panel-body {
  margin: 20px 0 0 0;
}
.cid-umfuBctSDQ .content-wrap .panel-group .card .panel-collapse .panel-body .panel-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-umfuBctSDQ .content-wrap .panel-group .card .panel-collapse .panel-body .panel-text {
    width: 100%;
  }
}
.cid-umfuBctSDQ .mbr-section-title {
  color: #404349;
}
.cid-umfuBctSDQ .panel-title-edit {
  color: #000000;
}
.cid-umfuBctSDQ .panel-text {
  color: #404349;
}
.cid-umfuBctSDQ .mbr-section-title,
.cid-umfuBctSDQ .title-wrapper,
.cid-umfuBctSDQ .tabs-wrapper {
  text-align: center;
  color: #000000;
}
.cid-umfuBctSDQ .panel-text,
.cid-umfuBctSDQ .panel-body {
  color: #000000;
}
.cid-umfkgINMy7 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #fffdf7;
}
.cid-umfkgINMy7 .google-map {
  height: 686px;
  position: relative;
  border: 1px solid #7F8678;
  border-left: none;
  border-right: none;
  margin-top: -1px;
}
.cid-umfkgINMy7 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-umfkgINMy7 .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-umfkgINMy7 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-umfkgINMy7 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-umfkgINMy7 .container {
  padding: 0;
}
.cid-umfkgINMy7 .mbr-section-title {
  color: #000000;
}
.cid-umfkgINMy7 .mbr-section-subtitle {
  color: #3d3d3d;
}
.cid-umfkgKqPt4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #cdf9de;
}
.cid-umfkgKqPt4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-umfkgKqPt4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umfkgKqPt4 .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-umfkgKqPt4 .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-umfkgKqPt4 .container-fluid {
    padding: 0 12px;
  }
}
@media (max-width: 992px) {
  .cid-umfkgKqPt4 .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-umfkgKqPt4 .container {
    padding: 0 12px;
  }
}
.cid-umfkgKqPt4 .title-wrapper a {
  display: block;
}
.cid-umfkgKqPt4 .title-wrapper a .mbr-section-title {
  margin-bottom: 24px;
}
.cid-umfkgKqPt4 .list-wrapper .mbr-list-title {
  margin-bottom: 12px;
}
.cid-umfkgKqPt4 .list-wrapper .list,
.cid-umfkgKqPt4 .list-wrapper .list_main {
  margin-bottom: 70px;
  padding: 0;
  list-style-type: none;
}
@media (max-width: 992px) {
  .cid-umfkgKqPt4 .list-wrapper .list,
  .cid-umfkgKqPt4 .list-wrapper .list_main {
    margin-bottom: 24px;
  }
}
.cid-umfkgKqPt4 .list-wrapper .list .item-wrap,
.cid-umfkgKqPt4 .list-wrapper .list_main .item-wrap {
  margin: 12px 0 6px 0;
  transition: all 0.3s ease-in-out;
}
.cid-umfkgKqPt4 .list-wrapper .list .item-wrap:hover,
.cid-umfkgKqPt4 .list-wrapper .list_main .item-wrap:hover,
.cid-umfkgKqPt4 .list-wrapper .list .item-wrap:focus,
.cid-umfkgKqPt4 .list-wrapper .list_main .item-wrap:focus {
  color: #ff6928;
  text-decoration: underline;
}
.cid-umfkgKqPt4 .contacts-wrapper .list {
  margin-bottom: 40px;
  padding: 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  list-style-type: none;
}
@media (max-width: 992px) {
  .cid-umfkgKqPt4 .contacts-wrapper .list {
    margin-bottom: 24px;
  }
}
.cid-umfkgKqPt4 .contacts-wrapper .list .item-wrap {
  opacity: .7;
  margin: 0 32px 16px 0;
  transition: all 0.3s ease-in-out;
}
.cid-umfkgKqPt4 .contacts-wrapper .list .item-wrap:hover,
.cid-umfkgKqPt4 .contacts-wrapper .list .item-wrap:focus {
  color: #ff6928;
  text-decoration: underline;
}
.cid-umfkgKqPt4 .social-row {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  height: 100px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-umfkgKqPt4 .social-row {
    justify-content: center;
    margin-bottom: 24px;
  }
}
.cid-umfkgKqPt4 .social-row .soc-item {
  margin-right: 24px;
}
.cid-umfkgKqPt4 .social-row .soc-item a:hover .mbr-iconfont,
.cid-umfkgKqPt4 .social-row .soc-item a:focus .mbr-iconfont {
  background-color: #ff6928;
}
.cid-umfkgKqPt4 .social-row .soc-item a .mbr-iconfont {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 20px;
  background-color: #ffffff;
  color: #222222;
  transition: all 0.3s ease-in-out;
}
.cid-umfkgKqPt4 .copyright {
  margin-bottom: 0;
  opacity: .7;
  color: #000000;
  text-align: center;
}
.cid-umfkgKqPt4 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-umfkgKqPt4 .mbr-list-title {
  color: #000000;
  text-align: center;
}
.cid-umfkgKqPt4 .list {
  color: #000000;
  text-align: left;
}
.cid-umfkgKqPt4 .list_main {
  color: #000000;
  text-align: left;
}
.cid-umfvrGnMVW .navbar-dropdown {
  position: relative !important;
}
.cid-umfvrGnMVW .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-umfvrGnMVW .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-umfvrGnMVW .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-umfvrGnMVW .dropdown-item:hover,
.cid-umfvrGnMVW .dropdown-item:focus {
  background: #fd1f03 !important;
  color: white !important;
}
.cid-umfvrGnMVW .dropdown-item:hover span {
  color: white;
}
.cid-umfvrGnMVW .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-umfvrGnMVW .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-umfvrGnMVW .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 2em !important;
}
@media (max-width: 991px) {
  .cid-umfvrGnMVW .nav-dropdown .link {
    padding: 0 !important;
    margin: 6px 0 !important;
  }
}
.cid-umfvrGnMVW .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-umfvrGnMVW .nav-link {
  position: relative;
}
@media (max-width: 991px) {
  .cid-umfvrGnMVW .nav-link {
    display: flex !important;
    justify-content: flex-start !important;
    width: 100% !important;
  }
}
.cid-umfvrGnMVW .nav-link:before {
  content: '' !important;
  width: 6px !important;
  height: 6px !important;
  left: 0 !important;
  margin-right: 9px !important;
  position: relative !important;
  border: 1px solid currentColor !important;
  border-radius: 100% !important;
  display: inline-block !important;
  vertical-align: middle !important;
}
.cid-umfvrGnMVW .nav-link:hover:before {
  background-color: currentColor !important;
}
.cid-umfvrGnMVW .container {
  display: flex;
  margin: auto;
}
.cid-umfvrGnMVW .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-umfvrGnMVW .navbar-nav {
  min-height: 70px;
  align-items: flex-start;
  flex-grow: 1;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-umfvrGnMVW .navbar-nav {
    align-items: center;
  }
}
.cid-umfvrGnMVW .dropdown-menu,
.cid-umfvrGnMVW .navbar.opened {
  background: #fffdf7 !important;
}
.cid-umfvrGnMVW .nav-item:focus,
.cid-umfvrGnMVW .nav-link:focus {
  outline: none;
}
.cid-umfvrGnMVW .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
  border-bottom: 1px solid #7f8678;
}
.cid-umfvrGnMVW .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-umfvrGnMVW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-umfvrGnMVW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-umfvrGnMVW .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-umfvrGnMVW .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-umfvrGnMVW .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid #7f8678;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fffdf7;
  padding: 0 !important;
  box-shadow: none;
}
.cid-umfvrGnMVW .navbar.opened {
  transition: all 0.3s;
}
.cid-umfvrGnMVW .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-umfvrGnMVW .navbar .navbar-logo img {
  width: auto;
}
.cid-umfvrGnMVW .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-umfvrGnMVW .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-umfvrGnMVW .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-umfvrGnMVW .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-umfvrGnMVW .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-umfvrGnMVW .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-umfvrGnMVW .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-umfvrGnMVW .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-umfvrGnMVW .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-umfvrGnMVW .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-umfvrGnMVW .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-umfvrGnMVW .navbar.navbar-short {
  min-height: 60px;
}
.cid-umfvrGnMVW .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-umfvrGnMVW .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-umfvrGnMVW .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 38px 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-umfvrGnMVW .navbar-brand {
    border-right: 1px solid #7f8678;
  }
}
.cid-umfvrGnMVW .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-umfvrGnMVW .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-umfvrGnMVW .navbar.navbar-short .navbar-brand {
  padding: 10px 38px 10px 0;
}
.cid-umfvrGnMVW .dropdown-item.active,
.cid-umfvrGnMVW .dropdown-item:active {
  background-color: transparent;
}
.cid-umfvrGnMVW .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-umfvrGnMVW .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-umfvrGnMVW .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-umfvrGnMVW .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fffdf7;
}
.cid-umfvrGnMVW .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-umfvrGnMVW .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-umfvrGnMVW ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-umfvrGnMVW .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-umfvrGnMVW button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-umfvrGnMVW button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 40px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-umfvrGnMVW button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-umfvrGnMVW button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umfvrGnMVW button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umfvrGnMVW button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-umfvrGnMVW nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-umfvrGnMVW nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-umfvrGnMVW nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-umfvrGnMVW nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-umfvrGnMVW .navbar-dropdown {
  padding: 0 1rem;
}
.cid-umfvrGnMVW a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-umfvrGnMVW .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-umfvrGnMVW .navbar {
    height: 70px;
  }
  .cid-umfvrGnMVW .navbar.opened {
    height: auto;
  }
  .cid-umfvrGnMVW .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-umfvrGnMVW .container-fluid {
  padding: 0 33px;
}
@media (min-width: 992px) {
  .cid-umfvrGnMVW .container-fluid {
    padding: 0 40px;
  }
}
.cid-umfvrGnMVW .layout-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-umfvrGnMVW .layout-container {
    flex-wrap: nowrap;
  }
}
@media (max-width: 991px) {
  .cid-umfvrGnMVW .nav-item {
    width: 100%;
    text-align: left;
    display: flex;
    flex-wrap: wrap;
  }
  .cid-umfvrGnMVW .nav-item .dropdown-toggle::after {
    margin: 0 0 0 auto !important;
  }
  .cid-umfvrGnMVW .nav-item .dropdown-menu {
    width: 100%;
    border: none;
    box-shadow: none;
    border-radius: 0 !important;
  }
  .cid-umfvrGnMVW .nav-item .dropdown-menu .dropdown-item {
    display: flex;
    justify-content: flex-start;
    padding: 6px 0 !important;
  }
  .cid-umfvrGnMVW .nav-item .dropdown-menu .dropdown-toggle {
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center !important;
    padding: 6px 0 !important;
  }
  .cid-umfvrGnMVW .nav-item .dropdown-menu .dropdown-toggle::after {
    position: static !important;
  }
}
.cid-umfvrGnMVW .mbr-section-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  min-width: min-content;
}
@media (min-width: 992px) {
  .cid-umfvrGnMVW .mbr-section-btn {
    border-left: 1px solid #7f8678;
    min-height: 100%;
  }
}
.cid-umfvrGnMVW .mbr-section-btn .btn {
  margin: 0;
  min-height: 70px;
  padding: 0 17px 0 17px;
  border-radius: 0;
  word-break: normal;
  flex-grow: 1;
}
@media (max-width: 991px) {
  .cid-umfvrGnMVW .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-umfvrHJ8wF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #cdf9de;
}
.cid-umfvrHJ8wF .mbr-fallback-image.disabled {
  display: none;
}
.cid-umfvrHJ8wF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umfvrHJ8wF .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-umfvrHJ8wF .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-umfvrHJ8wF .container-fluid {
    padding: 0 12px;
  }
}
@media (max-width: 992px) {
  .cid-umfvrHJ8wF .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-umfvrHJ8wF .container {
    padding: 0 12px;
  }
}
.cid-umfvrHJ8wF .title-wrapper .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-umfvrHJ8wF .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-umfvrHJ8wF .title-wrapper .mbr-section-title span {
  padding: 6px 12px;
  background-color: #ffcd9f;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-umfvrHJ8wF .title-wrapper .mbr-section-title span {
    padding: 0 10px;
    border-radius: 8px;
  }
}
.cid-umfvrHJ8wF .title-wrapper .mbr-text {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-umfvrHJ8wF .title-wrapper .mbr-text {
    margin-bottom: 24px;
  }
}
@media (max-width: 992px) {
  .cid-umfvrHJ8wF .title-wrapper .mbr-section-btn {
    margin-bottom: 40px;
  }
}
.cid-umfvrHJ8wF .title-wrapper .tags-wrapper {
  margin-bottom: 24px;
}
.cid-umfvrHJ8wF .title-wrapper .tags-wrapper .tags-wrap {
  display: inline-block;
}
.cid-umfvrHJ8wF .title-wrapper .tags-wrapper .tags-wrap .tag-item {
  display: inline-flex;
  align-items: center;
  margin-right: 40px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.cid-umfvrHJ8wF .title-wrapper .tags-wrapper .tags-wrap .tag-item .mbr-iconfont {
  font-size: 44px;
  margin-right: 8px;
  color: #222222;
}
.cid-umfvrHJ8wF .title-wrapper .tags-wrapper .tags-wrap .tag-item .mbr-tag {
  margin-bottom: 0;
}
.cid-umfvrHJ8wF .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.cid-umfvrHJ8wF .image-wrapper img {
  width: 420px;
  height: 420px;
  border-radius: 100%;
  border: 3px solid #db0309;
  box-shadow: 4px 4px #db0309;
  background-color: #db0309;
  object-fit: cover;
}
@media (max-width: 1300px) {
  .cid-umfvrHJ8wF .image-wrapper img {
    width: 350px;
    height: 350px;
  }
}
@media (max-width: 1200px) {
  .cid-umfvrHJ8wF .image-wrapper img {
    width: 310px;
    height: 310px;
  }
}
@media (max-width: 768px) {
  .cid-umfvrHJ8wF .image-wrapper img {
    width: 280px;
    height: 280px;
  }
}
.cid-umfvrHJ8wF .mbr-section-title {
  color: #222222;
}
.cid-umfvrHJ8wF .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-umfvrHJ8wF .mbr-tag {
  color: #222222;
}
.cid-umfvrHJ8wF .mbr-section-title,
.cid-umfvrHJ8wF .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-umfvrJyl4a {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-umfvrJyl4a .mbr-fallback-image.disabled {
  display: none;
}
.cid-umfvrJyl4a .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-umfvrJyl4a .container {
    padding: 0 30px;
  }
}
.cid-umfvrJyl4a .row {
  justify-content: center;
}
.cid-umfvrJyl4a .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-umfvrJyl4a .content-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-umfvrJyl4a .content-wrapper .mbr-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-umfvrJyl4a .content-wrapper .mbr-text {
    margin-bottom: 40px;
  }
}
.cid-umfvrJyl4a .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  color: #144031;
}
.cid-umfvrJyl4a .list .item-wrap {
  margin-bottom: 20px;
  padding-left: 30px;
  position: relative;
}
.cid-umfvrJyl4a .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-umfvrJyl4a .list .item-wrap::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  width: 9px;
  height: 9px;
  background-color: #000000;
}
.cid-umfvrJyl4a .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-umfvrJyl4a .mbr-text {
  color: #144031;
}
.cid-umfvrJyl4a .list,
.cid-umfvrJyl4a .item-wrap {
  color: #000000;
}
.cid-umfvrKjzjp {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #cdf9de;
}
.cid-umfvrKjzjp .mbr-fallback-image.disabled {
  display: none;
}
.cid-umfvrKjzjp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umfvrKjzjp .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-umfvrKjzjp .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-umfvrKjzjp .container-fluid {
    padding: 0 12px;
  }
}
@media (max-width: 992px) {
  .cid-umfvrKjzjp .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-umfvrKjzjp .container {
    padding: 0 12px;
  }
}
.cid-umfvrKjzjp .row {
  justify-content: center;
}
.cid-umfvrKjzjp .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-umfvrKjzjp .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
@media (max-width: 992px) {
  .cid-umfvrKjzjp .card {
    margin-bottom: 32px;
  }
}
.cid-umfvrKjzjp .card .card-wrapper .icon-wrapper {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-umfvrKjzjp .card .card-wrapper .icon-wrapper {
    text-align: center;
  }
}
.cid-umfvrKjzjp .card .card-wrapper .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  color: #000000;
}
.cid-umfvrKjzjp .card .card-wrapper .icon-wrapper .icon_1 {
  background-color: #e3b4fa;
}
.cid-umfvrKjzjp .card .card-wrapper .icon-wrapper .icon_2 {
  background-color: #ffcd9f;
}
.cid-umfvrKjzjp .card .card-wrapper .icon-wrapper .icon_3 {
  background-color: #b4dcfa;
}
.cid-umfvrKjzjp .card .card-wrapper .mbr-card-title {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-umfvrKjzjp .card .card-wrapper .mbr-card-title {
    text-align: center;
  }
}
.cid-umfvrKjzjp .card .card-wrapper .mbr-text {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-umfvrKjzjp .card .card-wrapper .mbr-text {
    text-align: center;
  }
}
.cid-umfvrKjzjp .mbr-section-title {
  color: #222222;
  text-align: center;
}
.cid-umfvrKjzjp .mbr-card-title {
  color: #222222;
}
.cid-umfvrKjzjp .mbr-text {
  color: #222222;
}
.cid-umfvrKjzjp .mbr-card-title,
.cid-umfvrKjzjp .icon-wrapper {
  text-align: center;
  color: #000000;
}
.cid-umfvrLsN8m {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-umfvrLsN8m .mbr-fallback-image.disabled {
  display: none;
}
.cid-umfvrLsN8m .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-umfvrLsN8m .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-umfvrLsN8m .container {
    padding: 0 12px;
  }
}
.cid-umfvrLsN8m .row {
  justify-content: center;
}
.cid-umfvrLsN8m .image-wrapper {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-umfvrLsN8m .image-wrapper {
    margin-bottom: 24px;
    height: auto;
  }
}
.cid-umfvrLsN8m .image-wrapper img {
  height: 270px;
  width: 270px;
  margin: 0 auto;
  border-radius: 100%;
  border: 3px solid #cdf9de;
  box-shadow: 4px 4px #cdf9de;
  background-color: #cdf9de;
  object-fit: cover;
}
.cid-umfvrLsN8m .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-umfvrLsN8m .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-umfvrM7JKc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #cdf9de;
}
.cid-umfvrM7JKc .mbr-fallback-image.disabled {
  display: none;
}
.cid-umfvrM7JKc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umfvrM7JKc .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-umfvrM7JKc .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-umfvrM7JKc .container-fluid {
    padding: 0 12px;
  }
}
@media (max-width: 992px) {
  .cid-umfvrM7JKc .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-umfvrM7JKc .container {
    padding: 0 12px;
  }
}
.cid-umfvrM7JKc .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-umfvrM7JKc .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-umfvrM7JKc .card {
  margin-bottom: 32px;
}
.cid-umfvrM7JKc .card .card-wrapper {
  padding: 32px;
  border: 3px solid #ffffff;
  box-shadow: 4px 4px #ffffff;
  border-radius: 32px;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-umfvrM7JKc .card .card-wrapper {
    padding: 20px;
    border-radius: 24px;
  }
}
.cid-umfvrM7JKc .card .card-wrapper .mbr-card-title {
  margin-bottom: 16px;
}
.cid-umfvrM7JKc .card .card-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-umfvrM7JKc .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-umfvrM7JKc .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-umfvrM7JKc .mbr-card-title {
  color: #222222;
}
.cid-umfvrM7JKc .mbr-card-title,
.cid-umfvrM7JKc .title-wrap {
  text-align: center;
  color: #000000;
}
.cid-umfvrNalmL {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-umfvrNalmL .mbr-fallback-image.disabled {
  display: none;
}
.cid-umfvrNalmL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umfvrNalmL .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-umfvrNalmL .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-umfvrNalmL .container-fluid {
    padding: 0 12px;
  }
}
@media (max-width: 992px) {
  .cid-umfvrNalmL .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-umfvrNalmL .container {
    padding: 0 12px;
  }
}
.cid-umfvrNalmL .row {
  justify-content: center;
}
.cid-umfvrNalmL .card-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px;
  background-color: #cdf9de;
  border-radius: 50px;
}
@media (max-width: 992px) {
  .cid-umfvrNalmL .card-wrapper {
    display: block;
    padding: 24px;
    border-radius: 32px;
  }
}
@media (max-width: 992px) {
  .cid-umfvrNalmL .card-wrapper .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-umfvrNalmL .card-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-umfvrNalmL .card-wrapper .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-umfvrNalmL .card-wrapper .title-wrapper .mbr-text span {
  background-color: #e3b4fa;
  padding: 2px 6px;
  border-radius: 8px;
}
.cid-umfvrNalmL .card-wrapper .mbr-section-btn {
  height: 100%;
}
.cid-umfvrNalmL .card-wrapper .mbr-section-btn .btn {
  min-width: 200px;
}
.cid-umfvrNalmL .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-umfvrNalmL .mbr-text {
  color: #222222;
}
.cid-umfvrNalmL .mbr-text,
.cid-umfvrNalmL .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-umfvrO1LaN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #cdf9de;
}
.cid-umfvrO1LaN .mbr-fallback-image.disabled {
  display: none;
}
.cid-umfvrO1LaN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umfvrO1LaN .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-umfvrO1LaN .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-umfvrO1LaN .container-fluid {
    padding: 0 12px;
  }
}
@media (max-width: 992px) {
  .cid-umfvrO1LaN .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-umfvrO1LaN .container {
    padding: 0 12px;
  }
}
.cid-umfvrO1LaN .item {
  margin-bottom: 32px;
}
.cid-umfvrO1LaN .item a {
  display: block;
}
.cid-umfvrO1LaN .item a:hover .item-wrapper .item-img img {
  transform: scale(1.05);
}
.cid-umfvrO1LaN .item a .item-wrapper .item-img {
  overflow: hidden;
  border-radius: 32px;
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-umfvrO1LaN .item a .item-wrapper .item-img {
    border-radius: 24px;
  }
}
.cid-umfvrO1LaN .item a .item-wrapper .item-img img {
  height: 350px;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-umfvrO1LaN .item a .item-wrapper .item-img img {
    height: 300px;
  }
}
.cid-umfvrO1LaN .item a .item-wrapper .item-content .item-title {
  margin-bottom: 0;
}
.cid-umfvrO1LaN .mbr-section-btn {
  text-align: center;
}
.cid-umfvrO1LaN .item-content {
  color: #222222;
}
.cid-umfvrOZBhR {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-umfvrOZBhR .mbr-fallback-image.disabled {
  display: none;
}
.cid-umfvrOZBhR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umfvrOZBhR .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-umfvrOZBhR .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-umfvrOZBhR .container {
    padding: 0 16px;
  }
}
.cid-umfvrOZBhR .card {
  justify-content: center;
}
.cid-umfvrOZBhR .title-wrapper .mbr-section-title {
  display: inline-flex;
  margin-bottom: 0;
  padding: 18px 24px;
  border-radius: 16px !important;
  box-shadow: 6px 8px 0 0 #000000;
  background-color: #cdf9de;
  transform: rotate(-4deg);
}
@media (max-width: 992px) {
  .cid-umfvrOZBhR .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-umfvrOZBhR .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
.cid-umfvrOZBhR .text-wrapper .mbr-desc {
  margin-top: 24px;
  margin-bottom: 0;
}
.cid-umfvrOZBhR .mbr-section-title {
  color: #000000;
}
.cid-umfvrOZBhR .mbr-text {
  color: #000000;
}
.cid-umfvrOZBhR .mbr-desc {
  color: #000000;
}
.cid-umfvrOZBhR .mbr-text,
.cid-umfvrOZBhR .mbr-section-btn {
  color: #000000;
}
.cid-umfvrOZBhR .mbr-section-title,
.cid-umfvrOZBhR .title-wrapper {
  text-align: center;
}
.cid-umfvrPU7FF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #cdf9de;
}
.cid-umfvrPU7FF .mbr-fallback-image.disabled {
  display: none;
}
.cid-umfvrPU7FF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-umfvrPU7FF .container {
    padding: 0 16px;
  }
}
.cid-umfvrPU7FF .row {
  position: relative;
  z-index: 1;
}
.cid-umfvrPU7FF .card {
  justify-content: flex-end;
}
.cid-umfvrPU7FF .card-wrapper {
  margin-right: 64px;
}
@media (max-width: 1440px) {
  .cid-umfvrPU7FF .card-wrapper {
    margin-right: 0;
  }
}
@media (max-width: 992px) {
  .cid-umfvrPU7FF .card-wrapper {
    margin-bottom: 32px;
  }
}
.cid-umfvrPU7FF .card-wrapper .image-wrapper {
  position: relative;
  margin-bottom: -8rem;
}
.cid-umfvrPU7FF .card-wrapper .image-wrapper img {
  width: 520px;
  height: 520px;
  object-fit: cover;
  border-radius: 100% !important;
}
@media (max-width: 1200px) {
  .cid-umfvrPU7FF .card-wrapper .image-wrapper img {
    width: 420px;
    height: 420px;
  }
}
@media (max-width: 768px) {
  .cid-umfvrPU7FF .card-wrapper .image-wrapper img {
    width: 260px;
    height: 260px;
  }
}
.cid-umfvrPU7FF .card-wrapper .image-wrapper .card-desc {
  position: absolute;
  top: 55%;
  left: -1rem;
  display: inline-flex;
  margin-bottom: 0;
  padding: 6px 16px;
  border-radius: 4rem !important;
  box-shadow: 4px 6px 0 0 #000000;
  background-color: #c6f15c;
  transform: rotate(-4deg);
}
@media (max-width: 992px) {
  .cid-umfvrPU7FF .card-wrapper .image-wrapper .card-desc {
    left: .5rem;
  }
}
.cid-umfvrPU7FF .card-wrapper .card-wrap {
  background-color: #ffffff;
  box-shadow: 4px 6px 0 0 #000000;
  border-radius: 16px;
  padding: 175px 48px 36px;
  margin: 0 50px;
}
@media (max-width: 992px) {
  .cid-umfvrPU7FF .card-wrapper .card-wrap {
    margin: 0;
    padding: 150px 24px 24px;
  }
}
.cid-umfvrPU7FF .card-wrapper .card-wrap .card-text {
  margin-bottom: 16px;
}
.cid-umfvrPU7FF .card-wrapper .card-wrap .person-wrap .card-name {
  margin-bottom: 0;
}
.cid-umfvrPU7FF .card-wrapper .card-wrap .person-wrap .card-role {
  margin-bottom: 0;
}
.cid-umfvrPU7FF .title-wrapper {
  margin-bottom: 96px;
}
@media (max-width: 992px) {
  .cid-umfvrPU7FF .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-umfvrPU7FF .title-wrapper .mbr-section-subtitle {
  margin-bottom: 32px;
}
.cid-umfvrPU7FF .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-umfvrPU7FF .text-wrapper {
  margin-left: 104px;
}
@media (max-width: 1440px) {
  .cid-umfvrPU7FF .text-wrapper {
    margin-left: 48px;
  }
}
@media (max-width: 992px) {
  .cid-umfvrPU7FF .text-wrapper {
    margin-left: 0;
  }
}
.cid-umfvrPU7FF .text-wrapper .mbr-text {
  margin-bottom: 32px;
}
.cid-umfvrPU7FF .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-umfvrPU7FF .mbr-section-subtitle {
  color: #000000;
  text-align: right;
}
.cid-umfvrPU7FF .mbr-text {
  color: #000000;
}
.cid-umfvrPU7FF .card-desc {
  color: #000000;
}
.cid-umfvrPU7FF .card-text {
  color: #000000;
}
.cid-umfvrPU7FF .card-name {
  color: #ffffff;
}
.cid-umfvrPU7FF .card-role {
  color: #ffffff;
}
.cid-umfvrPU7FF .mbr-text,
.cid-umfvrPU7FF .mbr-section-btn {
  color: #000000;
}
.cid-umfvrQRyRr {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-umfvrQRyRr .mbr-fallback-image.disabled {
  display: none;
}
.cid-umfvrQRyRr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umfvrQRyRr .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-umfvrQRyRr .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-umfvrQRyRr .container-fluid {
    padding: 0 12px;
  }
}
@media (max-width: 992px) {
  .cid-umfvrQRyRr .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-umfvrQRyRr .container {
    padding: 0 12px;
  }
}
.cid-umfvrQRyRr .row {
  justify-content: center;
}
.cid-umfvrQRyRr .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-umfvrQRyRr .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-umfvrQRyRr .panel-group .card {
  border-radius: 50px;
  border: 3px solid #000000;
  box-shadow: 4px 4px #000000;
  background-color: #cdf9de;
  padding: 60px;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-umfvrQRyRr .panel-group .card {
    padding: 24px;
    border-radius: 24px;
  }
}
.cid-umfvrQRyRr .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  margin-bottom: 0;
  padding: 0;
}
.cid-umfvrQRyRr .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-umfvrQRyRr .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-umfvrQRyRr .panel-group .card .card-header .panel-title .mbr-iconfont {
  font-size: 24px;
  color: #000000;
  transition: all 0.3s ease-in-out;
}
.cid-umfvrQRyRr .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(-180deg);
}
.cid-umfvrQRyRr .panel-group .card .panel-collapse .panel-body {
  padding-top: 24px;
}
@media (max-width: 992px) {
  .cid-umfvrQRyRr .panel-group .card .panel-collapse .panel-body {
    padding-top: 16px;
  }
}
.cid-umfvrQRyRr .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-umfvrQRyRr .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-umfvrQRyRr .panel-title-edit {
  color: #222222;
}
.cid-umfvrQRyRr .panel-text {
  color: #222222;
}
.cid-umfvrSitgm {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #cdf9de;
}
.cid-umfvrSitgm .mbr-fallback-image.disabled {
  display: none;
}
.cid-umfvrSitgm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umfvrSitgm .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-umfvrSitgm .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-umfvrSitgm .container-fluid {
    padding: 0 12px;
  }
}
.cid-umfvrSitgm .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-umfvrSitgm .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-umfvrSitgm .container {
    padding: 0 12px;
  }
}
.cid-umfvrSitgm .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-umfvrSitgm .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-umfvrSitgm .card-wrapper {
  padding: 40px;
  border-radius: 50px;
  border: 3px solid #222222;
  box-shadow: 4px 4px #222222;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-umfvrSitgm .card-wrapper {
    padding: 24px;
    border-radius: 24px;
  }
}
.cid-umfvrSitgm .card-wrapper .card-wrap {
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-umfvrSitgm .card-wrapper .card-wrap {
    display: block;
  }
}
.cid-umfvrSitgm .card-wrapper .card-wrap .icon-wrapper {
  margin-right: 40px;
}
@media (max-width: 992px) {
  .cid-umfvrSitgm .card-wrapper .card-wrap .icon-wrapper {
    margin: 0 0 16px 0;
    text-align: center;
  }
}
.cid-umfvrSitgm .card-wrapper .card-wrap .icon-wrapper .mbr-iconfont {
  font-size: 140px;
  color: #ff6928;
}
@media (max-width: 992px) {
  .cid-umfvrSitgm .card-wrapper .card-wrap .icon-wrapper .mbr-iconfont {
    font-size: 100px;
  }
}
.cid-umfvrSitgm .card-wrapper .card-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-umfvrSitgm .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-umfvrSitgm .mbr-section-subtitle {
  color: #222222;
}
.cid-umfvrSitgm .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-umfvrSitgm .list {
  color: #222222;
}
.cid-umfyyLnO9M {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-umfyyLnO9M .mbr-fallback-image.disabled {
  display: none;
}
.cid-umfyyLnO9M .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umfyyLnO9M .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-umfyyLnO9M .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-umfyyLnO9M .container {
    padding: 0 20px;
  }
}
.cid-umfyyLnO9M .row {
  justify-content: space-between;
}
.cid-umfyyLnO9M .image-wrapper {
  padding-left: 100px;
}
@media (max-width: 1200px) {
  .cid-umfyyLnO9M .image-wrapper {
    padding-left: 50px;
  }
}
@media (max-width: 992px) {
  .cid-umfyyLnO9M .image-wrapper {
    padding-left: 0;
    margin-bottom: 40px;
  }
}
.cid-umfyyLnO9M .image-wrapper .image-wrap {
  padding: 0 0 0 116px;
  margin-bottom: 0;
}
@media (max-width: 1440px) {
  .cid-umfyyLnO9M .image-wrapper .image-wrap {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-umfyyLnO9M .image-wrapper .image-wrap {
    margin-bottom: 40px;
  }
}
.cid-umfyyLnO9M .image-wrapper .image-wrap img {
  height: 680px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-umfyyLnO9M .image-wrapper .image-wrap img {
    height: 350px;
  }
}
.cid-umfyyLnO9M .content-wrapper {
  padding: 0 100px 0 100px;
  position: sticky;
  top: 20px;
}
@media (max-width: 1200px) {
  .cid-umfyyLnO9M .content-wrapper {
    padding: 0 50px 0 0;
  }
}
@media (max-width: 992px) {
  .cid-umfyyLnO9M .content-wrapper {
    padding: 0;
    margin-bottom: 40px;
  }
}
.cid-umfyyLnO9M .content-wrapper .content-wrap {
  padding-right: 116px;
}
@media (max-width: 1440px) {
  .cid-umfyyLnO9M .content-wrapper .content-wrap {
    padding-right: 0;
  }
}
.cid-umfyyLnO9M .content-wrapper .content-wrap .mbr-text {
  font-family: "Source Serif 4", sans-serif !important;
  position: relative;
  padding-bottom: 40px;
  margin-bottom: 0;
}
.cid-umfyyLnO9M .content-wrapper .content-wrap .mbr-text::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 80%;
  background-color: #ffffff;
  opacity: .2;
}
.cid-umfyyLnO9M .mbr-text {
  color: #ffffff;
}
.cid-umfyyLnO9M .mbr-section-title {
  color: #1e1d1c;
}
.cid-umfvrTcN2n {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-umfvrTcN2n .mbr-fallback-image.disabled {
  display: none;
}
.cid-umfvrTcN2n .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-umfvrTcN2n .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-umfvrTcN2n .container {
    padding: 0 12px;
  }
}
.cid-umfvrTcN2n .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-umfvrTcN2n .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-umfvrTcN2n .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-umfvrTcN2n .mbr-text {
  color: #222222;
}
.cid-umfvrTcN2n .mbr-text,
.cid-umfvrTcN2n .mbr-section-btn {
  color: #000000;
}
.cid-umfvrU7PEa {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #cdf9de;
}
.cid-umfvrU7PEa .mbr-fallback-image.disabled {
  display: none;
}
.cid-umfvrU7PEa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-umfvrU7PEa .container {
    padding: 0 16px;
  }
}
.cid-umfvrU7PEa .row {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-umfvrU7PEa .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-umfvrU7PEa .title-wrapper .subtitle-wrapper .mbr-section-subtitle {
  display: inline-flex;
  margin-bottom: 42px;
  padding: 14px 24px;
  border-radius: 8px !important;
  box-shadow: 4px 6px 0 0 #000000;
  background-color: #ffffff;
  transform: rotate(-4deg);
}
@media (max-width: 992px) {
  .cid-umfvrU7PEa .title-wrapper .subtitle-wrapper .mbr-section-subtitle {
    margin-bottom: 32px;
  }
}
.cid-umfvrU7PEa .title-wrapper .mbr-section-title {
  margin-bottom: 72px;
}
@media (max-width: 992px) {
  .cid-umfvrU7PEa .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-umfvrU7PEa .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-umfvrU7PEa .card-wrapper {
  background-color: #ffffff;
  box-shadow: 6px 8px 0 0 #000000;
  border-radius: 24px;
  padding: 80px;
}
.cid-umfvrU7PEa .card-wrapper .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 72px;
}
@media (max-width: 992px) {
  .cid-umfvrU7PEa .card-wrapper .image-wrapper {
    margin-bottom: 32px;
    display: block;
  }
}
.cid-umfvrU7PEa .card-wrapper .image-wrapper img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  box-shadow: 4px 6px 0 0 #000000;
  transform: rotate(4deg);
}
.cid-umfvrU7PEa .card-wrapper .card-text {
  margin-bottom: 24px;
}
.cid-umfvrU7PEa .mbr-section-title {
  color: #ffffff;
}
.cid-umfvrU7PEa .mbr-section-subtitle {
  color: #000000;
}
.cid-umfvrU7PEa .mbr-text {
  color: #ffffff;
}
.cid-umfvrU7PEa .card-text {
  text-align: center;
  color: #000000;
}
.cid-umfvrU7PEa .mbr-section-subtitle,
.cid-umfvrU7PEa .subtitle-wrapper {
  text-align: center;
}
.cid-umfvrU7PEa .mbr-text,
.cid-umfvrU7PEa .text-wrapper {
  color: #000000;
}
.cid-umfvrVQAgN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-umfvrVQAgN .mbr-fallback-image.disabled {
  display: none;
}
.cid-umfvrVQAgN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umfvrVQAgN .content-wrap {
  padding: 60px;
  background-color: #cdf9de;
}
@media (max-width: 992px) {
  .cid-umfvrVQAgN .content-wrap {
    padding: 30px 20px;
  }
}
.cid-umfvrVQAgN .content-wrap .title-wrapper {
  margin-bottom: 54px;
}
@media (max-width: 992px) {
  .cid-umfvrVQAgN .content-wrap .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-umfvrVQAgN .content-wrap .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 60%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-umfvrVQAgN .content-wrap .title-wrapper .mbr-section-title {
    width: 100%;
  }
}
.cid-umfvrVQAgN .content-wrap .panel-group .card {
  position: relative;
  padding: 30px;
  margin-top: 20px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-umfvrVQAgN .content-wrap .panel-group .card {
    padding: 20px;
  }
}
.cid-umfvrVQAgN .content-wrap .panel-group .card:first-child {
  margin-top: 0;
}
.cid-umfvrVQAgN .content-wrap .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-umfvrVQAgN .content-wrap .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-umfvrVQAgN .content-wrap .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-umfvrVQAgN .content-wrap .panel-group .card .card-header .panel-title .icon-wrapper {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 30px;
  transition: all 0.3s ease-in-out;
  border-radius: 100%;
  background-color: #cdf9de;
}
@media (max-width: 992px) {
  .cid-umfvrVQAgN .content-wrap .panel-group .card .card-header .panel-title .icon-wrapper {
    margin-left: 16px;
  }
}
.cid-umfvrVQAgN .content-wrap .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  color: #b19a7c;
}
.cid-umfvrVQAgN .content-wrap .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper {
  transform: rotate(-45deg);
}
.cid-umfvrVQAgN .content-wrap .panel-group .card .panel-collapse .panel-body {
  margin: 20px 0 0 0;
}
.cid-umfvrVQAgN .content-wrap .panel-group .card .panel-collapse .panel-body .panel-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-umfvrVQAgN .content-wrap .panel-group .card .panel-collapse .panel-body .panel-text {
    width: 100%;
  }
}
.cid-umfvrVQAgN .mbr-section-title {
  color: #404349;
}
.cid-umfvrVQAgN .panel-title-edit {
  color: #000000;
}
.cid-umfvrVQAgN .panel-text {
  color: #404349;
}
.cid-umfvrVQAgN .mbr-section-title,
.cid-umfvrVQAgN .title-wrapper,
.cid-umfvrVQAgN .tabs-wrapper {
  text-align: center;
  color: #000000;
}
.cid-umfvrVQAgN .panel-text,
.cid-umfvrVQAgN .panel-body {
  color: #000000;
}
.cid-umfvrXJ2I1 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #fffdf7;
}
.cid-umfvrXJ2I1 .google-map {
  height: 686px;
  position: relative;
  border: 1px solid #7F8678;
  border-left: none;
  border-right: none;
  margin-top: -1px;
}
.cid-umfvrXJ2I1 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-umfvrXJ2I1 .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-umfvrXJ2I1 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-umfvrXJ2I1 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-umfvrXJ2I1 .container {
  padding: 0;
}
.cid-umfvrXJ2I1 .mbr-section-title {
  color: #000000;
}
.cid-umfvrXJ2I1 .mbr-section-subtitle {
  color: #3d3d3d;
}
.cid-umfvrZ1seu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #cdf9de;
}
.cid-umfvrZ1seu .mbr-fallback-image.disabled {
  display: none;
}
.cid-umfvrZ1seu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umfvrZ1seu .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-umfvrZ1seu .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-umfvrZ1seu .container-fluid {
    padding: 0 12px;
  }
}
@media (max-width: 992px) {
  .cid-umfvrZ1seu .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-umfvrZ1seu .container {
    padding: 0 12px;
  }
}
.cid-umfvrZ1seu .title-wrapper a {
  display: block;
}
.cid-umfvrZ1seu .title-wrapper a .mbr-section-title {
  margin-bottom: 24px;
}
.cid-umfvrZ1seu .list-wrapper .mbr-list-title {
  margin-bottom: 12px;
}
.cid-umfvrZ1seu .list-wrapper .list,
.cid-umfvrZ1seu .list-wrapper .list_main {
  margin-bottom: 70px;
  padding: 0;
  list-style-type: none;
}
@media (max-width: 992px) {
  .cid-umfvrZ1seu .list-wrapper .list,
  .cid-umfvrZ1seu .list-wrapper .list_main {
    margin-bottom: 24px;
  }
}
.cid-umfvrZ1seu .list-wrapper .list .item-wrap,
.cid-umfvrZ1seu .list-wrapper .list_main .item-wrap {
  margin: 12px 0 6px 0;
  transition: all 0.3s ease-in-out;
}
.cid-umfvrZ1seu .list-wrapper .list .item-wrap:hover,
.cid-umfvrZ1seu .list-wrapper .list_main .item-wrap:hover,
.cid-umfvrZ1seu .list-wrapper .list .item-wrap:focus,
.cid-umfvrZ1seu .list-wrapper .list_main .item-wrap:focus {
  color: #ff6928;
  text-decoration: underline;
}
.cid-umfvrZ1seu .contacts-wrapper .list {
  margin-bottom: 40px;
  padding: 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  list-style-type: none;
}
@media (max-width: 992px) {
  .cid-umfvrZ1seu .contacts-wrapper .list {
    margin-bottom: 24px;
  }
}
.cid-umfvrZ1seu .contacts-wrapper .list .item-wrap {
  opacity: .7;
  margin: 0 32px 16px 0;
  transition: all 0.3s ease-in-out;
}
.cid-umfvrZ1seu .contacts-wrapper .list .item-wrap:hover,
.cid-umfvrZ1seu .contacts-wrapper .list .item-wrap:focus {
  color: #ff6928;
  text-decoration: underline;
}
.cid-umfvrZ1seu .social-row {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  height: 100px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-umfvrZ1seu .social-row {
    justify-content: center;
    margin-bottom: 24px;
  }
}
.cid-umfvrZ1seu .social-row .soc-item {
  margin-right: 24px;
}
.cid-umfvrZ1seu .social-row .soc-item a:hover .mbr-iconfont,
.cid-umfvrZ1seu .social-row .soc-item a:focus .mbr-iconfont {
  background-color: #ff6928;
}
.cid-umfvrZ1seu .social-row .soc-item a .mbr-iconfont {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 20px;
  background-color: #ffffff;
  color: #222222;
  transition: all 0.3s ease-in-out;
}
.cid-umfvrZ1seu .copyright {
  margin-bottom: 0;
  opacity: .7;
  color: #000000;
  text-align: center;
}
.cid-umfvrZ1seu .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-umfvrZ1seu .mbr-list-title {
  color: #000000;
  text-align: center;
}
.cid-umfvrZ1seu .list {
  color: #000000;
  text-align: left;
}
.cid-umfvrZ1seu .list_main {
  color: #000000;
  text-align: left;
}
.cid-umfCVJMlGZ .navbar-dropdown {
  position: relative !important;
}
.cid-umfCVJMlGZ .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-umfCVJMlGZ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-umfCVJMlGZ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-umfCVJMlGZ .dropdown-item:hover,
.cid-umfCVJMlGZ .dropdown-item:focus {
  background: #fd1f03 !important;
  color: white !important;
}
.cid-umfCVJMlGZ .dropdown-item:hover span {
  color: white;
}
.cid-umfCVJMlGZ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-umfCVJMlGZ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-umfCVJMlGZ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 2em !important;
}
@media (max-width: 991px) {
  .cid-umfCVJMlGZ .nav-dropdown .link {
    padding: 0 !important;
    margin: 6px 0 !important;
  }
}
.cid-umfCVJMlGZ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-umfCVJMlGZ .nav-link {
  position: relative;
}
@media (max-width: 991px) {
  .cid-umfCVJMlGZ .nav-link {
    display: flex !important;
    justify-content: flex-start !important;
    width: 100% !important;
  }
}
.cid-umfCVJMlGZ .nav-link:before {
  content: '' !important;
  width: 6px !important;
  height: 6px !important;
  left: 0 !important;
  margin-right: 9px !important;
  position: relative !important;
  border: 1px solid currentColor !important;
  border-radius: 100% !important;
  display: inline-block !important;
  vertical-align: middle !important;
}
.cid-umfCVJMlGZ .nav-link:hover:before {
  background-color: currentColor !important;
}
.cid-umfCVJMlGZ .container {
  display: flex;
  margin: auto;
}
.cid-umfCVJMlGZ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-umfCVJMlGZ .navbar-nav {
  min-height: 70px;
  align-items: flex-start;
  flex-grow: 1;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-umfCVJMlGZ .navbar-nav {
    align-items: center;
  }
}
.cid-umfCVJMlGZ .dropdown-menu,
.cid-umfCVJMlGZ .navbar.opened {
  background: #fffdf7 !important;
}
.cid-umfCVJMlGZ .nav-item:focus,
.cid-umfCVJMlGZ .nav-link:focus {
  outline: none;
}
.cid-umfCVJMlGZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
  border-bottom: 1px solid #7f8678;
}
.cid-umfCVJMlGZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-umfCVJMlGZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-umfCVJMlGZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-umfCVJMlGZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-umfCVJMlGZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-umfCVJMlGZ .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid #7f8678;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fffdf7;
  padding: 0 !important;
  box-shadow: none;
}
.cid-umfCVJMlGZ .navbar.opened {
  transition: all 0.3s;
}
.cid-umfCVJMlGZ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-umfCVJMlGZ .navbar .navbar-logo img {
  width: auto;
}
.cid-umfCVJMlGZ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-umfCVJMlGZ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-umfCVJMlGZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-umfCVJMlGZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-umfCVJMlGZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-umfCVJMlGZ .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-umfCVJMlGZ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-umfCVJMlGZ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-umfCVJMlGZ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-umfCVJMlGZ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-umfCVJMlGZ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-umfCVJMlGZ .navbar.navbar-short {
  min-height: 60px;
}
.cid-umfCVJMlGZ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-umfCVJMlGZ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-umfCVJMlGZ .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 38px 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-umfCVJMlGZ .navbar-brand {
    border-right: 1px solid #7f8678;
  }
}
.cid-umfCVJMlGZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-umfCVJMlGZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-umfCVJMlGZ .navbar.navbar-short .navbar-brand {
  padding: 10px 38px 10px 0;
}
.cid-umfCVJMlGZ .dropdown-item.active,
.cid-umfCVJMlGZ .dropdown-item:active {
  background-color: transparent;
}
.cid-umfCVJMlGZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-umfCVJMlGZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-umfCVJMlGZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-umfCVJMlGZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fffdf7;
}
.cid-umfCVJMlGZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-umfCVJMlGZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-umfCVJMlGZ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-umfCVJMlGZ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-umfCVJMlGZ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-umfCVJMlGZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 40px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-umfCVJMlGZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-umfCVJMlGZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umfCVJMlGZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umfCVJMlGZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-umfCVJMlGZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-umfCVJMlGZ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-umfCVJMlGZ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-umfCVJMlGZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-umfCVJMlGZ .navbar-dropdown {
  padding: 0 1rem;
}
.cid-umfCVJMlGZ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-umfCVJMlGZ .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-umfCVJMlGZ .navbar {
    height: 70px;
  }
  .cid-umfCVJMlGZ .navbar.opened {
    height: auto;
  }
  .cid-umfCVJMlGZ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-umfCVJMlGZ .container-fluid {
  padding: 0 33px;
}
@media (min-width: 992px) {
  .cid-umfCVJMlGZ .container-fluid {
    padding: 0 40px;
  }
}
.cid-umfCVJMlGZ .layout-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-umfCVJMlGZ .layout-container {
    flex-wrap: nowrap;
  }
}
@media (max-width: 991px) {
  .cid-umfCVJMlGZ .nav-item {
    width: 100%;
    text-align: left;
    display: flex;
    flex-wrap: wrap;
  }
  .cid-umfCVJMlGZ .nav-item .dropdown-toggle::after {
    margin: 0 0 0 auto !important;
  }
  .cid-umfCVJMlGZ .nav-item .dropdown-menu {
    width: 100%;
    border: none;
    box-shadow: none;
    border-radius: 0 !important;
  }
  .cid-umfCVJMlGZ .nav-item .dropdown-menu .dropdown-item {
    display: flex;
    justify-content: flex-start;
    padding: 6px 0 !important;
  }
  .cid-umfCVJMlGZ .nav-item .dropdown-menu .dropdown-toggle {
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center !important;
    padding: 6px 0 !important;
  }
  .cid-umfCVJMlGZ .nav-item .dropdown-menu .dropdown-toggle::after {
    position: static !important;
  }
}
.cid-umfCVJMlGZ .mbr-section-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  min-width: min-content;
}
@media (min-width: 992px) {
  .cid-umfCVJMlGZ .mbr-section-btn {
    border-left: 1px solid #7f8678;
    min-height: 100%;
  }
}
.cid-umfCVJMlGZ .mbr-section-btn .btn {
  margin: 0;
  min-height: 70px;
  padding: 0 17px 0 17px;
  border-radius: 0;
  word-break: normal;
  flex-grow: 1;
}
@media (max-width: 991px) {
  .cid-umfCVJMlGZ .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-umfCVKMnvE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #cdf9de;
}
.cid-umfCVKMnvE .mbr-fallback-image.disabled {
  display: none;
}
.cid-umfCVKMnvE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umfCVKMnvE .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-umfCVKMnvE .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-umfCVKMnvE .container-fluid {
    padding: 0 12px;
  }
}
@media (max-width: 992px) {
  .cid-umfCVKMnvE .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-umfCVKMnvE .container {
    padding: 0 12px;
  }
}
.cid-umfCVKMnvE .title-wrapper .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-umfCVKMnvE .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-umfCVKMnvE .title-wrapper .mbr-section-title span {
  padding: 6px 12px;
  background-color: #ffcd9f;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-umfCVKMnvE .title-wrapper .mbr-section-title span {
    padding: 0 10px;
    border-radius: 8px;
  }
}
.cid-umfCVKMnvE .title-wrapper .mbr-text {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-umfCVKMnvE .title-wrapper .mbr-text {
    margin-bottom: 24px;
  }
}
@media (max-width: 992px) {
  .cid-umfCVKMnvE .title-wrapper .mbr-section-btn {
    margin-bottom: 40px;
  }
}
.cid-umfCVKMnvE .title-wrapper .tags-wrapper {
  margin-bottom: 24px;
}
.cid-umfCVKMnvE .title-wrapper .tags-wrapper .tags-wrap {
  display: inline-block;
}
.cid-umfCVKMnvE .title-wrapper .tags-wrapper .tags-wrap .tag-item {
  display: inline-flex;
  align-items: center;
  margin-right: 40px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.cid-umfCVKMnvE .title-wrapper .tags-wrapper .tags-wrap .tag-item .mbr-iconfont {
  font-size: 44px;
  margin-right: 8px;
  color: #222222;
}
.cid-umfCVKMnvE .title-wrapper .tags-wrapper .tags-wrap .tag-item .mbr-tag {
  margin-bottom: 0;
}
.cid-umfCVKMnvE .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.cid-umfCVKMnvE .image-wrapper img {
  width: 420px;
  height: 420px;
  border-radius: 100%;
  border: 3px solid #db0309;
  box-shadow: 4px 4px #db0309;
  background-color: #db0309;
  object-fit: cover;
}
@media (max-width: 1300px) {
  .cid-umfCVKMnvE .image-wrapper img {
    width: 350px;
    height: 350px;
  }
}
@media (max-width: 1200px) {
  .cid-umfCVKMnvE .image-wrapper img {
    width: 310px;
    height: 310px;
  }
}
@media (max-width: 768px) {
  .cid-umfCVKMnvE .image-wrapper img {
    width: 280px;
    height: 280px;
  }
}
.cid-umfCVKMnvE .mbr-section-title {
  color: #222222;
}
.cid-umfCVKMnvE .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-umfCVKMnvE .mbr-tag {
  color: #222222;
}
.cid-umfCVKMnvE .mbr-section-title,
.cid-umfCVKMnvE .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-umfCVLRZ5b {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-umfCVLRZ5b .mbr-fallback-image.disabled {
  display: none;
}
.cid-umfCVLRZ5b .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-umfCVLRZ5b .container {
    padding: 0 30px;
  }
}
.cid-umfCVLRZ5b .row {
  justify-content: center;
}
.cid-umfCVLRZ5b .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-umfCVLRZ5b .content-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-umfCVLRZ5b .content-wrapper .mbr-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-umfCVLRZ5b .content-wrapper .mbr-text {
    margin-bottom: 40px;
  }
}
.cid-umfCVLRZ5b .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  color: #144031;
}
.cid-umfCVLRZ5b .list .item-wrap {
  margin-bottom: 20px;
  padding-left: 30px;
  position: relative;
}
.cid-umfCVLRZ5b .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-umfCVLRZ5b .list .item-wrap::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  width: 9px;
  height: 9px;
  background-color: #000000;
}
.cid-umfCVLRZ5b .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-umfCVLRZ5b .mbr-text {
  color: #144031;
}
.cid-umfCVLRZ5b .list,
.cid-umfCVLRZ5b .item-wrap {
  color: #000000;
}
.cid-umfCVMvMlz {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #cdf9de;
}
.cid-umfCVMvMlz .mbr-fallback-image.disabled {
  display: none;
}
.cid-umfCVMvMlz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umfCVMvMlz .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-umfCVMvMlz .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-umfCVMvMlz .container-fluid {
    padding: 0 12px;
  }
}
@media (max-width: 992px) {
  .cid-umfCVMvMlz .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-umfCVMvMlz .container {
    padding: 0 12px;
  }
}
.cid-umfCVMvMlz .row {
  justify-content: center;
}
.cid-umfCVMvMlz .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-umfCVMvMlz .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
@media (max-width: 992px) {
  .cid-umfCVMvMlz .card {
    margin-bottom: 32px;
  }
}
.cid-umfCVMvMlz .card .card-wrapper .icon-wrapper {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-umfCVMvMlz .card .card-wrapper .icon-wrapper {
    text-align: center;
  }
}
.cid-umfCVMvMlz .card .card-wrapper .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  color: #000000;
}
.cid-umfCVMvMlz .card .card-wrapper .icon-wrapper .icon_1 {
  background-color: #e3b4fa;
}
.cid-umfCVMvMlz .card .card-wrapper .icon-wrapper .icon_2 {
  background-color: #ffcd9f;
}
.cid-umfCVMvMlz .card .card-wrapper .icon-wrapper .icon_3 {
  background-color: #b4dcfa;
}
.cid-umfCVMvMlz .card .card-wrapper .mbr-card-title {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-umfCVMvMlz .card .card-wrapper .mbr-card-title {
    text-align: center;
  }
}
.cid-umfCVMvMlz .card .card-wrapper .mbr-text {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-umfCVMvMlz .card .card-wrapper .mbr-text {
    text-align: center;
  }
}
.cid-umfCVMvMlz .mbr-section-title {
  color: #222222;
  text-align: center;
}
.cid-umfCVMvMlz .mbr-card-title {
  color: #222222;
}
.cid-umfCVMvMlz .mbr-text {
  color: #222222;
}
.cid-umfCVMvMlz .mbr-card-title,
.cid-umfCVMvMlz .icon-wrapper {
  text-align: center;
  color: #000000;
}
.cid-umfCVNkZKq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-umfCVNkZKq .mbr-fallback-image.disabled {
  display: none;
}
.cid-umfCVNkZKq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-umfCVNkZKq .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-umfCVNkZKq .container {
    padding: 0 12px;
  }
}
.cid-umfCVNkZKq .row {
  justify-content: center;
}
.cid-umfCVNkZKq .image-wrapper {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-umfCVNkZKq .image-wrapper {
    margin-bottom: 24px;
    height: auto;
  }
}
.cid-umfCVNkZKq .image-wrapper img {
  height: 270px;
  width: 270px;
  margin: 0 auto;
  border-radius: 100%;
  border: 3px solid #cdf9de;
  box-shadow: 4px 4px #cdf9de;
  background-color: #cdf9de;
  object-fit: cover;
}
.cid-umfCVNkZKq .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-umfCVNkZKq .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-umfCVNTYzR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #cdf9de;
}
.cid-umfCVNTYzR .mbr-fallback-image.disabled {
  display: none;
}
.cid-umfCVNTYzR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umfCVNTYzR .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-umfCVNTYzR .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-umfCVNTYzR .container-fluid {
    padding: 0 12px;
  }
}
@media (max-width: 992px) {
  .cid-umfCVNTYzR .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-umfCVNTYzR .container {
    padding: 0 12px;
  }
}
.cid-umfCVNTYzR .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-umfCVNTYzR .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-umfCVNTYzR .card {
  margin-bottom: 32px;
}
.cid-umfCVNTYzR .card .card-wrapper {
  padding: 32px;
  border: 3px solid #ffffff;
  box-shadow: 4px 4px #ffffff;
  border-radius: 32px;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-umfCVNTYzR .card .card-wrapper {
    padding: 20px;
    border-radius: 24px;
  }
}
.cid-umfCVNTYzR .card .card-wrapper .mbr-card-title {
  margin-bottom: 16px;
}
.cid-umfCVNTYzR .card .card-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-umfCVNTYzR .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-umfCVNTYzR .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-umfCVNTYzR .mbr-card-title {
  color: #222222;
}
.cid-umfCVNTYzR .mbr-card-title,
.cid-umfCVNTYzR .title-wrap {
  text-align: center;
  color: #000000;
}
.cid-umfCVOWW7M {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-umfCVOWW7M .mbr-fallback-image.disabled {
  display: none;
}
.cid-umfCVOWW7M .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umfCVOWW7M .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-umfCVOWW7M .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-umfCVOWW7M .container-fluid {
    padding: 0 12px;
  }
}
@media (max-width: 992px) {
  .cid-umfCVOWW7M .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-umfCVOWW7M .container {
    padding: 0 12px;
  }
}
.cid-umfCVOWW7M .row {
  justify-content: center;
}
.cid-umfCVOWW7M .card-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px;
  background-color: #cdf9de;
  border-radius: 50px;
}
@media (max-width: 992px) {
  .cid-umfCVOWW7M .card-wrapper {
    display: block;
    padding: 24px;
    border-radius: 32px;
  }
}
@media (max-width: 992px) {
  .cid-umfCVOWW7M .card-wrapper .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-umfCVOWW7M .card-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-umfCVOWW7M .card-wrapper .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-umfCVOWW7M .card-wrapper .title-wrapper .mbr-text span {
  background-color: #e3b4fa;
  padding: 2px 6px;
  border-radius: 8px;
}
.cid-umfCVOWW7M .card-wrapper .mbr-section-btn {
  height: 100%;
}
.cid-umfCVOWW7M .card-wrapper .mbr-section-btn .btn {
  min-width: 200px;
}
.cid-umfCVOWW7M .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-umfCVOWW7M .mbr-text {
  color: #222222;
}
.cid-umfCVOWW7M .mbr-text,
.cid-umfCVOWW7M .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-umfCVPz1BG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #cdf9de;
}
.cid-umfCVPz1BG .mbr-fallback-image.disabled {
  display: none;
}
.cid-umfCVPz1BG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umfCVPz1BG .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-umfCVPz1BG .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-umfCVPz1BG .container-fluid {
    padding: 0 12px;
  }
}
@media (max-width: 992px) {
  .cid-umfCVPz1BG .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-umfCVPz1BG .container {
    padding: 0 12px;
  }
}
.cid-umfCVPz1BG .item {
  margin-bottom: 32px;
}
.cid-umfCVPz1BG .item a {
  display: block;
}
.cid-umfCVPz1BG .item a:hover .item-wrapper .item-img img {
  transform: scale(1.05);
}
.cid-umfCVPz1BG .item a .item-wrapper .item-img {
  overflow: hidden;
  border-radius: 32px;
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-umfCVPz1BG .item a .item-wrapper .item-img {
    border-radius: 24px;
  }
}
.cid-umfCVPz1BG .item a .item-wrapper .item-img img {
  height: 350px;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-umfCVPz1BG .item a .item-wrapper .item-img img {
    height: 300px;
  }
}
.cid-umfCVPz1BG .item a .item-wrapper .item-content .item-title {
  margin-bottom: 0;
}
.cid-umfCVPz1BG .mbr-section-btn {
  text-align: center;
}
.cid-umfCVPz1BG .item-content {
  color: #222222;
}
.cid-umfCVQo3dh {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-umfCVQo3dh .mbr-fallback-image.disabled {
  display: none;
}
.cid-umfCVQo3dh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umfCVQo3dh .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-umfCVQo3dh .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-umfCVQo3dh .container {
    padding: 0 16px;
  }
}
.cid-umfCVQo3dh .card {
  justify-content: center;
}
.cid-umfCVQo3dh .title-wrapper .mbr-section-title {
  display: inline-flex;
  margin-bottom: 0;
  padding: 18px 24px;
  border-radius: 16px !important;
  box-shadow: 6px 8px 0 0 #000000;
  background-color: #cdf9de;
  transform: rotate(-4deg);
}
@media (max-width: 992px) {
  .cid-umfCVQo3dh .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-umfCVQo3dh .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
.cid-umfCVQo3dh .text-wrapper .mbr-desc {
  margin-top: 24px;
  margin-bottom: 0;
}
.cid-umfCVQo3dh .mbr-section-title {
  color: #000000;
}
.cid-umfCVQo3dh .mbr-text {
  color: #000000;
}
.cid-umfCVQo3dh .mbr-desc {
  color: #000000;
}
.cid-umfCVQo3dh .mbr-text,
.cid-umfCVQo3dh .mbr-section-btn {
  color: #000000;
}
.cid-umfCVQo3dh .mbr-section-title,
.cid-umfCVQo3dh .title-wrapper {
  text-align: center;
}
.cid-umfCVR4rFF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #cdf9de;
}
.cid-umfCVR4rFF .mbr-fallback-image.disabled {
  display: none;
}
.cid-umfCVR4rFF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-umfCVR4rFF .container {
    padding: 0 16px;
  }
}
.cid-umfCVR4rFF .row {
  position: relative;
  z-index: 1;
}
.cid-umfCVR4rFF .card {
  justify-content: flex-end;
}
.cid-umfCVR4rFF .card-wrapper {
  margin-right: 64px;
}
@media (max-width: 1440px) {
  .cid-umfCVR4rFF .card-wrapper {
    margin-right: 0;
  }
}
@media (max-width: 992px) {
  .cid-umfCVR4rFF .card-wrapper {
    margin-bottom: 32px;
  }
}
.cid-umfCVR4rFF .card-wrapper .image-wrapper {
  position: relative;
  margin-bottom: -8rem;
}
.cid-umfCVR4rFF .card-wrapper .image-wrapper img {
  width: 520px;
  height: 520px;
  object-fit: cover;
  border-radius: 100% !important;
}
@media (max-width: 1200px) {
  .cid-umfCVR4rFF .card-wrapper .image-wrapper img {
    width: 420px;
    height: 420px;
  }
}
@media (max-width: 768px) {
  .cid-umfCVR4rFF .card-wrapper .image-wrapper img {
    width: 260px;
    height: 260px;
  }
}
.cid-umfCVR4rFF .card-wrapper .image-wrapper .card-desc {
  position: absolute;
  top: 55%;
  left: -1rem;
  display: inline-flex;
  margin-bottom: 0;
  padding: 6px 16px;
  border-radius: 4rem !important;
  box-shadow: 4px 6px 0 0 #000000;
  background-color: #c6f15c;
  transform: rotate(-4deg);
}
@media (max-width: 992px) {
  .cid-umfCVR4rFF .card-wrapper .image-wrapper .card-desc {
    left: .5rem;
  }
}
.cid-umfCVR4rFF .card-wrapper .card-wrap {
  background-color: #ffffff;
  box-shadow: 4px 6px 0 0 #000000;
  border-radius: 16px;
  padding: 175px 48px 36px;
  margin: 0 50px;
}
@media (max-width: 992px) {
  .cid-umfCVR4rFF .card-wrapper .card-wrap {
    margin: 0;
    padding: 150px 24px 24px;
  }
}
.cid-umfCVR4rFF .card-wrapper .card-wrap .card-text {
  margin-bottom: 16px;
}
.cid-umfCVR4rFF .card-wrapper .card-wrap .person-wrap .card-name {
  margin-bottom: 0;
}
.cid-umfCVR4rFF .card-wrapper .card-wrap .person-wrap .card-role {
  margin-bottom: 0;
}
.cid-umfCVR4rFF .title-wrapper {
  margin-bottom: 96px;
}
@media (max-width: 992px) {
  .cid-umfCVR4rFF .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-umfCVR4rFF .title-wrapper .mbr-section-subtitle {
  margin-bottom: 32px;
}
.cid-umfCVR4rFF .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-umfCVR4rFF .text-wrapper {
  margin-left: 104px;
}
@media (max-width: 1440px) {
  .cid-umfCVR4rFF .text-wrapper {
    margin-left: 48px;
  }
}
@media (max-width: 992px) {
  .cid-umfCVR4rFF .text-wrapper {
    margin-left: 0;
  }
}
.cid-umfCVR4rFF .text-wrapper .mbr-text {
  margin-bottom: 32px;
}
.cid-umfCVR4rFF .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-umfCVR4rFF .mbr-section-subtitle {
  color: #000000;
  text-align: right;
}
.cid-umfCVR4rFF .mbr-text {
  color: #000000;
}
.cid-umfCVR4rFF .card-desc {
  color: #000000;
}
.cid-umfCVR4rFF .card-text {
  color: #000000;
}
.cid-umfCVR4rFF .card-name {
  color: #ffffff;
}
.cid-umfCVR4rFF .card-role {
  color: #ffffff;
}
.cid-umfCVR4rFF .mbr-text,
.cid-umfCVR4rFF .mbr-section-btn {
  color: #000000;
}
.cid-umfCVRMwZH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-umfCVRMwZH .mbr-fallback-image.disabled {
  display: none;
}
.cid-umfCVRMwZH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umfCVRMwZH .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-umfCVRMwZH .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-umfCVRMwZH .container-fluid {
    padding: 0 12px;
  }
}
@media (max-width: 992px) {
  .cid-umfCVRMwZH .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-umfCVRMwZH .container {
    padding: 0 12px;
  }
}
.cid-umfCVRMwZH .row {
  justify-content: center;
}
.cid-umfCVRMwZH .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-umfCVRMwZH .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-umfCVRMwZH .panel-group .card {
  border-radius: 50px;
  border: 3px solid #000000;
  box-shadow: 4px 4px #000000;
  background-color: #cdf9de;
  padding: 60px;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-umfCVRMwZH .panel-group .card {
    padding: 24px;
    border-radius: 24px;
  }
}
.cid-umfCVRMwZH .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  margin-bottom: 0;
  padding: 0;
}
.cid-umfCVRMwZH .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-umfCVRMwZH .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-umfCVRMwZH .panel-group .card .card-header .panel-title .mbr-iconfont {
  font-size: 24px;
  color: #000000;
  transition: all 0.3s ease-in-out;
}
.cid-umfCVRMwZH .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(-180deg);
}
.cid-umfCVRMwZH .panel-group .card .panel-collapse .panel-body {
  padding-top: 24px;
}
@media (max-width: 992px) {
  .cid-umfCVRMwZH .panel-group .card .panel-collapse .panel-body {
    padding-top: 16px;
  }
}
.cid-umfCVRMwZH .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-umfCVRMwZH .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-umfCVRMwZH .panel-title-edit {
  color: #222222;
}
.cid-umfCVRMwZH .panel-text {
  color: #222222;
}
.cid-umfCVSIt5B {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #cdf9de;
}
.cid-umfCVSIt5B .mbr-fallback-image.disabled {
  display: none;
}
.cid-umfCVSIt5B .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umfCVSIt5B .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-umfCVSIt5B .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-umfCVSIt5B .container-fluid {
    padding: 0 12px;
  }
}
.cid-umfCVSIt5B .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-umfCVSIt5B .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-umfCVSIt5B .container {
    padding: 0 12px;
  }
}
.cid-umfCVSIt5B .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-umfCVSIt5B .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-umfCVSIt5B .card-wrapper {
  padding: 40px;
  border-radius: 50px;
  border: 3px solid #222222;
  box-shadow: 4px 4px #222222;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-umfCVSIt5B .card-wrapper {
    padding: 24px;
    border-radius: 24px;
  }
}
.cid-umfCVSIt5B .card-wrapper .card-wrap {
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-umfCVSIt5B .card-wrapper .card-wrap {
    display: block;
  }
}
.cid-umfCVSIt5B .card-wrapper .card-wrap .icon-wrapper {
  margin-right: 40px;
}
@media (max-width: 992px) {
  .cid-umfCVSIt5B .card-wrapper .card-wrap .icon-wrapper {
    margin: 0 0 16px 0;
    text-align: center;
  }
}
.cid-umfCVSIt5B .card-wrapper .card-wrap .icon-wrapper .mbr-iconfont {
  font-size: 140px;
  color: #ff6928;
}
@media (max-width: 992px) {
  .cid-umfCVSIt5B .card-wrapper .card-wrap .icon-wrapper .mbr-iconfont {
    font-size: 100px;
  }
}
.cid-umfCVSIt5B .card-wrapper .card-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-umfCVSIt5B .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-umfCVSIt5B .mbr-section-subtitle {
  color: #222222;
}
.cid-umfCVSIt5B .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-umfCVSIt5B .list {
  color: #222222;
}
.cid-umfCVU7YKX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-umfCVU7YKX .mbr-fallback-image.disabled {
  display: none;
}
.cid-umfCVU7YKX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-umfCVU7YKX .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-umfCVU7YKX .container {
    padding: 0 12px;
  }
}
.cid-umfCVU7YKX .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-umfCVU7YKX .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-umfCVU7YKX .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-umfCVU7YKX .mbr-text {
  color: #222222;
}
.cid-umfCVU7YKX .mbr-text,
.cid-umfCVU7YKX .mbr-section-btn {
  color: #000000;
}
.cid-umfCVVeMx7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #cdf9de;
}
.cid-umfCVVeMx7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-umfCVVeMx7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-umfCVVeMx7 .container {
    padding: 0 16px;
  }
}
.cid-umfCVVeMx7 .row {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-umfCVVeMx7 .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-umfCVVeMx7 .title-wrapper .subtitle-wrapper .mbr-section-subtitle {
  display: inline-flex;
  margin-bottom: 42px;
  padding: 14px 24px;
  border-radius: 8px !important;
  box-shadow: 4px 6px 0 0 #000000;
  background-color: #ffffff;
  transform: rotate(-4deg);
}
@media (max-width: 992px) {
  .cid-umfCVVeMx7 .title-wrapper .subtitle-wrapper .mbr-section-subtitle {
    margin-bottom: 32px;
  }
}
.cid-umfCVVeMx7 .title-wrapper .mbr-section-title {
  margin-bottom: 72px;
}
@media (max-width: 992px) {
  .cid-umfCVVeMx7 .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-umfCVVeMx7 .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-umfCVVeMx7 .card-wrapper {
  background-color: #ffffff;
  box-shadow: 6px 8px 0 0 #000000;
  border-radius: 24px;
  padding: 80px;
}
.cid-umfCVVeMx7 .card-wrapper .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 72px;
}
@media (max-width: 992px) {
  .cid-umfCVVeMx7 .card-wrapper .image-wrapper {
    margin-bottom: 32px;
    display: block;
  }
}
.cid-umfCVVeMx7 .card-wrapper .image-wrapper img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  box-shadow: 4px 6px 0 0 #000000;
  transform: rotate(4deg);
}
.cid-umfCVVeMx7 .card-wrapper .card-text {
  margin-bottom: 24px;
}
.cid-umfCVVeMx7 .mbr-section-title {
  color: #ffffff;
}
.cid-umfCVVeMx7 .mbr-section-subtitle {
  color: #000000;
}
.cid-umfCVVeMx7 .mbr-text {
  color: #ffffff;
}
.cid-umfCVVeMx7 .card-text {
  text-align: center;
  color: #000000;
}
.cid-umfCVVeMx7 .mbr-section-subtitle,
.cid-umfCVVeMx7 .subtitle-wrapper {
  text-align: center;
}
.cid-umfCVVeMx7 .mbr-text,
.cid-umfCVVeMx7 .text-wrapper {
  color: #000000;
}
.cid-umfCVYtCbw {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-umfCVYtCbw .mbr-fallback-image.disabled {
  display: none;
}
.cid-umfCVYtCbw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umfCVYtCbw .content-wrap {
  padding: 60px;
  background-color: #cdf9de;
}
@media (max-width: 992px) {
  .cid-umfCVYtCbw .content-wrap {
    padding: 30px 20px;
  }
}
.cid-umfCVYtCbw .content-wrap .title-wrapper {
  margin-bottom: 54px;
}
@media (max-width: 992px) {
  .cid-umfCVYtCbw .content-wrap .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-umfCVYtCbw .content-wrap .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 60%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-umfCVYtCbw .content-wrap .title-wrapper .mbr-section-title {
    width: 100%;
  }
}
.cid-umfCVYtCbw .content-wrap .panel-group .card {
  position: relative;
  padding: 30px;
  margin-top: 20px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-umfCVYtCbw .content-wrap .panel-group .card {
    padding: 20px;
  }
}
.cid-umfCVYtCbw .content-wrap .panel-group .card:first-child {
  margin-top: 0;
}
.cid-umfCVYtCbw .content-wrap .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-umfCVYtCbw .content-wrap .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-umfCVYtCbw .content-wrap .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-umfCVYtCbw .content-wrap .panel-group .card .card-header .panel-title .icon-wrapper {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 30px;
  transition: all 0.3s ease-in-out;
  border-radius: 100%;
  background-color: #cdf9de;
}
@media (max-width: 992px) {
  .cid-umfCVYtCbw .content-wrap .panel-group .card .card-header .panel-title .icon-wrapper {
    margin-left: 16px;
  }
}
.cid-umfCVYtCbw .content-wrap .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  color: #b19a7c;
}
.cid-umfCVYtCbw .content-wrap .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper {
  transform: rotate(-45deg);
}
.cid-umfCVYtCbw .content-wrap .panel-group .card .panel-collapse .panel-body {
  margin: 20px 0 0 0;
}
.cid-umfCVYtCbw .content-wrap .panel-group .card .panel-collapse .panel-body .panel-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-umfCVYtCbw .content-wrap .panel-group .card .panel-collapse .panel-body .panel-text {
    width: 100%;
  }
}
.cid-umfCVYtCbw .mbr-section-title {
  color: #404349;
}
.cid-umfCVYtCbw .panel-title-edit {
  color: #000000;
}
.cid-umfCVYtCbw .panel-text {
  color: #404349;
}
.cid-umfCVYtCbw .mbr-section-title,
.cid-umfCVYtCbw .title-wrapper,
.cid-umfCVYtCbw .tabs-wrapper {
  text-align: center;
  color: #000000;
}
.cid-umfCVYtCbw .panel-text,
.cid-umfCVYtCbw .panel-body {
  color: #000000;
}
.cid-umfCVZKx5k {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #fffdf7;
}
.cid-umfCVZKx5k .google-map {
  height: 686px;
  position: relative;
  border: 1px solid #7F8678;
  border-left: none;
  border-right: none;
  margin-top: -1px;
}
.cid-umfCVZKx5k .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-umfCVZKx5k .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-umfCVZKx5k .google-map[data-state] {
  background: #e9e5dc;
}
.cid-umfCVZKx5k .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-umfCVZKx5k .container {
  padding: 0;
}
.cid-umfCVZKx5k .mbr-section-title {
  color: #000000;
}
.cid-umfCVZKx5k .mbr-section-subtitle {
  color: #3d3d3d;
}
.cid-umfCW0AQKH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #cdf9de;
}
.cid-umfCW0AQKH .mbr-fallback-image.disabled {
  display: none;
}
.cid-umfCW0AQKH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umfCW0AQKH .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-umfCW0AQKH .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-umfCW0AQKH .container-fluid {
    padding: 0 12px;
  }
}
@media (max-width: 992px) {
  .cid-umfCW0AQKH .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-umfCW0AQKH .container {
    padding: 0 12px;
  }
}
.cid-umfCW0AQKH .title-wrapper a {
  display: block;
}
.cid-umfCW0AQKH .title-wrapper a .mbr-section-title {
  margin-bottom: 24px;
}
.cid-umfCW0AQKH .list-wrapper .mbr-list-title {
  margin-bottom: 12px;
}
.cid-umfCW0AQKH .list-wrapper .list,
.cid-umfCW0AQKH .list-wrapper .list_main {
  margin-bottom: 70px;
  padding: 0;
  list-style-type: none;
}
@media (max-width: 992px) {
  .cid-umfCW0AQKH .list-wrapper .list,
  .cid-umfCW0AQKH .list-wrapper .list_main {
    margin-bottom: 24px;
  }
}
.cid-umfCW0AQKH .list-wrapper .list .item-wrap,
.cid-umfCW0AQKH .list-wrapper .list_main .item-wrap {
  margin: 12px 0 6px 0;
  transition: all 0.3s ease-in-out;
}
.cid-umfCW0AQKH .list-wrapper .list .item-wrap:hover,
.cid-umfCW0AQKH .list-wrapper .list_main .item-wrap:hover,
.cid-umfCW0AQKH .list-wrapper .list .item-wrap:focus,
.cid-umfCW0AQKH .list-wrapper .list_main .item-wrap:focus {
  color: #ff6928;
  text-decoration: underline;
}
.cid-umfCW0AQKH .contacts-wrapper .list {
  margin-bottom: 40px;
  padding: 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  list-style-type: none;
}
@media (max-width: 992px) {
  .cid-umfCW0AQKH .contacts-wrapper .list {
    margin-bottom: 24px;
  }
}
.cid-umfCW0AQKH .contacts-wrapper .list .item-wrap {
  opacity: .7;
  margin: 0 32px 16px 0;
  transition: all 0.3s ease-in-out;
}
.cid-umfCW0AQKH .contacts-wrapper .list .item-wrap:hover,
.cid-umfCW0AQKH .contacts-wrapper .list .item-wrap:focus {
  color: #ff6928;
  text-decoration: underline;
}
.cid-umfCW0AQKH .social-row {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  height: 100px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-umfCW0AQKH .social-row {
    justify-content: center;
    margin-bottom: 24px;
  }
}
.cid-umfCW0AQKH .social-row .soc-item {
  margin-right: 24px;
}
.cid-umfCW0AQKH .social-row .soc-item a:hover .mbr-iconfont,
.cid-umfCW0AQKH .social-row .soc-item a:focus .mbr-iconfont {
  background-color: #ff6928;
}
.cid-umfCW0AQKH .social-row .soc-item a .mbr-iconfont {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 20px;
  background-color: #ffffff;
  color: #222222;
  transition: all 0.3s ease-in-out;
}
.cid-umfCW0AQKH .copyright {
  margin-bottom: 0;
  opacity: .7;
  color: #000000;
  text-align: center;
}
.cid-umfCW0AQKH .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-umfCW0AQKH .mbr-list-title {
  color: #000000;
  text-align: center;
}
.cid-umfCW0AQKH .list {
  color: #000000;
  text-align: left;
}
.cid-umfCW0AQKH .list_main {
  color: #000000;
  text-align: left;
}
