body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Crimson Text', serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Crimson Text', serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Crimson Text', serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Crimson Text', serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Crimson Text', serif;
  font-size: 1.3rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.625rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.04rem;
    font-size: calc( 1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #7d1595 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #7d1595 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #7d1595 !important;
  border-color: #7d1595 !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: #3d0a49 !important;
  border-color: #3d0a49 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #3d0a49 !important;
  border-color: #3d0a49 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #7d1595 !important;
  border-color: #7d1595 !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: #3d0a49 !important;
  border-color: #3d0a49 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #3d0a49 !important;
  border-color: #3d0a49 !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: #7d1595;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #3d0a49 !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: #7d1595 !important;
  border-color: #7d1595 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #7d1595;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #3d0a49 !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: #7d1595 !important;
  border-color: #7d1595 !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: #7d1595 !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #7d1595 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #32083c !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #32083c !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: #7d1595;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #7d1595;
}
.mbr-gallery-filter li.active .btn {
  background-color: #7d1595;
  border-color: #7d1595;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #7d1595;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #c745e5;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #c745e5;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Crimson Text', serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #7d1595 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Crimson Text', serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #7d1595;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #7d1595;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #7d1595;
}
.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: #7d1595;
  border-bottom-color: #7d1595;
}
.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: #7d1595 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ff6666 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%237d1595' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-umgsnRqmOP {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 90px;
}
.cid-umgsnRqmOP nav.navbar {
  position: fixed;
}
.cid-umgsnRqmOP .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-umgsnRqmOP .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-umgsnRqmOP .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-umgsnRqmOP .dropdown-item:hover,
.cid-umgsnRqmOP .dropdown-item:focus {
  background: #7d1595 !important;
  color: white !important;
}
.cid-umgsnRqmOP .dropdown-item:hover span {
  color: white;
}
.cid-umgsnRqmOP .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-umgsnRqmOP .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-umgsnRqmOP .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-umgsnRqmOP .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-umgsnRqmOP .nav-link {
  position: relative;
}
.cid-umgsnRqmOP .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-umgsnRqmOP .container {
    flex-wrap: nowrap;
  }
}
.cid-umgsnRqmOP .iconfont-wrapper {
  color: #353535 !important;
  font-size: 18px;
  padding-right: 0;
}
.cid-umgsnRqmOP .iconfont-wrapper .mbr-iconfont {
  transition: .4s all;
}
.cid-umgsnRqmOP .iconfont-wrapper .mbr-iconfont:hover {
  color: #7d1595;
}
.cid-umgsnRqmOP .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 66.66666667%;
  margin-right: auto;
  min-height: 89px;
}
.cid-umgsnRqmOP .navbar-nav .nav-item {
  margin: 2px;
}
.cid-umgsnRqmOP .navbar-nav .nav-link {
  padding: 5px 9px;
  transition: .4s all;
}
.cid-umgsnRqmOP .navbar-nav .nav-link:hover {
  transform: scale(1.1);
}
.cid-umgsnRqmOP .dropdown-menu,
.cid-umgsnRqmOP .navbar.opened {
  background: #dff0d3 !important;
}
.cid-umgsnRqmOP .nav-item:focus,
.cid-umgsnRqmOP .nav-link:focus {
  outline: none;
}
.cid-umgsnRqmOP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-umgsnRqmOP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-umgsnRqmOP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-umgsnRqmOP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-umgsnRqmOP .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-umgsnRqmOP .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-umgsnRqmOP .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: none !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #dff0d3;
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-umgsnRqmOP .navbar.opened {
  transition: all 0.3s;
}
.cid-umgsnRqmOP .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-umgsnRqmOP .navbar .navbar-logo img {
  width: auto;
}
.cid-umgsnRqmOP .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-umgsnRqmOP .navbar.collapsed {
  justify-content: center;
}
.cid-umgsnRqmOP .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-umgsnRqmOP .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-umgsnRqmOP .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.7rem);
  }
}
.cid-umgsnRqmOP .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-umgsnRqmOP .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-umgsnRqmOP .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-umgsnRqmOP .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-umgsnRqmOP .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-umgsnRqmOP .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-umgsnRqmOP .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-umgsnRqmOP .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-umgsnRqmOP .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-umgsnRqmOP .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-umgsnRqmOP .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-umgsnRqmOP .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-umgsnRqmOP .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-umgsnRqmOP .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-umgsnRqmOP .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-umgsnRqmOP .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-umgsnRqmOP .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-umgsnRqmOP .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-umgsnRqmOP .navbar.navbar-short {
  min-height: 90px;
}
.cid-umgsnRqmOP .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-umgsnRqmOP .navbar.navbar-short .navbar-brand {
  min-height: 89px;
  padding: 0;
}
.cid-umgsnRqmOP .navbar-brand {
  min-height: 89px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  width: 25%;
}
.cid-umgsnRqmOP .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-umgsnRqmOP .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-umgsnRqmOP .dropdown-item.active,
.cid-umgsnRqmOP .dropdown-item:active {
  background-color: transparent;
}
.cid-umgsnRqmOP .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-umgsnRqmOP .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-umgsnRqmOP .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-umgsnRqmOP .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #dff0d3;
}
.cid-umgsnRqmOP .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-umgsnRqmOP .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-umgsnRqmOP ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-umgsnRqmOP .navbar-buttons {
  text-align: center;
}
.cid-umgsnRqmOP button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  background-color: #f6efe8;
  border-radius: 50%;
}
.cid-umgsnRqmOP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 13px;
  width: 22px;
  height: 2px;
  background-color: #715537;
}
.cid-umgsnRqmOP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 17px;
  transition: all 0.2s;
}
.cid-umgsnRqmOP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-umgsnRqmOP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-umgsnRqmOP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 29px;
  transition: all 0.2s;
}
.cid-umgsnRqmOP nav.opened .hamburger span:nth-child(1) {
  top: 17px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-umgsnRqmOP nav.opened .hamburger span:nth-child(2) {
  transform: translateY(-1px) rotate(45deg);
  transition: all 0.25s;
}
.cid-umgsnRqmOP nav.opened .hamburger span:nth-child(3) {
  transform: translateY(-1px) rotate(-45deg);
  transition: all 0.25s;
}
.cid-umgsnRqmOP nav.opened .hamburger span:nth-child(4) {
  top: 29px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-umgsnRqmOP .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-umgsnRqmOP a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-umgsnRqmOP .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-umgsnRqmOP .navbar {
    height: 70px;
  }
  .cid-umgsnRqmOP .navbar.opened {
    height: auto;
  }
  .cid-umgsnRqmOP .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-umgsnRqmOP .container,
.cid-umgsnRqmOP .container-fluid {
  flex-wrap: wrap;
}
.cid-umgsnRqmOP .navbar-collapse {
  width: 75%;
  min-height: 89px;
}
.cid-umgsnRqmOP .border-item {
  width: 100%;
  height: 1px;
  background-color: #829d85;
}
.cid-umgsnRqmOP .mbr-section-btn .btn {
  width: 180px;
  min-width: auto;
  min-height: 55px;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-umgsnRqmOP .navbar-brand {
    width: calc(100% - 48px) !important;
    min-height: 89px;
  }
  .cid-umgsnRqmOP .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 1rem;
    order: 5;
  }
  .cid-umgsnRqmOP .navbar-nav {
    width: 100%;
  }
}
.cid-umguAbFWpQ {
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-umguAbFWpQ .decor-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 52%;
  height: 95%;
  border-radius: 0 85% 0 0;
  background-color: #dff0d3;
  pointer-events: none;
}
@media (max-width: 992px) {
  .cid-umguAbFWpQ .decor-wrap {
    width: 60%;
    height: 50%;
    border-radius: 0 50% 0 0;
  }
}
.cid-umguAbFWpQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-umguAbFWpQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umguAbFWpQ .row {
  position: relative;
  z-index: 1;
}
.cid-umguAbFWpQ .title-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-umguAbFWpQ .title-wrapper .mbr-section-title {
    margin-bottom: 46px;
  }
}
.cid-umguAbFWpQ .image-wrapper {
  margin-right: 18px;
  margin-right: 0;
  margin-left: 18px;
}
@media (max-width: 992px) {
  .cid-umguAbFWpQ .image-wrapper {
    margin-right: 0;
    margin-bottom: 46px;
  }
}
@media (max-width: 992px) {
  .cid-umguAbFWpQ .image-wrapper {
    margin-left: 0;
  }
}
.cid-umguAbFWpQ .image-wrapper img {
  height: 620px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-umguAbFWpQ .image-wrapper img {
    height: 350px;
  }
}
.cid-umguAbFWpQ .content-wrapper {
  padding-top: 64px;
}
@media (max-width: 992px) {
  .cid-umguAbFWpQ .content-wrapper {
    padding-top: 22px;
  }
}
.cid-umguAbFWpQ .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 46px;
  display: inline-block;
  width: 55%;
}
@media (max-width: 992px) {
  .cid-umguAbFWpQ .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 22px;
  }
}
.cid-umguAbFWpQ .content-wrapper .desc-wrapper {
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-umguAbFWpQ .content-wrapper .desc-wrapper {
    display: block;
  }
}
.cid-umguAbFWpQ .content-wrapper .desc-wrapper .mbr-desc {
  width: 50%;
  margin-right: 20px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-umguAbFWpQ .content-wrapper .desc-wrapper .mbr-desc {
    margin-right: 0;
    width: 100%;
    margin-bottom: 12px;
  }
}
.cid-umguAbFWpQ .content-wrapper .desc-wrapper .mbr-section-btn {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-umguAbFWpQ .content-wrapper .desc-wrapper .mbr-section-btn {
    width: 100%;
  }
}
.cid-umguAbFWpQ .content-wrapper .desc-wrapper .mbr-section-btn .btn {
  padding: 29px 64px;
}
@media (max-width: 1200px) {
  .cid-umguAbFWpQ .content-wrapper .desc-wrapper .mbr-section-btn .btn {
    padding: 20px 32px;
  }
}
.cid-umguAbFWpQ .mbr-section-title {
  color: #212529;
  text-align: center;
}
.cid-umguAbFWpQ .mbr-text {
  color: #51565c;
}
.cid-umguAbFWpQ .mbr-desc {
  color: #51565c;
}
.cid-umgwUga33O {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-umgwUga33O .mbr-fallback-image.disabled {
  display: none;
}
.cid-umgwUga33O .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-umgwUga33O .container {
    padding: 0 30px;
  }
}
.cid-umgwUga33O .row {
  justify-content: center;
}
.cid-umgwUga33O .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-umgwUga33O .content-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-umgwUga33O .content-wrapper .mbr-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-umgwUga33O .content-wrapper .mbr-text {
    margin-bottom: 40px;
  }
}
.cid-umgwUga33O .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  color: #144031;
}
.cid-umgwUga33O .list .item-wrap {
  margin-bottom: 20px;
  padding-left: 30px;
  position: relative;
}
.cid-umgwUga33O .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-umgwUga33O .list .item-wrap::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  width: 9px;
  height: 9px;
  background-color: #22654e;
}
.cid-umgwUga33O .mbr-section-title {
  color: #22654E;
}
.cid-umgwUga33O .mbr-text {
  color: #144031;
}
.cid-umgx757Du9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #dff0d3;
}
.cid-umgx757Du9 .line {
  background-color: #232323;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-umazve6K3K {
  background-color: #ffffff;
}
.cid-umazve6K3K .mbr-fallback-image.disabled {
  display: none;
}
.cid-umazve6K3K .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umazve6K3K .row {
  justify-content: center;
}
.cid-umazve6K3K .content-wrapper {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-umazve6K3K .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-umazve6K3K .content-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-umazve6K3K .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-umazve6K3K .item {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-umazve6K3K .item {
    margin-bottom: 35px;
  }
}
.cid-umazve6K3K .item .item-wrapper .card-box .icon-wrapper {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-umazve6K3K .item .item-wrapper .card-box .icon-wrapper {
    margin-bottom: 15px;
  }
}
.cid-umazve6K3K .item .item-wrapper .card-box .icon-wrapper .mbr-iconfont {
  width: 95px;
  height: 95px;
  border-radius: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #000000;
  color: #ffffff;
  font-size: 60px;
}
.cid-umazve6K3K .item .item-wrapper .card-box .item-title {
  margin-bottom: 10px;
}
.cid-umazve6K3K .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-umazve6K3K .border-wrapper {
  width: 100%;
  height: 1px;
  background-color: #000000;
}
.cid-umazve6K3K .mbr-section-title {
  color: #000000;
}
.cid-umazve6K3K .mbr-text {
  color: #000000;
}
.cid-umazve6K3K .item-title {
  color: #000000;
}
.cid-umazve6K3K .item-text {
  color: #000000;
}
.cid-um9S4oOaAG {
  background-color: #dff0d3;
}
.cid-um9S4oOaAG .mbr-fallback-image.disabled {
  display: none;
}
.cid-um9S4oOaAG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-um9S4oOaAG .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-um9S4oOaAG .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-um9S4oOaAG .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-um9S4oOaAG .card-wrapper {
    padding: 4rem;
  }
}
.cid-um9S4oOaAG .mbr-text,
.cid-um9S4oOaAG .mbr-section-btn {
  color: #000000;
}
.cid-um9S4oOaAG .card-title,
.cid-um9S4oOaAG .card-box {
  text-align: left;
  color: #232323;
}
.cid-umhigaRjaE {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-umhigaRjaE .mbr-fallback-image.disabled {
  display: none;
}
.cid-umhigaRjaE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-umhigaRjaE .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-umhigaRjaE .row {
  flex-direction: row-reverse;
}
.cid-umhigaRjaE img {
  width: 100%;
}
.cid-um9QbhC4G0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-um9QbhC4G0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-um9QbhC4G0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-um9QbhC4G0 .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-um9QbhC4G0 .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-um9QbhC4G0 .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-um9QbhC4G0 .mbr-section-title {
  color: #131313;
}
.cid-um9QbhC4G0 .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-um9QbhC4G0 .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-um9QbhC4G0 .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-um9QbhC4G0 .card-wrapper {
  width: calc(100% - 14px);
  padding: 80px 40px 60px 40px;
  margin: 0 auto;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #dff0d3;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-um9QbhC4G0 .card-wrapper {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) {
  .cid-um9QbhC4G0 .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-um9QbhC4G0 .iconfont-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .cid-um9QbhC4G0 .iconfont-wrapper {
    margin-bottom: 25px;
  }
}
.cid-um9QbhC4G0 .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-um9QbhC4G0 .card-title {
  color: #131313;
}
.cid-um9QbhC4G0 .card-text {
  margin-top: 10px;
  color: #131313;
}
.cid-um9QbhC4G0 .card-link {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-um9QbhC4G0 .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-um9QbhC4G0 .card-link {
    margin-top: 15px;
  }
}
.cid-um9QbhC4G0 .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-umgxqGCF81 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-umgxqGCF81 blockquote {
  border-color: #000000;
  border-radius: 4px;
  background-color: #dff0d3;
}
.cid-um9QDQRde3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #dff0d3;
}
.cid-um9QDQRde3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-um9QDQRde3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-um9QDQRde3 .row {
  margin: 0 !important;
  row-gap: 40px;
  flex-direction: row-reverse;
}
.cid-um9QDQRde3 .item-img {
  display: flex;
  justify-content: flex-start;
  width: 50%;
  padding: 0 !important;
  justify-content: flex-end;
}
.cid-um9QDQRde3 .item-img img {
  max-width: 580px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-um9QDQRde3 .item-img {
    width: 100%;
  }
}
.cid-um9QDQRde3 .item-content {
  width: 50%;
  padding: 0 !important;
}
@media (max-width: 1500px) {
  .cid-um9QDQRde3 .item-content {
    padding-left: 40px !important;
    padding-left: 0 !important;
    padding-right: 40px !important;
  }
}
@media (max-width: 1199px) {
  .cid-um9QDQRde3 .item-content {
    padding-left: 25px !important;
    padding-left: 0 !important;
    padding-right: 25px !important;
  }
}
@media (max-width: 991px) {
  .cid-um9QDQRde3 .item-content {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-um9QDQRde3 .card-title {
  color: #131313;
}
.cid-um9QDQRde3 .card-text {
  margin-top: 25px;
  color: #131313;
}
.cid-um9QDQRde3 .list-box {
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
  width: 100%;
  margin-top: 30px;
}
.cid-um9QDQRde3 .list-item {
  display: flex;
  align-items: center;
  width: 100%;
  column-gap: 12px;
}
.cid-um9QDQRde3 .iconfont-wrapper {
  flex-shrink: 0;
}
.cid-um9QDQRde3 .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 25px;
  color: #000000;
  transform: rotate(-45deg);
}
.cid-um9QDQRde3 .list-text {
  flex-grow: 1;
  color: #131313;
}
.cid-um9QDQRde3 .mbr-section-btn {
  margin-top: 40px;
}
@media (max-width: 1500px) {
  .cid-um9QDQRde3 .mbr-section-btn {
    margin-top: 15px;
  }
}
.cid-um9ZCQD24Q {
  background-color: #ffffff;
}
.cid-um9ZCQD24Q .mbr-fallback-image.disabled {
  display: none;
}
.cid-um9ZCQD24Q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-um9ZCQD24Q .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-um9ZCQD24Q .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-um9ZCQD24Q .container {
    padding: 0 24px;
  }
}
.cid-um9ZCQD24Q .row {
  justify-content: center;
}
.cid-um9ZCQD24Q .content-wrapper {
  border-radius: 40px;
  background-color: #dff0d3;
  padding: 64px;
}
@media (max-width: 992px) {
  .cid-um9ZCQD24Q .content-wrapper {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .cid-um9ZCQD24Q .content-wrapper {
    padding: 32px;
  }
}
.cid-um9ZCQD24Q .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-um9ZCQD24Q .content-wrapper .mbr-text {
  margin: 16px 0 0;
}
.cid-um9ZCQD24Q .mbr-section-title {
  color: #000000;
}
.cid-um9ZCQD24Q .mbr-text {
  color: #262642;
}
.cid-um9ZG1WEKZ {
  background-color: #dff0d3;
}
.cid-um9ZG1WEKZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-um9ZG1WEKZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 1400px) {
  .cid-um9ZG1WEKZ .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
.cid-um9ZG1WEKZ P {
  max-width: 1200px;
}
.cid-um9ZG1WEKZ .mbr-section-btn,
.cid-um9ZG1WEKZ .btn {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-um9ZG1WEKZ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-um9ZG1WEKZ .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-um9ZG1WEKZ .image-wrapper {
    padding: 1.5rem;
  }
}
@media (min-width: 992px) {
  .cid-um9ZG1WEKZ .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-um9ZG1WEKZ .mbr-section-title {
  color: #353535;
  text-align: center;
}
.cid-um9ZG1WEKZ .mbr-text,
.cid-um9ZG1WEKZ .mbr-section-btn {
  color: #353535;
  text-align: center;
}
.cid-um9ZG1WEKZ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-um9RvItXOn {
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-um9RvItXOn .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-um9RvItXOn .mbr-fallback-image.disabled {
  display: none;
}
.cid-um9RvItXOn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-um9RvItXOn .content-wrap {
  justify-content: center;
}
.cid-um9RvItXOn .card-wrapper {
  background-color: #dff0d3;
  display: flex;
  border: 1px solid #150764;
}
@media (max-width: 1200px) {
  .cid-um9RvItXOn .card-wrapper {
    display: block;
  }
}
.cid-um9RvItXOn .card-wrapper .title-wrapper {
  width: 35%;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid #150764;
  border-right: none;
  border-left: 1px solid #150764;
}
@media (max-width: 1640px) {
  .cid-um9RvItXOn .card-wrapper .title-wrapper {
    padding: 40px 24px;
  }
}
@media (max-width: 1200px) {
  .cid-um9RvItXOn .card-wrapper .title-wrapper {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #150764;
  }
}
@media (max-width: 992px) {
  .cid-um9RvItXOn .card-wrapper .title-wrapper {
    padding: 40px 20px;
  }
}
@media (max-width: 1200px) {
  .cid-um9RvItXOn .card-wrapper .title-wrapper {
    border-left: none;
    border-bottom: 1px solid #150764;
  }
}
.cid-um9RvItXOn .card-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-um9RvItXOn .card-wrapper .title-wrapper .icon-wrapper .mbr-iconfont {
  font-size: 100px;
  color: #150764;
  display: inline-flex;
}
@media (max-width: 992px) {
  .cid-um9RvItXOn .card-wrapper .title-wrapper .icon-wrapper .mbr-iconfont {
    font-size: 80px;
  }
}
.cid-um9RvItXOn .card-wrapper .list-wrapper {
  width: 65%;
}
@media (max-width: 1200px) {
  .cid-um9RvItXOn .card-wrapper .list-wrapper {
    width: 100%;
  }
}
.cid-um9RvItXOn .card-wrapper .list-wrapper .panel-group .card {
  position: relative;
  padding: 0;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  background-color: transparent;
  border-radius: 0 !important;
}
.cid-um9RvItXOn .card-wrapper .list-wrapper .panel-group .card:first-child .card-header {
  border-top: none !important;
}
.cid-um9RvItXOn .card-wrapper .list-wrapper .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 32px;
  border-top: 1px solid #000000;
}
@media (max-width: 1940px) {
  .cid-um9RvItXOn .card-wrapper .list-wrapper .panel-group .card .card-header {
    padding: 32px 24px;
  }
}
@media (max-width: 992px) {
  .cid-um9RvItXOn .card-wrapper .list-wrapper .panel-group .card .card-header {
    padding: 32px 20px;
  }
}
.cid-um9RvItXOn .card-wrapper .list-wrapper .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-um9RvItXOn .card-wrapper .list-wrapper .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-um9RvItXOn .card-wrapper .list-wrapper .panel-group .card .card-header .panel-title .icon-wrapper {
  width: 28px;
  height: 28px;
  min-width: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 16px;
  transition: all 0.3s ease-in-out;
}
.cid-um9RvItXOn .card-wrapper .list-wrapper .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  transition: all 0.3s ease-in-out;
  font-size: 28px;
  color: #150764;
}
.cid-um9RvItXOn .card-wrapper .list-wrapper .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper {
  transform: rotate(180deg);
}
.cid-um9RvItXOn .card-wrapper .list-wrapper .panel-group .card .panel-collapse .panel-body {
  padding: 0 32px 64px 32px;
}
@media (max-width: 1940px) {
  .cid-um9RvItXOn .card-wrapper .list-wrapper .panel-group .card .panel-collapse .panel-body {
    padding: 0 24px 64px 24px;
  }
}
@media (max-width: 992px) {
  .cid-um9RvItXOn .card-wrapper .list-wrapper .panel-group .card .panel-collapse .panel-body {
    padding: 0 20px 32px 20px;
  }
}
.cid-um9RvItXOn .card-wrapper .list-wrapper .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-um9RvItXOn .mbr-section-title {
  color: #000000;
}
.cid-um9RvItXOn .panel-title-edit {
  color: #150764;
}
.cid-um9RvItXOn .panel-text {
  color: #150764;
}
.cid-um9RvItXOn .panel-title-edit,
.cid-um9RvItXOn .icon-wrapper {
  color: #000000;
}
.cid-umgAO0waV7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #dff0d3;
}
.cid-umgAO0waV7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-umgAO0waV7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umgAO0waV7 .content-wrapper {
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-umgAO0waV7 .content-wrapper {
    display: block;
    padding: 0;
  }
}
.cid-umgAO0waV7 .content-wrapper .title-wrapper {
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-umgAO0waV7 .content-wrapper .title-wrapper {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-umgAO0waV7 .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-umgAO0waV7 .content-wrapper .title-wrapper .mbr-section-title {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-umgAO0waV7 .content-wrapper .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-umgAO0waV7 .content-wrapper .title-wrapper .mbr-section-btn {
  margin-top: 22px;
}
@media (max-width: 992px) {
  .cid-umgAO0waV7 .content-wrapper .title-wrapper .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-umgAO0waV7 .content-wrapper .image-wrap {
  width: 40%;
  border: 3px solid #050f0f;
  box-shadow: 4px 4px 0 0 #050f0f;
  background-color: #ffffff;
  padding: 60px 20px;
  transform: rotate(3deg);
}
@media (max-width: 992px) {
  .cid-umgAO0waV7 .content-wrapper .image-wrap {
    padding: 32px 16px;
    width: 100%;
    transform: rotate(0);
  }
}
.cid-umgAO0waV7 .content-wrapper .image-wrap img {
  height: 550px;
  width: 100%;
  object-fit: cover;
}
.cid-umgAO0waV7 .mbr-section-title {
  color: #050f0f;
}
.cid-umgAO0waV7 .mbr-text {
  color: #050f0f;
}
.cid-umh0APRq5p {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-umh0APRq5p .mbr-fallback-image.disabled {
  display: none;
}
.cid-umh0APRq5p .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umh0APRq5p .container-fluid {
  padding: 0 56px;
}
@media (max-width: 992px) {
  .cid-umh0APRq5p .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 992px) {
  .cid-umh0APRq5p .container {
    padding: 0 26px;
  }
}
.cid-umh0APRq5p .row {
  justify-content: center;
}
.cid-umh0APRq5p .content-wrapper {
  display: flex;
  align-items: center;
  padding: 200px 100px 200px 60px;
  background-color: #dff0d3;
  border-radius: 20px;
}
@media (max-width: 1440px) {
  .cid-umh0APRq5p .content-wrapper {
    padding: 100px 60px;
  }
}
@media (max-width: 992px) {
  .cid-umh0APRq5p .content-wrapper {
    padding: 100px 20px;
    display: block;
  }
}
.cid-umh0APRq5p .content-wrapper .title-wrapper {
  width: 50%;
  padding-right: 45px;
}
@media (max-width: 992px) {
  .cid-umh0APRq5p .content-wrapper .title-wrapper {
    width: 100%;
    padding-right: 0;
    margin-bottom: 40px;
  }
}
.cid-umh0APRq5p .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-umh0APRq5p .content-wrapper .title-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-umh0APRq5p .content-wrapper .text-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-umh0APRq5p .content-wrapper .text-wrapper {
    width: 100%;
  }
}
.cid-umh0APRq5p .content-wrapper .text-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-umh0APRq5p .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-umh0APRq5p .content-wrapper .text-wrapper .link-wrapper:hover .mbr-link,
.cid-umh0APRq5p .content-wrapper .text-wrapper .link-wrapper:focus .mbr-link {
  color: #000000;
}
.cid-umh0APRq5p .content-wrapper .text-wrapper .link-wrapper .mbr-link {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.cid-umh0APRq5p .mbr-section-title {
  color: #000000;
}
.cid-umh0APRq5p .mbr-section-subtitle {
  color: #ffffff;
}
.cid-umh0APRq5p .mbr-desc {
  color: #ffffff;
}
.cid-umh0APRq5p .mbr-text {
  color: #000000;
}
.cid-umh0APRq5p .mbr-link {
  color: #ffffff;
}
.cid-umagRdSCll {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
.cid-umagRdSCll .mbr-fallback-image.disabled {
  display: none;
}
.cid-umagRdSCll .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umagRdSCll .google-map {
  height: 30rem;
  position: relative;
}
.cid-umagRdSCll .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-umagRdSCll .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-umagRdSCll .google-map[data-state] {
  background: #e9e5dc;
}
.cid-umagRdSCll .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-umahltAWm5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #dff0d3;
}
.cid-umahltAWm5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-umahltAWm5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umahltAWm5 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-umahltAWm5 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-umahltAWm5 .row {
    text-align: center;
  }
  .cid-umahltAWm5 .social-row {
    justify-content: center;
  }
}
.cid-umahltAWm5 .list {
  list-style: none;
  padding-left: 0;
  color: #232323;
}
@media (max-width: 991px) {
  .cid-umahltAWm5 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-umahltAWm5 .list {
    margin-bottom: 0rem;
  }
}
.cid-umahltAWm5 .mbr-text {
  color: #000000;
}
.cid-umahltAWm5 .mbr-iconfont {
  color: black;
}
.cid-umahltAWm5 .mbr-section-subtitle {
  color: #e43f3f;
}
.cid-umahltAWm5 H5 {
  color: #e43f3f;
}
.cid-umcgJlrZE7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-umcgJlrZE7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-umcgJlrZE7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umcgJlrZE7 .content-wrap {
  justify-content: flex-end;
}
.cid-umcgJlrZE7 .content-wrap .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-umcgJlrZE7 .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-umcgJlrZE7 .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-umcgJlrZE7 .content-wrapper .mbr-section-title span {
  background: linear-gradient(170deg, #f96e47, #fb9578);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.cid-umcgJlrZE7 .content-wrapper .text-wrapper .mbr-text {
  width: 80%;
  display: inline-block;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-umcgJlrZE7 .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-umcgJlrZE7 .image-wrapper {
  padding: 0 120px;
}
@media (max-width: 1440px) {
  .cid-umcgJlrZE7 .image-wrapper {
    padding: 0 60px;
  }
}
@media (max-width: 992px) {
  .cid-umcgJlrZE7 .image-wrapper {
    padding: 0;
  }
}
.cid-umcgJlrZE7 .image-wrapper img {
  height: 700px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-umcgJlrZE7 .image-wrapper img {
    height: 350px;
  }
}
.cid-umcgJlrZE7 .mbr-section-title {
  color: #ffffff;
}
.cid-umcgJlrZE7 .mbr-text,
.cid-umcgJlrZE7 .text-wrapper {
  color: #000000;
}
.cid-umcgJlrZE7 .mbr-section-title,
.cid-umcgJlrZE7 .mbr-section-btn,
.cid-umcgJlrZE7 .clients-wrapper {
  color: #000000;
}
.cid-umaEqOIdAW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-umaEqOIdAW blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #dff0d3;
}
.cid-umaEzc2heC {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
.cid-umaEzc2heC .mbr-fallback-image.disabled {
  display: none;
}
.cid-umaEzc2heC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umaEzc2heC .google-map {
  height: 30rem;
  position: relative;
}
.cid-umaEzc2heC .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-umaEzc2heC .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-umaEzc2heC .google-map[data-state] {
  background: #e9e5dc;
}
.cid-umaEzc2heC .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-umahltAWm5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #dff0d3;
}
.cid-umahltAWm5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-umahltAWm5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umahltAWm5 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-umahltAWm5 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-umahltAWm5 .row {
    text-align: center;
  }
  .cid-umahltAWm5 .social-row {
    justify-content: center;
  }
}
.cid-umahltAWm5 .list {
  list-style: none;
  padding-left: 0;
  color: #232323;
}
@media (max-width: 991px) {
  .cid-umahltAWm5 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-umahltAWm5 .list {
    margin-bottom: 0rem;
  }
}
.cid-umahltAWm5 .mbr-text {
  color: #000000;
}
.cid-umahltAWm5 .mbr-iconfont {
  color: black;
}
.cid-umahltAWm5 .mbr-section-subtitle {
  color: #e43f3f;
}
.cid-umahltAWm5 H5 {
  color: #e43f3f;
}
.cid-umgsnRqmOP {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 90px;
}
.cid-umgsnRqmOP nav.navbar {
  position: fixed;
}
.cid-umgsnRqmOP .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-umgsnRqmOP .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-umgsnRqmOP .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-umgsnRqmOP .dropdown-item:hover,
.cid-umgsnRqmOP .dropdown-item:focus {
  background: #7d1595 !important;
  color: white !important;
}
.cid-umgsnRqmOP .dropdown-item:hover span {
  color: white;
}
.cid-umgsnRqmOP .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-umgsnRqmOP .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-umgsnRqmOP .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-umgsnRqmOP .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-umgsnRqmOP .nav-link {
  position: relative;
}
.cid-umgsnRqmOP .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-umgsnRqmOP .container {
    flex-wrap: nowrap;
  }
}
.cid-umgsnRqmOP .iconfont-wrapper {
  color: #353535 !important;
  font-size: 18px;
  padding-right: 0;
}
.cid-umgsnRqmOP .iconfont-wrapper .mbr-iconfont {
  transition: .4s all;
}
.cid-umgsnRqmOP .iconfont-wrapper .mbr-iconfont:hover {
  color: #7d1595;
}
.cid-umgsnRqmOP .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 66.66666667%;
  margin-right: auto;
  min-height: 89px;
}
.cid-umgsnRqmOP .navbar-nav .nav-item {
  margin: 2px;
}
.cid-umgsnRqmOP .navbar-nav .nav-link {
  padding: 5px 9px;
  transition: .4s all;
}
.cid-umgsnRqmOP .navbar-nav .nav-link:hover {
  transform: scale(1.1);
}
.cid-umgsnRqmOP .dropdown-menu,
.cid-umgsnRqmOP .navbar.opened {
  background: #dff0d3 !important;
}
.cid-umgsnRqmOP .nav-item:focus,
.cid-umgsnRqmOP .nav-link:focus {
  outline: none;
}
.cid-umgsnRqmOP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-umgsnRqmOP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-umgsnRqmOP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-umgsnRqmOP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-umgsnRqmOP .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-umgsnRqmOP .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-umgsnRqmOP .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: none !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #dff0d3;
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-umgsnRqmOP .navbar.opened {
  transition: all 0.3s;
}
.cid-umgsnRqmOP .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-umgsnRqmOP .navbar .navbar-logo img {
  width: auto;
}
.cid-umgsnRqmOP .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-umgsnRqmOP .navbar.collapsed {
  justify-content: center;
}
.cid-umgsnRqmOP .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-umgsnRqmOP .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-umgsnRqmOP .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.7rem);
  }
}
.cid-umgsnRqmOP .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-umgsnRqmOP .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-umgsnRqmOP .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-umgsnRqmOP .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-umgsnRqmOP .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-umgsnRqmOP .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-umgsnRqmOP .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-umgsnRqmOP .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-umgsnRqmOP .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-umgsnRqmOP .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-umgsnRqmOP .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-umgsnRqmOP .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-umgsnRqmOP .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-umgsnRqmOP .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-umgsnRqmOP .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-umgsnRqmOP .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-umgsnRqmOP .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-umgsnRqmOP .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-umgsnRqmOP .navbar.navbar-short {
  min-height: 90px;
}
.cid-umgsnRqmOP .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-umgsnRqmOP .navbar.navbar-short .navbar-brand {
  min-height: 89px;
  padding: 0;
}
.cid-umgsnRqmOP .navbar-brand {
  min-height: 89px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  width: 25%;
}
.cid-umgsnRqmOP .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-umgsnRqmOP .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-umgsnRqmOP .dropdown-item.active,
.cid-umgsnRqmOP .dropdown-item:active {
  background-color: transparent;
}
.cid-umgsnRqmOP .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-umgsnRqmOP .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-umgsnRqmOP .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-umgsnRqmOP .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #dff0d3;
}
.cid-umgsnRqmOP .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-umgsnRqmOP .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-umgsnRqmOP ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-umgsnRqmOP .navbar-buttons {
  text-align: center;
}
.cid-umgsnRqmOP button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  background-color: #f6efe8;
  border-radius: 50%;
}
.cid-umgsnRqmOP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 13px;
  width: 22px;
  height: 2px;
  background-color: #715537;
}
.cid-umgsnRqmOP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 17px;
  transition: all 0.2s;
}
.cid-umgsnRqmOP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-umgsnRqmOP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-umgsnRqmOP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 29px;
  transition: all 0.2s;
}
.cid-umgsnRqmOP nav.opened .hamburger span:nth-child(1) {
  top: 17px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-umgsnRqmOP nav.opened .hamburger span:nth-child(2) {
  transform: translateY(-1px) rotate(45deg);
  transition: all 0.25s;
}
.cid-umgsnRqmOP nav.opened .hamburger span:nth-child(3) {
  transform: translateY(-1px) rotate(-45deg);
  transition: all 0.25s;
}
.cid-umgsnRqmOP nav.opened .hamburger span:nth-child(4) {
  top: 29px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-umgsnRqmOP .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-umgsnRqmOP a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-umgsnRqmOP .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-umgsnRqmOP .navbar {
    height: 70px;
  }
  .cid-umgsnRqmOP .navbar.opened {
    height: auto;
  }
  .cid-umgsnRqmOP .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-umgsnRqmOP .container,
.cid-umgsnRqmOP .container-fluid {
  flex-wrap: wrap;
}
.cid-umgsnRqmOP .navbar-collapse {
  width: 75%;
  min-height: 89px;
}
.cid-umgsnRqmOP .border-item {
  width: 100%;
  height: 1px;
  background-color: #829d85;
}
.cid-umgsnRqmOP .mbr-section-btn .btn {
  width: 180px;
  min-width: auto;
  min-height: 55px;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-umgsnRqmOP .navbar-brand {
    width: calc(100% - 48px) !important;
    min-height: 89px;
  }
  .cid-umgsnRqmOP .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 1rem;
    order: 5;
  }
  .cid-umgsnRqmOP .navbar-nav {
    width: 100%;
  }
}
.cid-umgG8BPNHq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-umgG8BPNHq .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-umgG8BPNHq .mbr-fallback-image.disabled {
  display: none;
}
.cid-umgG8BPNHq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umgG8BPNHq .content-wrap {
  align-items: center;
  justify-content: space-between;
}
.cid-umgG8BPNHq .content-wrap .card {
  justify-content: space-between;
}
.cid-umgG8BPNHq .content-wrapper {
  padding: 0 28px 0 120px;
  padding: 0 120px 0 28px;
}
@media (max-width: 1640px) {
  .cid-umgG8BPNHq .content-wrapper {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-umgG8BPNHq .content-wrapper {
    padding: 0;
    margin-bottom: 40px;
  }
}
@media (max-width: 1640px) {
  .cid-umgG8BPNHq .content-wrapper {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-umgG8BPNHq .content-wrapper {
    padding: 0;
  }
}
.cid-umgG8BPNHq .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-umgG8BPNHq .content-wrapper .mbr-section-title {
    margin-bottom: 16px;
  }
}
.cid-umgG8BPNHq .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-umgG8BPNHq .content-wrapper .text-wrapper .mbr-text {
    margin-bottom: 16px;
  }
}
.cid-umgG8BPNHq .image-wrap {
  padding: 0 120px 0 28px;
  padding: 0 28px 0 120px;
}
@media (max-width: 1640px) {
  .cid-umgG8BPNHq .image-wrap {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-umgG8BPNHq .image-wrap {
    padding: 0;
  }
}
@media (max-width: 1640px) {
  .cid-umgG8BPNHq .image-wrap {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-umgG8BPNHq .image-wrap {
    padding: 0;
  }
}
.cid-umgG8BPNHq .image-wrap img {
  height: 480px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-umgG8BPNHq .image-wrap img {
    height: 350px;
    object-fit: cover;
  }
}
.cid-umgG8BPNHq .mbr-section-title {
  color: #150764;
}
.cid-umgG8BPNHq .mbr-text {
  color: #150764;
}
.cid-umaF0QAf5Y {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-umaF0QAf5Y blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #dff0d3;
}
.cid-umaF0QSWzz {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
.cid-umaF0QSWzz .mbr-fallback-image.disabled {
  display: none;
}
.cid-umaF0QSWzz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umaF0QSWzz .google-map {
  height: 30rem;
  position: relative;
}
.cid-umaF0QSWzz .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-umaF0QSWzz .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-umaF0QSWzz .google-map[data-state] {
  background: #e9e5dc;
}
.cid-umaF0QSWzz .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-umaF0RfCa3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #dff0d3;
}
.cid-umaF0RfCa3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-umaF0RfCa3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umaF0RfCa3 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-umaF0RfCa3 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-umaF0RfCa3 .row {
    text-align: center;
  }
  .cid-umaF0RfCa3 .social-row {
    justify-content: center;
  }
}
.cid-umaF0RfCa3 .list {
  list-style: none;
  padding-left: 0;
  color: #232323;
}
@media (max-width: 991px) {
  .cid-umaF0RfCa3 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-umaF0RfCa3 .list {
    margin-bottom: 0rem;
  }
}
.cid-umaF0RfCa3 .mbr-text {
  color: #000000;
}
.cid-umaF0RfCa3 .mbr-iconfont {
  color: black;
}
.cid-umaF0RfCa3 .mbr-section-subtitle {
  color: #e43f3f;
}
.cid-umaF0RfCa3 H5 {
  color: #e43f3f;
}
.cid-umgsnRqmOP {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 90px;
}
.cid-umgsnRqmOP nav.navbar {
  position: fixed;
}
.cid-umgsnRqmOP .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-umgsnRqmOP .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-umgsnRqmOP .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-umgsnRqmOP .dropdown-item:hover,
.cid-umgsnRqmOP .dropdown-item:focus {
  background: #7d1595 !important;
  color: white !important;
}
.cid-umgsnRqmOP .dropdown-item:hover span {
  color: white;
}
.cid-umgsnRqmOP .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-umgsnRqmOP .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-umgsnRqmOP .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-umgsnRqmOP .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-umgsnRqmOP .nav-link {
  position: relative;
}
.cid-umgsnRqmOP .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-umgsnRqmOP .container {
    flex-wrap: nowrap;
  }
}
.cid-umgsnRqmOP .iconfont-wrapper {
  color: #353535 !important;
  font-size: 18px;
  padding-right: 0;
}
.cid-umgsnRqmOP .iconfont-wrapper .mbr-iconfont {
  transition: .4s all;
}
.cid-umgsnRqmOP .iconfont-wrapper .mbr-iconfont:hover {
  color: #7d1595;
}
.cid-umgsnRqmOP .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 66.66666667%;
  margin-right: auto;
  min-height: 89px;
}
.cid-umgsnRqmOP .navbar-nav .nav-item {
  margin: 2px;
}
.cid-umgsnRqmOP .navbar-nav .nav-link {
  padding: 5px 9px;
  transition: .4s all;
}
.cid-umgsnRqmOP .navbar-nav .nav-link:hover {
  transform: scale(1.1);
}
.cid-umgsnRqmOP .dropdown-menu,
.cid-umgsnRqmOP .navbar.opened {
  background: #dff0d3 !important;
}
.cid-umgsnRqmOP .nav-item:focus,
.cid-umgsnRqmOP .nav-link:focus {
  outline: none;
}
.cid-umgsnRqmOP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-umgsnRqmOP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-umgsnRqmOP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-umgsnRqmOP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-umgsnRqmOP .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-umgsnRqmOP .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-umgsnRqmOP .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: none !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #dff0d3;
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-umgsnRqmOP .navbar.opened {
  transition: all 0.3s;
}
.cid-umgsnRqmOP .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-umgsnRqmOP .navbar .navbar-logo img {
  width: auto;
}
.cid-umgsnRqmOP .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-umgsnRqmOP .navbar.collapsed {
  justify-content: center;
}
.cid-umgsnRqmOP .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-umgsnRqmOP .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-umgsnRqmOP .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.7rem);
  }
}
.cid-umgsnRqmOP .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-umgsnRqmOP .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-umgsnRqmOP .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-umgsnRqmOP .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-umgsnRqmOP .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-umgsnRqmOP .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-umgsnRqmOP .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-umgsnRqmOP .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-umgsnRqmOP .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-umgsnRqmOP .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-umgsnRqmOP .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-umgsnRqmOP .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-umgsnRqmOP .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-umgsnRqmOP .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-umgsnRqmOP .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-umgsnRqmOP .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-umgsnRqmOP .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-umgsnRqmOP .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-umgsnRqmOP .navbar.navbar-short {
  min-height: 90px;
}
.cid-umgsnRqmOP .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-umgsnRqmOP .navbar.navbar-short .navbar-brand {
  min-height: 89px;
  padding: 0;
}
.cid-umgsnRqmOP .navbar-brand {
  min-height: 89px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  width: 25%;
}
.cid-umgsnRqmOP .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-umgsnRqmOP .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-umgsnRqmOP .dropdown-item.active,
.cid-umgsnRqmOP .dropdown-item:active {
  background-color: transparent;
}
.cid-umgsnRqmOP .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-umgsnRqmOP .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-umgsnRqmOP .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-umgsnRqmOP .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #dff0d3;
}
.cid-umgsnRqmOP .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-umgsnRqmOP .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-umgsnRqmOP ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-umgsnRqmOP .navbar-buttons {
  text-align: center;
}
.cid-umgsnRqmOP button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  background-color: #f6efe8;
  border-radius: 50%;
}
.cid-umgsnRqmOP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 13px;
  width: 22px;
  height: 2px;
  background-color: #715537;
}
.cid-umgsnRqmOP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 17px;
  transition: all 0.2s;
}
.cid-umgsnRqmOP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-umgsnRqmOP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-umgsnRqmOP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 29px;
  transition: all 0.2s;
}
.cid-umgsnRqmOP nav.opened .hamburger span:nth-child(1) {
  top: 17px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-umgsnRqmOP nav.opened .hamburger span:nth-child(2) {
  transform: translateY(-1px) rotate(45deg);
  transition: all 0.25s;
}
.cid-umgsnRqmOP nav.opened .hamburger span:nth-child(3) {
  transform: translateY(-1px) rotate(-45deg);
  transition: all 0.25s;
}
.cid-umgsnRqmOP nav.opened .hamburger span:nth-child(4) {
  top: 29px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-umgsnRqmOP .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-umgsnRqmOP a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-umgsnRqmOP .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-umgsnRqmOP .navbar {
    height: 70px;
  }
  .cid-umgsnRqmOP .navbar.opened {
    height: auto;
  }
  .cid-umgsnRqmOP .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-umgsnRqmOP .container,
.cid-umgsnRqmOP .container-fluid {
  flex-wrap: wrap;
}
.cid-umgsnRqmOP .navbar-collapse {
  width: 75%;
  min-height: 89px;
}
.cid-umgsnRqmOP .border-item {
  width: 100%;
  height: 1px;
  background-color: #829d85;
}
.cid-umgsnRqmOP .mbr-section-btn .btn {
  width: 180px;
  min-width: auto;
  min-height: 55px;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-umgsnRqmOP .navbar-brand {
    width: calc(100% - 48px) !important;
    min-height: 89px;
  }
  .cid-umgsnRqmOP .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 1rem;
    order: 5;
  }
  .cid-umgsnRqmOP .navbar-nav {
    width: 100%;
  }
}
.cid-umgGYQdTXS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 90px;
}
.cid-umgGYQdTXS nav.navbar {
  position: fixed;
}
.cid-umgGYQdTXS .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-umgGYQdTXS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-umgGYQdTXS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-umgGYQdTXS .dropdown-item:hover,
.cid-umgGYQdTXS .dropdown-item:focus {
  background: #7d1595 !important;
  color: white !important;
}
.cid-umgGYQdTXS .dropdown-item:hover span {
  color: white;
}
.cid-umgGYQdTXS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-umgGYQdTXS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-umgGYQdTXS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-umgGYQdTXS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-umgGYQdTXS .nav-link {
  position: relative;
}
.cid-umgGYQdTXS .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-umgGYQdTXS .container {
    flex-wrap: nowrap;
  }
}
.cid-umgGYQdTXS .iconfont-wrapper {
  color: #353535 !important;
  font-size: 18px;
  padding-right: 0;
}
.cid-umgGYQdTXS .iconfont-wrapper .mbr-iconfont {
  transition: .4s all;
}
.cid-umgGYQdTXS .iconfont-wrapper .mbr-iconfont:hover {
  color: #7d1595;
}
.cid-umgGYQdTXS .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 66.66666667%;
  margin-right: auto;
  min-height: 89px;
}
.cid-umgGYQdTXS .navbar-nav .nav-item {
  margin: 2px;
}
.cid-umgGYQdTXS .navbar-nav .nav-link {
  padding: 5px 9px;
  transition: .4s all;
}
.cid-umgGYQdTXS .navbar-nav .nav-link:hover {
  transform: scale(1.1);
}
.cid-umgGYQdTXS .dropdown-menu,
.cid-umgGYQdTXS .navbar.opened {
  background: #dff0d3 !important;
}
.cid-umgGYQdTXS .nav-item:focus,
.cid-umgGYQdTXS .nav-link:focus {
  outline: none;
}
.cid-umgGYQdTXS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-umgGYQdTXS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-umgGYQdTXS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-umgGYQdTXS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-umgGYQdTXS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-umgGYQdTXS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-umgGYQdTXS .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: none !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #dff0d3;
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-umgGYQdTXS .navbar.opened {
  transition: all 0.3s;
}
.cid-umgGYQdTXS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-umgGYQdTXS .navbar .navbar-logo img {
  width: auto;
}
.cid-umgGYQdTXS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-umgGYQdTXS .navbar.collapsed {
  justify-content: center;
}
.cid-umgGYQdTXS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-umgGYQdTXS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-umgGYQdTXS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.7rem);
  }
}
.cid-umgGYQdTXS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-umgGYQdTXS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-umgGYQdTXS .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-umgGYQdTXS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-umgGYQdTXS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-umgGYQdTXS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-umgGYQdTXS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-umgGYQdTXS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-umgGYQdTXS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-umgGYQdTXS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-umgGYQdTXS .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-umgGYQdTXS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-umgGYQdTXS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-umgGYQdTXS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-umgGYQdTXS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-umgGYQdTXS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-umgGYQdTXS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-umgGYQdTXS .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-umgGYQdTXS .navbar.navbar-short {
  min-height: 90px;
}
.cid-umgGYQdTXS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-umgGYQdTXS .navbar.navbar-short .navbar-brand {
  min-height: 89px;
  padding: 0;
}
.cid-umgGYQdTXS .navbar-brand {
  min-height: 89px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  width: 25%;
}
.cid-umgGYQdTXS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-umgGYQdTXS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-umgGYQdTXS .dropdown-item.active,
.cid-umgGYQdTXS .dropdown-item:active {
  background-color: transparent;
}
.cid-umgGYQdTXS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-umgGYQdTXS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-umgGYQdTXS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-umgGYQdTXS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #dff0d3;
}
.cid-umgGYQdTXS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-umgGYQdTXS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-umgGYQdTXS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-umgGYQdTXS .navbar-buttons {
  text-align: center;
}
.cid-umgGYQdTXS button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  background-color: #f6efe8;
  border-radius: 50%;
}
.cid-umgGYQdTXS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 13px;
  width: 22px;
  height: 2px;
  background-color: #715537;
}
.cid-umgGYQdTXS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 17px;
  transition: all 0.2s;
}
.cid-umgGYQdTXS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-umgGYQdTXS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-umgGYQdTXS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 29px;
  transition: all 0.2s;
}
.cid-umgGYQdTXS nav.opened .hamburger span:nth-child(1) {
  top: 17px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-umgGYQdTXS nav.opened .hamburger span:nth-child(2) {
  transform: translateY(-1px) rotate(45deg);
  transition: all 0.25s;
}
.cid-umgGYQdTXS nav.opened .hamburger span:nth-child(3) {
  transform: translateY(-1px) rotate(-45deg);
  transition: all 0.25s;
}
.cid-umgGYQdTXS nav.opened .hamburger span:nth-child(4) {
  top: 29px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-umgGYQdTXS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-umgGYQdTXS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-umgGYQdTXS .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-umgGYQdTXS .navbar {
    height: 70px;
  }
  .cid-umgGYQdTXS .navbar.opened {
    height: auto;
  }
  .cid-umgGYQdTXS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-umgGYQdTXS .container,
.cid-umgGYQdTXS .container-fluid {
  flex-wrap: wrap;
}
.cid-umgGYQdTXS .navbar-collapse {
  width: 75%;
  min-height: 89px;
}
.cid-umgGYQdTXS .border-item {
  width: 100%;
  height: 1px;
  background-color: #829d85;
}
.cid-umgGYQdTXS .mbr-section-btn .btn {
  width: 180px;
  min-width: auto;
  min-height: 55px;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-umgGYQdTXS .navbar-brand {
    width: calc(100% - 48px) !important;
    min-height: 89px;
  }
  .cid-umgGYQdTXS .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 1rem;
    order: 5;
  }
  .cid-umgGYQdTXS .navbar-nav {
    width: 100%;
  }
}
.cid-umgGYRaj4O {
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-umgGYRaj4O .decor-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 52%;
  height: 95%;
  border-radius: 0 85% 0 0;
  background-color: #dff0d3;
  pointer-events: none;
}
@media (max-width: 992px) {
  .cid-umgGYRaj4O .decor-wrap {
    width: 60%;
    height: 50%;
    border-radius: 0 50% 0 0;
  }
}
.cid-umgGYRaj4O .mbr-fallback-image.disabled {
  display: none;
}
.cid-umgGYRaj4O .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umgGYRaj4O .row {
  position: relative;
  z-index: 1;
}
.cid-umgGYRaj4O .title-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-umgGYRaj4O .title-wrapper .mbr-section-title {
    margin-bottom: 46px;
  }
}
.cid-umgGYRaj4O .image-wrapper {
  margin-right: 18px;
  margin-right: 0;
  margin-left: 18px;
}
@media (max-width: 992px) {
  .cid-umgGYRaj4O .image-wrapper {
    margin-right: 0;
    margin-bottom: 46px;
  }
}
@media (max-width: 992px) {
  .cid-umgGYRaj4O .image-wrapper {
    margin-left: 0;
  }
}
.cid-umgGYRaj4O .image-wrapper img {
  height: 620px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-umgGYRaj4O .image-wrapper img {
    height: 350px;
  }
}
.cid-umgGYRaj4O .content-wrapper {
  padding-top: 64px;
}
@media (max-width: 992px) {
  .cid-umgGYRaj4O .content-wrapper {
    padding-top: 22px;
  }
}
.cid-umgGYRaj4O .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 46px;
  display: inline-block;
  width: 55%;
}
@media (max-width: 992px) {
  .cid-umgGYRaj4O .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 22px;
  }
}
.cid-umgGYRaj4O .content-wrapper .desc-wrapper {
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-umgGYRaj4O .content-wrapper .desc-wrapper {
    display: block;
  }
}
.cid-umgGYRaj4O .content-wrapper .desc-wrapper .mbr-desc {
  width: 50%;
  margin-right: 20px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-umgGYRaj4O .content-wrapper .desc-wrapper .mbr-desc {
    margin-right: 0;
    width: 100%;
    margin-bottom: 12px;
  }
}
.cid-umgGYRaj4O .content-wrapper .desc-wrapper .mbr-section-btn {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-umgGYRaj4O .content-wrapper .desc-wrapper .mbr-section-btn {
    width: 100%;
  }
}
.cid-umgGYRaj4O .content-wrapper .desc-wrapper .mbr-section-btn .btn {
  padding: 29px 64px;
}
@media (max-width: 1200px) {
  .cid-umgGYRaj4O .content-wrapper .desc-wrapper .mbr-section-btn .btn {
    padding: 20px 32px;
  }
}
.cid-umgGYRaj4O .mbr-section-title {
  color: #212529;
  text-align: center;
}
.cid-umgGYRaj4O .mbr-text {
  color: #51565c;
}
.cid-umgGYRaj4O .mbr-desc {
  color: #51565c;
}
.cid-umgGYRXCwZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-umgGYRXCwZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-umgGYRXCwZ .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-umgGYRXCwZ .container {
    padding: 0 30px;
  }
}
.cid-umgGYRXCwZ .row {
  justify-content: center;
}
.cid-umgGYRXCwZ .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-umgGYRXCwZ .content-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-umgGYRXCwZ .content-wrapper .mbr-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-umgGYRXCwZ .content-wrapper .mbr-text {
    margin-bottom: 40px;
  }
}
.cid-umgGYRXCwZ .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  color: #144031;
}
.cid-umgGYRXCwZ .list .item-wrap {
  margin-bottom: 20px;
  padding-left: 30px;
  position: relative;
}
.cid-umgGYRXCwZ .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-umgGYRXCwZ .list .item-wrap::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  width: 9px;
  height: 9px;
  background-color: #22654e;
}
.cid-umgGYRXCwZ .mbr-section-title {
  color: #22654E;
}
.cid-umgGYRXCwZ .mbr-text {
  color: #144031;
}
.cid-umgGYSNlwp {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #dff0d3;
}
.cid-umgGYSNlwp .line {
  background-color: #232323;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-umgGYTxgnP {
  background-color: #ffffff;
}
.cid-umgGYTxgnP .mbr-fallback-image.disabled {
  display: none;
}
.cid-umgGYTxgnP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umgGYTxgnP .row {
  justify-content: center;
}
.cid-umgGYTxgnP .content-wrapper {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-umgGYTxgnP .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-umgGYTxgnP .content-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-umgGYTxgnP .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-umgGYTxgnP .item {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-umgGYTxgnP .item {
    margin-bottom: 35px;
  }
}
.cid-umgGYTxgnP .item .item-wrapper .card-box .icon-wrapper {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-umgGYTxgnP .item .item-wrapper .card-box .icon-wrapper {
    margin-bottom: 15px;
  }
}
.cid-umgGYTxgnP .item .item-wrapper .card-box .icon-wrapper .mbr-iconfont {
  width: 95px;
  height: 95px;
  border-radius: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #000000;
  color: #ffffff;
  font-size: 60px;
}
.cid-umgGYTxgnP .item .item-wrapper .card-box .item-title {
  margin-bottom: 10px;
}
.cid-umgGYTxgnP .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-umgGYTxgnP .border-wrapper {
  width: 100%;
  height: 1px;
  background-color: #000000;
}
.cid-umgGYTxgnP .mbr-section-title {
  color: #000000;
}
.cid-umgGYTxgnP .mbr-text {
  color: #000000;
}
.cid-umgGYTxgnP .item-title {
  color: #000000;
}
.cid-umgGYTxgnP .item-text {
  color: #000000;
}
.cid-umgGYUuXS8 {
  background-color: #dff0d3;
}
.cid-umgGYUuXS8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-umgGYUuXS8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umgGYUuXS8 .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-umgGYUuXS8 .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-umgGYUuXS8 .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-umgGYUuXS8 .card-wrapper {
    padding: 4rem;
  }
}
.cid-umgGYUuXS8 .mbr-text,
.cid-umgGYUuXS8 .mbr-section-btn {
  color: #000000;
}
.cid-umgGYUuXS8 .card-title,
.cid-umgGYUuXS8 .card-box {
  text-align: left;
  color: #232323;
}
.cid-umgGYVjtmk {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-umgGYVjtmk .mbr-fallback-image.disabled {
  display: none;
}
.cid-umgGYVjtmk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umgGYVjtmk .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-umgGYVjtmk .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-umgGYVjtmk .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-umgGYVjtmk .mbr-section-title {
  color: #131313;
}
.cid-umgGYVjtmk .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-umgGYVjtmk .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-umgGYVjtmk .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-umgGYVjtmk .card-wrapper {
  width: calc(100% - 14px);
  padding: 80px 40px 60px 40px;
  margin: 0 auto;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #dff0d3;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-umgGYVjtmk .card-wrapper {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) {
  .cid-umgGYVjtmk .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-umgGYVjtmk .iconfont-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .cid-umgGYVjtmk .iconfont-wrapper {
    margin-bottom: 25px;
  }
}
.cid-umgGYVjtmk .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-umgGYVjtmk .card-title {
  color: #131313;
}
.cid-umgGYVjtmk .card-text {
  margin-top: 10px;
  color: #131313;
}
.cid-umgGYVjtmk .card-link {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-umgGYVjtmk .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-umgGYVjtmk .card-link {
    margin-top: 15px;
  }
}
.cid-umgGYVjtmk .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-umhita0n64 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-umhita0n64 .mbr-fallback-image.disabled {
  display: none;
}
.cid-umhita0n64 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-umhita0n64 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-umhita0n64 .row {
  flex-direction: row-reverse;
}
.cid-umhita0n64 img {
  width: 100%;
}
.cid-umgGYWmuf8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-umgGYWmuf8 blockquote {
  border-color: #000000;
  border-radius: 4px;
  background-color: #dff0d3;
}
.cid-umgGYX7v82 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #dff0d3;
}
.cid-umgGYX7v82 .mbr-fallback-image.disabled {
  display: none;
}
.cid-umgGYX7v82 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umgGYX7v82 .row {
  margin: 0 !important;
  row-gap: 40px;
  flex-direction: row-reverse;
}
.cid-umgGYX7v82 .item-img {
  display: flex;
  justify-content: flex-start;
  width: 50%;
  padding: 0 !important;
  justify-content: flex-end;
}
.cid-umgGYX7v82 .item-img img {
  max-width: 580px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-umgGYX7v82 .item-img {
    width: 100%;
  }
}
.cid-umgGYX7v82 .item-content {
  width: 50%;
  padding: 0 !important;
}
@media (max-width: 1500px) {
  .cid-umgGYX7v82 .item-content {
    padding-left: 40px !important;
    padding-left: 0 !important;
    padding-right: 40px !important;
  }
}
@media (max-width: 1199px) {
  .cid-umgGYX7v82 .item-content {
    padding-left: 25px !important;
    padding-left: 0 !important;
    padding-right: 25px !important;
  }
}
@media (max-width: 991px) {
  .cid-umgGYX7v82 .item-content {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-umgGYX7v82 .card-title {
  color: #131313;
}
.cid-umgGYX7v82 .card-text {
  margin-top: 25px;
  color: #131313;
}
.cid-umgGYX7v82 .list-box {
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
  width: 100%;
  margin-top: 30px;
}
.cid-umgGYX7v82 .list-item {
  display: flex;
  align-items: center;
  width: 100%;
  column-gap: 12px;
}
.cid-umgGYX7v82 .iconfont-wrapper {
  flex-shrink: 0;
}
.cid-umgGYX7v82 .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 25px;
  color: #000000;
  transform: rotate(-45deg);
}
.cid-umgGYX7v82 .list-text {
  flex-grow: 1;
  color: #131313;
}
.cid-umgGYX7v82 .mbr-section-btn {
  margin-top: 40px;
}
@media (max-width: 1500px) {
  .cid-umgGYX7v82 .mbr-section-btn {
    margin-top: 15px;
  }
}
.cid-umgGYYclxT {
  background-color: #ffffff;
}
.cid-umgGYYclxT .mbr-fallback-image.disabled {
  display: none;
}
.cid-umgGYYclxT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umgGYYclxT .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-umgGYYclxT .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-umgGYYclxT .container {
    padding: 0 24px;
  }
}
.cid-umgGYYclxT .row {
  justify-content: center;
}
.cid-umgGYYclxT .content-wrapper {
  border-radius: 40px;
  background-color: #dff0d3;
  padding: 64px;
}
@media (max-width: 992px) {
  .cid-umgGYYclxT .content-wrapper {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .cid-umgGYYclxT .content-wrapper {
    padding: 32px;
  }
}
.cid-umgGYYclxT .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-umgGYYclxT .content-wrapper .mbr-text {
  margin: 16px 0 0;
}
.cid-umgGYYclxT .mbr-section-title {
  color: #000000;
}
.cid-umgGYYclxT .mbr-text {
  color: #262642;
}
.cid-umgGYYZTqZ {
  background-color: #dff0d3;
}
.cid-umgGYYZTqZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-umgGYYZTqZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 1400px) {
  .cid-umgGYYZTqZ .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
.cid-umgGYYZTqZ P {
  max-width: 1200px;
}
.cid-umgGYYZTqZ .mbr-section-btn,
.cid-umgGYYZTqZ .btn {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-umgGYYZTqZ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-umgGYYZTqZ .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-umgGYYZTqZ .image-wrapper {
    padding: 1.5rem;
  }
}
@media (min-width: 992px) {
  .cid-umgGYYZTqZ .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-umgGYYZTqZ .mbr-section-title {
  color: #353535;
  text-align: center;
}
.cid-umgGYYZTqZ .mbr-text,
.cid-umgGYYZTqZ .mbr-section-btn {
  color: #353535;
  text-align: center;
}
.cid-umgGYYZTqZ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-umgGYZMwJQ {
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-umgGYZMwJQ .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-umgGYZMwJQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-umgGYZMwJQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umgGYZMwJQ .content-wrap {
  justify-content: center;
}
.cid-umgGYZMwJQ .card-wrapper {
  background-color: #dff0d3;
  display: flex;
  border: 1px solid #150764;
}
@media (max-width: 1200px) {
  .cid-umgGYZMwJQ .card-wrapper {
    display: block;
  }
}
.cid-umgGYZMwJQ .card-wrapper .title-wrapper {
  width: 35%;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid #150764;
  border-right: none;
  border-left: 1px solid #150764;
}
@media (max-width: 1640px) {
  .cid-umgGYZMwJQ .card-wrapper .title-wrapper {
    padding: 40px 24px;
  }
}
@media (max-width: 1200px) {
  .cid-umgGYZMwJQ .card-wrapper .title-wrapper {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #150764;
  }
}
@media (max-width: 992px) {
  .cid-umgGYZMwJQ .card-wrapper .title-wrapper {
    padding: 40px 20px;
  }
}
@media (max-width: 1200px) {
  .cid-umgGYZMwJQ .card-wrapper .title-wrapper {
    border-left: none;
    border-bottom: 1px solid #150764;
  }
}
.cid-umgGYZMwJQ .card-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-umgGYZMwJQ .card-wrapper .title-wrapper .icon-wrapper .mbr-iconfont {
  font-size: 100px;
  color: #150764;
  display: inline-flex;
}
@media (max-width: 992px) {
  .cid-umgGYZMwJQ .card-wrapper .title-wrapper .icon-wrapper .mbr-iconfont {
    font-size: 80px;
  }
}
.cid-umgGYZMwJQ .card-wrapper .list-wrapper {
  width: 65%;
}
@media (max-width: 1200px) {
  .cid-umgGYZMwJQ .card-wrapper .list-wrapper {
    width: 100%;
  }
}
.cid-umgGYZMwJQ .card-wrapper .list-wrapper .panel-group .card {
  position: relative;
  padding: 0;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  background-color: transparent;
  border-radius: 0 !important;
}
.cid-umgGYZMwJQ .card-wrapper .list-wrapper .panel-group .card:first-child .card-header {
  border-top: none !important;
}
.cid-umgGYZMwJQ .card-wrapper .list-wrapper .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 32px;
  border-top: 1px solid #000000;
}
@media (max-width: 1940px) {
  .cid-umgGYZMwJQ .card-wrapper .list-wrapper .panel-group .card .card-header {
    padding: 32px 24px;
  }
}
@media (max-width: 992px) {
  .cid-umgGYZMwJQ .card-wrapper .list-wrapper .panel-group .card .card-header {
    padding: 32px 20px;
  }
}
.cid-umgGYZMwJQ .card-wrapper .list-wrapper .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-umgGYZMwJQ .card-wrapper .list-wrapper .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-umgGYZMwJQ .card-wrapper .list-wrapper .panel-group .card .card-header .panel-title .icon-wrapper {
  width: 28px;
  height: 28px;
  min-width: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 16px;
  transition: all 0.3s ease-in-out;
}
.cid-umgGYZMwJQ .card-wrapper .list-wrapper .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  transition: all 0.3s ease-in-out;
  font-size: 28px;
  color: #150764;
}
.cid-umgGYZMwJQ .card-wrapper .list-wrapper .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper {
  transform: rotate(180deg);
}
.cid-umgGYZMwJQ .card-wrapper .list-wrapper .panel-group .card .panel-collapse .panel-body {
  padding: 0 32px 64px 32px;
}
@media (max-width: 1940px) {
  .cid-umgGYZMwJQ .card-wrapper .list-wrapper .panel-group .card .panel-collapse .panel-body {
    padding: 0 24px 64px 24px;
  }
}
@media (max-width: 992px) {
  .cid-umgGYZMwJQ .card-wrapper .list-wrapper .panel-group .card .panel-collapse .panel-body {
    padding: 0 20px 32px 20px;
  }
}
.cid-umgGYZMwJQ .card-wrapper .list-wrapper .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-umgGYZMwJQ .mbr-section-title {
  color: #000000;
}
.cid-umgGYZMwJQ .panel-title-edit {
  color: #150764;
}
.cid-umgGYZMwJQ .panel-text {
  color: #150764;
}
.cid-umgGYZMwJQ .panel-title-edit,
.cid-umgGYZMwJQ .icon-wrapper {
  color: #000000;
}
.cid-umgGZ0VMsZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #dff0d3;
}
.cid-umgGZ0VMsZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-umgGZ0VMsZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umgGZ0VMsZ .content-wrapper {
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-umgGZ0VMsZ .content-wrapper {
    display: block;
    padding: 0;
  }
}
.cid-umgGZ0VMsZ .content-wrapper .title-wrapper {
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-umgGZ0VMsZ .content-wrapper .title-wrapper {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-umgGZ0VMsZ .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-umgGZ0VMsZ .content-wrapper .title-wrapper .mbr-section-title {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-umgGZ0VMsZ .content-wrapper .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-umgGZ0VMsZ .content-wrapper .title-wrapper .mbr-section-btn {
  margin-top: 22px;
}
@media (max-width: 992px) {
  .cid-umgGZ0VMsZ .content-wrapper .title-wrapper .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-umgGZ0VMsZ .content-wrapper .image-wrap {
  width: 40%;
  border: 3px solid #050f0f;
  box-shadow: 4px 4px 0 0 #050f0f;
  background-color: #ffffff;
  padding: 60px 20px;
  transform: rotate(3deg);
}
@media (max-width: 992px) {
  .cid-umgGZ0VMsZ .content-wrapper .image-wrap {
    padding: 32px 16px;
    width: 100%;
    transform: rotate(0);
  }
}
.cid-umgGZ0VMsZ .content-wrapper .image-wrap img {
  height: 550px;
  width: 100%;
  object-fit: cover;
}
.cid-umgGZ0VMsZ .mbr-section-title {
  color: #050f0f;
}
.cid-umgGZ0VMsZ .mbr-text {
  color: #050f0f;
}
.cid-umh47SKoAp {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-umh47SKoAp .mbr-fallback-image.disabled {
  display: none;
}
.cid-umh47SKoAp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umh47SKoAp .container-fluid {
  padding: 0 56px;
}
@media (max-width: 992px) {
  .cid-umh47SKoAp .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 992px) {
  .cid-umh47SKoAp .container {
    padding: 0 26px;
  }
}
.cid-umh47SKoAp .row {
  justify-content: center;
}
.cid-umh47SKoAp .content-wrapper {
  display: flex;
  align-items: center;
  padding: 200px 100px 200px 60px;
  background-color: #dff0d3;
  border-radius: 20px;
}
@media (max-width: 1440px) {
  .cid-umh47SKoAp .content-wrapper {
    padding: 100px 60px;
  }
}
@media (max-width: 992px) {
  .cid-umh47SKoAp .content-wrapper {
    padding: 100px 20px;
    display: block;
  }
}
.cid-umh47SKoAp .content-wrapper .title-wrapper {
  width: 50%;
  padding-right: 45px;
}
@media (max-width: 992px) {
  .cid-umh47SKoAp .content-wrapper .title-wrapper {
    width: 100%;
    padding-right: 0;
    margin-bottom: 40px;
  }
}
.cid-umh47SKoAp .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-umh47SKoAp .content-wrapper .title-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-umh47SKoAp .content-wrapper .text-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-umh47SKoAp .content-wrapper .text-wrapper {
    width: 100%;
  }
}
.cid-umh47SKoAp .content-wrapper .text-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-umh47SKoAp .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-umh47SKoAp .content-wrapper .text-wrapper .link-wrapper:hover .mbr-link,
.cid-umh47SKoAp .content-wrapper .text-wrapper .link-wrapper:focus .mbr-link {
  color: #000000;
}
.cid-umh47SKoAp .content-wrapper .text-wrapper .link-wrapper .mbr-link {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.cid-umh47SKoAp .mbr-section-title {
  color: #232323;
}
.cid-umh47SKoAp .mbr-section-subtitle {
  color: #ffffff;
}
.cid-umh47SKoAp .mbr-desc {
  color: #ffffff;
}
.cid-umh47SKoAp .mbr-text {
  color: #000000;
}
.cid-umh47SKoAp .mbr-link {
  color: #ffffff;
}
.cid-umhshkiyFc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #dff0d3;
}
.cid-umhshkiyFc .mbr-fallback-image.disabled {
  display: none;
}
.cid-umhshkiyFc .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-umhshkiyFc .container {
    padding: 0 30px;
  }
}
.cid-umhshkiyFc .row {
  justify-content: center;
}
.cid-umhshkiyFc .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-umhshkiyFc .video-block .video-wrapper iframe {
  height: 550px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-umhshkiyFc .video-block .video-wrapper iframe {
    height: 300px;
  }
}
.cid-umhshkiyFc .video-block .video-wrapper .app-video-wrapper::before {
  color: #212529;
  text-shadow: none;
}
.cid-umhshkiyFc .video-block .video-wrapper .app-video-wrapper img {
  height: 550px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-umhshkiyFc .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-umhshkiyFc .mbr-section-title {
  color: #212529;
  text-align: center;
}
.cid-umhnhdsZvp {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #dff0d3;
}
.cid-umhnhdsZvp .mbr-fallback-image.disabled {
  display: none;
}
.cid-umhnhdsZvp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umhnhdsZvp .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-umhnhdsZvp .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-umhnhdsZvp .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #7d1595;
}
.cid-umhnhdsZvp .panel-body,
.cid-umhnhdsZvp .card-header {
  padding: 1rem 0;
}
.cid-umhnhdsZvp .panel-title-edit {
  color: #000000;
}
.cid-umgGZ1JyUj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
.cid-umgGZ1JyUj .mbr-fallback-image.disabled {
  display: none;
}
.cid-umgGZ1JyUj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umgGZ1JyUj .google-map {
  height: 30rem;
  position: relative;
}
.cid-umgGZ1JyUj .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-umgGZ1JyUj .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-umgGZ1JyUj .google-map[data-state] {
  background: #e9e5dc;
}
.cid-umgGZ1JyUj .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-umgGZ2Fult {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #dff0d3;
}
.cid-umgGZ2Fult .mbr-fallback-image.disabled {
  display: none;
}
.cid-umgGZ2Fult .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umgGZ2Fult .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-umgGZ2Fult .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-umgGZ2Fult .row {
    text-align: center;
  }
  .cid-umgGZ2Fult .social-row {
    justify-content: center;
  }
}
.cid-umgGZ2Fult .list {
  list-style: none;
  padding-left: 0;
  color: #232323;
}
@media (max-width: 991px) {
  .cid-umgGZ2Fult .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-umgGZ2Fult .list {
    margin-bottom: 0rem;
  }
}
.cid-umgGZ2Fult .mbr-text {
  color: #000000;
}
.cid-umgGZ2Fult .mbr-iconfont {
  color: black;
}
.cid-umgGZ2Fult .mbr-section-subtitle {
  color: #e43f3f;
}
.cid-umgGZ2Fult H5 {
  color: #e43f3f;
}
.cid-umh2IeNN0w {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 90px;
}
.cid-umh2IeNN0w nav.navbar {
  position: fixed;
}
.cid-umh2IeNN0w .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-umh2IeNN0w .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-umh2IeNN0w .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-umh2IeNN0w .dropdown-item:hover,
.cid-umh2IeNN0w .dropdown-item:focus {
  background: #7d1595 !important;
  color: white !important;
}
.cid-umh2IeNN0w .dropdown-item:hover span {
  color: white;
}
.cid-umh2IeNN0w .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-umh2IeNN0w .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-umh2IeNN0w .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-umh2IeNN0w .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-umh2IeNN0w .nav-link {
  position: relative;
}
.cid-umh2IeNN0w .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-umh2IeNN0w .container {
    flex-wrap: nowrap;
  }
}
.cid-umh2IeNN0w .iconfont-wrapper {
  color: #353535 !important;
  font-size: 18px;
  padding-right: 0;
}
.cid-umh2IeNN0w .iconfont-wrapper .mbr-iconfont {
  transition: .4s all;
}
.cid-umh2IeNN0w .iconfont-wrapper .mbr-iconfont:hover {
  color: #7d1595;
}
.cid-umh2IeNN0w .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 66.66666667%;
  margin-right: auto;
  min-height: 89px;
}
.cid-umh2IeNN0w .navbar-nav .nav-item {
  margin: 2px;
}
.cid-umh2IeNN0w .navbar-nav .nav-link {
  padding: 5px 9px;
  transition: .4s all;
}
.cid-umh2IeNN0w .navbar-nav .nav-link:hover {
  transform: scale(1.1);
}
.cid-umh2IeNN0w .dropdown-menu,
.cid-umh2IeNN0w .navbar.opened {
  background: #dff0d3 !important;
}
.cid-umh2IeNN0w .nav-item:focus,
.cid-umh2IeNN0w .nav-link:focus {
  outline: none;
}
.cid-umh2IeNN0w .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-umh2IeNN0w .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-umh2IeNN0w .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-umh2IeNN0w .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-umh2IeNN0w .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-umh2IeNN0w .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-umh2IeNN0w .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: none !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #dff0d3;
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-umh2IeNN0w .navbar.opened {
  transition: all 0.3s;
}
.cid-umh2IeNN0w .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-umh2IeNN0w .navbar .navbar-logo img {
  width: auto;
}
.cid-umh2IeNN0w .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-umh2IeNN0w .navbar.collapsed {
  justify-content: center;
}
.cid-umh2IeNN0w .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-umh2IeNN0w .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-umh2IeNN0w .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.7rem);
  }
}
.cid-umh2IeNN0w .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-umh2IeNN0w .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-umh2IeNN0w .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-umh2IeNN0w .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-umh2IeNN0w .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-umh2IeNN0w .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-umh2IeNN0w .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-umh2IeNN0w .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-umh2IeNN0w .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-umh2IeNN0w .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-umh2IeNN0w .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-umh2IeNN0w .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-umh2IeNN0w .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-umh2IeNN0w .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-umh2IeNN0w .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-umh2IeNN0w .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-umh2IeNN0w .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-umh2IeNN0w .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-umh2IeNN0w .navbar.navbar-short {
  min-height: 90px;
}
.cid-umh2IeNN0w .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-umh2IeNN0w .navbar.navbar-short .navbar-brand {
  min-height: 89px;
  padding: 0;
}
.cid-umh2IeNN0w .navbar-brand {
  min-height: 89px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  width: 25%;
}
.cid-umh2IeNN0w .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-umh2IeNN0w .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-umh2IeNN0w .dropdown-item.active,
.cid-umh2IeNN0w .dropdown-item:active {
  background-color: transparent;
}
.cid-umh2IeNN0w .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-umh2IeNN0w .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-umh2IeNN0w .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-umh2IeNN0w .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #dff0d3;
}
.cid-umh2IeNN0w .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-umh2IeNN0w .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-umh2IeNN0w ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-umh2IeNN0w .navbar-buttons {
  text-align: center;
}
.cid-umh2IeNN0w button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  background-color: #f6efe8;
  border-radius: 50%;
}
.cid-umh2IeNN0w button.navbar-toggler .hamburger span {
  position: absolute;
  right: 13px;
  width: 22px;
  height: 2px;
  background-color: #715537;
}
.cid-umh2IeNN0w button.navbar-toggler .hamburger span:nth-child(1) {
  top: 17px;
  transition: all 0.2s;
}
.cid-umh2IeNN0w button.navbar-toggler .hamburger span:nth-child(2) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-umh2IeNN0w button.navbar-toggler .hamburger span:nth-child(3) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-umh2IeNN0w button.navbar-toggler .hamburger span:nth-child(4) {
  top: 29px;
  transition: all 0.2s;
}
.cid-umh2IeNN0w nav.opened .hamburger span:nth-child(1) {
  top: 17px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-umh2IeNN0w nav.opened .hamburger span:nth-child(2) {
  transform: translateY(-1px) rotate(45deg);
  transition: all 0.25s;
}
.cid-umh2IeNN0w nav.opened .hamburger span:nth-child(3) {
  transform: translateY(-1px) rotate(-45deg);
  transition: all 0.25s;
}
.cid-umh2IeNN0w nav.opened .hamburger span:nth-child(4) {
  top: 29px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-umh2IeNN0w .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-umh2IeNN0w a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-umh2IeNN0w .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-umh2IeNN0w .navbar {
    height: 70px;
  }
  .cid-umh2IeNN0w .navbar.opened {
    height: auto;
  }
  .cid-umh2IeNN0w .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-umh2IeNN0w .container,
.cid-umh2IeNN0w .container-fluid {
  flex-wrap: wrap;
}
.cid-umh2IeNN0w .navbar-collapse {
  width: 75%;
  min-height: 89px;
}
.cid-umh2IeNN0w .border-item {
  width: 100%;
  height: 1px;
  background-color: #829d85;
}
.cid-umh2IeNN0w .mbr-section-btn .btn {
  width: 180px;
  min-width: auto;
  min-height: 55px;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-umh2IeNN0w .navbar-brand {
    width: calc(100% - 48px) !important;
    min-height: 89px;
  }
  .cid-umh2IeNN0w .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 1rem;
    order: 5;
  }
  .cid-umh2IeNN0w .navbar-nav {
    width: 100%;
  }
}
.cid-umh2IfJh7F {
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-umh2IfJh7F .decor-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 52%;
  height: 95%;
  border-radius: 0 85% 0 0;
  background-color: #dff0d3;
  pointer-events: none;
}
@media (max-width: 992px) {
  .cid-umh2IfJh7F .decor-wrap {
    width: 60%;
    height: 50%;
    border-radius: 0 50% 0 0;
  }
}
.cid-umh2IfJh7F .mbr-fallback-image.disabled {
  display: none;
}
.cid-umh2IfJh7F .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umh2IfJh7F .row {
  position: relative;
  z-index: 1;
}
.cid-umh2IfJh7F .title-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-umh2IfJh7F .title-wrapper .mbr-section-title {
    margin-bottom: 46px;
  }
}
.cid-umh2IfJh7F .image-wrapper {
  margin-right: 18px;
  margin-right: 0;
  margin-left: 18px;
}
@media (max-width: 992px) {
  .cid-umh2IfJh7F .image-wrapper {
    margin-right: 0;
    margin-bottom: 46px;
  }
}
@media (max-width: 992px) {
  .cid-umh2IfJh7F .image-wrapper {
    margin-left: 0;
  }
}
.cid-umh2IfJh7F .image-wrapper img {
  height: 620px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-umh2IfJh7F .image-wrapper img {
    height: 350px;
  }
}
.cid-umh2IfJh7F .content-wrapper {
  padding-top: 64px;
}
@media (max-width: 992px) {
  .cid-umh2IfJh7F .content-wrapper {
    padding-top: 22px;
  }
}
.cid-umh2IfJh7F .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 46px;
  display: inline-block;
  width: 55%;
}
@media (max-width: 992px) {
  .cid-umh2IfJh7F .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 22px;
  }
}
.cid-umh2IfJh7F .content-wrapper .desc-wrapper {
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-umh2IfJh7F .content-wrapper .desc-wrapper {
    display: block;
  }
}
.cid-umh2IfJh7F .content-wrapper .desc-wrapper .mbr-desc {
  width: 50%;
  margin-right: 20px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-umh2IfJh7F .content-wrapper .desc-wrapper .mbr-desc {
    margin-right: 0;
    width: 100%;
    margin-bottom: 12px;
  }
}
.cid-umh2IfJh7F .content-wrapper .desc-wrapper .mbr-section-btn {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-umh2IfJh7F .content-wrapper .desc-wrapper .mbr-section-btn {
    width: 100%;
  }
}
.cid-umh2IfJh7F .content-wrapper .desc-wrapper .mbr-section-btn .btn {
  padding: 29px 64px;
}
@media (max-width: 1200px) {
  .cid-umh2IfJh7F .content-wrapper .desc-wrapper .mbr-section-btn .btn {
    padding: 20px 32px;
  }
}
.cid-umh2IfJh7F .mbr-section-title {
  color: #212529;
  text-align: center;
}
.cid-umh2IfJh7F .mbr-text {
  color: #51565c;
}
.cid-umh2IfJh7F .mbr-desc {
  color: #51565c;
}
.cid-umh2IgtwFp {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-umh2IgtwFp .mbr-fallback-image.disabled {
  display: none;
}
.cid-umh2IgtwFp .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-umh2IgtwFp .container {
    padding: 0 30px;
  }
}
.cid-umh2IgtwFp .row {
  justify-content: center;
}
.cid-umh2IgtwFp .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-umh2IgtwFp .content-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-umh2IgtwFp .content-wrapper .mbr-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-umh2IgtwFp .content-wrapper .mbr-text {
    margin-bottom: 40px;
  }
}
.cid-umh2IgtwFp .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  color: #144031;
}
.cid-umh2IgtwFp .list .item-wrap {
  margin-bottom: 20px;
  padding-left: 30px;
  position: relative;
}
.cid-umh2IgtwFp .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-umh2IgtwFp .list .item-wrap::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  width: 9px;
  height: 9px;
  background-color: #22654e;
}
.cid-umh2IgtwFp .mbr-section-title {
  color: #22654E;
}
.cid-umh2IgtwFp .mbr-text {
  color: #144031;
}
.cid-umh2Ihg5kU {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #dff0d3;
}
.cid-umh2Ihg5kU .line {
  background-color: #232323;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-umh2IhZNCT {
  background-color: #ffffff;
}
.cid-umh2IhZNCT .mbr-fallback-image.disabled {
  display: none;
}
.cid-umh2IhZNCT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umh2IhZNCT .row {
  justify-content: center;
}
.cid-umh2IhZNCT .content-wrapper {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-umh2IhZNCT .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-umh2IhZNCT .content-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-umh2IhZNCT .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-umh2IhZNCT .item {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-umh2IhZNCT .item {
    margin-bottom: 35px;
  }
}
.cid-umh2IhZNCT .item .item-wrapper .card-box .icon-wrapper {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-umh2IhZNCT .item .item-wrapper .card-box .icon-wrapper {
    margin-bottom: 15px;
  }
}
.cid-umh2IhZNCT .item .item-wrapper .card-box .icon-wrapper .mbr-iconfont {
  width: 95px;
  height: 95px;
  border-radius: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #000000;
  color: #ffffff;
  font-size: 60px;
}
.cid-umh2IhZNCT .item .item-wrapper .card-box .item-title {
  margin-bottom: 10px;
}
.cid-umh2IhZNCT .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-umh2IhZNCT .border-wrapper {
  width: 100%;
  height: 1px;
  background-color: #000000;
}
.cid-umh2IhZNCT .mbr-section-title {
  color: #000000;
}
.cid-umh2IhZNCT .mbr-text {
  color: #000000;
}
.cid-umh2IhZNCT .item-title {
  color: #000000;
}
.cid-umh2IhZNCT .item-text {
  color: #000000;
}
.cid-umh2IiXAdt {
  background-color: #dff0d3;
}
.cid-umh2IiXAdt .mbr-fallback-image.disabled {
  display: none;
}
.cid-umh2IiXAdt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umh2IiXAdt .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-umh2IiXAdt .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-umh2IiXAdt .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-umh2IiXAdt .card-wrapper {
    padding: 4rem;
  }
}
.cid-umh2IiXAdt .mbr-text,
.cid-umh2IiXAdt .mbr-section-btn {
  color: #000000;
}
.cid-umh2IiXAdt .card-title,
.cid-umh2IiXAdt .card-box {
  text-align: left;
  color: #232323;
}
.cid-umhiCY1R6v {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-umhiCY1R6v .mbr-fallback-image.disabled {
  display: none;
}
.cid-umhiCY1R6v .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-umhiCY1R6v .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-umhiCY1R6v .row {
  flex-direction: row-reverse;
}
.cid-umhiCY1R6v img {
  width: 100%;
}
.cid-umh2IjJ5kF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-umh2IjJ5kF .mbr-fallback-image.disabled {
  display: none;
}
.cid-umh2IjJ5kF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umh2IjJ5kF .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-umh2IjJ5kF .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-umh2IjJ5kF .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-umh2IjJ5kF .mbr-section-title {
  color: #131313;
}
.cid-umh2IjJ5kF .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-umh2IjJ5kF .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-umh2IjJ5kF .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-umh2IjJ5kF .card-wrapper {
  width: calc(100% - 14px);
  padding: 80px 40px 60px 40px;
  margin: 0 auto;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #dff0d3;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-umh2IjJ5kF .card-wrapper {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) {
  .cid-umh2IjJ5kF .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-umh2IjJ5kF .iconfont-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .cid-umh2IjJ5kF .iconfont-wrapper {
    margin-bottom: 25px;
  }
}
.cid-umh2IjJ5kF .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-umh2IjJ5kF .card-title {
  color: #131313;
}
.cid-umh2IjJ5kF .card-text {
  margin-top: 10px;
  color: #131313;
}
.cid-umh2IjJ5kF .card-link {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-umh2IjJ5kF .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-umh2IjJ5kF .card-link {
    margin-top: 15px;
  }
}
.cid-umh2IjJ5kF .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-umh2IkNN2v {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-umh2IkNN2v blockquote {
  border-color: #000000;
  border-radius: 4px;
  background-color: #dff0d3;
}
.cid-umh2IlxHCg {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #dff0d3;
}
.cid-umh2IlxHCg .mbr-fallback-image.disabled {
  display: none;
}
.cid-umh2IlxHCg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umh2IlxHCg .row {
  margin: 0 !important;
  row-gap: 40px;
  flex-direction: row-reverse;
}
.cid-umh2IlxHCg .item-img {
  display: flex;
  justify-content: flex-start;
  width: 50%;
  padding: 0 !important;
  justify-content: flex-end;
}
.cid-umh2IlxHCg .item-img img {
  max-width: 580px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-umh2IlxHCg .item-img {
    width: 100%;
  }
}
.cid-umh2IlxHCg .item-content {
  width: 50%;
  padding: 0 !important;
}
@media (max-width: 1500px) {
  .cid-umh2IlxHCg .item-content {
    padding-left: 40px !important;
    padding-left: 0 !important;
    padding-right: 40px !important;
  }
}
@media (max-width: 1199px) {
  .cid-umh2IlxHCg .item-content {
    padding-left: 25px !important;
    padding-left: 0 !important;
    padding-right: 25px !important;
  }
}
@media (max-width: 991px) {
  .cid-umh2IlxHCg .item-content {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-umh2IlxHCg .card-title {
  color: #131313;
}
.cid-umh2IlxHCg .card-text {
  margin-top: 25px;
  color: #131313;
}
.cid-umh2IlxHCg .list-box {
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
  width: 100%;
  margin-top: 30px;
}
.cid-umh2IlxHCg .list-item {
  display: flex;
  align-items: center;
  width: 100%;
  column-gap: 12px;
}
.cid-umh2IlxHCg .iconfont-wrapper {
  flex-shrink: 0;
}
.cid-umh2IlxHCg .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 25px;
  color: #000000;
  transform: rotate(-45deg);
}
.cid-umh2IlxHCg .list-text {
  flex-grow: 1;
  color: #131313;
}
.cid-umh2IlxHCg .mbr-section-btn {
  margin-top: 40px;
}
@media (max-width: 1500px) {
  .cid-umh2IlxHCg .mbr-section-btn {
    margin-top: 15px;
  }
}
.cid-umh2ImwQak {
  background-color: #ffffff;
}
.cid-umh2ImwQak .mbr-fallback-image.disabled {
  display: none;
}
.cid-umh2ImwQak .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umh2ImwQak .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-umh2ImwQak .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-umh2ImwQak .container {
    padding: 0 24px;
  }
}
.cid-umh2ImwQak .row {
  justify-content: center;
}
.cid-umh2ImwQak .content-wrapper {
  border-radius: 40px;
  background-color: #dff0d3;
  padding: 64px;
}
@media (max-width: 992px) {
  .cid-umh2ImwQak .content-wrapper {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .cid-umh2ImwQak .content-wrapper {
    padding: 32px;
  }
}
.cid-umh2ImwQak .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-umh2ImwQak .content-wrapper .mbr-text {
  margin: 16px 0 0;
}
.cid-umh2ImwQak .mbr-section-title {
  color: #000000;
}
.cid-umh2ImwQak .mbr-text {
  color: #262642;
}
.cid-umh2InmcAT {
  background-color: #dff0d3;
}
.cid-umh2InmcAT .mbr-fallback-image.disabled {
  display: none;
}
.cid-umh2InmcAT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 1400px) {
  .cid-umh2InmcAT .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
.cid-umh2InmcAT P {
  max-width: 1200px;
}
.cid-umh2InmcAT .mbr-section-btn,
.cid-umh2InmcAT .btn {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-umh2InmcAT .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-umh2InmcAT .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-umh2InmcAT .image-wrapper {
    padding: 1.5rem;
  }
}
@media (min-width: 992px) {
  .cid-umh2InmcAT .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-umh2InmcAT .mbr-section-title {
  color: #353535;
  text-align: center;
}
.cid-umh2InmcAT .mbr-text,
.cid-umh2InmcAT .mbr-section-btn {
  color: #353535;
  text-align: center;
}
.cid-umh2InmcAT .mbr-section-subtitle {
  color: #ffffff;
}
.cid-umh2Io7NvS {
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-umh2Io7NvS .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-umh2Io7NvS .mbr-fallback-image.disabled {
  display: none;
}
.cid-umh2Io7NvS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umh2Io7NvS .content-wrap {
  justify-content: center;
}
.cid-umh2Io7NvS .card-wrapper {
  background-color: #dff0d3;
  display: flex;
  border: 1px solid #150764;
}
@media (max-width: 1200px) {
  .cid-umh2Io7NvS .card-wrapper {
    display: block;
  }
}
.cid-umh2Io7NvS .card-wrapper .title-wrapper {
  width: 35%;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid #150764;
  border-right: none;
  border-left: 1px solid #150764;
}
@media (max-width: 1640px) {
  .cid-umh2Io7NvS .card-wrapper .title-wrapper {
    padding: 40px 24px;
  }
}
@media (max-width: 1200px) {
  .cid-umh2Io7NvS .card-wrapper .title-wrapper {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #150764;
  }
}
@media (max-width: 992px) {
  .cid-umh2Io7NvS .card-wrapper .title-wrapper {
    padding: 40px 20px;
  }
}
@media (max-width: 1200px) {
  .cid-umh2Io7NvS .card-wrapper .title-wrapper {
    border-left: none;
    border-bottom: 1px solid #150764;
  }
}
.cid-umh2Io7NvS .card-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-umh2Io7NvS .card-wrapper .title-wrapper .icon-wrapper .mbr-iconfont {
  font-size: 100px;
  color: #150764;
  display: inline-flex;
}
@media (max-width: 992px) {
  .cid-umh2Io7NvS .card-wrapper .title-wrapper .icon-wrapper .mbr-iconfont {
    font-size: 80px;
  }
}
.cid-umh2Io7NvS .card-wrapper .list-wrapper {
  width: 65%;
}
@media (max-width: 1200px) {
  .cid-umh2Io7NvS .card-wrapper .list-wrapper {
    width: 100%;
  }
}
.cid-umh2Io7NvS .card-wrapper .list-wrapper .panel-group .card {
  position: relative;
  padding: 0;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  background-color: transparent;
  border-radius: 0 !important;
}
.cid-umh2Io7NvS .card-wrapper .list-wrapper .panel-group .card:first-child .card-header {
  border-top: none !important;
}
.cid-umh2Io7NvS .card-wrapper .list-wrapper .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 32px;
  border-top: 1px solid #000000;
}
@media (max-width: 1940px) {
  .cid-umh2Io7NvS .card-wrapper .list-wrapper .panel-group .card .card-header {
    padding: 32px 24px;
  }
}
@media (max-width: 992px) {
  .cid-umh2Io7NvS .card-wrapper .list-wrapper .panel-group .card .card-header {
    padding: 32px 20px;
  }
}
.cid-umh2Io7NvS .card-wrapper .list-wrapper .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-umh2Io7NvS .card-wrapper .list-wrapper .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-umh2Io7NvS .card-wrapper .list-wrapper .panel-group .card .card-header .panel-title .icon-wrapper {
  width: 28px;
  height: 28px;
  min-width: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 16px;
  transition: all 0.3s ease-in-out;
}
.cid-umh2Io7NvS .card-wrapper .list-wrapper .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  transition: all 0.3s ease-in-out;
  font-size: 28px;
  color: #150764;
}
.cid-umh2Io7NvS .card-wrapper .list-wrapper .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper {
  transform: rotate(180deg);
}
.cid-umh2Io7NvS .card-wrapper .list-wrapper .panel-group .card .panel-collapse .panel-body {
  padding: 0 32px 64px 32px;
}
@media (max-width: 1940px) {
  .cid-umh2Io7NvS .card-wrapper .list-wrapper .panel-group .card .panel-collapse .panel-body {
    padding: 0 24px 64px 24px;
  }
}
@media (max-width: 992px) {
  .cid-umh2Io7NvS .card-wrapper .list-wrapper .panel-group .card .panel-collapse .panel-body {
    padding: 0 20px 32px 20px;
  }
}
.cid-umh2Io7NvS .card-wrapper .list-wrapper .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-umh2Io7NvS .mbr-section-title {
  color: #000000;
}
.cid-umh2Io7NvS .panel-title-edit {
  color: #150764;
}
.cid-umh2Io7NvS .panel-text {
  color: #150764;
}
.cid-umh2Io7NvS .panel-title-edit,
.cid-umh2Io7NvS .icon-wrapper {
  color: #000000;
}
.cid-umh2IpeMa9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #dff0d3;
}
.cid-umh2IpeMa9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-umh2IpeMa9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umh2IpeMa9 .content-wrapper {
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-umh2IpeMa9 .content-wrapper {
    display: block;
    padding: 0;
  }
}
.cid-umh2IpeMa9 .content-wrapper .title-wrapper {
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-umh2IpeMa9 .content-wrapper .title-wrapper {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-umh2IpeMa9 .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-umh2IpeMa9 .content-wrapper .title-wrapper .mbr-section-title {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-umh2IpeMa9 .content-wrapper .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-umh2IpeMa9 .content-wrapper .title-wrapper .mbr-section-btn {
  margin-top: 22px;
}
@media (max-width: 992px) {
  .cid-umh2IpeMa9 .content-wrapper .title-wrapper .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-umh2IpeMa9 .content-wrapper .image-wrap {
  width: 40%;
  border: 3px solid #050f0f;
  box-shadow: 4px 4px 0 0 #050f0f;
  background-color: #ffffff;
  padding: 60px 20px;
  transform: rotate(3deg);
}
@media (max-width: 992px) {
  .cid-umh2IpeMa9 .content-wrapper .image-wrap {
    padding: 32px 16px;
    width: 100%;
    transform: rotate(0);
  }
}
.cid-umh2IpeMa9 .content-wrapper .image-wrap img {
  height: 550px;
  width: 100%;
  object-fit: cover;
}
.cid-umh2IpeMa9 .mbr-section-title {
  color: #050f0f;
}
.cid-umh2IpeMa9 .mbr-text {
  color: #050f0f;
}
.cid-umhbaBI6r9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-umhbaBI6r9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-umhbaBI6r9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umhbaBI6r9 .container-fluid {
  padding: 0 56px;
}
@media (max-width: 992px) {
  .cid-umhbaBI6r9 .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 992px) {
  .cid-umhbaBI6r9 .container {
    padding: 0 26px;
  }
}
.cid-umhbaBI6r9 .row {
  justify-content: center;
}
.cid-umhbaBI6r9 .content-wrapper {
  display: flex;
  align-items: center;
  padding: 200px 100px 200px 60px;
  background-color: #dff0d3;
  border-radius: 20px;
}
@media (max-width: 1440px) {
  .cid-umhbaBI6r9 .content-wrapper {
    padding: 100px 60px;
  }
}
@media (max-width: 992px) {
  .cid-umhbaBI6r9 .content-wrapper {
    padding: 100px 20px;
    display: block;
  }
}
.cid-umhbaBI6r9 .content-wrapper .title-wrapper {
  width: 50%;
  padding-right: 45px;
}
@media (max-width: 992px) {
  .cid-umhbaBI6r9 .content-wrapper .title-wrapper {
    width: 100%;
    padding-right: 0;
    margin-bottom: 40px;
  }
}
.cid-umhbaBI6r9 .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-umhbaBI6r9 .content-wrapper .title-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-umhbaBI6r9 .content-wrapper .text-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-umhbaBI6r9 .content-wrapper .text-wrapper {
    width: 100%;
  }
}
.cid-umhbaBI6r9 .content-wrapper .text-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-umhbaBI6r9 .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-umhbaBI6r9 .content-wrapper .text-wrapper .link-wrapper:hover .mbr-link,
.cid-umhbaBI6r9 .content-wrapper .text-wrapper .link-wrapper:focus .mbr-link {
  color: #000000;
}
.cid-umhbaBI6r9 .content-wrapper .text-wrapper .link-wrapper .mbr-link {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.cid-umhbaBI6r9 .mbr-section-title {
  color: #000000;
}
.cid-umhbaBI6r9 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-umhbaBI6r9 .mbr-desc {
  color: #ffffff;
}
.cid-umhbaBI6r9 .mbr-text {
  color: #000000;
}
.cid-umhbaBI6r9 .mbr-link {
  color: #ffffff;
}
.cid-umhonKzO1Z {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #dff0d3;
}
.cid-umhonKzO1Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-umhonKzO1Z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umhonKzO1Z .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-umhonKzO1Z .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-umhonKzO1Z .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #7d1595;
}
.cid-umhonKzO1Z .panel-body,
.cid-umhonKzO1Z .card-header {
  padding: 1rem 0;
}
.cid-umhonKzO1Z .panel-title-edit {
  color: #000000;
}
.cid-umh2Iq0gZs {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
.cid-umh2Iq0gZs .mbr-fallback-image.disabled {
  display: none;
}
.cid-umh2Iq0gZs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umh2Iq0gZs .google-map {
  height: 30rem;
  position: relative;
}
.cid-umh2Iq0gZs .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-umh2Iq0gZs .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-umh2Iq0gZs .google-map[data-state] {
  background: #e9e5dc;
}
.cid-umh2Iq0gZs .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-umh2IqWyZy {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #dff0d3;
}
.cid-umh2IqWyZy .mbr-fallback-image.disabled {
  display: none;
}
.cid-umh2IqWyZy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umh2IqWyZy .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-umh2IqWyZy .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-umh2IqWyZy .row {
    text-align: center;
  }
  .cid-umh2IqWyZy .social-row {
    justify-content: center;
  }
}
.cid-umh2IqWyZy .list {
  list-style: none;
  padding-left: 0;
  color: #232323;
}
@media (max-width: 991px) {
  .cid-umh2IqWyZy .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-umh2IqWyZy .list {
    margin-bottom: 0rem;
  }
}
.cid-umh2IqWyZy .mbr-text {
  color: #000000;
}
.cid-umh2IqWyZy .mbr-iconfont {
  color: black;
}
.cid-umh2IqWyZy .mbr-section-subtitle {
  color: #e43f3f;
}
.cid-umh2IqWyZy H5 {
  color: #e43f3f;
}
.cid-umh2IYeQzG {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 90px;
}
.cid-umh2IYeQzG nav.navbar {
  position: fixed;
}
.cid-umh2IYeQzG .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-umh2IYeQzG .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-umh2IYeQzG .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-umh2IYeQzG .dropdown-item:hover,
.cid-umh2IYeQzG .dropdown-item:focus {
  background: #7d1595 !important;
  color: white !important;
}
.cid-umh2IYeQzG .dropdown-item:hover span {
  color: white;
}
.cid-umh2IYeQzG .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-umh2IYeQzG .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-umh2IYeQzG .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-umh2IYeQzG .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-umh2IYeQzG .nav-link {
  position: relative;
}
.cid-umh2IYeQzG .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-umh2IYeQzG .container {
    flex-wrap: nowrap;
  }
}
.cid-umh2IYeQzG .iconfont-wrapper {
  color: #353535 !important;
  font-size: 18px;
  padding-right: 0;
}
.cid-umh2IYeQzG .iconfont-wrapper .mbr-iconfont {
  transition: .4s all;
}
.cid-umh2IYeQzG .iconfont-wrapper .mbr-iconfont:hover {
  color: #7d1595;
}
.cid-umh2IYeQzG .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 66.66666667%;
  margin-right: auto;
  min-height: 89px;
}
.cid-umh2IYeQzG .navbar-nav .nav-item {
  margin: 2px;
}
.cid-umh2IYeQzG .navbar-nav .nav-link {
  padding: 5px 9px;
  transition: .4s all;
}
.cid-umh2IYeQzG .navbar-nav .nav-link:hover {
  transform: scale(1.1);
}
.cid-umh2IYeQzG .dropdown-menu,
.cid-umh2IYeQzG .navbar.opened {
  background: #dff0d3 !important;
}
.cid-umh2IYeQzG .nav-item:focus,
.cid-umh2IYeQzG .nav-link:focus {
  outline: none;
}
.cid-umh2IYeQzG .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-umh2IYeQzG .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-umh2IYeQzG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-umh2IYeQzG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-umh2IYeQzG .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-umh2IYeQzG .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-umh2IYeQzG .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: none !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #dff0d3;
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-umh2IYeQzG .navbar.opened {
  transition: all 0.3s;
}
.cid-umh2IYeQzG .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-umh2IYeQzG .navbar .navbar-logo img {
  width: auto;
}
.cid-umh2IYeQzG .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-umh2IYeQzG .navbar.collapsed {
  justify-content: center;
}
.cid-umh2IYeQzG .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-umh2IYeQzG .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-umh2IYeQzG .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.7rem);
  }
}
.cid-umh2IYeQzG .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-umh2IYeQzG .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-umh2IYeQzG .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-umh2IYeQzG .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-umh2IYeQzG .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-umh2IYeQzG .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-umh2IYeQzG .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-umh2IYeQzG .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-umh2IYeQzG .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-umh2IYeQzG .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-umh2IYeQzG .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-umh2IYeQzG .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-umh2IYeQzG .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-umh2IYeQzG .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-umh2IYeQzG .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-umh2IYeQzG .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-umh2IYeQzG .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-umh2IYeQzG .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-umh2IYeQzG .navbar.navbar-short {
  min-height: 90px;
}
.cid-umh2IYeQzG .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-umh2IYeQzG .navbar.navbar-short .navbar-brand {
  min-height: 89px;
  padding: 0;
}
.cid-umh2IYeQzG .navbar-brand {
  min-height: 89px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  width: 25%;
}
.cid-umh2IYeQzG .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-umh2IYeQzG .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-umh2IYeQzG .dropdown-item.active,
.cid-umh2IYeQzG .dropdown-item:active {
  background-color: transparent;
}
.cid-umh2IYeQzG .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-umh2IYeQzG .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-umh2IYeQzG .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-umh2IYeQzG .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #dff0d3;
}
.cid-umh2IYeQzG .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-umh2IYeQzG .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-umh2IYeQzG ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-umh2IYeQzG .navbar-buttons {
  text-align: center;
}
.cid-umh2IYeQzG button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  background-color: #f6efe8;
  border-radius: 50%;
}
.cid-umh2IYeQzG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 13px;
  width: 22px;
  height: 2px;
  background-color: #715537;
}
.cid-umh2IYeQzG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 17px;
  transition: all 0.2s;
}
.cid-umh2IYeQzG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-umh2IYeQzG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-umh2IYeQzG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 29px;
  transition: all 0.2s;
}
.cid-umh2IYeQzG nav.opened .hamburger span:nth-child(1) {
  top: 17px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-umh2IYeQzG nav.opened .hamburger span:nth-child(2) {
  transform: translateY(-1px) rotate(45deg);
  transition: all 0.25s;
}
.cid-umh2IYeQzG nav.opened .hamburger span:nth-child(3) {
  transform: translateY(-1px) rotate(-45deg);
  transition: all 0.25s;
}
.cid-umh2IYeQzG nav.opened .hamburger span:nth-child(4) {
  top: 29px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-umh2IYeQzG .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-umh2IYeQzG a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-umh2IYeQzG .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-umh2IYeQzG .navbar {
    height: 70px;
  }
  .cid-umh2IYeQzG .navbar.opened {
    height: auto;
  }
  .cid-umh2IYeQzG .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-umh2IYeQzG .container,
.cid-umh2IYeQzG .container-fluid {
  flex-wrap: wrap;
}
.cid-umh2IYeQzG .navbar-collapse {
  width: 75%;
  min-height: 89px;
}
.cid-umh2IYeQzG .border-item {
  width: 100%;
  height: 1px;
  background-color: #829d85;
}
.cid-umh2IYeQzG .mbr-section-btn .btn {
  width: 180px;
  min-width: auto;
  min-height: 55px;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-umh2IYeQzG .navbar-brand {
    width: calc(100% - 48px) !important;
    min-height: 89px;
  }
  .cid-umh2IYeQzG .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 1rem;
    order: 5;
  }
  .cid-umh2IYeQzG .navbar-nav {
    width: 100%;
  }
}
.cid-umh2IZlTRF {
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-umh2IZlTRF .decor-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 52%;
  height: 95%;
  border-radius: 0 85% 0 0;
  background-color: #dff0d3;
  pointer-events: none;
}
@media (max-width: 992px) {
  .cid-umh2IZlTRF .decor-wrap {
    width: 60%;
    height: 50%;
    border-radius: 0 50% 0 0;
  }
}
.cid-umh2IZlTRF .mbr-fallback-image.disabled {
  display: none;
}
.cid-umh2IZlTRF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umh2IZlTRF .row {
  position: relative;
  z-index: 1;
}
.cid-umh2IZlTRF .title-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-umh2IZlTRF .title-wrapper .mbr-section-title {
    margin-bottom: 46px;
  }
}
.cid-umh2IZlTRF .image-wrapper {
  margin-right: 18px;
  margin-right: 0;
  margin-left: 18px;
}
@media (max-width: 992px) {
  .cid-umh2IZlTRF .image-wrapper {
    margin-right: 0;
    margin-bottom: 46px;
  }
}
@media (max-width: 992px) {
  .cid-umh2IZlTRF .image-wrapper {
    margin-left: 0;
  }
}
.cid-umh2IZlTRF .image-wrapper img {
  height: 620px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-umh2IZlTRF .image-wrapper img {
    height: 350px;
  }
}
.cid-umh2IZlTRF .content-wrapper {
  padding-top: 64px;
}
@media (max-width: 992px) {
  .cid-umh2IZlTRF .content-wrapper {
    padding-top: 22px;
  }
}
.cid-umh2IZlTRF .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 46px;
  display: inline-block;
  width: 55%;
}
@media (max-width: 992px) {
  .cid-umh2IZlTRF .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 22px;
  }
}
.cid-umh2IZlTRF .content-wrapper .desc-wrapper {
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-umh2IZlTRF .content-wrapper .desc-wrapper {
    display: block;
  }
}
.cid-umh2IZlTRF .content-wrapper .desc-wrapper .mbr-desc {
  width: 50%;
  margin-right: 20px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-umh2IZlTRF .content-wrapper .desc-wrapper .mbr-desc {
    margin-right: 0;
    width: 100%;
    margin-bottom: 12px;
  }
}
.cid-umh2IZlTRF .content-wrapper .desc-wrapper .mbr-section-btn {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-umh2IZlTRF .content-wrapper .desc-wrapper .mbr-section-btn {
    width: 100%;
  }
}
.cid-umh2IZlTRF .content-wrapper .desc-wrapper .mbr-section-btn .btn {
  padding: 29px 64px;
}
@media (max-width: 1200px) {
  .cid-umh2IZlTRF .content-wrapper .desc-wrapper .mbr-section-btn .btn {
    padding: 20px 32px;
  }
}
.cid-umh2IZlTRF .mbr-section-title {
  color: #212529;
  text-align: center;
}
.cid-umh2IZlTRF .mbr-text {
  color: #51565c;
}
.cid-umh2IZlTRF .mbr-desc {
  color: #51565c;
}
.cid-umh2J09R0A {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-umh2J09R0A .mbr-fallback-image.disabled {
  display: none;
}
.cid-umh2J09R0A .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-umh2J09R0A .container {
    padding: 0 30px;
  }
}
.cid-umh2J09R0A .row {
  justify-content: center;
}
.cid-umh2J09R0A .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-umh2J09R0A .content-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-umh2J09R0A .content-wrapper .mbr-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-umh2J09R0A .content-wrapper .mbr-text {
    margin-bottom: 40px;
  }
}
.cid-umh2J09R0A .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  color: #144031;
}
.cid-umh2J09R0A .list .item-wrap {
  margin-bottom: 20px;
  padding-left: 30px;
  position: relative;
}
.cid-umh2J09R0A .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-umh2J09R0A .list .item-wrap::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  width: 9px;
  height: 9px;
  background-color: #22654e;
}
.cid-umh2J09R0A .mbr-section-title {
  color: #22654E;
}
.cid-umh2J09R0A .mbr-text {
  color: #144031;
}
.cid-umh2J0W8uI {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #dff0d3;
}
.cid-umh2J0W8uI .line {
  background-color: #232323;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-umh2J1GlpJ {
  background-color: #ffffff;
}
.cid-umh2J1GlpJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-umh2J1GlpJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umh2J1GlpJ .row {
  justify-content: center;
}
.cid-umh2J1GlpJ .content-wrapper {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-umh2J1GlpJ .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-umh2J1GlpJ .content-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-umh2J1GlpJ .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-umh2J1GlpJ .item {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-umh2J1GlpJ .item {
    margin-bottom: 35px;
  }
}
.cid-umh2J1GlpJ .item .item-wrapper .card-box .icon-wrapper {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-umh2J1GlpJ .item .item-wrapper .card-box .icon-wrapper {
    margin-bottom: 15px;
  }
}
.cid-umh2J1GlpJ .item .item-wrapper .card-box .icon-wrapper .mbr-iconfont {
  width: 95px;
  height: 95px;
  border-radius: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #000000;
  color: #ffffff;
  font-size: 60px;
}
.cid-umh2J1GlpJ .item .item-wrapper .card-box .item-title {
  margin-bottom: 10px;
}
.cid-umh2J1GlpJ .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-umh2J1GlpJ .border-wrapper {
  width: 100%;
  height: 1px;
  background-color: #000000;
}
.cid-umh2J1GlpJ .mbr-section-title {
  color: #000000;
}
.cid-umh2J1GlpJ .mbr-text {
  color: #000000;
}
.cid-umh2J1GlpJ .item-title {
  color: #000000;
}
.cid-umh2J1GlpJ .item-text {
  color: #000000;
}
.cid-umh2J2KPTo {
  background-color: #dff0d3;
}
.cid-umh2J2KPTo .mbr-fallback-image.disabled {
  display: none;
}
.cid-umh2J2KPTo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umh2J2KPTo .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-umh2J2KPTo .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-umh2J2KPTo .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-umh2J2KPTo .card-wrapper {
    padding: 4rem;
  }
}
.cid-umh2J2KPTo .mbr-text,
.cid-umh2J2KPTo .mbr-section-btn {
  color: #000000;
}
.cid-umh2J2KPTo .card-title,
.cid-umh2J2KPTo .card-box {
  text-align: left;
  color: #232323;
}
.cid-umh2J3xHGI {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-umh2J3xHGI .mbr-fallback-image.disabled {
  display: none;
}
.cid-umh2J3xHGI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umh2J3xHGI .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-umh2J3xHGI .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-umh2J3xHGI .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-umh2J3xHGI .mbr-section-title {
  color: #131313;
}
.cid-umh2J3xHGI .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-umh2J3xHGI .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-umh2J3xHGI .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-umh2J3xHGI .card-wrapper {
  width: calc(100% - 14px);
  padding: 80px 40px 60px 40px;
  margin: 0 auto;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #dff0d3;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-umh2J3xHGI .card-wrapper {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) {
  .cid-umh2J3xHGI .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-umh2J3xHGI .iconfont-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .cid-umh2J3xHGI .iconfont-wrapper {
    margin-bottom: 25px;
  }
}
.cid-umh2J3xHGI .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-umh2J3xHGI .card-title {
  color: #131313;
}
.cid-umh2J3xHGI .card-text {
  margin-top: 10px;
  color: #131313;
}
.cid-umh2J3xHGI .card-link {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-umh2J3xHGI .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-umh2J3xHGI .card-link {
    margin-top: 15px;
  }
}
.cid-umh2J3xHGI .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-umh2J4EytU {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-umh2J4EytU blockquote {
  border-color: #000000;
  border-radius: 4px;
  background-color: #dff0d3;
}
.cid-umhiT5pTnM {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-umhiT5pTnM .mbr-fallback-image.disabled {
  display: none;
}
.cid-umhiT5pTnM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-umhiT5pTnM .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-umhiT5pTnM .row {
  flex-direction: row-reverse;
}
.cid-umhiT5pTnM img {
  width: 100%;
}
.cid-umh2J5nL8X {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #dff0d3;
}
.cid-umh2J5nL8X .mbr-fallback-image.disabled {
  display: none;
}
.cid-umh2J5nL8X .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umh2J5nL8X .row {
  margin: 0 !important;
  row-gap: 40px;
  flex-direction: row-reverse;
}
.cid-umh2J5nL8X .item-img {
  display: flex;
  justify-content: flex-start;
  width: 50%;
  padding: 0 !important;
  justify-content: flex-end;
}
.cid-umh2J5nL8X .item-img img {
  max-width: 580px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-umh2J5nL8X .item-img {
    width: 100%;
  }
}
.cid-umh2J5nL8X .item-content {
  width: 50%;
  padding: 0 !important;
}
@media (max-width: 1500px) {
  .cid-umh2J5nL8X .item-content {
    padding-left: 40px !important;
    padding-left: 0 !important;
    padding-right: 40px !important;
  }
}
@media (max-width: 1199px) {
  .cid-umh2J5nL8X .item-content {
    padding-left: 25px !important;
    padding-left: 0 !important;
    padding-right: 25px !important;
  }
}
@media (max-width: 991px) {
  .cid-umh2J5nL8X .item-content {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-umh2J5nL8X .card-title {
  color: #131313;
}
.cid-umh2J5nL8X .card-text {
  margin-top: 25px;
  color: #131313;
}
.cid-umh2J5nL8X .list-box {
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
  width: 100%;
  margin-top: 30px;
}
.cid-umh2J5nL8X .list-item {
  display: flex;
  align-items: center;
  width: 100%;
  column-gap: 12px;
}
.cid-umh2J5nL8X .iconfont-wrapper {
  flex-shrink: 0;
}
.cid-umh2J5nL8X .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 25px;
  color: #000000;
  transform: rotate(-45deg);
}
.cid-umh2J5nL8X .list-text {
  flex-grow: 1;
  color: #131313;
}
.cid-umh2J5nL8X .mbr-section-btn {
  margin-top: 40px;
}
@media (max-width: 1500px) {
  .cid-umh2J5nL8X .mbr-section-btn {
    margin-top: 15px;
  }
}
.cid-umh2J6qMoW {
  background-color: #ffffff;
}
.cid-umh2J6qMoW .mbr-fallback-image.disabled {
  display: none;
}
.cid-umh2J6qMoW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umh2J6qMoW .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-umh2J6qMoW .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-umh2J6qMoW .container {
    padding: 0 24px;
  }
}
.cid-umh2J6qMoW .row {
  justify-content: center;
}
.cid-umh2J6qMoW .content-wrapper {
  border-radius: 40px;
  background-color: #dff0d3;
  padding: 64px;
}
@media (max-width: 992px) {
  .cid-umh2J6qMoW .content-wrapper {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .cid-umh2J6qMoW .content-wrapper {
    padding: 32px;
  }
}
.cid-umh2J6qMoW .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-umh2J6qMoW .content-wrapper .mbr-text {
  margin: 16px 0 0;
}
.cid-umh2J6qMoW .mbr-section-title {
  color: #000000;
}
.cid-umh2J6qMoW .mbr-text {
  color: #262642;
}
.cid-umh2J7d6GG {
  background-color: #dff0d3;
}
.cid-umh2J7d6GG .mbr-fallback-image.disabled {
  display: none;
}
.cid-umh2J7d6GG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 1400px) {
  .cid-umh2J7d6GG .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
.cid-umh2J7d6GG P {
  max-width: 1200px;
}
.cid-umh2J7d6GG .mbr-section-btn,
.cid-umh2J7d6GG .btn {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-umh2J7d6GG .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-umh2J7d6GG .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-umh2J7d6GG .image-wrapper {
    padding: 1.5rem;
  }
}
@media (min-width: 992px) {
  .cid-umh2J7d6GG .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-umh2J7d6GG .mbr-section-title {
  color: #353535;
  text-align: center;
}
.cid-umh2J7d6GG .mbr-text,
.cid-umh2J7d6GG .mbr-section-btn {
  color: #353535;
  text-align: center;
}
.cid-umh2J7d6GG .mbr-section-subtitle {
  color: #ffffff;
}
.cid-umh2J84UaB {
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-umh2J84UaB .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-umh2J84UaB .mbr-fallback-image.disabled {
  display: none;
}
.cid-umh2J84UaB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umh2J84UaB .content-wrap {
  justify-content: center;
}
.cid-umh2J84UaB .card-wrapper {
  background-color: #dff0d3;
  display: flex;
  border: 1px solid #150764;
}
@media (max-width: 1200px) {
  .cid-umh2J84UaB .card-wrapper {
    display: block;
  }
}
.cid-umh2J84UaB .card-wrapper .title-wrapper {
  width: 35%;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid #150764;
  border-right: none;
  border-left: 1px solid #150764;
}
@media (max-width: 1640px) {
  .cid-umh2J84UaB .card-wrapper .title-wrapper {
    padding: 40px 24px;
  }
}
@media (max-width: 1200px) {
  .cid-umh2J84UaB .card-wrapper .title-wrapper {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #150764;
  }
}
@media (max-width: 992px) {
  .cid-umh2J84UaB .card-wrapper .title-wrapper {
    padding: 40px 20px;
  }
}
@media (max-width: 1200px) {
  .cid-umh2J84UaB .card-wrapper .title-wrapper {
    border-left: none;
    border-bottom: 1px solid #150764;
  }
}
.cid-umh2J84UaB .card-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-umh2J84UaB .card-wrapper .title-wrapper .icon-wrapper .mbr-iconfont {
  font-size: 100px;
  color: #150764;
  display: inline-flex;
}
@media (max-width: 992px) {
  .cid-umh2J84UaB .card-wrapper .title-wrapper .icon-wrapper .mbr-iconfont {
    font-size: 80px;
  }
}
.cid-umh2J84UaB .card-wrapper .list-wrapper {
  width: 65%;
}
@media (max-width: 1200px) {
  .cid-umh2J84UaB .card-wrapper .list-wrapper {
    width: 100%;
  }
}
.cid-umh2J84UaB .card-wrapper .list-wrapper .panel-group .card {
  position: relative;
  padding: 0;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  background-color: transparent;
  border-radius: 0 !important;
}
.cid-umh2J84UaB .card-wrapper .list-wrapper .panel-group .card:first-child .card-header {
  border-top: none !important;
}
.cid-umh2J84UaB .card-wrapper .list-wrapper .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 32px;
  border-top: 1px solid #000000;
}
@media (max-width: 1940px) {
  .cid-umh2J84UaB .card-wrapper .list-wrapper .panel-group .card .card-header {
    padding: 32px 24px;
  }
}
@media (max-width: 992px) {
  .cid-umh2J84UaB .card-wrapper .list-wrapper .panel-group .card .card-header {
    padding: 32px 20px;
  }
}
.cid-umh2J84UaB .card-wrapper .list-wrapper .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-umh2J84UaB .card-wrapper .list-wrapper .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-umh2J84UaB .card-wrapper .list-wrapper .panel-group .card .card-header .panel-title .icon-wrapper {
  width: 28px;
  height: 28px;
  min-width: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 16px;
  transition: all 0.3s ease-in-out;
}
.cid-umh2J84UaB .card-wrapper .list-wrapper .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  transition: all 0.3s ease-in-out;
  font-size: 28px;
  color: #150764;
}
.cid-umh2J84UaB .card-wrapper .list-wrapper .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper {
  transform: rotate(180deg);
}
.cid-umh2J84UaB .card-wrapper .list-wrapper .panel-group .card .panel-collapse .panel-body {
  padding: 0 32px 64px 32px;
}
@media (max-width: 1940px) {
  .cid-umh2J84UaB .card-wrapper .list-wrapper .panel-group .card .panel-collapse .panel-body {
    padding: 0 24px 64px 24px;
  }
}
@media (max-width: 992px) {
  .cid-umh2J84UaB .card-wrapper .list-wrapper .panel-group .card .panel-collapse .panel-body {
    padding: 0 20px 32px 20px;
  }
}
.cid-umh2J84UaB .card-wrapper .list-wrapper .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-umh2J84UaB .mbr-section-title {
  color: #000000;
}
.cid-umh2J84UaB .panel-title-edit {
  color: #150764;
}
.cid-umh2J84UaB .panel-text {
  color: #150764;
}
.cid-umh2J84UaB .panel-title-edit,
.cid-umh2J84UaB .icon-wrapper {
  color: #000000;
}
.cid-umh2J9b1tl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #dff0d3;
}
.cid-umh2J9b1tl .mbr-fallback-image.disabled {
  display: none;
}
.cid-umh2J9b1tl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umh2J9b1tl .content-wrapper {
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-umh2J9b1tl .content-wrapper {
    display: block;
    padding: 0;
  }
}
.cid-umh2J9b1tl .content-wrapper .title-wrapper {
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-umh2J9b1tl .content-wrapper .title-wrapper {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-umh2J9b1tl .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-umh2J9b1tl .content-wrapper .title-wrapper .mbr-section-title {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-umh2J9b1tl .content-wrapper .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-umh2J9b1tl .content-wrapper .title-wrapper .mbr-section-btn {
  margin-top: 22px;
}
@media (max-width: 992px) {
  .cid-umh2J9b1tl .content-wrapper .title-wrapper .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-umh2J9b1tl .content-wrapper .image-wrap {
  width: 40%;
  border: 3px solid #050f0f;
  box-shadow: 4px 4px 0 0 #050f0f;
  background-color: #ffffff;
  padding: 60px 20px;
  transform: rotate(3deg);
}
@media (max-width: 992px) {
  .cid-umh2J9b1tl .content-wrapper .image-wrap {
    padding: 32px 16px;
    width: 100%;
    transform: rotate(0);
  }
}
.cid-umh2J9b1tl .content-wrapper .image-wrap img {
  height: 550px;
  width: 100%;
  object-fit: cover;
}
.cid-umh2J9b1tl .mbr-section-title {
  color: #050f0f;
}
.cid-umh2J9b1tl .mbr-text {
  color: #050f0f;
}
.cid-umhgUEtIDI {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-umhgUEtIDI .mbr-fallback-image.disabled {
  display: none;
}
.cid-umhgUEtIDI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umhgUEtIDI .container-fluid {
  padding: 0 56px;
}
@media (max-width: 992px) {
  .cid-umhgUEtIDI .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 992px) {
  .cid-umhgUEtIDI .container {
    padding: 0 26px;
  }
}
.cid-umhgUEtIDI .row {
  justify-content: center;
}
.cid-umhgUEtIDI .content-wrapper {
  display: flex;
  align-items: center;
  padding: 200px 100px 200px 60px;
  background-color: #dff0d3;
  border-radius: 20px;
}
@media (max-width: 1440px) {
  .cid-umhgUEtIDI .content-wrapper {
    padding: 100px 60px;
  }
}
@media (max-width: 992px) {
  .cid-umhgUEtIDI .content-wrapper {
    padding: 100px 20px;
    display: block;
  }
}
.cid-umhgUEtIDI .content-wrapper .title-wrapper {
  width: 50%;
  padding-right: 45px;
}
@media (max-width: 992px) {
  .cid-umhgUEtIDI .content-wrapper .title-wrapper {
    width: 100%;
    padding-right: 0;
    margin-bottom: 40px;
  }
}
.cid-umhgUEtIDI .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-umhgUEtIDI .content-wrapper .title-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-umhgUEtIDI .content-wrapper .text-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-umhgUEtIDI .content-wrapper .text-wrapper {
    width: 100%;
  }
}
.cid-umhgUEtIDI .content-wrapper .text-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-umhgUEtIDI .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-umhgUEtIDI .content-wrapper .text-wrapper .link-wrapper:hover .mbr-link,
.cid-umhgUEtIDI .content-wrapper .text-wrapper .link-wrapper:focus .mbr-link {
  color: #000000;
}
.cid-umhgUEtIDI .content-wrapper .text-wrapper .link-wrapper .mbr-link {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.cid-umhgUEtIDI .mbr-section-title {
  color: #000000;
}
.cid-umhgUEtIDI .mbr-section-subtitle {
  color: #ffffff;
}
.cid-umhgUEtIDI .mbr-desc {
  color: #ffffff;
}
.cid-umhgUEtIDI .mbr-text {
  color: #000000;
}
.cid-umhgUEtIDI .mbr-link {
  color: #ffffff;
}
.cid-umhpbUFv4f {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #dff0d3;
}
.cid-umhpbUFv4f .mbr-fallback-image.disabled {
  display: none;
}
.cid-umhpbUFv4f .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umhpbUFv4f .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-umhpbUFv4f .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-umhpbUFv4f .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #7d1595;
}
.cid-umhpbUFv4f .panel-body,
.cid-umhpbUFv4f .card-header {
  padding: 1rem 0;
}
.cid-umhpbUFv4f .panel-title-edit {
  color: #000000;
}
.cid-umh2Ja8VfK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
.cid-umh2Ja8VfK .mbr-fallback-image.disabled {
  display: none;
}
.cid-umh2Ja8VfK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umh2Ja8VfK .google-map {
  height: 30rem;
  position: relative;
}
.cid-umh2Ja8VfK .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-umh2Ja8VfK .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-umh2Ja8VfK .google-map[data-state] {
  background: #e9e5dc;
}
.cid-umh2Ja8VfK .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-umh2Jbe6LR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #dff0d3;
}
.cid-umh2Jbe6LR .mbr-fallback-image.disabled {
  display: none;
}
.cid-umh2Jbe6LR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umh2Jbe6LR .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-umh2Jbe6LR .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-umh2Jbe6LR .row {
    text-align: center;
  }
  .cid-umh2Jbe6LR .social-row {
    justify-content: center;
  }
}
.cid-umh2Jbe6LR .list {
  list-style: none;
  padding-left: 0;
  color: #232323;
}
@media (max-width: 991px) {
  .cid-umh2Jbe6LR .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-umh2Jbe6LR .list {
    margin-bottom: 0rem;
  }
}
.cid-umh2Jbe6LR .mbr-text {
  color: #000000;
}
.cid-umh2Jbe6LR .mbr-iconfont {
  color: black;
}
.cid-umh2Jbe6LR .mbr-section-subtitle {
  color: #e43f3f;
}
.cid-umh2Jbe6LR H5 {
  color: #e43f3f;
}
