.btn {
  border-width: 2px;
}
.video-wrapper {
  overflow: hidden;
}
body {
  font-family: Cal Sans;
}
.display-1 {
  font-family: 'Special Gothic', sans-serif;
  font-size: 4rem;
  line-height: 1;
}
.display-1 > .mbr-iconfont {
  font-size: 5rem;
}
.display-2 {
  font-family: 'Special Gothic', sans-serif;
  font-size: 2.4rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3rem;
}
.display-4 {
  font-family: 'Special Gothic', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Special Gothic', sans-serif;
  font-size: 1.6rem;
  line-height: 1;
}
.display-5 > .mbr-iconfont {
  font-size: 2rem;
}
.display-7 {
  font-family: 'Special Gothic', sans-serif;
  font-size: 1.25rem;
  line-height: 1.3;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5625rem;
}
/* ---- 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.2rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.8rem;
    font-size: calc( 2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.92rem;
    font-size: calc( 1.49rem + (2.4 - 1.49) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.49rem + (2.4 - 1.49) * ((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.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1rem;
    font-size: calc( 1.0875rem + (1.25 - 1.0875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0875rem + (1.25 - 1.0875) * ((100vw - 20rem) / (48 - 20))));
  }
}
@media (min-width: 992px) and (max-width: 1400px) {
  .display-1 {
    font-size: 2.8rem;
    font-size: calc( 2.05rem + (4 - 2.05) * ((100vw - 62rem) / (87 - 62)));
    line-height: calc( 1.1 * (2.05rem + (4 - 2.05) * ((100vw - 62rem) / (87 - 62))));
  }
  .display-2 {
    font-size: 1.92rem;
    font-size: calc( 1.49rem + (2.4 - 1.49) * ((100vw - 62rem) / (87 - 62)));
    line-height: calc( 1.3 * (1.49rem + (2.4 - 1.49) * ((100vw - 62rem) / (87 - 62))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 62rem) / (87 - 62)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 62rem) / (87 - 62))));
  }
  .display-5 {
    font-size: 1.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 62rem) / (87 - 62)));
    line-height: calc( 1.4 * (1.21rem + (1.6 - 1.21) * ((100vw - 62rem) / (87 - 62))));
  }
  .display-7 {
    font-size: 1rem;
    font-size: calc( 1.0875rem + (1.25 - 1.0875) * ((100vw - 62rem) / (87 - 62)));
    line-height: calc( 1.4 * (1.0875rem + (1.25 - 1.0875) * ((100vw - 62rem) / (87 - 62))));
  }
}
/* Buttons */
.btn {
  padding: 1.25rem 2rem;
  border-radius: 4px;
  padding: 0.75rem 1.5rem;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1.25rem 2rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #1e4d2b !important;
}
.bg-success {
  background-color: #2a5b38 !important;
}
.bg-info {
  background-color: #d1e0be !important;
}
.bg-warning {
  background-color: #dcde2d !important;
}
.bg-danger {
  background-color: #910000 !important;
}
.btn-primary .mbr-iconfont {
  color: #010402;
  background-color: #ffffff;
}
.btn-primary,
.btn-primary:active {
  background-color: #1e4d2b !important;
  border-color: #1e4d2b !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: inherit;
  background-color: #2c723f !important;
  border-color: #2c723f !important;
  box-shadow: none;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #2c723f !important;
  border-color: #2c723f !important;
}
.btn-secondary .mbr-iconfont {
  color: #904216;
  background-color: #ffffff;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #df6d2d !important;
  border-color: #df6d2d !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: inherit;
  background-color: #e68c59 !important;
  border-color: #e68c59 !important;
  box-shadow: none;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #e68c59 !important;
  border-color: #e68c59 !important;
}
.btn-info .mbr-iconfont {
  color: #a0bf79;
  background-color: #ffffff;
}
.btn-info,
.btn-info:active {
  background-color: #d1e0be !important;
  border-color: #d1e0be !important;
  color: #536c33 !important;
  box-shadow: none;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: inherit;
  background-color: #e9f0e1 !important;
  border-color: #e9f0e1 !important;
  box-shadow: none;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #536c33 !important;
  background-color: #e9f0e1 !important;
  border-color: #e9f0e1 !important;
}
.btn-success .mbr-iconfont {
  color: #0a150d;
  background-color: #ffffff;
}
.btn-success,
.btn-success:active {
  background-color: #2a5b38 !important;
  border-color: #2a5b38 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: inherit;
  background-color: #3a7e4d !important;
  border-color: #3a7e4d !important;
  box-shadow: none;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #3a7e4d !important;
  border-color: #3a7e4d !important;
}
.btn-warning .mbr-iconfont {
  color: #8d8f16;
  background-color: #f2f3b1;
}
.btn-warning,
.btn-warning:active {
  background-color: #dcde2d !important;
  border-color: #dcde2d !important;
  color: #0a0a02 !important;
  box-shadow: none;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: inherit;
  background-color: #e3e559 !important;
  border-color: #e3e559 !important;
  box-shadow: none;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #0a0a02 !important;
  background-color: #e3e559 !important;
  border-color: #e3e559 !important;
}
.btn-danger .mbr-iconfont {
  color: #2b0000;
  background-color: #ffffff;
}
.btn-danger,
.btn-danger:active {
  background-color: #910000 !important;
  border-color: #910000 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: inherit;
  background-color: #c40000 !important;
  border-color: #c40000 !important;
  box-shadow: none;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #c40000 !important;
  border-color: #c40000 !important;
}
.btn-white .mbr-iconfont {
  color: #bfc3b3;
  background-color: #ffffff;
}
.btn-white,
.btn-white:active {
  background-color: #eff0ec !important;
  border-color: #eff0ec !important;
  color: #757b62 !important;
  box-shadow: none;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: inherit;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  box-shadow: none;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #757b62 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-black .mbr-iconfont {
  color: #000000;
  background-color: #ffffff;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: inherit;
  background-color: #3d3d3d !important;
  border-color: #3d3d3d !important;
  box-shadow: none;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #3d3d3d !important;
  border-color: #3d3d3d !important;
}
.btn-primary-outline .mbr-iconfont {
  border: 2px solid #1e4d2b;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #1e4d2b;
  color: #1e4d2b;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #060f08 !important;
  background-color: transparent !important;
  border-color: #060f08 !important;
  box-shadow: none !important;
}
.btn-primary-outline:hover .mbr-iconfont,
.btn-primary-outline:focus .mbr-iconfont,
.btn-primary-outline.focus .mbr-iconfont,
.btn-primary-outline.active .mbr-iconfont {
  border: 2px solid #060f08;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #1e4d2b !important;
  border-color: #1e4d2b !important;
}
.btn-secondary-outline .mbr-iconfont {
  border: 2px solid #df6d2d;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #df6d2d;
  color: #df6d2d;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #9d4818 !important;
  background-color: transparent !important;
  border-color: #9d4818 !important;
  box-shadow: none !important;
}
.btn-secondary-outline:hover .mbr-iconfont,
.btn-secondary-outline:focus .mbr-iconfont,
.btn-secondary-outline.focus .mbr-iconfont,
.btn-secondary-outline.active .mbr-iconfont {
  border: 2px solid #9d4818;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #df6d2d !important;
  border-color: #df6d2d !important;
}
.btn-info-outline .mbr-iconfont {
  border: 2px solid #d1e0be;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #d1e0be;
  color: #d1e0be;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #a7c483 !important;
  background-color: transparent !important;
  border-color: #a7c483 !important;
  box-shadow: none !important;
}
.btn-info-outline:hover .mbr-iconfont,
.btn-info-outline:focus .mbr-iconfont,
.btn-info-outline.focus .mbr-iconfont,
.btn-info-outline.active .mbr-iconfont {
  border: 2px solid #a7c483;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #536c33 !important;
  background-color: #d1e0be !important;
  border-color: #d1e0be !important;
}
.btn-success-outline .mbr-iconfont {
  border: 2px solid #2a5b38;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #2a5b38;
  color: #2a5b38;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #0f2013 !important;
  background-color: transparent !important;
  border-color: #0f2013 !important;
  box-shadow: none !important;
}
.btn-success-outline:hover .mbr-iconfont,
.btn-success-outline:focus .mbr-iconfont,
.btn-success-outline.focus .mbr-iconfont,
.btn-success-outline.active .mbr-iconfont {
  border: 2px solid #0f2013;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #2a5b38 !important;
  border-color: #2a5b38 !important;
}
.btn-warning-outline .mbr-iconfont {
  border: 2px solid #dcde2d;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #dcde2d;
  color: #dcde2d;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #9a9c18 !important;
  background-color: transparent !important;
  border-color: #9a9c18 !important;
  box-shadow: none !important;
}
.btn-warning-outline:hover .mbr-iconfont,
.btn-warning-outline:focus .mbr-iconfont,
.btn-warning-outline.focus .mbr-iconfont,
.btn-warning-outline.active .mbr-iconfont {
  border: 2px solid #9a9c18;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #0a0a02 !important;
  background-color: #dcde2d !important;
  border-color: #dcde2d !important;
}
.btn-danger-outline .mbr-iconfont {
  border: 2px solid #910000;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #910000;
  color: #910000;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #3a0000 !important;
  background-color: transparent !important;
  border-color: #3a0000 !important;
  box-shadow: none !important;
}
.btn-danger-outline:hover .mbr-iconfont,
.btn-danger-outline:focus .mbr-iconfont,
.btn-danger-outline.focus .mbr-iconfont,
.btn-danger-outline.active .mbr-iconfont {
  border: 2px solid #3a0000;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #910000 !important;
  border-color: #910000 !important;
}
.btn-black-outline .mbr-iconfont {
  border: 2px solid #232323;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  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: #000000 !important;
  box-shadow: none !important;
}
.btn-black-outline:hover .mbr-iconfont,
.btn-black-outline:focus .mbr-iconfont,
.btn-black-outline.focus .mbr-iconfont,
.btn-black-outline.active .mbr-iconfont {
  border: 2px solid #000000;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline .mbr-iconfont {
  border: 2px solid #fafafa;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  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: #cfcfcf !important;
  box-shadow: none !important;
}
.btn-white-outline:hover .mbr-iconfont,
.btn-white-outline:focus .mbr-iconfont,
.btn-white-outline.focus .mbr-iconfont,
.btn-white-outline.active .mbr-iconfont {
  border: 2px solid #cfcfcf;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #1e4d2b !important;
}
.text-secondary {
  color: #df6d2d !important;
}
.text-success {
  color: #2a5b38 !important;
}
.text-info {
  color: #d1e0be !important;
}
.text-warning {
  color: #dcde2d !important;
}
.text-danger {
  color: #910000 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #010402 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #904216 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #0a150d !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #a0bf79 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #8d8f16 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #2b0000 !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: #1e4d2b;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #d1e0be;
}
.alert-warning {
  background-color: #dcde2d;
}
.alert-danger {
  background-color: #910000;
}
.mbr-gallery-filter li.active .btn {
  background-color: #1e4d2b;
  border-color: #1e4d2b;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #1e4d2b;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #82ce97;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #54b06f;
}
.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: #f9fadd;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ff1212;
}
/* Scroll to top button*/
.form-control {
  font-family: 'Special Gothic', sans-serif;
  font-size: 1.25rem;
  line-height: 1.3;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.5625rem;
}
.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: #1e4d2b !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Special Gothic', sans-serif;
  font-size: 1.25rem;
  line-height: 1.3;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.5625rem;
}
blockquote {
  border-color: #1e4d2b;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #1e4d2b;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #1e4d2b;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #232323;
  border-bottom-color: #232323;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #1e4d2b;
  border-bottom-color: #1e4d2b;
}
.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: #1e4d2b !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #df6d2d !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='%231e4d2b' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.mbr-section-btn .btn {
  padding: 4px 30px;
  min-height: 73px;
  font-weight: 400;
  border-radius: 0 !important;
}
.mbr-section-btn .btn .mbr-iconfont {
  width: 44px;
  height: 44px;
  min-width: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  margin-left: 14px;
  margin-right: -17px;
  transition: all .3s ease;
  font-size: 18px;
}
img,
.card-wrap,
.card-wrapper,
.video-wrapper,
.mbr-figure iframe,
.google-map iframe,
.slide-content,
.plan,
.card,
.item-wrapper {
  border-radius: 0 !important;
}
.large-radius {
  border-radius: 40px !important;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .large-radius {
    border-radius: 20px !important;
  }
}
.icon-radius .mbr-iconfont {
  border-radius: 10px !important;
  border-radius: 0 !important;
}
.cid-v0F1z6HV66 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 110px;
}
.cid-v0F1z6HV66 nav.navbar {
  position: fixed;
}
.cid-v0F1z6HV66 .container-fluid {
  padding-left: 72px;
  padding-right: 72px;
}
@media (max-width: 1440px) {
  .cid-v0F1z6HV66 .container-fluid {
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media (max-width: 992px) {
  .cid-v0F1z6HV66 .container-fluid {
    padding-left: 12px;
    padding-right: 12px;
  }
}
.cid-v0F1z6HV66 .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-v0F1z6HV66 .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.cid-v0F1z6HV66 .dropdown-item {
  border: none !important;
  background: #ffffff !important;
}
.cid-v0F1z6HV66 .dropdown-item:hover,
.cid-v0F1z6HV66 .dropdown-item:focus {
  background: #ffffff !important;
  color: #000000 !important;
}
.cid-v0F1z6HV66 .dropdown-item:hover span {
  color: white;
}
.cid-v0F1z6HV66 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0F1z6HV66 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0F1z6HV66 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v0F1z6HV66 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0F1z6HV66 .nav-link {
  position: relative;
}
.cid-v0F1z6HV66 .container {
  display: flex;
  margin: 0 auto;
  max-width: 1506px;
}
@media (min-width: 992px) {
  .cid-v0F1z6HV66 .container {
    flex-wrap: nowrap;
  }
}
.cid-v0F1z6HV66 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.cid-v0F1z6HV66 .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-v0F1z6HV66 .dropdown-menu,
.cid-v0F1z6HV66 .navbar.opened {
  background: #ffffff !important;
}
.cid-v0F1z6HV66 .nav-item:focus,
.cid-v0F1z6HV66 .nav-link:focus {
  outline: none;
}
.cid-v0F1z6HV66 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0F1z6HV66 .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.cid-v0F1z6HV66 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0F1z6HV66 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0F1z6HV66 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0F1z6HV66 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0F1z6HV66 .navbar {
  min-height: 110px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-v0F1z6HV66 .navbar.opened {
  transition: all 0.3s;
}
.cid-v0F1z6HV66 .navbar .dropdown-item {
  padding: 8px 3.2rem 8px 22px;
  line-height: 1.5;
  border-radius: 0;
  margin-left: 4px;
  margin-bottom: 4px;
}
.cid-v0F1z6HV66 .navbar .navbar-logo img {
  width: auto;
}
.cid-v0F1z6HV66 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0F1z6HV66 .navbar.collapsed {
  justify-content: center;
}
.cid-v0F1z6HV66 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0F1z6HV66 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0F1z6HV66 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.cid-v0F1z6HV66 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0F1z6HV66 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0F1z6HV66 .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-v0F1z6HV66 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0F1z6HV66 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0F1z6HV66 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0F1z6HV66 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0F1z6HV66 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0F1z6HV66 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0F1z6HV66 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0F1z6HV66 .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-v0F1z6HV66 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0F1z6HV66 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0F1z6HV66 .navbar .dropdown-menu .dropdown-item {
    padding: 14px !important;
    text-align: center;
    margin-left: 0;
  }
  .cid-v0F1z6HV66 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-v0F1z6HV66 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0F1z6HV66 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v0F1z6HV66 .navbar.navbar-short {
  min-height: 96px;
}
.cid-v0F1z6HV66 .navbar.navbar-short .navbar-brand {
  min-height: 96px;
}
.cid-v0F1z6HV66 .navbar-brand {
  min-height: 96px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-v0F1z6HV66 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-v0F1z6HV66 .navbar-brand .navbar-caption:hover,
.cid-v0F1z6HV66 .navbar-brand .navbar-caption:focus {
  color: #000000 !important;
}
.cid-v0F1z6HV66 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0F1z6HV66 .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-v0F1z6HV66 .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #000000 !important;
}
.cid-v0F1z6HV66 .dropdown-item.active,
.cid-v0F1z6HV66 .dropdown-item:active {
  background-color: transparent;
}
.cid-v0F1z6HV66 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0F1z6HV66 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0F1z6HV66 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0F1z6HV66 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
  top: 3.2rem;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-v0F1z6HV66 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-v0F1z6HV66 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-v0F1z6HV66 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0F1z6HV66 ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .cid-v0F1z6HV66 ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.cid-v0F1z6HV66 .navbar-buttons {
  text-align: center;
  width: auto;
}
@media (min-width: 991px) {
  .cid-v0F1z6HV66 .navbar-buttons {
    text-align: left;
  }
}
.cid-v0F1z6HV66 .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  padding: 7px 20px;
  min-height: auto;
  width: auto;
}
@media (max-width: 575px) {
  .cid-v0F1z6HV66 .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-v0F1z6HV66 button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #ffffff !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-v0F1z6HV66 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0F1z6HV66 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.cid-v0F1z6HV66 button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-v0F1z6HV66 button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-v0F1z6HV66 button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.cid-v0F1z6HV66 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0F1z6HV66 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0F1z6HV66 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0F1z6HV66 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0F1z6HV66 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0F1z6HV66 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0F1z6HV66 .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-v0F1z6HV66 .navbar {
    height: 70px;
  }
  .cid-v0F1z6HV66 .navbar.opened {
    height: auto;
  }
  .cid-v0F1z6HV66 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v0F1z6HV66 .navbar-nav {
  margin: 0;
}
.cid-v0F1z6HV66 .nav-item {
  padding: 0;
  margin: 0;
}
.cid-v0F1z6HV66 .nav-item .nav-link {
  padding: 2px 0 !important;
  margin: 6px 17px !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  border-radius: 3rem;
}
.cid-v0F1z6HV66 .nav-item .nav-link::after {
  color: inherit !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-v0F1z6HV66 .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #000000;
  transition: all 0.3s ease-in-out;
}
.cid-v0F1z6HV66 .nav-item .nav-link:hover,
.cid-v0F1z6HV66 .nav-item .nav-link:focus {
  background-color: transparent;
  color: #000000 !important;
}
.cid-v0F1z6HV66 .nav-item .nav-link:hover::after,
.cid-v0F1z6HV66 .nav-item .nav-link:focus::after {
  color: inherit !important;
}
.cid-v0F1z6HV66 .nav-item .nav-link:hover::before,
.cid-v0F1z6HV66 .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-v0F1z6HV66 .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-v0F1z6HV66 .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-v0F1z6HV66 .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
@media (max-width: 991px) {
  .cid-v0F1z6HV66 .navbar {
    justify-content: flex-start !important;
  }
  .cid-v0F1z6HV66 .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-v0F1z6HV66 .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-v0F1z6HV66 .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-v0F1z6HV66 .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-v0F1z6HV66 .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid transparent;
  }
  .cid-v0F1z6HV66 .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.cid-v0F1z6HV66 .content-wrap {
  min-height: 110px;
}
.cid-uNkpy6mo1c {
  padding-top: 16rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/gdbc-main-1920x1280.jpg");
}
.cid-uNkpy6mo1c .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNkpy6mo1c .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNkpy6mo1c .content-wrapper .mbr-label {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uNkpy6mo1c .content-wrapper .mbr-label {
    margin-bottom: 20px;
  }
}
.cid-uNkpy6mo1c .content-wrapper .mbr-section-title {
  margin-bottom: 40px;
  margin-top:250px;
}
@media (max-width: 992px) {
  .cid-uNkpy6mo1c .content-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uNkpy6mo1c .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 45%;
  margin-bottom: 0;
}
@media (max-width: 1440px) {
  .cid-uNkpy6mo1c .content-wrapper .text-wrapper .mbr-text {
    width: 50%;
  }
}
@media (max-width: 992px) {
  .cid-uNkpy6mo1c .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uNkpy6mo1c .content-wrapper .mbr-section-btn {
  margin-top: 40px;
}
@media (max-width: 992px) {
  .cid-uNkpy6mo1c .content-wrapper .mbr-section-btn {
    margin-top: 20px;
  }
}
.cid-uNkpy6mo1c .mbr-label {
  color: #f1f5eb;
  text-align: center;
}
.cid-uNkpy6mo1c .mbr-section-title {
  color: #f1f5eb;
}
.cid-uNkpy6mo1c .mbr-text,
.cid-uNkpy6mo1c .text-wrapper {
  color: #f1f5eb;
  text-align: center;
}
.cid-uNkpy6mo1c .mbr-section-title,
.cid-uNkpy6mo1c .mbr-section-btn {
  text-align: center;
}
.cid-v2PtwV0ckn {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #edefeb;
}
.cid-v2PtwV0ckn .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2PtwV0ckn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2PtwV0ckn .mbr-description {
  text-align: left;
}
.cid-v2PtwV0ckn .item-wrapper {
  background: #ffffff;
  margin-bottom: 2rem;
  padding: 2.25rem;
}
@media (max-width: 767px) {
  .cid-v2PtwV0ckn .item-wrapper {
    padding: 2rem 1.5rem;
    margin-bottom: 1rem;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-v2PtwV0ckn .item-wrapper {
    padding: 2rem 1.5rem;
    margin-bottom: 2rem;
  }
}
.cid-v2PtwV0ckn .card-title,
.cid-v2PtwV0ckn .iconfont-wrapper {
  color: #000000;
}
.cid-v2PtwV0ckn .card-text {
  color: #000000;
}
.cid-v2PtwV0ckn .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-v2PtwV0ckn .mbr-number {
  color: #9fe870;
}
.cid-v2PtwV0ckn .mbr-text,
.cid-v2PtwV0ckn .mbr-section-btn {
  text-align: center;
}
.cid-v2PtwV0ckn .card-text,
.cid-v2PtwV0ckn .item .mbr-section-btn {
  text-align: left;
}
.cid-v2mcxEFG1I {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v2mcxEFG1I .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2mcxEFG1I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2mcxEFG1I .content-wrapper {
  background: #82aa75;
}
@media (max-width: 991px) {
  .cid-v2mcxEFG1I .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v2mcxEFG1I .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-v2mcxEFG1I .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v2mcxEFG1I .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-v2mcxEFG1I .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-v2mcxEFG1I .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-v2mcxEFG1I .card-title {
  color: #ffffff;
}
.cid-v2mcxEFG1I .mbr-text,
.cid-v2mcxEFG1I .mbr-section-btn {
  color: #ffffff;
}
.cid-v0F78QnUpc {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f1f5eb;
}
.cid-v0F78QnUpc .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0F78QnUpc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0F78QnUpc .card-wrapper {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 70px;
  background-color: #e6eddc;
}
@media (max-width: 992px) {
  .cid-v0F78QnUpc .card-wrapper {
    padding: 20px;
  }
}
.cid-v0F78QnUpc .card-wrapper .title-wrapper {
  position: relative;
  z-index: 1;
}
.cid-v0F78QnUpc .card-wrapper .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 60%;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-v0F78QnUpc .card-wrapper .title-wrapper .mbr-section-title {
    width: 100%;
    margin-bottom: 20px;
  }
}
.cid-v0F78QnUpc .card-wrapper .google-map iframe {
  height: 500px;
}
@media (max-width: 992px) {
  .cid-v0F78QnUpc .card-wrapper .google-map iframe {
    height: 300px;
  }
}
.cid-v0F78QnUpc .mbr-section-title,
.cid-v0F78QnUpc .title-wrapper {
  color: #323432;
  text-align: center;
}
.cid-uNkpKdVOKB {
  padding-top: 5rem;
  padding-bottom: 0rem;
  overflow: hidden;
  position: relative;
  background-color: #1e4d2b;
}
.cid-uNkpKdVOKB .decor-wrapper {
  position: absolute;
  top: 0;
  right: -350px;
  width: 700px;
  height: 200px;
}
@media (max-width: 992px) {
  .cid-uNkpKdVOKB .decor-wrapper {
    top: -150px;
    right: -350px;
  }
}
.cid-uNkpKdVOKB .decor-wrapper::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 200px;
  border-radius: 100%;
  background-color: #5c834f;
  pointer-events: none;
}
.cid-uNkpKdVOKB .decor-wrapper::after {
  content: '';
  position: absolute;
  width: 700px;
  height: 200px;
  border-radius: 100%;
  background-color: #5c834f;
  transform: rotate(-45deg);
  pointer-events: none;
}
.cid-uNkpKdVOKB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNkpKdVOKB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNkpKdVOKB .row {
  justify-content: center;
}
.cid-uNkpKdVOKB .logo-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uNkpKdVOKB .logo-wrapper {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
  }
}
.cid-uNkpKdVOKB .logo-wrapper img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 100% !important;
}
.cid-uNkpKdVOKB .content-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uNkpKdVOKB .content-wrapper {
    margin-bottom: 30px;
  }
}
.cid-uNkpKdVOKB .content-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uNkpKdVOKB .content-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uNkpKdVOKB .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 65%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uNkpKdVOKB .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uNkpKdVOKB .content-wrapper .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 992px) {
  .cid-uNkpKdVOKB .content-wrapper .mbr-section-btn {
    margin-top: 20px;
  }
}
.cid-uNkpKdVOKB .social-wrapper {
  position: relative;
  z-index: 1;
  text-align: right;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uNkpKdVOKB .social-wrapper {
    text-align: center;
    margin-bottom: 30px;
  }
}
.cid-uNkpKdVOKB .social-wrapper .social-wrap {
  display: inline-flex;
  flex-direction: column;
}
.cid-uNkpKdVOKB .social-wrapper .social-wrap .soc-item {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 15px;
}
.cid-uNkpKdVOKB .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uNkpKdVOKB .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uNkpKdVOKB .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #f1f5eb;
  color: #2a5b38;
}
.cid-uNkpKdVOKB .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 100%;
  color: #f1f5eb;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  margin-left: 10px;
  background-color: #2a5b38;
}
.cid-uNkpKdVOKB .social-wrapper .social-wrap .soc-item .mbr-soc {
  margin-bottom: 0;
}
.cid-uNkpKdVOKB .copy-wrapper {
  position: relative;
  z-index: 1;
  padding: 30px;
  display: flex;
  justify-content: center;
}
.cid-uNkpKdVOKB .copy-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  width: 200%;
  height: 100%;
  background-color: #2a5b38;
  pointer-events: none;
}
.cid-uNkpKdVOKB .copy-wrapper .mbr-copy {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-bottom: 0;
}
.cid-uNkpKdVOKB .mbr-section-title {
  color: #f1f5eb;
}
.cid-uNkpKdVOKB .mbr-text,
.cid-uNkpKdVOKB .text-wrapper {
  color: #f1f5eb;
  text-align: center;
}
.cid-uNkpKdVOKB .mbr-section-btn,
.cid-uNkpKdVOKB .mbr-section-title {
  text-align: center;
}
.cid-uNkpKdVOKB .mbr-soc {
  color: #f1f5eb;
}
.cid-uNkpKdVOKB .mbr-copy {
  color: #f1f5eb;
  text-align: center;
}
.cid-v0FirzFdfO {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 110px;
}
.cid-v0FirzFdfO nav.navbar {
  position: fixed;
}
.cid-v0FirzFdfO .container-fluid {
  padding-left: 72px;
  padding-right: 72px;
}
@media (max-width: 1440px) {
  .cid-v0FirzFdfO .container-fluid {
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media (max-width: 992px) {
  .cid-v0FirzFdfO .container-fluid {
    padding-left: 12px;
    padding-right: 12px;
  }
}
.cid-v0FirzFdfO .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-v0FirzFdfO .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.cid-v0FirzFdfO .dropdown-item {
  border: none !important;
  background: #ffffff !important;
}
.cid-v0FirzFdfO .dropdown-item:hover,
.cid-v0FirzFdfO .dropdown-item:focus {
  background: #ffffff !important;
  color: #000000 !important;
}
.cid-v0FirzFdfO .dropdown-item:hover span {
  color: white;
}
.cid-v0FirzFdfO .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0FirzFdfO .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0FirzFdfO .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v0FirzFdfO .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0FirzFdfO .nav-link {
  position: relative;
}
.cid-v0FirzFdfO .container {
  display: flex;
  margin: 0 auto;
  max-width: 1506px;
}
@media (min-width: 992px) {
  .cid-v0FirzFdfO .container {
    flex-wrap: nowrap;
  }
}
.cid-v0FirzFdfO .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.cid-v0FirzFdfO .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-v0FirzFdfO .dropdown-menu,
.cid-v0FirzFdfO .navbar.opened {
  background: #ffffff !important;
}
.cid-v0FirzFdfO .nav-item:focus,
.cid-v0FirzFdfO .nav-link:focus {
  outline: none;
}
.cid-v0FirzFdfO .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0FirzFdfO .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.cid-v0FirzFdfO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0FirzFdfO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0FirzFdfO .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0FirzFdfO .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0FirzFdfO .navbar {
  min-height: 110px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-v0FirzFdfO .navbar.opened {
  transition: all 0.3s;
}
.cid-v0FirzFdfO .navbar .dropdown-item {
  padding: 8px 3.2rem 8px 22px;
  line-height: 1.5;
  border-radius: 0;
  margin-left: 4px;
  margin-bottom: 4px;
}
.cid-v0FirzFdfO .navbar .navbar-logo img {
  width: auto;
}
.cid-v0FirzFdfO .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0FirzFdfO .navbar.collapsed {
  justify-content: center;
}
.cid-v0FirzFdfO .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0FirzFdfO .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0FirzFdfO .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.cid-v0FirzFdfO .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0FirzFdfO .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0FirzFdfO .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-v0FirzFdfO .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0FirzFdfO .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0FirzFdfO .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0FirzFdfO .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0FirzFdfO .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0FirzFdfO .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0FirzFdfO .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0FirzFdfO .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-v0FirzFdfO .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0FirzFdfO .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0FirzFdfO .navbar .dropdown-menu .dropdown-item {
    padding: 14px !important;
    text-align: center;
    margin-left: 0;
  }
  .cid-v0FirzFdfO .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-v0FirzFdfO .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0FirzFdfO .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v0FirzFdfO .navbar.navbar-short {
  min-height: 96px;
}
.cid-v0FirzFdfO .navbar.navbar-short .navbar-brand {
  min-height: 96px;
}
.cid-v0FirzFdfO .navbar-brand {
  min-height: 96px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-v0FirzFdfO .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-v0FirzFdfO .navbar-brand .navbar-caption:hover,
.cid-v0FirzFdfO .navbar-brand .navbar-caption:focus {
  color: #000000 !important;
}
.cid-v0FirzFdfO .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0FirzFdfO .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-v0FirzFdfO .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #000000 !important;
}
.cid-v0FirzFdfO .dropdown-item.active,
.cid-v0FirzFdfO .dropdown-item:active {
  background-color: transparent;
}
.cid-v0FirzFdfO .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0FirzFdfO .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0FirzFdfO .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0FirzFdfO .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
  top: 3.2rem;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-v0FirzFdfO .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-v0FirzFdfO .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-v0FirzFdfO .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0FirzFdfO ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .cid-v0FirzFdfO ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.cid-v0FirzFdfO .navbar-buttons {
  text-align: center;
  width: auto;
}
@media (min-width: 991px) {
  .cid-v0FirzFdfO .navbar-buttons {
    text-align: left;
  }
}
.cid-v0FirzFdfO .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  padding: 7px 20px;
  min-height: auto;
  width: auto;
}
@media (max-width: 575px) {
  .cid-v0FirzFdfO .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-v0FirzFdfO button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #ffffff !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-v0FirzFdfO button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0FirzFdfO button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.cid-v0FirzFdfO button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-v0FirzFdfO button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-v0FirzFdfO button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.cid-v0FirzFdfO nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0FirzFdfO nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0FirzFdfO nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0FirzFdfO nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0FirzFdfO .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0FirzFdfO a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0FirzFdfO .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-v0FirzFdfO .navbar {
    height: 70px;
  }
  .cid-v0FirzFdfO .navbar.opened {
    height: auto;
  }
  .cid-v0FirzFdfO .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v0FirzFdfO .navbar-nav {
  margin: 0;
}
.cid-v0FirzFdfO .nav-item {
  padding: 0;
  margin: 0;
}
.cid-v0FirzFdfO .nav-item .nav-link {
  padding: 2px 0 !important;
  margin: 6px 17px !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  border-radius: 3rem;
}
.cid-v0FirzFdfO .nav-item .nav-link::after {
  color: inherit !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-v0FirzFdfO .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #000000;
  transition: all 0.3s ease-in-out;
}
.cid-v0FirzFdfO .nav-item .nav-link:hover,
.cid-v0FirzFdfO .nav-item .nav-link:focus {
  background-color: transparent;
  color: #000000 !important;
}
.cid-v0FirzFdfO .nav-item .nav-link:hover::after,
.cid-v0FirzFdfO .nav-item .nav-link:focus::after {
  color: inherit !important;
}
.cid-v0FirzFdfO .nav-item .nav-link:hover::before,
.cid-v0FirzFdfO .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-v0FirzFdfO .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-v0FirzFdfO .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-v0FirzFdfO .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
@media (max-width: 991px) {
  .cid-v0FirzFdfO .navbar {
    justify-content: flex-start !important;
  }
  .cid-v0FirzFdfO .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-v0FirzFdfO .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-v0FirzFdfO .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-v0FirzFdfO .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-v0FirzFdfO .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid transparent;
  }
  .cid-v0FirzFdfO .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.cid-v0FirzFdfO .content-wrap {
  min-height: 110px;
}
.cid-v0FjyYukDp {
  padding-top: 3rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #5c834f;
}
.cid-v0FjyYukDp .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0FjyYukDp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0FjyYukDp .image-wrapper img {
  height: 600px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-v0FjyYukDp .image-wrapper img {
    height: 350px;
  }
}
.cid-v0FjyYukDp .card-wrapper {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 40px;
  background-color: #77a369;
  margin-top: -10%;
}
@media (max-width: 1440px) {
  .cid-v0FjyYukDp .card-wrapper {
    gap: 40px;
  }
}
@media (max-width: 992px) {
  .cid-v0FjyYukDp .card-wrapper {
    display: block;
    padding: 16px;
  }
}
@media (max-width: 992px) {
  .cid-v0FjyYukDp .card-wrapper {
    margin-top: -20%;
  }
}
.cid-v0FjyYukDp .card-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v0FjyYukDp .card-wrapper .mbr-section-title {
    margin-bottom: 16px;
  }
}
.cid-v0FjyYukDp .card-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v0FjyYukDp .card-wrapper .text-wrapper .mbr-section-btn {
  margin-top: 16px;
}
.cid-v0FjyYukDp .card-wrapper .text-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-v0FjyYukDp .mbr-section-title {
  color: #ffffff;
}
.cid-v0FjyYukDp .mbr-text {
  color: #808080;
}
.cid-v0FjyYukDp .mbr-text,
.cid-v0FjyYukDp .mbr-section-btn {
  color: #f1f5eb;
}
.cid-v0FirvG5Fq {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f1f5eb;
}
.cid-v0FirvG5Fq .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0FirvG5Fq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0FirvG5Fq .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 50%;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-v0FirvG5Fq .title-wrapper .mbr-section-title {
    width: 100%;
    margin-bottom: 40px;
  }
}
.cid-v0FirvG5Fq .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 1440px) {
  .cid-v0FirvG5Fq .items-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 992px) {
  .cid-v0FirvG5Fq .items-wrapper {
    display: block;
  }
}
@media (max-width: 992px) {
  .cid-v0FirvG5Fq .item {
    margin-bottom: 20px;
  }
}
.cid-v0FirvG5Fq .item .item-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
}
@media (max-width: 992px) {
  .cid-v0FirvG5Fq .item .item-wrapper {
    padding: 20px;
  }
}
.cid-v0FirvG5Fq .item .item-wrapper .card-box .card-title_1,
.cid-v0FirvG5Fq .item .item-wrapper .card-box .card-title_2,
.cid-v0FirvG5Fq .item .item-wrapper .card-box .card-title_3 {
  margin-bottom: 20px;
}
.cid-v0FirvG5Fq .item .item-wrapper .card-box .card-text_1,
.cid-v0FirvG5Fq .item .item-wrapper .card-box .card-text_2,
.cid-v0FirvG5Fq .item .item-wrapper .card-box .card-text_3 {
  margin-bottom: 0;
}
.cid-v0FirvG5Fq .item .item-wrapper .card-box .mbr-section-btn {
  margin-top: 20px;
}
.cid-v0FirvG5Fq .item .item-wrapper .card-box .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-v0FirvG5Fq .item .item-wrapper .iconfont-wrapper {
  text-align: right;
  margin-top: 60px;
}
@media (max-width: 992px) {
  .cid-v0FirvG5Fq .item .item-wrapper .iconfont-wrapper {
    margin-top: 20px;
  }
}
.cid-v0FirvG5Fq .item .item-wrapper .iconfont-wrapper .mbr-iconfont {
  width: 54px;
  height: 54px;
  min-width: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 22px;
  color: #f1f5eb;
  background-color: #5c834f;
}
.cid-v0FirvG5Fq .item .card_1 {
  background-color: #d1e0be;
}
.cid-v0FirvG5Fq .item .card_2 {
  background-color: #d1e0be;
}
.cid-v0FirvG5Fq .item .card_3 {
  background-color: #d1e0be;
}
.cid-v0FirvG5Fq .btn-wrapper {
  margin-top: -6%;
}
.cid-v0FirvG5Fq .mbr-section-title,
.cid-v0FirvG5Fq .title-wrapper {
  color: #323432;
  text-align: center;
}
.cid-v0FirvG5Fq .card-title_1 {
  color: #f1f5eb;
}
.cid-v0FirvG5Fq .card-text_1 {
  color: #000000;
  text-align: center;
}
.cid-v0FirvG5Fq .card-title_2 {
  color: #323432;
  text-align: center;
}
.cid-v0FirvG5Fq .card-text_2 {
  color: #323432;
  text-align: center;
}
.cid-v0FirvG5Fq .card-title_3 {
  color: #5c834f;
  text-align: center;
}
.cid-v0FirvG5Fq .card-text_3 {
  color: #000000;
  text-align: center;
}
.cid-v0FirvG5Fq .card-title_1,
.cid-v0FirvG5Fq .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-v0FirvG5Fq .card-title_3,
.cid-v0FirvG5Fq .mbr-section-btn {
  color: #000000;
}
.cid-v2mgvagigC {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 110px;
}
.cid-v2mgvagigC nav.navbar {
  position: fixed;
}
.cid-v2mgvagigC .container-fluid {
  padding-left: 72px;
  padding-right: 72px;
}
@media (max-width: 1440px) {
  .cid-v2mgvagigC .container-fluid {
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media (max-width: 992px) {
  .cid-v2mgvagigC .container-fluid {
    padding-left: 12px;
    padding-right: 12px;
  }
}
.cid-v2mgvagigC .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-v2mgvagigC .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.cid-v2mgvagigC .dropdown-item {
  border: none !important;
  background: #ffffff !important;
}
.cid-v2mgvagigC .dropdown-item:hover,
.cid-v2mgvagigC .dropdown-item:focus {
  background: #ffffff !important;
  color: #000000 !important;
}
.cid-v2mgvagigC .dropdown-item:hover span {
  color: white;
}
.cid-v2mgvagigC .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v2mgvagigC .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v2mgvagigC .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v2mgvagigC .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v2mgvagigC .nav-link {
  position: relative;
}
.cid-v2mgvagigC .container {
  display: flex;
  margin: 0 auto;
  max-width: 1506px;
}
@media (min-width: 992px) {
  .cid-v2mgvagigC .container {
    flex-wrap: nowrap;
  }
}
.cid-v2mgvagigC .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.cid-v2mgvagigC .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-v2mgvagigC .dropdown-menu,
.cid-v2mgvagigC .navbar.opened {
  background: #ffffff !important;
}
.cid-v2mgvagigC .nav-item:focus,
.cid-v2mgvagigC .nav-link:focus {
  outline: none;
}
.cid-v2mgvagigC .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v2mgvagigC .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.cid-v2mgvagigC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v2mgvagigC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v2mgvagigC .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v2mgvagigC .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v2mgvagigC .navbar {
  min-height: 110px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-v2mgvagigC .navbar.opened {
  transition: all 0.3s;
}
.cid-v2mgvagigC .navbar .dropdown-item {
  padding: 8px 3.2rem 8px 22px;
  line-height: 1.5;
  border-radius: 0;
  margin-left: 4px;
  margin-bottom: 4px;
}
.cid-v2mgvagigC .navbar .navbar-logo img {
  width: auto;
}
.cid-v2mgvagigC .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v2mgvagigC .navbar.collapsed {
  justify-content: center;
}
.cid-v2mgvagigC .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v2mgvagigC .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v2mgvagigC .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.cid-v2mgvagigC .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v2mgvagigC .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v2mgvagigC .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-v2mgvagigC .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v2mgvagigC .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v2mgvagigC .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v2mgvagigC .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v2mgvagigC .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v2mgvagigC .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v2mgvagigC .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v2mgvagigC .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-v2mgvagigC .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v2mgvagigC .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v2mgvagigC .navbar .dropdown-menu .dropdown-item {
    padding: 14px !important;
    text-align: center;
    margin-left: 0;
  }
  .cid-v2mgvagigC .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-v2mgvagigC .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v2mgvagigC .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v2mgvagigC .navbar.navbar-short {
  min-height: 96px;
}
.cid-v2mgvagigC .navbar.navbar-short .navbar-brand {
  min-height: 96px;
}
.cid-v2mgvagigC .navbar-brand {
  min-height: 96px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-v2mgvagigC .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-v2mgvagigC .navbar-brand .navbar-caption:hover,
.cid-v2mgvagigC .navbar-brand .navbar-caption:focus {
  color: #000000 !important;
}
.cid-v2mgvagigC .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v2mgvagigC .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-v2mgvagigC .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #000000 !important;
}
.cid-v2mgvagigC .dropdown-item.active,
.cid-v2mgvagigC .dropdown-item:active {
  background-color: transparent;
}
.cid-v2mgvagigC .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v2mgvagigC .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v2mgvagigC .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v2mgvagigC .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
  top: 3.2rem;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-v2mgvagigC .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-v2mgvagigC .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-v2mgvagigC .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v2mgvagigC ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .cid-v2mgvagigC ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.cid-v2mgvagigC .navbar-buttons {
  text-align: center;
  width: auto;
}
@media (min-width: 991px) {
  .cid-v2mgvagigC .navbar-buttons {
    text-align: left;
  }
}
.cid-v2mgvagigC .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  padding: 7px 20px;
  min-height: auto;
  width: auto;
}
@media (max-width: 575px) {
  .cid-v2mgvagigC .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-v2mgvagigC button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #ffffff !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-v2mgvagigC button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v2mgvagigC button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.cid-v2mgvagigC button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-v2mgvagigC button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-v2mgvagigC button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.cid-v2mgvagigC nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2mgvagigC nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v2mgvagigC nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v2mgvagigC nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2mgvagigC .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v2mgvagigC a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v2mgvagigC .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-v2mgvagigC .navbar {
    height: 70px;
  }
  .cid-v2mgvagigC .navbar.opened {
    height: auto;
  }
  .cid-v2mgvagigC .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v2mgvagigC .navbar-nav {
  margin: 0;
}
.cid-v2mgvagigC .nav-item {
  padding: 0;
  margin: 0;
}
.cid-v2mgvagigC .nav-item .nav-link {
  padding: 2px 0 !important;
  margin: 6px 17px !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  border-radius: 3rem;
}
.cid-v2mgvagigC .nav-item .nav-link::after {
  color: inherit !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-v2mgvagigC .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #000000;
  transition: all 0.3s ease-in-out;
}
.cid-v2mgvagigC .nav-item .nav-link:hover,
.cid-v2mgvagigC .nav-item .nav-link:focus {
  background-color: transparent;
  color: #000000 !important;
}
.cid-v2mgvagigC .nav-item .nav-link:hover::after,
.cid-v2mgvagigC .nav-item .nav-link:focus::after {
  color: inherit !important;
}
.cid-v2mgvagigC .nav-item .nav-link:hover::before,
.cid-v2mgvagigC .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-v2mgvagigC .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-v2mgvagigC .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-v2mgvagigC .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
@media (max-width: 991px) {
  .cid-v2mgvagigC .navbar {
    justify-content: flex-start !important;
  }
  .cid-v2mgvagigC .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-v2mgvagigC .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-v2mgvagigC .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-v2mgvagigC .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-v2mgvagigC .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid transparent;
  }
  .cid-v2mgvagigC .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.cid-v2mgvagigC .content-wrap {
  min-height: 110px;
}
.cid-v2mgWv9X8u {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #82aa75;
}
.cid-v2mgWv9X8u .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2mgWv9X8u .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2mgWv9X8u .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-v2mgWv9X8u .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v2mgWv9X8u .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-v2mgWv9X8u .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v2mgWv9X8u .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-v2mgWv9X8u .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-v2mgWv9X8u .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-v2mhF52NFB {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #d1e0be;
}
.cid-v2mhF52NFB .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2mhF52NFB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2mhF52NFB .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-v2mhF52NFB .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v2mhF52NFB .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-v2mhF52NFB .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v2mhF52NFB .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-v2mhF52NFB .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-v2mhF52NFB .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-v2mi9BR73G {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f1f5eb;
}
.cid-v2mi9BR73G .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2mi9BR73G .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2mi9BR73G .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 50%;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-v2mi9BR73G .title-wrapper .mbr-section-title {
    width: 100%;
    margin-bottom: 40px;
  }
}
.cid-v2mi9BR73G .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 1440px) {
  .cid-v2mi9BR73G .items-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 992px) {
  .cid-v2mi9BR73G .items-wrapper {
    display: block;
  }
}
@media (max-width: 992px) {
  .cid-v2mi9BR73G .item {
    margin-bottom: 20px;
  }
}
.cid-v2mi9BR73G .item .item-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
}
@media (max-width: 992px) {
  .cid-v2mi9BR73G .item .item-wrapper {
    padding: 20px;
  }
}
.cid-v2mi9BR73G .item .item-wrapper .card-box .card-title_1,
.cid-v2mi9BR73G .item .item-wrapper .card-box .card-title_2,
.cid-v2mi9BR73G .item .item-wrapper .card-box .card-title_3 {
  margin-bottom: 20px;
}
.cid-v2mi9BR73G .item .item-wrapper .card-box .card-text_1,
.cid-v2mi9BR73G .item .item-wrapper .card-box .card-text_2,
.cid-v2mi9BR73G .item .item-wrapper .card-box .card-text_3 {
  margin-bottom: 0;
}
.cid-v2mi9BR73G .item .item-wrapper .card-box .mbr-section-btn {
  margin-top: 20px;
}
.cid-v2mi9BR73G .item .item-wrapper .card-box .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-v2mi9BR73G .item .item-wrapper .iconfont-wrapper {
  text-align: right;
  margin-top: 60px;
}
@media (max-width: 992px) {
  .cid-v2mi9BR73G .item .item-wrapper .iconfont-wrapper {
    margin-top: 20px;
  }
}
.cid-v2mi9BR73G .item .item-wrapper .iconfont-wrapper .mbr-iconfont {
  width: 54px;
  height: 54px;
  min-width: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 22px;
  color: #f1f5eb;
  background-color: #5c834f;
}
.cid-v2mi9BR73G .item .card_1 {
  background-color: #5c834f;
}
.cid-v2mi9BR73G .item .card_2 {
  background-color: #d1e0be;
}
.cid-v2mi9BR73G .item .card_3 {
  background-color: #e6eddc;
}
.cid-v2mi9BR73G .btn-wrapper {
  margin-top: -6%;
}
.cid-v2mi9BR73G .mbr-section-title,
.cid-v2mi9BR73G .title-wrapper {
  color: #323432;
  text-align: center;
}
.cid-v2mi9BR73G .card-title_1 {
  color: #f1f5eb;
}
.cid-v2mi9BR73G .card-text_1 {
  color: #f1f5eb;
  text-align: center;
}
.cid-v2mi9BR73G .card-title_2 {
  color: #323432;
  text-align: center;
}
.cid-v2mi9BR73G .card-text_2 {
  color: #323432;
  text-align: center;
}
.cid-v2mi9BR73G .card-title_3 {
  color: #5c834f;
  text-align: center;
}
.cid-v2mi9BR73G .card-text_3 {
  color: #5c834f;
  text-align: center;
}
.cid-v2mi9BR73G .card-title_1,
.cid-v2mi9BR73G .mbr-section-btn {
  text-align: center;
}
.cid-v2tZawyCCm {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 110px;
}
.cid-v2tZawyCCm nav.navbar {
  position: fixed;
}
.cid-v2tZawyCCm .container-fluid {
  padding-left: 72px;
  padding-right: 72px;
}
@media (max-width: 1440px) {
  .cid-v2tZawyCCm .container-fluid {
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media (max-width: 992px) {
  .cid-v2tZawyCCm .container-fluid {
    padding-left: 12px;
    padding-right: 12px;
  }
}
.cid-v2tZawyCCm .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-v2tZawyCCm .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.cid-v2tZawyCCm .dropdown-item {
  border: none !important;
  background: #ffffff !important;
}
.cid-v2tZawyCCm .dropdown-item:hover,
.cid-v2tZawyCCm .dropdown-item:focus {
  background: #ffffff !important;
  color: #000000 !important;
}
.cid-v2tZawyCCm .dropdown-item:hover span {
  color: white;
}
.cid-v2tZawyCCm .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v2tZawyCCm .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v2tZawyCCm .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v2tZawyCCm .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v2tZawyCCm .nav-link {
  position: relative;
}
.cid-v2tZawyCCm .container {
  display: flex;
  margin: 0 auto;
  max-width: 1506px;
}
@media (min-width: 992px) {
  .cid-v2tZawyCCm .container {
    flex-wrap: nowrap;
  }
}
.cid-v2tZawyCCm .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.cid-v2tZawyCCm .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-v2tZawyCCm .dropdown-menu,
.cid-v2tZawyCCm .navbar.opened {
  background: #ffffff !important;
}
.cid-v2tZawyCCm .nav-item:focus,
.cid-v2tZawyCCm .nav-link:focus {
  outline: none;
}
.cid-v2tZawyCCm .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v2tZawyCCm .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.cid-v2tZawyCCm .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v2tZawyCCm .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v2tZawyCCm .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v2tZawyCCm .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v2tZawyCCm .navbar {
  min-height: 110px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-v2tZawyCCm .navbar.opened {
  transition: all 0.3s;
}
.cid-v2tZawyCCm .navbar .dropdown-item {
  padding: 8px 3.2rem 8px 22px;
  line-height: 1.5;
  border-radius: 0;
  margin-left: 4px;
  margin-bottom: 4px;
}
.cid-v2tZawyCCm .navbar .navbar-logo img {
  width: auto;
}
.cid-v2tZawyCCm .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v2tZawyCCm .navbar.collapsed {
  justify-content: center;
}
.cid-v2tZawyCCm .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v2tZawyCCm .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v2tZawyCCm .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.cid-v2tZawyCCm .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v2tZawyCCm .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v2tZawyCCm .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-v2tZawyCCm .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v2tZawyCCm .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v2tZawyCCm .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v2tZawyCCm .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v2tZawyCCm .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v2tZawyCCm .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v2tZawyCCm .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v2tZawyCCm .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-v2tZawyCCm .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v2tZawyCCm .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v2tZawyCCm .navbar .dropdown-menu .dropdown-item {
    padding: 14px !important;
    text-align: center;
    margin-left: 0;
  }
  .cid-v2tZawyCCm .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-v2tZawyCCm .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v2tZawyCCm .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v2tZawyCCm .navbar.navbar-short {
  min-height: 96px;
}
.cid-v2tZawyCCm .navbar.navbar-short .navbar-brand {
  min-height: 96px;
}
.cid-v2tZawyCCm .navbar-brand {
  min-height: 96px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-v2tZawyCCm .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-v2tZawyCCm .navbar-brand .navbar-caption:hover,
.cid-v2tZawyCCm .navbar-brand .navbar-caption:focus {
  color: #000000 !important;
}
.cid-v2tZawyCCm .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v2tZawyCCm .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-v2tZawyCCm .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #000000 !important;
}
.cid-v2tZawyCCm .dropdown-item.active,
.cid-v2tZawyCCm .dropdown-item:active {
  background-color: transparent;
}
.cid-v2tZawyCCm .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v2tZawyCCm .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v2tZawyCCm .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v2tZawyCCm .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
  top: 3.2rem;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-v2tZawyCCm .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-v2tZawyCCm .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-v2tZawyCCm .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v2tZawyCCm ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .cid-v2tZawyCCm ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.cid-v2tZawyCCm .navbar-buttons {
  text-align: center;
  width: auto;
}
@media (min-width: 991px) {
  .cid-v2tZawyCCm .navbar-buttons {
    text-align: left;
  }
}
.cid-v2tZawyCCm .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  padding: 7px 20px;
  min-height: auto;
  width: auto;
}
@media (max-width: 575px) {
  .cid-v2tZawyCCm .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-v2tZawyCCm button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #ffffff !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-v2tZawyCCm button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v2tZawyCCm button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.cid-v2tZawyCCm button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-v2tZawyCCm button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-v2tZawyCCm button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.cid-v2tZawyCCm nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2tZawyCCm nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v2tZawyCCm nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v2tZawyCCm nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2tZawyCCm .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v2tZawyCCm a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v2tZawyCCm .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-v2tZawyCCm .navbar {
    height: 70px;
  }
  .cid-v2tZawyCCm .navbar.opened {
    height: auto;
  }
  .cid-v2tZawyCCm .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v2tZawyCCm .navbar-nav {
  margin: 0;
}
.cid-v2tZawyCCm .nav-item {
  padding: 0;
  margin: 0;
}
.cid-v2tZawyCCm .nav-item .nav-link {
  padding: 2px 0 !important;
  margin: 6px 17px !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  border-radius: 3rem;
}
.cid-v2tZawyCCm .nav-item .nav-link::after {
  color: inherit !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-v2tZawyCCm .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #000000;
  transition: all 0.3s ease-in-out;
}
.cid-v2tZawyCCm .nav-item .nav-link:hover,
.cid-v2tZawyCCm .nav-item .nav-link:focus {
  background-color: transparent;
  color: #000000 !important;
}
.cid-v2tZawyCCm .nav-item .nav-link:hover::after,
.cid-v2tZawyCCm .nav-item .nav-link:focus::after {
  color: inherit !important;
}
.cid-v2tZawyCCm .nav-item .nav-link:hover::before,
.cid-v2tZawyCCm .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-v2tZawyCCm .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-v2tZawyCCm .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-v2tZawyCCm .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
@media (max-width: 991px) {
  .cid-v2tZawyCCm .navbar {
    justify-content: flex-start !important;
  }
  .cid-v2tZawyCCm .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-v2tZawyCCm .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-v2tZawyCCm .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-v2tZawyCCm .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-v2tZawyCCm .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid transparent;
  }
  .cid-v2tZawyCCm .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.cid-v2tZawyCCm .content-wrap {
  min-height: 110px;
}
.cid-v2u0HYmZzX {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background: #f1f5eb;
}
.cid-v2u0HYmZzX .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2u0HYmZzX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2u0HYmZzX .card-wrapper {
  background-color: #5c834f;
  padding: 1rem 2rem;
}
.cid-v2u0HYmZzX .google-map {
  height: 35rem;
  position: relative;
}
.cid-v2u0HYmZzX .google-map iframe {
  height: 100%;
  width: 100%;
  background-color: #2a5b38;
  padding: 4px;
}
.cid-v2u0HYmZzX .google-map [data-state-details] {
  color: #b4b4b4;
  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-v2u0HYmZzX .google-map[data-state] {
  background: #fffff5;
}
.cid-v2u0HYmZzX .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-v2u0HYmZzX .content-head {
  max-width: 800px;
}
.cid-v2u0HYmZzX .card-title,
.cid-v2u0HYmZzX .iconfont-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-v2u0HYmZzX .card-text,
.cid-v2u0HYmZzX .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-v2u0HYmZzX .mbr-desc,
.cid-v2u0HYmZzX .desc-wrapper {
  color: #fdfde1;
}
.cid-v2u29PykWk {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 110px;
}
.cid-v2u29PykWk nav.navbar {
  position: fixed;
}
.cid-v2u29PykWk .container-fluid {
  padding-left: 72px;
  padding-right: 72px;
}
@media (max-width: 1440px) {
  .cid-v2u29PykWk .container-fluid {
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media (max-width: 992px) {
  .cid-v2u29PykWk .container-fluid {
    padding-left: 12px;
    padding-right: 12px;
  }
}
.cid-v2u29PykWk .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-v2u29PykWk .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.cid-v2u29PykWk .dropdown-item {
  border: none !important;
  background: #ffffff !important;
}
.cid-v2u29PykWk .dropdown-item:hover,
.cid-v2u29PykWk .dropdown-item:focus {
  background: #ffffff !important;
  color: #000000 !important;
}
.cid-v2u29PykWk .dropdown-item:hover span {
  color: white;
}
.cid-v2u29PykWk .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v2u29PykWk .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v2u29PykWk .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v2u29PykWk .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v2u29PykWk .nav-link {
  position: relative;
}
.cid-v2u29PykWk .container {
  display: flex;
  margin: 0 auto;
  max-width: 1506px;
}
@media (min-width: 992px) {
  .cid-v2u29PykWk .container {
    flex-wrap: nowrap;
  }
}
.cid-v2u29PykWk .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.cid-v2u29PykWk .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-v2u29PykWk .dropdown-menu,
.cid-v2u29PykWk .navbar.opened {
  background: #ffffff !important;
}
.cid-v2u29PykWk .nav-item:focus,
.cid-v2u29PykWk .nav-link:focus {
  outline: none;
}
.cid-v2u29PykWk .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v2u29PykWk .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.cid-v2u29PykWk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v2u29PykWk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v2u29PykWk .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v2u29PykWk .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v2u29PykWk .navbar {
  min-height: 110px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-v2u29PykWk .navbar.opened {
  transition: all 0.3s;
}
.cid-v2u29PykWk .navbar .dropdown-item {
  padding: 8px 3.2rem 8px 22px;
  line-height: 1.5;
  border-radius: 0;
  margin-left: 4px;
  margin-bottom: 4px;
}
.cid-v2u29PykWk .navbar .navbar-logo img {
  width: auto;
}
.cid-v2u29PykWk .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v2u29PykWk .navbar.collapsed {
  justify-content: center;
}
.cid-v2u29PykWk .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v2u29PykWk .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v2u29PykWk .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.cid-v2u29PykWk .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v2u29PykWk .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v2u29PykWk .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-v2u29PykWk .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v2u29PykWk .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v2u29PykWk .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v2u29PykWk .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v2u29PykWk .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v2u29PykWk .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v2u29PykWk .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v2u29PykWk .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-v2u29PykWk .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v2u29PykWk .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v2u29PykWk .navbar .dropdown-menu .dropdown-item {
    padding: 14px !important;
    text-align: center;
    margin-left: 0;
  }
  .cid-v2u29PykWk .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-v2u29PykWk .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v2u29PykWk .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v2u29PykWk .navbar.navbar-short {
  min-height: 96px;
}
.cid-v2u29PykWk .navbar.navbar-short .navbar-brand {
  min-height: 96px;
}
.cid-v2u29PykWk .navbar-brand {
  min-height: 96px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-v2u29PykWk .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-v2u29PykWk .navbar-brand .navbar-caption:hover,
.cid-v2u29PykWk .navbar-brand .navbar-caption:focus {
  color: #000000 !important;
}
.cid-v2u29PykWk .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v2u29PykWk .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-v2u29PykWk .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #000000 !important;
}
.cid-v2u29PykWk .dropdown-item.active,
.cid-v2u29PykWk .dropdown-item:active {
  background-color: transparent;
}
.cid-v2u29PykWk .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v2u29PykWk .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v2u29PykWk .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v2u29PykWk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
  top: 3.2rem;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-v2u29PykWk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-v2u29PykWk .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-v2u29PykWk .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v2u29PykWk ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .cid-v2u29PykWk ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.cid-v2u29PykWk .navbar-buttons {
  text-align: center;
  width: auto;
}
@media (min-width: 991px) {
  .cid-v2u29PykWk .navbar-buttons {
    text-align: left;
  }
}
.cid-v2u29PykWk .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  padding: 7px 20px;
  min-height: auto;
  width: auto;
}
@media (max-width: 575px) {
  .cid-v2u29PykWk .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-v2u29PykWk button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #ffffff !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-v2u29PykWk button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v2u29PykWk button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.cid-v2u29PykWk button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-v2u29PykWk button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-v2u29PykWk button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.cid-v2u29PykWk nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2u29PykWk nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v2u29PykWk nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v2u29PykWk nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2u29PykWk .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v2u29PykWk a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v2u29PykWk .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-v2u29PykWk .navbar {
    height: 70px;
  }
  .cid-v2u29PykWk .navbar.opened {
    height: auto;
  }
  .cid-v2u29PykWk .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v2u29PykWk .navbar-nav {
  margin: 0;
}
.cid-v2u29PykWk .nav-item {
  padding: 0;
  margin: 0;
}
.cid-v2u29PykWk .nav-item .nav-link {
  padding: 2px 0 !important;
  margin: 6px 17px !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  border-radius: 3rem;
}
.cid-v2u29PykWk .nav-item .nav-link::after {
  color: inherit !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-v2u29PykWk .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #000000;
  transition: all 0.3s ease-in-out;
}
.cid-v2u29PykWk .nav-item .nav-link:hover,
.cid-v2u29PykWk .nav-item .nav-link:focus {
  background-color: transparent;
  color: #000000 !important;
}
.cid-v2u29PykWk .nav-item .nav-link:hover::after,
.cid-v2u29PykWk .nav-item .nav-link:focus::after {
  color: inherit !important;
}
.cid-v2u29PykWk .nav-item .nav-link:hover::before,
.cid-v2u29PykWk .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-v2u29PykWk .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-v2u29PykWk .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-v2u29PykWk .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
@media (max-width: 991px) {
  .cid-v2u29PykWk .navbar {
    justify-content: flex-start !important;
  }
  .cid-v2u29PykWk .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-v2u29PykWk .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-v2u29PykWk .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-v2u29PykWk .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-v2u29PykWk .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid transparent;
  }
  .cid-v2u29PykWk .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.cid-v2u29PykWk .content-wrap {
  min-height: 110px;
}
.cid-v2u2W784g6 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #e6eddc;
}
@media (max-width: 992px) and (max-width: 992px) {
  .cid-v2u2W784g6 .container {
    padding: 0 24px;
  }
}
.cid-v2u2W784g6 .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-v2u2W784g6 .title-wrapper {
    margin-bottom: 24px;
  }
}
.cid-v2u2W784g6 .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-v2u2W784g6 .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v2u2W784g6 .mbr-section-btn {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-v2u2W784g6 .mbr-section-btn {
    text-align: left;
  }
}
.cid-v2u2W784g6 .mbr-section-title {
  color: #F9F6E0;
}
.cid-v2u2W784g6 .mbr-text {
  color: #323432;
}
.cid-v2u2W784g6 .mbr-section-title,
.cid-v2u2W784g6 .mbr-section-btn {
  color: #323432;
}
.cid-v2u3xPoMKf {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 110px;
}
.cid-v2u3xPoMKf nav.navbar {
  position: fixed;
}
.cid-v2u3xPoMKf .container-fluid {
  padding-left: 72px;
  padding-right: 72px;
}
@media (max-width: 1440px) {
  .cid-v2u3xPoMKf .container-fluid {
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media (max-width: 992px) {
  .cid-v2u3xPoMKf .container-fluid {
    padding-left: 12px;
    padding-right: 12px;
  }
}
.cid-v2u3xPoMKf .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-v2u3xPoMKf .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.cid-v2u3xPoMKf .dropdown-item {
  border: none !important;
  background: #ffffff !important;
}
.cid-v2u3xPoMKf .dropdown-item:hover,
.cid-v2u3xPoMKf .dropdown-item:focus {
  background: #ffffff !important;
  color: #000000 !important;
}
.cid-v2u3xPoMKf .dropdown-item:hover span {
  color: white;
}
.cid-v2u3xPoMKf .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v2u3xPoMKf .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v2u3xPoMKf .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v2u3xPoMKf .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v2u3xPoMKf .nav-link {
  position: relative;
}
.cid-v2u3xPoMKf .container {
  display: flex;
  margin: 0 auto;
  max-width: 1506px;
}
@media (min-width: 992px) {
  .cid-v2u3xPoMKf .container {
    flex-wrap: nowrap;
  }
}
.cid-v2u3xPoMKf .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.cid-v2u3xPoMKf .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-v2u3xPoMKf .dropdown-menu,
.cid-v2u3xPoMKf .navbar.opened {
  background: #ffffff !important;
}
.cid-v2u3xPoMKf .nav-item:focus,
.cid-v2u3xPoMKf .nav-link:focus {
  outline: none;
}
.cid-v2u3xPoMKf .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v2u3xPoMKf .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.cid-v2u3xPoMKf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v2u3xPoMKf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v2u3xPoMKf .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v2u3xPoMKf .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v2u3xPoMKf .navbar {
  min-height: 110px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-v2u3xPoMKf .navbar.opened {
  transition: all 0.3s;
}
.cid-v2u3xPoMKf .navbar .dropdown-item {
  padding: 8px 3.2rem 8px 22px;
  line-height: 1.5;
  border-radius: 0;
  margin-left: 4px;
  margin-bottom: 4px;
}
.cid-v2u3xPoMKf .navbar .navbar-logo img {
  width: auto;
}
.cid-v2u3xPoMKf .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v2u3xPoMKf .navbar.collapsed {
  justify-content: center;
}
.cid-v2u3xPoMKf .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v2u3xPoMKf .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v2u3xPoMKf .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.cid-v2u3xPoMKf .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v2u3xPoMKf .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v2u3xPoMKf .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-v2u3xPoMKf .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v2u3xPoMKf .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v2u3xPoMKf .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v2u3xPoMKf .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v2u3xPoMKf .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v2u3xPoMKf .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v2u3xPoMKf .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v2u3xPoMKf .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-v2u3xPoMKf .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v2u3xPoMKf .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v2u3xPoMKf .navbar .dropdown-menu .dropdown-item {
    padding: 14px !important;
    text-align: center;
    margin-left: 0;
  }
  .cid-v2u3xPoMKf .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-v2u3xPoMKf .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v2u3xPoMKf .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v2u3xPoMKf .navbar.navbar-short {
  min-height: 96px;
}
.cid-v2u3xPoMKf .navbar.navbar-short .navbar-brand {
  min-height: 96px;
}
.cid-v2u3xPoMKf .navbar-brand {
  min-height: 96px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-v2u3xPoMKf .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-v2u3xPoMKf .navbar-brand .navbar-caption:hover,
.cid-v2u3xPoMKf .navbar-brand .navbar-caption:focus {
  color: #000000 !important;
}
.cid-v2u3xPoMKf .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v2u3xPoMKf .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-v2u3xPoMKf .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #000000 !important;
}
.cid-v2u3xPoMKf .dropdown-item.active,
.cid-v2u3xPoMKf .dropdown-item:active {
  background-color: transparent;
}
.cid-v2u3xPoMKf .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v2u3xPoMKf .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v2u3xPoMKf .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v2u3xPoMKf .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
  top: 3.2rem;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-v2u3xPoMKf .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-v2u3xPoMKf .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-v2u3xPoMKf .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v2u3xPoMKf ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .cid-v2u3xPoMKf ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.cid-v2u3xPoMKf .navbar-buttons {
  text-align: center;
  width: auto;
}
@media (min-width: 991px) {
  .cid-v2u3xPoMKf .navbar-buttons {
    text-align: left;
  }
}
.cid-v2u3xPoMKf .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  padding: 7px 20px;
  min-height: auto;
  width: auto;
}
@media (max-width: 575px) {
  .cid-v2u3xPoMKf .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-v2u3xPoMKf button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #ffffff !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-v2u3xPoMKf button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v2u3xPoMKf button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.cid-v2u3xPoMKf button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-v2u3xPoMKf button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-v2u3xPoMKf button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.cid-v2u3xPoMKf nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2u3xPoMKf nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v2u3xPoMKf nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v2u3xPoMKf nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2u3xPoMKf .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v2u3xPoMKf a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v2u3xPoMKf .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-v2u3xPoMKf .navbar {
    height: 70px;
  }
  .cid-v2u3xPoMKf .navbar.opened {
    height: auto;
  }
  .cid-v2u3xPoMKf .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v2u3xPoMKf .navbar-nav {
  margin: 0;
}
.cid-v2u3xPoMKf .nav-item {
  padding: 0;
  margin: 0;
}
.cid-v2u3xPoMKf .nav-item .nav-link {
  padding: 2px 0 !important;
  margin: 6px 17px !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  border-radius: 3rem;
}
.cid-v2u3xPoMKf .nav-item .nav-link::after {
  color: inherit !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-v2u3xPoMKf .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #000000;
  transition: all 0.3s ease-in-out;
}
.cid-v2u3xPoMKf .nav-item .nav-link:hover,
.cid-v2u3xPoMKf .nav-item .nav-link:focus {
  background-color: transparent;
  color: #000000 !important;
}
.cid-v2u3xPoMKf .nav-item .nav-link:hover::after,
.cid-v2u3xPoMKf .nav-item .nav-link:focus::after {
  color: inherit !important;
}
.cid-v2u3xPoMKf .nav-item .nav-link:hover::before,
.cid-v2u3xPoMKf .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-v2u3xPoMKf .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-v2u3xPoMKf .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-v2u3xPoMKf .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
@media (max-width: 991px) {
  .cid-v2u3xPoMKf .navbar {
    justify-content: flex-start !important;
  }
  .cid-v2u3xPoMKf .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-v2u3xPoMKf .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-v2u3xPoMKf .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-v2u3xPoMKf .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-v2u3xPoMKf .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid transparent;
  }
  .cid-v2u3xPoMKf .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.cid-v2u3xPoMKf .content-wrap {
  min-height: 110px;
}
.cid-v2u3YMtFdm {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #edefeb;
}
.cid-v2u3YMtFdm .item:focus,
.cid-v2u3YMtFdm span:focus {
  outline: none;
}
@media (max-width: 767px) {
  .cid-v2u3YMtFdm .align-right {
    text-align: center;
  }
}
.cid-v2u3YMtFdm .card-wrapper {
  background: #5c834f;
  padding: 4rem 3rem;
  padding-bottom: 2rem;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-v2u3YMtFdm .card-wrapper {
    padding: 1rem 0rem;
  }
}
.cid-v2u3YMtFdm .item {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-v2u3YMtFdm .item {
    margin-bottom: 1rem;
  }
}
.cid-v2u3YMtFdm .mbr-card-title {
  background: #fed9e1;
  width: fit-content;
  border-radius: 1rem;
  padding: 6px 10px;
}
.cid-v2u3YMtFdm .item-content {
  margin-top: 2rem;
  padding: 0 2rem 2rem;
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-v2u3YMtFdm .item-content {
    padding: 2rem 1.5rem;
    padding-top: 1rem;
    margin-top: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-v2u3YMtFdm .item-content {
    padding: 1rem 1rem;
    padding-top: 0rem;
    margin-top: 1rem;
  }
}
.cid-v2u3YMtFdm .item-wrapper {
  position: relative;
  background: #dfedcd;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-flow: column nowrap;
}
.cid-v2u3YMtFdm .item-wrapper .item-footer {
  margin-top: auto;
}
.cid-v2u3YMtFdm .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v2u3YMtFdm .mbr-text,
.cid-v2u3YMtFdm .item .mbr-section-btn {
  text-align: center;
}
.cid-v2u3YMtFdm .mbr-number {
  color: #f0466a;
}
.cid-v2u3YMtFdm .mbr-section-subtitle,
.cid-v2u3YMtFdm .mbr-section-head .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-v2u3YMtFdm .mbr-text {
  text-align: left;
}
.cid-v2u3YMtFdm .mbr-text,
.cid-v2u3YMtFdm .mbr-card-btn {
  text-align: left;
}
.cid-v2u3YMtFdm .mbr-text,
.cid-v2u3YMtFdm .mbr-section-btn {
  text-align: left;
}
.cid-v2u3YMtFdm .mbr-text,
.cid-v2u3YMtFdm .item-footer .mbr-section-btn {
  text-align: left;
}
.cid-v2u3YMtFdm .card-text,
.cid-v2u3YMtFdm .item .mbr-section-btn {
  text-align: center;
  color: #323432;
}
.cid-v2u3YMtFdm .card-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2u5sAqc9m {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #82aa75;
}
.cid-v2u5sAqc9m .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2u5sAqc9m .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2u5sAqc9m .card-wrapper {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 2rem;
  background-color: #1e4d2b;
  text-align:left;
}
@media (max-width: 992px) {
  .cid-v2u5sAqc9m .card-wrapper {
    padding: 20px;
  }
}
.cid-v2u5sAqc9m .card-wrapper .card-wrap {
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  width: 450px;
  height: 300px;
  overflow: hidden;
  transform: rotate(15deg);
}
@media (max-width: 992px) {
  .cid-v2u5sAqc9m .card-wrapper .card-wrap {
    display: none;
  }
}
.cid-v2u5sAqc9m .card-wrapper .card-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-v2u5sAqc9m .card-wrapper .card-wrap::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #1e4d2b;
  opacity: 0.5;
  pointer-events: none;
}
.cid-v2u5sAqc9m .card-wrapper .decor-wrapper {
  position: absolute;
  top: 0;
  right: -350px;
  width: 700px;
  height: 200px;
}
@media (max-width: 992px) {
  .cid-v2u5sAqc9m .card-wrapper .decor-wrapper {
    display: none;
  }
}
.cid-v2u5sAqc9m .card-wrapper .decor-wrapper::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 200px;
  border-radius: 100%;
  background-color: #2a5b38;
  pointer-events: none;
}
.cid-v2u5sAqc9m .card-wrapper .decor-wrapper::after {
  content: '';
  position: absolute;
  width: 700px;
  height: 200px;
  border-radius: 100%;
  background-color: #2a5b38;
  transform: rotate(-45deg);
  pointer-events: none;
}
.cid-v2u5sAqc9m .card-wrapper .title-wrapper {
  position: relative;
  z-index: 1;
}
.cid-v2u5sAqc9m .card-wrapper .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-v2u5sAqc9m .card-wrapper .title-wrapper .mbr-section-title {
    width: 100%;
  }
}
.cid-v2u5sAqc9m .card-wrapper .mbr-section-btn {
  position: relative;
  z-index: 1;
}
.cid-v2u5sAqc9m .mbr-section-title,
.cid-v2u5sAqc9m .title-wrapper {
  color: #f1f5eb;
}
.cid-v2u5sAqc9m .mbr-section-title,
.cid-v2u5sAqc9m .mbr-section-btn,
.cid-v2u5sAqc9m .title-wrapper {
  text-align: center;
}
.cid-v2u44yhrPR {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background: #3f6734;
}
.cid-v2u44yhrPR .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2u44yhrPR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2u44yhrPR .google-map {
  height: 35rem;
  position: relative;
  border-radius: 2rem;
}
.cid-v2u44yhrPR .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-v2u44yhrPR .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-v2u44yhrPR .google-map[data-state] {
  background: #e9e5dc;
}
.cid-v2u44yhrPR .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-v2u44yhrPR .content-head {
  max-width: 800px;
}
.cid-v2u44yhrPR .mbr-section-title {
  color: #ffffff;
}
.cid-v2u7WWWv9m {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 110px;
}
.cid-v2u7WWWv9m nav.navbar {
  position: fixed;
}
.cid-v2u7WWWv9m .container-fluid {
  padding-left: 72px;
  padding-right: 72px;
}
@media (max-width: 1440px) {
  .cid-v2u7WWWv9m .container-fluid {
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media (max-width: 992px) {
  .cid-v2u7WWWv9m .container-fluid {
    padding-left: 12px;
    padding-right: 12px;
  }
}
.cid-v2u7WWWv9m .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-v2u7WWWv9m .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.cid-v2u7WWWv9m .dropdown-item {
  border: none !important;
  background: #ffffff !important;
}
.cid-v2u7WWWv9m .dropdown-item:hover,
.cid-v2u7WWWv9m .dropdown-item:focus {
  background: #ffffff !important;
  color: #000000 !important;
}
.cid-v2u7WWWv9m .dropdown-item:hover span {
  color: white;
}
.cid-v2u7WWWv9m .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v2u7WWWv9m .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v2u7WWWv9m .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v2u7WWWv9m .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v2u7WWWv9m .nav-link {
  position: relative;
}
.cid-v2u7WWWv9m .container {
  display: flex;
  margin: 0 auto;
  max-width: 1506px;
}
@media (min-width: 992px) {
  .cid-v2u7WWWv9m .container {
    flex-wrap: nowrap;
  }
}
.cid-v2u7WWWv9m .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.cid-v2u7WWWv9m .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-v2u7WWWv9m .dropdown-menu,
.cid-v2u7WWWv9m .navbar.opened {
  background: #ffffff !important;
}
.cid-v2u7WWWv9m .nav-item:focus,
.cid-v2u7WWWv9m .nav-link:focus {
  outline: none;
}
.cid-v2u7WWWv9m .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v2u7WWWv9m .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.cid-v2u7WWWv9m .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v2u7WWWv9m .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v2u7WWWv9m .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v2u7WWWv9m .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v2u7WWWv9m .navbar {
  min-height: 110px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-v2u7WWWv9m .navbar.opened {
  transition: all 0.3s;
}
.cid-v2u7WWWv9m .navbar .dropdown-item {
  padding: 8px 3.2rem 8px 22px;
  line-height: 1.5;
  border-radius: 0;
  margin-left: 4px;
  margin-bottom: 4px;
}
.cid-v2u7WWWv9m .navbar .navbar-logo img {
  width: auto;
}
.cid-v2u7WWWv9m .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v2u7WWWv9m .navbar.collapsed {
  justify-content: center;
}
.cid-v2u7WWWv9m .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v2u7WWWv9m .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v2u7WWWv9m .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.cid-v2u7WWWv9m .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v2u7WWWv9m .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v2u7WWWv9m .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-v2u7WWWv9m .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v2u7WWWv9m .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v2u7WWWv9m .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v2u7WWWv9m .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v2u7WWWv9m .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v2u7WWWv9m .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v2u7WWWv9m .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v2u7WWWv9m .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-v2u7WWWv9m .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v2u7WWWv9m .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v2u7WWWv9m .navbar .dropdown-menu .dropdown-item {
    padding: 14px !important;
    text-align: center;
    margin-left: 0;
  }
  .cid-v2u7WWWv9m .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-v2u7WWWv9m .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v2u7WWWv9m .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v2u7WWWv9m .navbar.navbar-short {
  min-height: 96px;
}
.cid-v2u7WWWv9m .navbar.navbar-short .navbar-brand {
  min-height: 96px;
}
.cid-v2u7WWWv9m .navbar-brand {
  min-height: 96px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-v2u7WWWv9m .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-v2u7WWWv9m .navbar-brand .navbar-caption:hover,
.cid-v2u7WWWv9m .navbar-brand .navbar-caption:focus {
  color: #000000 !important;
}
.cid-v2u7WWWv9m .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v2u7WWWv9m .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-v2u7WWWv9m .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #000000 !important;
}
.cid-v2u7WWWv9m .dropdown-item.active,
.cid-v2u7WWWv9m .dropdown-item:active {
  background-color: transparent;
}
.cid-v2u7WWWv9m .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v2u7WWWv9m .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v2u7WWWv9m .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v2u7WWWv9m .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
  top: 3.2rem;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-v2u7WWWv9m .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-v2u7WWWv9m .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-v2u7WWWv9m .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v2u7WWWv9m ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .cid-v2u7WWWv9m ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.cid-v2u7WWWv9m .navbar-buttons {
  text-align: center;
  width: auto;
}
@media (min-width: 991px) {
  .cid-v2u7WWWv9m .navbar-buttons {
    text-align: left;
  }
}
.cid-v2u7WWWv9m .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  padding: 7px 20px;
  min-height: auto;
  width: auto;
}
@media (max-width: 575px) {
  .cid-v2u7WWWv9m .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-v2u7WWWv9m button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #ffffff !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-v2u7WWWv9m button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v2u7WWWv9m button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.cid-v2u7WWWv9m button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-v2u7WWWv9m button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-v2u7WWWv9m button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.cid-v2u7WWWv9m nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2u7WWWv9m nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v2u7WWWv9m nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v2u7WWWv9m nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2u7WWWv9m .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v2u7WWWv9m a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v2u7WWWv9m .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-v2u7WWWv9m .navbar {
    height: 70px;
  }
  .cid-v2u7WWWv9m .navbar.opened {
    height: auto;
  }
  .cid-v2u7WWWv9m .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v2u7WWWv9m .navbar-nav {
  margin: 0;
}
.cid-v2u7WWWv9m .nav-item {
  padding: 0;
  margin: 0;
}
.cid-v2u7WWWv9m .nav-item .nav-link {
  padding: 2px 0 !important;
  margin: 6px 17px !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  border-radius: 3rem;
}
.cid-v2u7WWWv9m .nav-item .nav-link::after {
  color: inherit !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-v2u7WWWv9m .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #000000;
  transition: all 0.3s ease-in-out;
}
.cid-v2u7WWWv9m .nav-item .nav-link:hover,
.cid-v2u7WWWv9m .nav-item .nav-link:focus {
  background-color: transparent;
  color: #000000 !important;
}
.cid-v2u7WWWv9m .nav-item .nav-link:hover::after,
.cid-v2u7WWWv9m .nav-item .nav-link:focus::after {
  color: inherit !important;
}
.cid-v2u7WWWv9m .nav-item .nav-link:hover::before,
.cid-v2u7WWWv9m .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-v2u7WWWv9m .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-v2u7WWWv9m .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-v2u7WWWv9m .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
@media (max-width: 991px) {
  .cid-v2u7WWWv9m .navbar {
    justify-content: flex-start !important;
  }
  .cid-v2u7WWWv9m .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-v2u7WWWv9m .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-v2u7WWWv9m .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-v2u7WWWv9m .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-v2u7WWWv9m .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid transparent;
  }
  .cid-v2u7WWWv9m .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.cid-v2u7WWWv9m .content-wrap {
  min-height: 110px;
}
.cid-v2u9wTJVLh {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #1e4d2b;
}
.cid-v2u9wTJVLh .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2u9wTJVLh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2u9wTJVLh .mbr-section-title {
  color: #24262b;
}
.cid-v2u9wTJVLh .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-v2u9wTJVLh .mbr-section-btn {
  margin-top: 16px;
}
.cid-v2u8n7Pji9 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f1f5eb;
}
.cid-v2u8n7Pji9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2u8n7Pji9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2u8n7Pji9 .card-wrapper {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 4rem 4rem 2rem 4rem;
  background-color: #5c834f;
}
@media (max-width: 992px) {
  .cid-v2u8n7Pji9 .card-wrapper {
    padding: 20px;
  }
}
.cid-v2u8n7Pji9 .card-wrapper .card-wrap {
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  width: 450px;
  height: 300px;
  overflow: hidden;
  transform: rotate(15deg);
}
@media (max-width: 992px) {
  .cid-v2u8n7Pji9 .card-wrapper .card-wrap {
    display: none;
  }
}
.cid-v2u8n7Pji9 .card-wrapper .card-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-v2u8n7Pji9 .card-wrapper .card-wrap::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #1e4d2b;
  opacity: 0.5;
  pointer-events: none;
}
.cid-v2u8n7Pji9 .card-wrapper .decor-wrapper {
  position: absolute;
  top: 0;
  right: -350px;
  width: 700px;
  height: 200px;
}
@media (max-width: 992px) {
  .cid-v2u8n7Pji9 .card-wrapper .decor-wrapper {
    display: none;
  }
}
.cid-v2u8n7Pji9 .card-wrapper .decor-wrapper::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 200px;
  border-radius: 100%;
  background-color: #2a5b38;
  pointer-events: none;
}
.cid-v2u8n7Pji9 .card-wrapper .decor-wrapper::after {
  content: '';
  position: absolute;
  width: 700px;
  height: 200px;
  border-radius: 100%;
  background-color: #2a5b38;
  transform: rotate(-45deg);
  pointer-events: none;
}
.cid-v2u8n7Pji9 .card-wrapper .title-wrapper {
  position: relative;
  z-index: 1;
}
.cid-v2u8n7Pji9 .card-wrapper .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 60%;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-v2u8n7Pji9 .card-wrapper .title-wrapper .mbr-section-title {
    width: 100%;
    margin-bottom: 20px;
  }
}
.cid-v2u8n7Pji9 .card-wrapper .mbr-section-btn {
  position: relative;
  z-index: 1;
}
.cid-v2u8n7Pji9 .mbr-section-title,
.cid-v2u8n7Pji9 .title-wrapper {
  color: #f1f5eb;
}
.cid-v2u8n7Pji9 .mbr-section-title,
.cid-v2u8n7Pji9 .mbr-section-btn,
.cid-v2u8n7Pji9 .title-wrapper {
  text-align: center;
}
.cid-v2ua6ubh1s {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #1e4d2b;
}
.cid-v2ua6ubh1s .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2ua6ubh1s .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2ua6ubh1s .mbr-section-title {
  color: #24262b;
}
.cid-v2ua6ubh1s .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-v2ua6ubh1s .mbr-section-btn {
  margin-top: 16px;
}
.cid-v2ubAckBlr {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f1f5eb;
}
.cid-v2ubAckBlr .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2ubAckBlr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2ubAckBlr .card-wrapper {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 130px 70px;
  background-color: #1e4d2b;
}
@media (max-width: 992px) {
  .cid-v2ubAckBlr .card-wrapper {
    padding: 20px;
  }
}
.cid-v2ubAckBlr .card-wrapper .card-wrap {
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  width: 450px;
  height: 300px;
  overflow: hidden;
  transform: rotate(15deg);
}
@media (max-width: 992px) {
  .cid-v2ubAckBlr .card-wrapper .card-wrap {
    display: none;
  }
}
.cid-v2ubAckBlr .card-wrapper .card-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-v2ubAckBlr .card-wrapper .card-wrap::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #1e4d2b;
  opacity: 0.5;
  pointer-events: none;
}
.cid-v2ubAckBlr .card-wrapper .decor-wrapper {
  position: absolute;
  top: 0;
  right: -350px;
  width: 700px;
  height: 200px;
}
@media (max-width: 992px) {
  .cid-v2ubAckBlr .card-wrapper .decor-wrapper {
    display: none;
  }
}
.cid-v2ubAckBlr .card-wrapper .decor-wrapper::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 200px;
  border-radius: 100%;
  background-color: #2a5b38;
  pointer-events: none;
}
.cid-v2ubAckBlr .card-wrapper .decor-wrapper::after {
  content: '';
  position: absolute;
  width: 700px;
  height: 200px;
  border-radius: 100%;
  background-color: #2a5b38;
  transform: rotate(-45deg);
  pointer-events: none;
}
.cid-v2ubAckBlr .card-wrapper .title-wrapper {
  position: relative;
  z-index: 1;
}
.cid-v2ubAckBlr .card-wrapper .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 60%;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-v2ubAckBlr .card-wrapper .title-wrapper .mbr-section-title {
    width: 100%;
    margin-bottom: 20px;
  }
}
.cid-v2ubAckBlr .card-wrapper .mbr-section-btn {
  position: relative;
  z-index: 1;
}
.cid-v2ubAckBlr .mbr-section-title,
.cid-v2ubAckBlr .title-wrapper {
  color: #f1f5eb;
}
.cid-v2ubAckBlr .mbr-section-title,
.cid-v2ubAckBlr .mbr-section-btn,
.cid-v2ubAckBlr .title-wrapper {
  text-align: center;
}
.cid-v2u9dxEFLV {
  padding-top: 2rem;
  padding-bottom: 2rem;
  overflow: hidden;
  position: relative;
  background-color: #f1f5eb;
}
.cid-v2u9dxEFLV .decor-wrap_1 {
  position: absolute;
  top: -65%;
  right: -10rem;
  width: 474px;
  height: 474px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #144031 0, #22654e 43%, #246f55 100%);
}
.cid-v2u9dxEFLV .decor-wrap_2 {
  position: absolute;
  bottom: -25%;
  left: -2rem;
  width: 254px;
  height: 254px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #144031 0, #22654e 43%, #246f55 100%);
}
.cid-v2u9dxEFLV .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2u9dxEFLV .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-v2u9dxEFLV .container {
    padding: 0 30px;
  }
}
.cid-v2u9dxEFLV .row {
  justify-content: center;
  position: relative;
  z-index: 1;
}
.cid-v2u9dxEFLV .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-v2u9dxEFLV .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-v2u9dxEFLV .text-wrapper {
  border-left: 1px solid #1e4d2b;
  padding-left: 40px;
}
@media (max-width: 992px) {
  .cid-v2u9dxEFLV .text-wrapper {
    padding-left: 20px;
  }
}
.cid-v2u9dxEFLV .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v2u9dxEFLV .mbr-section-title {
  color: #1e4d2b;
}
.cid-v2u9dxEFLV .mbr-text {
  color: #323432;
}
.cid-v2ukjnU82J {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-v2ukjnU82J .nav-tabs .nav-item.open .nav-link:focus,
.cid-v2ukjnU82J .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-v2ukjnU82J .nav-tabs {
  flex-wrap: wrap;
  border-bottom: none;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .cid-v2ukjnU82J .nav-item {
    width: 100%;
    margin: 0;
  }
}
.cid-v2ukjnU82J .nav-tabs .nav-link {
  transition: all .5s;
  border: none;
  border-bottom: 3px solid transparent;
  border-radius: 0 !important;
}
.cid-v2ukjnU82J .nav-tabs .nav-item {
  margin-right: 0;
  width: 290px;
  padding: 0 6px;
}
.cid-v2ukjnU82J .nav-link,
.cid-v2ukjnU82J .nav-link.active {
  padding: 1rem 0;
  background-color: transparent;
}
.cid-v2ukjnU82J .nav-tabs .nav-link.active {
  color: #040E17;
  border-bottom: none;
  transition: all .3s ease !important;
  padding: 21px;
  background-color: transparent;
  border-top: 2px solid #040e17;
  width: 100%;
  margin: auto;
  text-align: center;
}
.cid-v2ukjnU82J H4 {
  text-align: center;
}
.cid-v2ukjnU82J H3 {
  text-align: center;
}
.cid-v2ukjnU82J .nav-tabs .nav-link:not(.active) {
  transition: all .3s ease !important;
  padding: 21px;
  border: none;
  font-weight: 500;
  background-color: #f2f5fb;
  color: #040E17;
  border-top: 2px solid transparent;
  width: 100%;
  margin: auto;
  text-align: center;
}
.cid-v2ukjnU82J .nav-tabs .nav-link:not(.active):hover {
  background-color: transparent;
  border-top: 2px solid #040e17;
}
.cid-v2ukjnU82J .card-heading {
  margin-bottom: 25px;
  text-align: left;
  color: #111213;
}
.cid-v2ukjnU82J P {
  color: #52586a;
}
.cid-v2ukjnU82J .mbr-section-title {
  margin-bottom: 30px;
}
.cid-v2PxW0S6wV {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 110px;
}
.cid-v2PxW0S6wV nav.navbar {
  position: fixed;
}
.cid-v2PxW0S6wV .container-fluid {
  padding-left: 72px;
  padding-right: 72px;
}
@media (max-width: 1440px) {
  .cid-v2PxW0S6wV .container-fluid {
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media (max-width: 992px) {
  .cid-v2PxW0S6wV .container-fluid {
    padding-left: 12px;
    padding-right: 12px;
  }
}
.cid-v2PxW0S6wV .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-v2PxW0S6wV .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.cid-v2PxW0S6wV .dropdown-item {
  border: none !important;
  background: #ffffff !important;
}
.cid-v2PxW0S6wV .dropdown-item:hover,
.cid-v2PxW0S6wV .dropdown-item:focus {
  background: #ffffff !important;
  color: #000000 !important;
}
.cid-v2PxW0S6wV .dropdown-item:hover span {
  color: white;
}
.cid-v2PxW0S6wV .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v2PxW0S6wV .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v2PxW0S6wV .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v2PxW0S6wV .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v2PxW0S6wV .nav-link {
  position: relative;
}
.cid-v2PxW0S6wV .container {
  display: flex;
  margin: 0 auto;
  max-width: 1506px;
}
@media (min-width: 992px) {
  .cid-v2PxW0S6wV .container {
    flex-wrap: nowrap;
  }
}
.cid-v2PxW0S6wV .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.cid-v2PxW0S6wV .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-v2PxW0S6wV .dropdown-menu,
.cid-v2PxW0S6wV .navbar.opened {
  background: #ffffff !important;
}
.cid-v2PxW0S6wV .nav-item:focus,
.cid-v2PxW0S6wV .nav-link:focus {
  outline: none;
}
.cid-v2PxW0S6wV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v2PxW0S6wV .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.cid-v2PxW0S6wV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v2PxW0S6wV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v2PxW0S6wV .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v2PxW0S6wV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v2PxW0S6wV .navbar {
  min-height: 110px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-v2PxW0S6wV .navbar.opened {
  transition: all 0.3s;
}
.cid-v2PxW0S6wV .navbar .dropdown-item {
  padding: 8px 3.2rem 8px 22px;
  line-height: 1.5;
  border-radius: 0;
  margin-left: 4px;
  margin-bottom: 4px;
}
.cid-v2PxW0S6wV .navbar .navbar-logo img {
  width: auto;
}
.cid-v2PxW0S6wV .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v2PxW0S6wV .navbar.collapsed {
  justify-content: center;
}
.cid-v2PxW0S6wV .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v2PxW0S6wV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v2PxW0S6wV .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.cid-v2PxW0S6wV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v2PxW0S6wV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v2PxW0S6wV .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-v2PxW0S6wV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v2PxW0S6wV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v2PxW0S6wV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v2PxW0S6wV .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v2PxW0S6wV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v2PxW0S6wV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v2PxW0S6wV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v2PxW0S6wV .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-v2PxW0S6wV .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v2PxW0S6wV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v2PxW0S6wV .navbar .dropdown-menu .dropdown-item {
    padding: 14px !important;
    text-align: center;
    margin-left: 0;
  }
  .cid-v2PxW0S6wV .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-v2PxW0S6wV .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v2PxW0S6wV .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v2PxW0S6wV .navbar.navbar-short {
  min-height: 96px;
}
.cid-v2PxW0S6wV .navbar.navbar-short .navbar-brand {
  min-height: 96px;
}
.cid-v2PxW0S6wV .navbar-brand {
  min-height: 96px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-v2PxW0S6wV .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-v2PxW0S6wV .navbar-brand .navbar-caption:hover,
.cid-v2PxW0S6wV .navbar-brand .navbar-caption:focus {
  color: #000000 !important;
}
.cid-v2PxW0S6wV .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v2PxW0S6wV .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-v2PxW0S6wV .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #000000 !important;
}
.cid-v2PxW0S6wV .dropdown-item.active,
.cid-v2PxW0S6wV .dropdown-item:active {
  background-color: transparent;
}
.cid-v2PxW0S6wV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v2PxW0S6wV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v2PxW0S6wV .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v2PxW0S6wV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
  top: 3.2rem;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-v2PxW0S6wV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-v2PxW0S6wV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-v2PxW0S6wV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v2PxW0S6wV ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .cid-v2PxW0S6wV ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.cid-v2PxW0S6wV .navbar-buttons {
  text-align: center;
  width: auto;
}
@media (min-width: 991px) {
  .cid-v2PxW0S6wV .navbar-buttons {
    text-align: left;
  }
}
.cid-v2PxW0S6wV .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  padding: 7px 20px;
  min-height: auto;
  width: auto;
}
@media (max-width: 575px) {
  .cid-v2PxW0S6wV .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-v2PxW0S6wV button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #ffffff !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-v2PxW0S6wV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v2PxW0S6wV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.cid-v2PxW0S6wV button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-v2PxW0S6wV button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-v2PxW0S6wV button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.cid-v2PxW0S6wV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2PxW0S6wV nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v2PxW0S6wV nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v2PxW0S6wV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2PxW0S6wV .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v2PxW0S6wV a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v2PxW0S6wV .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-v2PxW0S6wV .navbar {
    height: 70px;
  }
  .cid-v2PxW0S6wV .navbar.opened {
    height: auto;
  }
  .cid-v2PxW0S6wV .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v2PxW0S6wV .navbar-nav {
  margin: 0;
}
.cid-v2PxW0S6wV .nav-item {
  padding: 0;
  margin: 0;
}
.cid-v2PxW0S6wV .nav-item .nav-link {
  padding: 2px 0 !important;
  margin: 6px 17px !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  border-radius: 3rem;
}
.cid-v2PxW0S6wV .nav-item .nav-link::after {
  color: inherit !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-v2PxW0S6wV .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #000000;
  transition: all 0.3s ease-in-out;
}
.cid-v2PxW0S6wV .nav-item .nav-link:hover,
.cid-v2PxW0S6wV .nav-item .nav-link:focus {
  background-color: transparent;
  color: #000000 !important;
}
.cid-v2PxW0S6wV .nav-item .nav-link:hover::after,
.cid-v2PxW0S6wV .nav-item .nav-link:focus::after {
  color: inherit !important;
}
.cid-v2PxW0S6wV .nav-item .nav-link:hover::before,
.cid-v2PxW0S6wV .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-v2PxW0S6wV .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-v2PxW0S6wV .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-v2PxW0S6wV .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
@media (max-width: 991px) {
  .cid-v2PxW0S6wV .navbar {
    justify-content: flex-start !important;
  }
  .cid-v2PxW0S6wV .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-v2PxW0S6wV .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-v2PxW0S6wV .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-v2PxW0S6wV .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-v2PxW0S6wV .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid transparent;
  }
  .cid-v2PxW0S6wV .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.cid-v2PxW0S6wV .content-wrap {
  min-height: 110px;
}
.cid-v2PyaqUOAQ {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f1f5eb;
}
.cid-v2PyaqUOAQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2PyaqUOAQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2PyaqUOAQ .content-wrapper {
  display: flex;
  justify-content: center;
}
.cid-v2PyaqUOAQ .content-wrapper .card-wrapper {
  padding: 70px;
  background-color: #e6eddc;
  width: 60%;
  -webkit-flex: inherit;
}
@media (max-width: 992px) {
  .cid-v2PyaqUOAQ .content-wrapper .card-wrapper {
    width: 100%;
    padding: 20px;
  }
}
.cid-v2PyaqUOAQ .content-wrapper .card-wrapper .title-wrapper {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-v2PyaqUOAQ .content-wrapper .card-wrapper .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-v2PyaqUOAQ .content-wrapper .card-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-v2PyaqUOAQ .content-wrapper .card-wrapper .title-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v2PyaqUOAQ .content-wrapper .card-wrapper .title-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-v2PyaqUOAQ .content-wrapper .card-wrapper .form-wrap {
  display: flex;
  justify-content: center;
}
.cid-v2PyaqUOAQ .content-wrapper .card-wrapper .form-wrap form {
  width: 100%;
}
@media (max-width: 1440px) {
  .cid-v2PyaqUOAQ .content-wrapper .card-wrapper .form-wrap form {
    width: 100%;
  }
}
.cid-v2PyaqUOAQ .content-wrapper .card-wrapper .form-wrap form .dragArea.row {
  margin: 0;
}
.cid-v2PyaqUOAQ .content-wrapper .card-wrapper .form-wrap form .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-v2PyaqUOAQ .content-wrapper .card-wrapper .form-wrap form .dragArea.row .form-group .form-control-label {
  margin-bottom: 10px;
}
.cid-v2PyaqUOAQ .content-wrapper .card-wrapper .form-wrap form .dragArea.row .form-group .form-control {
  background-color: #d1e0be;
  padding: 21.5px 30px;
  font-weight: 400;
  box-shadow: none;
  border: none !important;
  margin-bottom: 0;
}
.cid-v2PyaqUOAQ .content-wrapper .card-wrapper .form-wrap form .dragArea.row .form-group .form-control::placeholder {
  color: #323432;
  opacity: .3;
}
.cid-v2PyaqUOAQ .content-wrapper .card-wrapper .form-wrap form .dragArea.row .form-group .form-control:hover,
.cid-v2PyaqUOAQ .content-wrapper .card-wrapper .form-wrap form .dragArea.row .form-group .form-control:focus {
  box-shadow: none;
  border: none !important;
}
@media (max-width: 992px) {
  .cid-v2PyaqUOAQ .content-wrapper .card-wrapper .form-wrap form .dragArea.row .form-group textarea {
    padding: 24px 16px;
  }
}
.cid-v2PyaqUOAQ .content-wrapper .card-wrapper .form-wrap form .dragArea.row .form-group .form-check {
  padding-left: 2.1em;
}
.cid-v2PyaqUOAQ .content-wrapper .card-wrapper .form-wrap form .dragArea.row .form-group .form-check .form-check-input {
  background-color: #323432;
  border-color: #323432;
}
.cid-v2PyaqUOAQ .content-wrapper .card-wrapper .form-wrap form .dragArea.row .mbr-section-btn {
  width: 100%;
}
.cid-v2PyaqUOAQ .content-wrapper .card-wrapper .form-wrap form .dragArea.row .mbr-section-btn .btn {
  width: 100%;
  margin-bottom: 0;
  margin-top: 0;
}
.cid-v2PyaqUOAQ .mbr-section-title {
  color: #323432;
  text-align: center;
}
.cid-v2PyaqUOAQ .mbr-text,
.cid-v2PyaqUOAQ .text-wrapper {
  color: #323432;
  text-align: center;
}
.cid-v2PyrqZviC {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 110px;
}
.cid-v2PyrqZviC nav.navbar {
  position: fixed;
}
.cid-v2PyrqZviC .container-fluid {
  padding-left: 72px;
  padding-right: 72px;
}
@media (max-width: 1440px) {
  .cid-v2PyrqZviC .container-fluid {
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media (max-width: 992px) {
  .cid-v2PyrqZviC .container-fluid {
    padding-left: 12px;
    padding-right: 12px;
  }
}
.cid-v2PyrqZviC .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-v2PyrqZviC .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.cid-v2PyrqZviC .dropdown-item {
  border: none !important;
  background: #ffffff !important;
}
.cid-v2PyrqZviC .dropdown-item:hover,
.cid-v2PyrqZviC .dropdown-item:focus {
  background: #ffffff !important;
  color: #000000 !important;
}
.cid-v2PyrqZviC .dropdown-item:hover span {
  color: white;
}
.cid-v2PyrqZviC .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v2PyrqZviC .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v2PyrqZviC .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v2PyrqZviC .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v2PyrqZviC .nav-link {
  position: relative;
}
.cid-v2PyrqZviC .container {
  display: flex;
  margin: 0 auto;
  max-width: 1506px;
}
@media (min-width: 992px) {
  .cid-v2PyrqZviC .container {
    flex-wrap: nowrap;
  }
}
.cid-v2PyrqZviC .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.cid-v2PyrqZviC .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-v2PyrqZviC .dropdown-menu,
.cid-v2PyrqZviC .navbar.opened {
  background: #ffffff !important;
}
.cid-v2PyrqZviC .nav-item:focus,
.cid-v2PyrqZviC .nav-link:focus {
  outline: none;
}
.cid-v2PyrqZviC .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v2PyrqZviC .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.cid-v2PyrqZviC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v2PyrqZviC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v2PyrqZviC .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v2PyrqZviC .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v2PyrqZviC .navbar {
  min-height: 110px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-v2PyrqZviC .navbar.opened {
  transition: all 0.3s;
}
.cid-v2PyrqZviC .navbar .dropdown-item {
  padding: 8px 3.2rem 8px 22px;
  line-height: 1.5;
  border-radius: 0;
  margin-left: 4px;
  margin-bottom: 4px;
}
.cid-v2PyrqZviC .navbar .navbar-logo img {
  width: auto;
}
.cid-v2PyrqZviC .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v2PyrqZviC .navbar.collapsed {
  justify-content: center;
}
.cid-v2PyrqZviC .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v2PyrqZviC .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v2PyrqZviC .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.cid-v2PyrqZviC .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v2PyrqZviC .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v2PyrqZviC .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-v2PyrqZviC .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v2PyrqZviC .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v2PyrqZviC .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v2PyrqZviC .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v2PyrqZviC .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v2PyrqZviC .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v2PyrqZviC .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v2PyrqZviC .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-v2PyrqZviC .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v2PyrqZviC .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v2PyrqZviC .navbar .dropdown-menu .dropdown-item {
    padding: 14px !important;
    text-align: center;
    margin-left: 0;
  }
  .cid-v2PyrqZviC .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-v2PyrqZviC .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v2PyrqZviC .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v2PyrqZviC .navbar.navbar-short {
  min-height: 96px;
}
.cid-v2PyrqZviC .navbar.navbar-short .navbar-brand {
  min-height: 96px;
}
.cid-v2PyrqZviC .navbar-brand {
  min-height: 96px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-v2PyrqZviC .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-v2PyrqZviC .navbar-brand .navbar-caption:hover,
.cid-v2PyrqZviC .navbar-brand .navbar-caption:focus {
  color: #000000 !important;
}
.cid-v2PyrqZviC .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v2PyrqZviC .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-v2PyrqZviC .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #000000 !important;
}
.cid-v2PyrqZviC .dropdown-item.active,
.cid-v2PyrqZviC .dropdown-item:active {
  background-color: transparent;
}
.cid-v2PyrqZviC .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v2PyrqZviC .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v2PyrqZviC .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v2PyrqZviC .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
  top: 3.2rem;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-v2PyrqZviC .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-v2PyrqZviC .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-v2PyrqZviC .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v2PyrqZviC ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .cid-v2PyrqZviC ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.cid-v2PyrqZviC .navbar-buttons {
  text-align: center;
  width: auto;
}
@media (min-width: 991px) {
  .cid-v2PyrqZviC .navbar-buttons {
    text-align: left;
  }
}
.cid-v2PyrqZviC .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  padding: 7px 20px;
  min-height: auto;
  width: auto;
}
@media (max-width: 575px) {
  .cid-v2PyrqZviC .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-v2PyrqZviC button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #ffffff !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-v2PyrqZviC button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v2PyrqZviC button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.cid-v2PyrqZviC button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-v2PyrqZviC button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-v2PyrqZviC button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.cid-v2PyrqZviC nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2PyrqZviC nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v2PyrqZviC nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v2PyrqZviC nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2PyrqZviC .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v2PyrqZviC a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v2PyrqZviC .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-v2PyrqZviC .navbar {
    height: 70px;
  }
  .cid-v2PyrqZviC .navbar.opened {
    height: auto;
  }
  .cid-v2PyrqZviC .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v2PyrqZviC .navbar-nav {
  margin: 0;
}
.cid-v2PyrqZviC .nav-item {
  padding: 0;
  margin: 0;
}
.cid-v2PyrqZviC .nav-item .nav-link {
  padding: 2px 0 !important;
  margin: 6px 17px !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  border-radius: 3rem;
}
.cid-v2PyrqZviC .nav-item .nav-link::after {
  color: inherit !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-v2PyrqZviC .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #000000;
  transition: all 0.3s ease-in-out;
}
.cid-v2PyrqZviC .nav-item .nav-link:hover,
.cid-v2PyrqZviC .nav-item .nav-link:focus {
  background-color: transparent;
  color: #000000 !important;
}
.cid-v2PyrqZviC .nav-item .nav-link:hover::after,
.cid-v2PyrqZviC .nav-item .nav-link:focus::after {
  color: inherit !important;
}
.cid-v2PyrqZviC .nav-item .nav-link:hover::before,
.cid-v2PyrqZviC .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-v2PyrqZviC .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-v2PyrqZviC .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-v2PyrqZviC .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
@media (max-width: 991px) {
  .cid-v2PyrqZviC .navbar {
    justify-content: flex-start !important;
  }
  .cid-v2PyrqZviC .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-v2PyrqZviC .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-v2PyrqZviC .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-v2PyrqZviC .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-v2PyrqZviC .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid transparent;
  }
  .cid-v2PyrqZviC .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.cid-v2PyrqZviC .content-wrap {
  min-height: 110px;
}
.cid-v2PyzRQriZ {
  padding-top: 6rem;
  padding-bottom: 5rem;
  overflow: hidden;
  position: relative;
  background-color: #d1e0be;
}
.cid-v2PyzRQriZ .card-wrap {
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  width: 550px;
  height: 400px;
  overflow: hidden;
  transform: rotate(15deg);
  pointer-events: visible;
}
@media (max-width: 992px) {
  .cid-v2PyzRQriZ .card-wrap {
    height: 350px;
    transform: none;
  }
}
.cid-v2PyzRQriZ .card-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-v2PyzRQriZ .card-wrap::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #d1e0be;
  opacity: 0.5;
  pointer-events: none;
}
.cid-v2PyzRQriZ .decor-wrapper {
  position: absolute;
  top: 0;
  right: -350px;
  width: 700px;
  height: 200px;
}
@media (max-width: 992px) {
  .cid-v2PyzRQriZ .decor-wrapper {
    top: -150px;
    right: -350px;
  }
}
.cid-v2PyzRQriZ .decor-wrapper::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 200px;
  border-radius: 100%;
  background-color: #dfedcd;
  pointer-events: none;
}
.cid-v2PyzRQriZ .decor-wrapper::after {
  content: '';
  position: absolute;
  width: 700px;
  height: 200px;
  border-radius: 100%;
  background-color: #dfedcd;
  transform: rotate(-45deg);
  pointer-events: none;
}
.cid-v2PyzRQriZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2PyzRQriZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2PyzRQriZ .content-wrapper {
  position: relative;
  z-index: 1;
  pointer-events: none;
}
.cid-v2PyzRQriZ .content-wrapper .title-wrapper {
  pointer-events: none;
}
.cid-v2PyzRQriZ .content-wrapper .title-wrapper .mbr-section-title {
  pointer-events: visible;
  display: inline-block;
  margin-bottom: 20px;
}
.cid-v2PyzRQriZ .content-wrapper .text-wrapper {
  pointer-events: none;
}
.cid-v2PyzRQriZ .content-wrapper .text-wrapper .mbr-text {
  pointer-events: visible;
  display: inline-block;
  width: 60%;
  margin-bottom: 0;
  font-weight:500;
}
@media (max-width: 1440px) {
  .cid-v2PyzRQriZ .content-wrapper .text-wrapper .mbr-text {
    width: 40%;
  }
}
@media (max-width: 992px) {
  .cid-v2PyzRQriZ .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-v2PyzRQriZ .content-wrapper .mbr-section-btn {
  pointer-events: none;
  margin-top: 20px;
}
.cid-v2PyzRQriZ .content-wrapper .mbr-section-btn .btn {
  pointer-events: visible;
}
.cid-v2PyzRQriZ .mbr-section-title {
  color: #323432;
}
.cid-v2PyzRQriZ .mbr-text,
.cid-v2PyzRQriZ .text-wrapper {
  color: #323432;
  text-align: center;
}
.cid-v2PyzRQriZ .mbr-section-title,
.cid-v2PyzRQriZ .mbr-section-btn,
.cid-v2PyzRQriZ .title-wrapper {
  text-align: center;
}
.cid-v2PA6V5g1h {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #2a5b38;
}
.cid-v2PA6V5g1h .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2PA6V5g1h .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2PA6V5g1h .mbr-section-title {
  color: #ffffff;
}
.cid-v2PzoTqcrx {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #e6eddc;
}
@media (max-width: 992px) and (max-width: 992px) {
  .cid-v2PzoTqcrx .container {
    padding: 0 24px;
  }
}
.cid-v2PzoTqcrx .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-v2PzoTqcrx .title-wrapper {
    margin-bottom: 24px;
  }
}
.cid-v2PzoTqcrx .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-v2PzoTqcrx .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v2PzoTqcrx .mbr-section-btn {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-v2PzoTqcrx .mbr-section-btn {
    text-align: left;
  }
}
.cid-v2PzoTqcrx .mbr-section-title {
  color: #F9F6E0;
}
.cid-v2PzoTqcrx .mbr-text {
  color: #000000;
}
.cid-v2PzoTqcrx .mbr-section-title,
.cid-v2PzoTqcrx .mbr-section-btn {
  color: #000000;
}
.cid-v2PAvDPVV6 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 110px;
}
.cid-v2PAvDPVV6 nav.navbar {
  position: fixed;
}
.cid-v2PAvDPVV6 .container-fluid {
  padding-left: 72px;
  padding-right: 72px;
}
@media (max-width: 1440px) {
  .cid-v2PAvDPVV6 .container-fluid {
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media (max-width: 992px) {
  .cid-v2PAvDPVV6 .container-fluid {
    padding-left: 12px;
    padding-right: 12px;
  }
}
.cid-v2PAvDPVV6 .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-v2PAvDPVV6 .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.cid-v2PAvDPVV6 .dropdown-item {
  border: none !important;
  background: #ffffff !important;
}
.cid-v2PAvDPVV6 .dropdown-item:hover,
.cid-v2PAvDPVV6 .dropdown-item:focus {
  background: #ffffff !important;
  color: #000000 !important;
}
.cid-v2PAvDPVV6 .dropdown-item:hover span {
  color: white;
}
.cid-v2PAvDPVV6 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v2PAvDPVV6 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v2PAvDPVV6 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v2PAvDPVV6 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v2PAvDPVV6 .nav-link {
  position: relative;
}
.cid-v2PAvDPVV6 .container {
  display: flex;
  margin: 0 auto;
  max-width: 1506px;
}
@media (min-width: 992px) {
  .cid-v2PAvDPVV6 .container {
    flex-wrap: nowrap;
  }
}
.cid-v2PAvDPVV6 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.cid-v2PAvDPVV6 .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-v2PAvDPVV6 .dropdown-menu,
.cid-v2PAvDPVV6 .navbar.opened {
  background: #ffffff !important;
}
.cid-v2PAvDPVV6 .nav-item:focus,
.cid-v2PAvDPVV6 .nav-link:focus {
  outline: none;
}
.cid-v2PAvDPVV6 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v2PAvDPVV6 .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.cid-v2PAvDPVV6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v2PAvDPVV6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v2PAvDPVV6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v2PAvDPVV6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v2PAvDPVV6 .navbar {
  min-height: 110px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-v2PAvDPVV6 .navbar.opened {
  transition: all 0.3s;
}
.cid-v2PAvDPVV6 .navbar .dropdown-item {
  padding: 8px 3.2rem 8px 22px;
  line-height: 1.5;
  border-radius: 0;
  margin-left: 4px;
  margin-bottom: 4px;
}
.cid-v2PAvDPVV6 .navbar .navbar-logo img {
  width: auto;
}
.cid-v2PAvDPVV6 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v2PAvDPVV6 .navbar.collapsed {
  justify-content: center;
}
.cid-v2PAvDPVV6 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v2PAvDPVV6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v2PAvDPVV6 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.cid-v2PAvDPVV6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v2PAvDPVV6 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v2PAvDPVV6 .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-v2PAvDPVV6 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v2PAvDPVV6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v2PAvDPVV6 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v2PAvDPVV6 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v2PAvDPVV6 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v2PAvDPVV6 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v2PAvDPVV6 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v2PAvDPVV6 .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-v2PAvDPVV6 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v2PAvDPVV6 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v2PAvDPVV6 .navbar .dropdown-menu .dropdown-item {
    padding: 14px !important;
    text-align: center;
    margin-left: 0;
  }
  .cid-v2PAvDPVV6 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-v2PAvDPVV6 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v2PAvDPVV6 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v2PAvDPVV6 .navbar.navbar-short {
  min-height: 96px;
}
.cid-v2PAvDPVV6 .navbar.navbar-short .navbar-brand {
  min-height: 96px;
}
.cid-v2PAvDPVV6 .navbar-brand {
  min-height: 96px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-v2PAvDPVV6 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-v2PAvDPVV6 .navbar-brand .navbar-caption:hover,
.cid-v2PAvDPVV6 .navbar-brand .navbar-caption:focus {
  color: #000000 !important;
}
.cid-v2PAvDPVV6 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v2PAvDPVV6 .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-v2PAvDPVV6 .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #000000 !important;
}
.cid-v2PAvDPVV6 .dropdown-item.active,
.cid-v2PAvDPVV6 .dropdown-item:active {
  background-color: transparent;
}
.cid-v2PAvDPVV6 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v2PAvDPVV6 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v2PAvDPVV6 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v2PAvDPVV6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
  top: 3.2rem;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-v2PAvDPVV6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-v2PAvDPVV6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-v2PAvDPVV6 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v2PAvDPVV6 ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .cid-v2PAvDPVV6 ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.cid-v2PAvDPVV6 .navbar-buttons {
  text-align: center;
  width: auto;
}
@media (min-width: 991px) {
  .cid-v2PAvDPVV6 .navbar-buttons {
    text-align: left;
  }
}
.cid-v2PAvDPVV6 .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  padding: 7px 20px;
  min-height: auto;
  width: auto;
}
@media (max-width: 575px) {
  .cid-v2PAvDPVV6 .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-v2PAvDPVV6 button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #ffffff !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-v2PAvDPVV6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v2PAvDPVV6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.cid-v2PAvDPVV6 button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-v2PAvDPVV6 button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-v2PAvDPVV6 button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.cid-v2PAvDPVV6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2PAvDPVV6 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v2PAvDPVV6 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v2PAvDPVV6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2PAvDPVV6 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v2PAvDPVV6 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v2PAvDPVV6 .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-v2PAvDPVV6 .navbar {
    height: 70px;
  }
  .cid-v2PAvDPVV6 .navbar.opened {
    height: auto;
  }
  .cid-v2PAvDPVV6 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v2PAvDPVV6 .navbar-nav {
  margin: 0;
}
.cid-v2PAvDPVV6 .nav-item {
  padding: 0;
  margin: 0;
}
.cid-v2PAvDPVV6 .nav-item .nav-link {
  padding: 2px 0 !important;
  margin: 6px 17px !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  border-radius: 3rem;
}
.cid-v2PAvDPVV6 .nav-item .nav-link::after {
  color: inherit !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-v2PAvDPVV6 .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #000000;
  transition: all 0.3s ease-in-out;
}
.cid-v2PAvDPVV6 .nav-item .nav-link:hover,
.cid-v2PAvDPVV6 .nav-item .nav-link:focus {
  background-color: transparent;
  color: #000000 !important;
}
.cid-v2PAvDPVV6 .nav-item .nav-link:hover::after,
.cid-v2PAvDPVV6 .nav-item .nav-link:focus::after {
  color: inherit !important;
}
.cid-v2PAvDPVV6 .nav-item .nav-link:hover::before,
.cid-v2PAvDPVV6 .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-v2PAvDPVV6 .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-v2PAvDPVV6 .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-v2PAvDPVV6 .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
@media (max-width: 991px) {
  .cid-v2PAvDPVV6 .navbar {
    justify-content: flex-start !important;
  }
  .cid-v2PAvDPVV6 .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-v2PAvDPVV6 .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-v2PAvDPVV6 .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-v2PAvDPVV6 .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-v2PAvDPVV6 .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid transparent;
  }
  .cid-v2PAvDPVV6 .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.cid-v2PAvDPVV6 .content-wrap {
  min-height: 110px;
}
.cid-v2PAGjFRg7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1f5eb;
}
.cid-v2PAGjFRg7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2PAGjFRg7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2PAGjFRg7 .content-wrapper {
  display: flex;
  justify-content: center;
}
.cid-v2PAGjFRg7 .content-wrapper .card-wrapper {
  padding: 70px;
  background-color: #e6eddc;
  width: 80%;
  -webkit-flex: inherit;
}
@media (max-width: 992px) {
  .cid-v2PAGjFRg7 .content-wrapper .card-wrapper {
    width: 100%;
    padding: 20px;
  }
}
.cid-v2PAGjFRg7 .content-wrapper .card-wrapper .title-wrapper {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-v2PAGjFRg7 .content-wrapper .card-wrapper .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-v2PAGjFRg7 .content-wrapper .card-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-v2PAGjFRg7 .content-wrapper .card-wrapper .title-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v2PAGjFRg7 .content-wrapper .card-wrapper .title-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-v2PAGjFRg7 .content-wrapper .card-wrapper .form-wrap {
  display: flex;
  justify-content: center;
}
.cid-v2PAGjFRg7 .content-wrapper .card-wrapper .form-wrap form {
  width: 60%;
}
@media (max-width: 1440px) {
  .cid-v2PAGjFRg7 .content-wrapper .card-wrapper .form-wrap form {
    width: 100%;
  }
}
.cid-v2PAGjFRg7 .content-wrapper .card-wrapper .form-wrap form .dragArea.row {
  margin: 0;
}
.cid-v2PAGjFRg7 .content-wrapper .card-wrapper .form-wrap form .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-v2PAGjFRg7 .content-wrapper .card-wrapper .form-wrap form .dragArea.row .form-group .form-control-label {
  margin-bottom: 10px;
}
.cid-v2PAGjFRg7 .content-wrapper .card-wrapper .form-wrap form .dragArea.row .form-group .form-control {
  background-color: #d1e0be;
  padding: 21.5px 30px;
  font-weight: 400;
  box-shadow: none;
  border: none !important;
  margin-bottom: 0;
}
.cid-v2PAGjFRg7 .content-wrapper .card-wrapper .form-wrap form .dragArea.row .form-group .form-control::placeholder {
  color: #323432;
  opacity: .3;
}
.cid-v2PAGjFRg7 .content-wrapper .card-wrapper .form-wrap form .dragArea.row .form-group .form-control:hover,
.cid-v2PAGjFRg7 .content-wrapper .card-wrapper .form-wrap form .dragArea.row .form-group .form-control:focus {
  box-shadow: none;
  border: none !important;
}
@media (max-width: 992px) {
  .cid-v2PAGjFRg7 .content-wrapper .card-wrapper .form-wrap form .dragArea.row .form-group textarea {
    padding: 24px 16px;
  }
}
.cid-v2PAGjFRg7 .content-wrapper .card-wrapper .form-wrap form .dragArea.row .form-group .form-check {
  padding-left: 2.1em;
}
.cid-v2PAGjFRg7 .content-wrapper .card-wrapper .form-wrap form .dragArea.row .form-group .form-check .form-check-input {
  background-color: #323432;
  border-color: #323432;
}
.cid-v2PAGjFRg7 .content-wrapper .card-wrapper .form-wrap form .dragArea.row .mbr-section-btn {
  width: 100%;
}
.cid-v2PAGjFRg7 .content-wrapper .card-wrapper .form-wrap form .dragArea.row .mbr-section-btn .btn {
  width: 100%;
  margin-bottom: 0;
  margin-top: 0;
}
.cid-v2PAGjFRg7 .mbr-section-title {
  color: #323432;
  text-align: center;
}
.cid-v2PAGjFRg7 .mbr-text,
.cid-v2PAGjFRg7 .text-wrapper {
  color: #323432;
  text-align: center;
}
.cid-v2PAONnqPu {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 110px;
}
.cid-v2PAONnqPu nav.navbar {
  position: fixed;
}
.cid-v2PAONnqPu .container-fluid {
  padding-left: 72px;
  padding-right: 72px;
}
@media (max-width: 1440px) {
  .cid-v2PAONnqPu .container-fluid {
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media (max-width: 992px) {
  .cid-v2PAONnqPu .container-fluid {
    padding-left: 12px;
    padding-right: 12px;
  }
}
.cid-v2PAONnqPu .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-v2PAONnqPu .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.cid-v2PAONnqPu .dropdown-item {
  border: none !important;
  background: #ffffff !important;
}
.cid-v2PAONnqPu .dropdown-item:hover,
.cid-v2PAONnqPu .dropdown-item:focus {
  background: #ffffff !important;
  color: #000000 !important;
}
.cid-v2PAONnqPu .dropdown-item:hover span {
  color: white;
}
.cid-v2PAONnqPu .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v2PAONnqPu .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v2PAONnqPu .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v2PAONnqPu .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v2PAONnqPu .nav-link {
  position: relative;
}
.cid-v2PAONnqPu .container {
  display: flex;
  margin: 0 auto;
  max-width: 1506px;
}
@media (min-width: 992px) {
  .cid-v2PAONnqPu .container {
    flex-wrap: nowrap;
  }
}
.cid-v2PAONnqPu .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.cid-v2PAONnqPu .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-v2PAONnqPu .dropdown-menu,
.cid-v2PAONnqPu .navbar.opened {
  background: #ffffff !important;
}
.cid-v2PAONnqPu .nav-item:focus,
.cid-v2PAONnqPu .nav-link:focus {
  outline: none;
}
.cid-v2PAONnqPu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v2PAONnqPu .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.cid-v2PAONnqPu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v2PAONnqPu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v2PAONnqPu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v2PAONnqPu .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v2PAONnqPu .navbar {
  min-height: 110px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-v2PAONnqPu .navbar.opened {
  transition: all 0.3s;
}
.cid-v2PAONnqPu .navbar .dropdown-item {
  padding: 8px 3.2rem 8px 22px;
  line-height: 1.5;
  border-radius: 0;
  margin-left: 4px;
  margin-bottom: 4px;
}
.cid-v2PAONnqPu .navbar .navbar-logo img {
  width: auto;
}
.cid-v2PAONnqPu .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v2PAONnqPu .navbar.collapsed {
  justify-content: center;
}
.cid-v2PAONnqPu .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v2PAONnqPu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v2PAONnqPu .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.cid-v2PAONnqPu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v2PAONnqPu .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v2PAONnqPu .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-v2PAONnqPu .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v2PAONnqPu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v2PAONnqPu .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v2PAONnqPu .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v2PAONnqPu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v2PAONnqPu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v2PAONnqPu .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v2PAONnqPu .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-v2PAONnqPu .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v2PAONnqPu .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v2PAONnqPu .navbar .dropdown-menu .dropdown-item {
    padding: 14px !important;
    text-align: center;
    margin-left: 0;
  }
  .cid-v2PAONnqPu .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-v2PAONnqPu .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v2PAONnqPu .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v2PAONnqPu .navbar.navbar-short {
  min-height: 96px;
}
.cid-v2PAONnqPu .navbar.navbar-short .navbar-brand {
  min-height: 96px;
}
.cid-v2PAONnqPu .navbar-brand {
  min-height: 96px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-v2PAONnqPu .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-v2PAONnqPu .navbar-brand .navbar-caption:hover,
.cid-v2PAONnqPu .navbar-brand .navbar-caption:focus {
  color: #000000 !important;
}
.cid-v2PAONnqPu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v2PAONnqPu .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-v2PAONnqPu .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #000000 !important;
}
.cid-v2PAONnqPu .dropdown-item.active,
.cid-v2PAONnqPu .dropdown-item:active {
  background-color: transparent;
}
.cid-v2PAONnqPu .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v2PAONnqPu .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v2PAONnqPu .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v2PAONnqPu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
  top: 3.2rem;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-v2PAONnqPu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-v2PAONnqPu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-v2PAONnqPu .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v2PAONnqPu ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .cid-v2PAONnqPu ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.cid-v2PAONnqPu .navbar-buttons {
  text-align: center;
  width: auto;
}
@media (min-width: 991px) {
  .cid-v2PAONnqPu .navbar-buttons {
    text-align: left;
  }
}
.cid-v2PAONnqPu .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  padding: 7px 20px;
  min-height: auto;
  width: auto;
}
@media (max-width: 575px) {
  .cid-v2PAONnqPu .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-v2PAONnqPu button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #ffffff !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-v2PAONnqPu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v2PAONnqPu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.cid-v2PAONnqPu button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-v2PAONnqPu button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-v2PAONnqPu button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.cid-v2PAONnqPu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2PAONnqPu nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v2PAONnqPu nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v2PAONnqPu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2PAONnqPu .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v2PAONnqPu a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v2PAONnqPu .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-v2PAONnqPu .navbar {
    height: 70px;
  }
  .cid-v2PAONnqPu .navbar.opened {
    height: auto;
  }
  .cid-v2PAONnqPu .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v2PAONnqPu .navbar-nav {
  margin: 0;
}
.cid-v2PAONnqPu .nav-item {
  padding: 0;
  margin: 0;
}
.cid-v2PAONnqPu .nav-item .nav-link {
  padding: 2px 0 !important;
  margin: 6px 17px !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  border-radius: 3rem;
}
.cid-v2PAONnqPu .nav-item .nav-link::after {
  color: inherit !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-v2PAONnqPu .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #000000;
  transition: all 0.3s ease-in-out;
}
.cid-v2PAONnqPu .nav-item .nav-link:hover,
.cid-v2PAONnqPu .nav-item .nav-link:focus {
  background-color: transparent;
  color: #000000 !important;
}
.cid-v2PAONnqPu .nav-item .nav-link:hover::after,
.cid-v2PAONnqPu .nav-item .nav-link:focus::after {
  color: inherit !important;
}
.cid-v2PAONnqPu .nav-item .nav-link:hover::before,
.cid-v2PAONnqPu .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-v2PAONnqPu .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-v2PAONnqPu .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-v2PAONnqPu .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
@media (max-width: 991px) {
  .cid-v2PAONnqPu .navbar {
    justify-content: flex-start !important;
  }
  .cid-v2PAONnqPu .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-v2PAONnqPu .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-v2PAONnqPu .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-v2PAONnqPu .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-v2PAONnqPu .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid transparent;
  }
  .cid-v2PAONnqPu .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.cid-v2PAONnqPu .content-wrap {
  min-height: 110px;
}
.cid-v2PAZnutvy {
  padding-top: 8rem;
  padding-bottom: 11rem;
  overflow: hidden;
  position: relative;
  background-color: #d1e0be;
}
.cid-v2PAZnutvy .card-wrap {
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  width: 550px;
  height: 400px;
  overflow: hidden;
  transform: rotate(15deg);
  pointer-events: visible;
}
@media (max-width: 992px) {
  .cid-v2PAZnutvy .card-wrap {
    height: 350px;
    transform: none;
  }
}
.cid-v2PAZnutvy .card-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-v2PAZnutvy .card-wrap::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #d1e0be;
  opacity: 0.5;
  pointer-events: none;
}
.cid-v2PAZnutvy .decor-wrapper {
  position: absolute;
  top: 0;
  right: -350px;
  width: 700px;
  height: 200px;
}
@media (max-width: 992px) {
  .cid-v2PAZnutvy .decor-wrapper {
    top: -150px;
    right: -350px;
  }
}
.cid-v2PAZnutvy .decor-wrapper::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 200px;
  border-radius: 100%;
  background-color: #dfedcd;
  pointer-events: none;
}
.cid-v2PAZnutvy .decor-wrapper::after {
  content: '';
  position: absolute;
  width: 700px;
  height: 200px;
  border-radius: 100%;
  background-color: #dfedcd;
  transform: rotate(-45deg);
  pointer-events: none;
}
.cid-v2PAZnutvy .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2PAZnutvy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2PAZnutvy .content-wrapper {
  position: relative;
  z-index: 1;
  pointer-events: none;
}
.cid-v2PAZnutvy .content-wrapper .title-wrapper {
  pointer-events: none;
}
.cid-v2PAZnutvy .content-wrapper .title-wrapper .mbr-section-title {
  pointer-events: visible;
  display: inline-block;
  margin-bottom: 20px;
}
.cid-v2PAZnutvy .content-wrapper .text-wrapper {
  pointer-events: none;
}
.cid-v2PAZnutvy .content-wrapper .text-wrapper .mbr-text {
  pointer-events: visible;
  display: inline-block;
  width: 80%;
  margin-bottom: 0;
}
@media (max-width: 1440px) {
  .cid-v2PAZnutvy .content-wrapper .text-wrapper .mbr-text {
    width: 40%;
  }
}
@media (max-width: 992px) {
  .cid-v2PAZnutvy .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-v2PAZnutvy .content-wrapper .mbr-section-btn {
  pointer-events: none;
  margin-top: 20px;
}
.cid-v2PAZnutvy .content-wrapper .mbr-section-btn .btn {
  pointer-events: visible;
}
.cid-v2PAZnutvy .mbr-section-title {
  color: #323432;
}
.cid-v2PAZnutvy .mbr-text,
.cid-v2PAZnutvy .text-wrapper {
  color: #323432;
  text-align: center;
}
.cid-v2PAZnutvy .mbr-section-title,
.cid-v2PAZnutvy .mbr-section-btn,
.cid-v2PAZnutvy .title-wrapper {
  text-align: center;
}
