body {
  font-family: Noto Sans;
}
.display-1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.63rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 3.2875rem;
}
.display-2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 2rem;
}
.display-4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 500;
}
.display-5 > .mbr-iconfont {
  font-size: 1.5rem;
}
.display-7 {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.25rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 2.104rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 1.841rem;
    font-size: calc( 1.5705rem + (2.63 - 1.5705) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.5705rem + (2.63 - 1.5705) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #829d85 !important;
}
.bg-success {
  background-color: #446a49 !important;
}
.bg-info {
  background-color: #d0c4b7 !important;
}
.bg-warning {
  background-color: #4d8ab8 !important;
}
.bg-danger {
  background-color: #895957 !important;
}
.btn-primary:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #829d85;
  border: 1px solid #829d85;
  transform: rotate(-5deg);
  z-index: -1;
  transition: .35s all;
}
.btn-primary,
.btn-primary:active {
  background-color: transparent  !important;
  border-color: #829d85 !important;
  color: #363636 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #363636 !important;
}
.btn-primary:hover:before,
.btn-primary:focus:before,
.btn-primary.focus:before,
.btn-primary.active:before {
  background-color: #829d85 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #363636 !important;
  background-color: #58705b !important;
  border-color: #58705b !important;
}
.btn-secondary:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #987a5a;
  border: 1px solid #987a5a;
  transform: rotate(-5deg);
  z-index: -1;
  transition: .35s all;
}
.btn-secondary,
.btn-secondary:active {
  background-color: transparent  !important;
  border-color: #987a5a !important;
  color: #1f1b24 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #1f1b24 !important;
}
.btn-secondary:hover:before,
.btn-secondary:focus:before,
.btn-secondary.focus:before,
.btn-secondary.active:before {
  background-color: #987a5a !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #1f1b24 !important;
  background-color: #624e3a !important;
  border-color: #624e3a !important;
}
.btn-info:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #d0c4b7;
  border: 1px solid #d0c4b7;
  transform: rotate(-5deg);
  z-index: -1;
  transition: .35s all;
}
.btn-info,
.btn-info:active {
  background-color: transparent  !important;
  border-color: #d0c4b7 !important;
  color: #686174 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #686174 !important;
}
.btn-info:hover:before,
.btn-info:focus:before,
.btn-info.focus:before,
.btn-info.active:before {
  background-color: #d0c4b7 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #686174 !important;
  background-color: #ae9983 !important;
  border-color: #ae9983 !important;
}
.btn-success:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #446a49;
  border: 1px solid #446a49;
  transform: rotate(-5deg);
  z-index: -1;
  transition: .35s all;
}
.btn-success,
.btn-success:active {
  background-color: transparent  !important;
  border-color: #446a49 !important;
  color: #000000 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #000000 !important;
}
.btn-success:hover:before,
.btn-success:focus:before,
.btn-success.focus:before,
.btn-success.active:before {
  background-color: #446a49 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #000000 !important;
  background-color: #223525 !important;
  border-color: #223525 !important;
}
.btn-warning:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #4d8ab8;
  border: 1px solid #4d8ab8;
  transform: rotate(-5deg);
  z-index: -1;
  transition: .35s all;
}
.btn-warning,
.btn-warning:active {
  background-color: transparent  !important;
  border-color: #4d8ab8 !important;
  color: #2e361c !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #2e361c !important;
}
.btn-warning:hover:before,
.btn-warning:focus:before,
.btn-warning.focus:before,
.btn-warning.active:before {
  background-color: #4d8ab8 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #2e361c !important;
  background-color: #325c7d !important;
  border-color: #325c7d !important;
}
.btn-danger:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #895957;
  border: 1px solid #895957;
  transform: rotate(-5deg);
  z-index: -1;
  transition: .35s all;
}
.btn-danger,
.btn-danger:active {
  background-color: transparent  !important;
  border-color: #895957 !important;
  color: #141519 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #141519 !important;
}
.btn-danger:hover:before,
.btn-danger:focus:before,
.btn-danger.focus:before,
.btn-danger.active:before {
  background-color: #895957 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #141519 !important;
  background-color: #543735 !important;
  border-color: #543735 !important;
}
.btn-white:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #ffffff;
  border: 1px solid #ffffff;
  transform: rotate(-5deg);
  z-index: -1;
  transition: .35s all;
}
.btn-white,
.btn-white:active {
  background-color: transparent  !important;
  border-color: #ffffff !important;
  color: #a6a6a6 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #a6a6a6 !important;
}
.btn-white:hover:before,
.btn-white:focus:before,
.btn-white.focus:before,
.btn-white.active:before {
  background-color: #ffffff !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #a6a6a6 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-black:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #353535;
  border: 1px solid #353535;
  transform: rotate(-5deg);
  z-index: -1;
  transition: .35s all;
}
.btn-black,
.btn-black:active {
  background-color: transparent  !important;
  border-color: #353535 !important;
  color: #000000 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #000000 !important;
}
.btn-black:hover:before,
.btn-black:focus:before,
.btn-black.focus:before,
.btn-black.active:before {
  background-color: #353535 !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #000000 !important;
  background-color: #0a0a0a !important;
  border-color: #0a0a0a !important;
}
.btn-primary-outline:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #829d85;
  transform: rotate(-5deg);
  z-index: -1;
  transition: .35s all;
}
.btn-primary-outline,
.btn-primary-outline:active {
  color: #363636;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #363636 !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #363636 !important;
  background-color: #58705b !important;
  border-color: #58705b !important;
}
.btn-secondary-outline:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #987a5a;
  transform: rotate(-5deg);
  z-index: -1;
  transition: .35s all;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  color: #1f1b24;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #1f1b24 !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #1f1b24 !important;
  background-color: #624e3a !important;
  border-color: #624e3a !important;
}
.btn-info-outline:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #d0c4b7;
  transform: rotate(-5deg);
  z-index: -1;
  transition: .35s all;
}
.btn-info-outline,
.btn-info-outline:active {
  color: #686174;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #686174 !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #686174 !important;
  background-color: #ae9983 !important;
  border-color: #ae9983 !important;
}
.btn-success-outline:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #446a49;
  transform: rotate(-5deg);
  z-index: -1;
  transition: .35s all;
}
.btn-success-outline,
.btn-success-outline:active {
  color: #000000;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #000000 !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #000000 !important;
  background-color: #223525 !important;
  border-color: #223525 !important;
}
.btn-warning-outline:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #4d8ab8;
  transform: rotate(-5deg);
  z-index: -1;
  transition: .35s all;
}
.btn-warning-outline,
.btn-warning-outline:active {
  color: #2e361c;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #2e361c !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #2e361c !important;
  background-color: #325c7d !important;
  border-color: #325c7d !important;
}
.btn-danger-outline:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #895957;
  transform: rotate(-5deg);
  z-index: -1;
  transition: .35s all;
}
.btn-danger-outline,
.btn-danger-outline:active {
  color: #141519;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #141519 !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #141519 !important;
  background-color: #543735 !important;
  border-color: #543735 !important;
}
.btn-black-outline:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #353535;
  transform: rotate(-5deg);
  z-index: -1;
  transition: .35s all;
}
.btn-black-outline,
.btn-black-outline:active {
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #000000 !important;
  background-color: #0a0a0a !important;
  border-color: #0a0a0a !important;
}
.btn-white-outline:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #ffffff;
  transform: rotate(-5deg);
  z-index: -1;
  transition: .35s all;
}
.btn-white-outline,
.btn-white-outline:active {
  color: #a6a6a6;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #a6a6a6 !important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #a6a6a6 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.text-primary {
  color: #829d85 !important;
}
.text-secondary {
  color: #987a5a !important;
}
.text-success {
  color: #446a49 !important;
}
.text-info {
  color: #d0c4b7 !important;
}
.text-warning {
  color: #4d8ab8 !important;
}
.text-danger {
  color: #895957 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #353535 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #516854 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #584734 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #1c2c1e !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #a89179 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #2d5472 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #4b302f !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #cccccc !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #020202 !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: #829d85;
}
.nav-tabs .nav-link:not(.active) {
  color: #353535;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #d0c4b7;
}
.alert-warning {
  background-color: #4d8ab8;
}
.alert-danger {
  background-color: #895957;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #829d85;
  border-color: #829d85;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #829d85;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #c9d5cb;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #80ae86;
}
.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: #a8c6dc;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #c19f9e;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #829d85 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #829d85;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #829d85;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #829d85;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #829d85;
  border-bottom-color: #829d85;
}
.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: #000000 !important;
  background-color: #829d85 !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: #987a5a !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='%23829d85' %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-duration: .4s;
}
a:hover {
  background-image: none !important;
}
.container {
  max-width: 1190px;
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 1199px) {
  .container {
    max-width: 990px;
  }
}
@media (max-width: 991px) {
  .container {
    max-width: 670px;
  }
}
@media (max-width: 991px) {
  .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.row {
  margin-left: -15px;
  margin-right: -15px;
  justify-content: center;
}
.row > [class*="col"] {
  padding-left: 15px;
  padding-right: 15px;
}
.row {
  justify-content: center;
}
b,
strong {
  font-weight: 700 !important;
}
.mbr-section-btn .btn {
  position: relative;
  min-width: 200px;
  min-height: 60px;
  padding: 14px 28px;
  font-weight: 500;
  transition-duration: .35s;
  box-shadow: none !important;
  border: none !important;
  border-radius: 0 !important;
  z-index: 2;
}
.mbr-section-btn .btn.btn-black {
  color: #ffffff !important;
}
.mbr-section-btn .btn.btn-white {
  color: #353535 !important;
}
.mbr-section-btn .btn.btn-black-outline {
  color: #353535 !important;
}
.mbr-section-btn .btn.btn-white-outline {
  color: #ffffff !important;
}
.mbr-section-btn .btn:hover {
  transform: scale(0.9);
}
.mbr-section-btn .btn:hover:before {
  transform: rotate(0deg) scale(1.1111);
}
.cid-tqnAYxqier {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 90px;
}
.cid-tqnAYxqier nav.navbar {
  position: fixed;
}
.cid-tqnAYxqier .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-tqnAYxqier .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tqnAYxqier .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tqnAYxqier .dropdown-item:hover,
.cid-tqnAYxqier .dropdown-item:focus {
  background: #829d85 !important;
  color: white !important;
}
.cid-tqnAYxqier .dropdown-item:hover span {
  color: white;
}
.cid-tqnAYxqier .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tqnAYxqier .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tqnAYxqier .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tqnAYxqier .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tqnAYxqier .nav-link {
  position: relative;
}
.cid-tqnAYxqier .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tqnAYxqier .container {
    flex-wrap: nowrap;
  }
}
.cid-tqnAYxqier .iconfont-wrapper {
  color: #353535 !important;
  font-size: 18px;
  padding-right: 0;
}
.cid-tqnAYxqier .iconfont-wrapper .mbr-iconfont {
  transition: .4s all;
}
.cid-tqnAYxqier .iconfont-wrapper .mbr-iconfont:hover {
  color: #829d85;
}
.cid-tqnAYxqier .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 66.66666667%;
  margin-right: auto;
  min-height: 89px;
}
.cid-tqnAYxqier .navbar-nav .nav-item {
  margin: 2px;
}
.cid-tqnAYxqier .navbar-nav .nav-link {
  padding: 5px 9px;
  transition: .4s all;
}
.cid-tqnAYxqier .navbar-nav .nav-link:hover {
  transform: scale(1.1);
}
.cid-tqnAYxqier .dropdown-menu,
.cid-tqnAYxqier .navbar.opened {
  background: #fffcf5 !important;
}
.cid-tqnAYxqier .nav-item:focus,
.cid-tqnAYxqier .nav-link:focus {
  outline: none;
}
.cid-tqnAYxqier .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tqnAYxqier .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tqnAYxqier .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tqnAYxqier .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tqnAYxqier .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tqnAYxqier .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tqnAYxqier .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: none !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fffcf5;
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-tqnAYxqier .navbar.opened {
  transition: all 0.3s;
}
.cid-tqnAYxqier .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tqnAYxqier .navbar .navbar-logo img {
  width: auto;
}
.cid-tqnAYxqier .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tqnAYxqier .navbar.collapsed {
  justify-content: center;
}
.cid-tqnAYxqier .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tqnAYxqier .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tqnAYxqier .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tqnAYxqier .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tqnAYxqier .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tqnAYxqier .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-tqnAYxqier .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tqnAYxqier .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tqnAYxqier .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tqnAYxqier .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tqnAYxqier .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tqnAYxqier .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tqnAYxqier .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tqnAYxqier .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-tqnAYxqier .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tqnAYxqier .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tqnAYxqier .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tqnAYxqier .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tqnAYxqier .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tqnAYxqier .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tqnAYxqier .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tqnAYxqier .navbar.navbar-short {
  min-height: 90px;
}
.cid-tqnAYxqier .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tqnAYxqier .navbar.navbar-short .navbar-brand {
  min-height: 89px;
  padding: 0;
}
.cid-tqnAYxqier .navbar-brand {
  min-height: 89px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  width: 25%;
}
.cid-tqnAYxqier .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tqnAYxqier .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tqnAYxqier .dropdown-item.active,
.cid-tqnAYxqier .dropdown-item:active {
  background-color: transparent;
}
.cid-tqnAYxqier .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tqnAYxqier .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tqnAYxqier .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tqnAYxqier .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fffcf5;
}
.cid-tqnAYxqier .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tqnAYxqier .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tqnAYxqier ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tqnAYxqier .navbar-buttons {
  text-align: center;
}
.cid-tqnAYxqier button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  background-color: #f6efe8;
  border-radius: 50%;
}
.cid-tqnAYxqier button.navbar-toggler .hamburger span {
  position: absolute;
  right: 13px;
  width: 22px;
  height: 2px;
  background-color: #715537;
}
.cid-tqnAYxqier button.navbar-toggler .hamburger span:nth-child(1) {
  top: 17px;
  transition: all 0.2s;
}
.cid-tqnAYxqier button.navbar-toggler .hamburger span:nth-child(2) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-tqnAYxqier button.navbar-toggler .hamburger span:nth-child(3) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-tqnAYxqier button.navbar-toggler .hamburger span:nth-child(4) {
  top: 29px;
  transition: all 0.2s;
}
.cid-tqnAYxqier nav.opened .hamburger span:nth-child(1) {
  top: 17px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-tqnAYxqier nav.opened .hamburger span:nth-child(2) {
  transform: translateY(-1px) rotate(45deg);
  transition: all 0.25s;
}
.cid-tqnAYxqier nav.opened .hamburger span:nth-child(3) {
  transform: translateY(-1px) rotate(-45deg);
  transition: all 0.25s;
}
.cid-tqnAYxqier nav.opened .hamburger span:nth-child(4) {
  top: 29px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-tqnAYxqier .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tqnAYxqier a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tqnAYxqier .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-tqnAYxqier .navbar {
    height: 70px;
  }
  .cid-tqnAYxqier .navbar.opened {
    height: auto;
  }
  .cid-tqnAYxqier .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tqnAYxqier .container,
.cid-tqnAYxqier .container-fluid {
  flex-wrap: wrap;
}
.cid-tqnAYxqier .navbar-collapse {
  width: 75%;
  min-height: 89px;
}
.cid-tqnAYxqier .border-item {
  width: 100%;
  height: 1px;
  background-color: #829d86;
}
.cid-tqnAYxqier .mbr-section-btn .btn {
  width: 180px;
  min-width: auto;
  min-height: 55px;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-tqnAYxqier .navbar-brand {
    width: calc(100% - 48px) !important;
    min-height: 89px;
  }
  .cid-tqnAYxqier .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 1rem;
    order: 5;
  }
  .cid-tqnAYxqier .navbar-nav {
    width: 100%;
  }
}
.cid-tJtRMJC4Uv {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tJtRMJC4Uv .mbr-fallback-image.disabled {
  display: none;
  border-radius: 0 65px 65px 0;
}
.cid-tJtRMJC4Uv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  border-radius: 0 65px 65px 0;
  position: absolute;
  top: 0;
}
.cid-tJtRMJC4Uv .mbr-section-head {
  margin-bottom: 32px;
}
.cid-tJtRMJC4Uv .mbr-section-title {
  color: #24262b;
}
.cid-tJtRMJC4Uv .mbr-section-subtitle {
  color: #24262b;
}
.cid-tJtRMJC4Uv .cards-row {
  row-gap: 32px;
  border-radius: 0 65px 65px 0;
}
.cid-tJtRMJC4Uv .item-content {
  align-self: center;
  height: 100%;
  padding: 4rem 3rem;
  border-radius: 65px 0 0 65px;
  background: #efefef;
}
@media (max-width: 767px) {
  .cid-tJtRMJC4Uv .item-content {
    padding: 3rem 2rem;
    text-align: center;
  }
}
.cid-tJtRMJC4Uv .card-title {
  margin-bottom: 16px;
  color: #24262b;
}
.cid-tJtRMJC4Uv .card-subtitle {
  color: #24262b;
}
.cid-tJtRMJC4Uv .card-text {
  margin-top: 16px;
  color: #24262b;
  border-radius: 0 65px 65px 0;
}
.cid-tJtRMJC4Uv .mbr-section-btn {
  margin-top: 20px;
}
.cid-tJtRMJC4Uv .item-img {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: stretch;
  width: 100%;
  min-height: 400px;
  height: 100%;
  border-radius: 65px 0 0 65px;
}
.cid-tJtRMJC4Uv .item-img img {
  flex-grow: 1;
  height: 1px;
  width: 100%;
  object-fit: cover;
  border-radius: 0 65px 65px 0;
}
.cid-tJtTHBfwyP {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #715537;
}
.cid-tJtTHBfwyP .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJtTHBfwyP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tJtTHBfwyP .mbr-section-title {
  width: 100%;
  color: #61411e;
  margin-bottom: 0;
}
.cid-tJtTHBfwyP .mbr-section-title.display-4 {
  font-size: 40px;
}
@media (max-width: 767px) {
  .cid-tJtTHBfwyP .mbr-section-title.display-4 {
    font-size: 32px;
    line-height: 1.2;
  }
}
@media (max-width: 575px) {
  .cid-tJtTHBfwyP .mbr-section-title.display-4 {
    font-size: 26px;
  }
}
.cid-tJtTHBfwyP .mbr-text {
  width: 100%;
  color: #353535;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-tJtTHBfwyP .mbr-text {
    margin-top: 16px;
  }
}
.cid-tJtTHBfwyP .mbr-section-btn {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-tJtTHBfwyP .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-tJtTHBfwyP .mbr-text,
.cid-tJtTHBfwyP .mbr-section-btn {
  color: #f6efe8;
}
.cid-tqnAYKepw4 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fffcf5;
  overflow: hidden;
}
.cid-tqnAYKepw4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqnAYKepw4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqnAYKepw4 .row {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tqnAYKepw4 .row {
    flex-wrap: wrap;
  }
}
.cid-tqnAYKepw4 .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tqnAYKepw4 .text-wrap {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .cid-tqnAYKepw4 .text-wrap {
    margin-bottom: 20px;
  }
}
.cid-tqnAYKepw4 .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #f8f1ea;
  transform: translateY(40%);
}
.cid-tqnAYKepw4 .mbr-section-title {
  color: #61411e;
  text-align: center;
}
.cid-tqnAYKepw4 .mbr-section-title a {
  pointer-events: none !important;
  font-style: italic !important;
  font-weight: bold !important;
}
.cid-tqnAYKepw4 .mbr-section-subtitle {
  margin-top: 30px;
  color: #353535;
}
@media (max-width: 767px) {
  .cid-tqnAYKepw4 .mbr-section-subtitle {
    margin-top: 12px;
  }
}
.cid-tqnAYKepw4 .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tqnAYKepw4 .mbr-text {
    margin-top: 12px;
  }
}
.cid-tqnAYKepw4 .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tqnAYKepw4 .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-tqnAYKepw4 .col-img {
  width: 430px;
}
@media (max-width: 1199px) {
  .cid-tqnAYKepw4 .col-img {
    width: 350px;
  }
}
.cid-tqnAYKepw4 .img-wrap {
  position: relative;
  width: 50%;
}
.cid-tqnAYKepw4 .img-wrap .img-box {
  position: relative;
  z-index: 3;
  width: 150%;
  border-top-left-radius: 65px;
  border-top-right-radius: 65px;
  border-bottom-right-radius: 65px;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-tqnAYKepw4 .img-wrap .img-box {
    border-top-left-radius: 55px;
    border-top-right-radius: 55px;
    border-bottom-right-radius: 55px;
  }
}
.cid-tqnAYKepw4 .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-tqnAYKepw4 .img-wrap .frame-box {
  position: absolute;
  height: 240px;
}
.cid-tqnAYKepw4 .img-wrap .frame-box svg {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
}
.cid-tqnAYKepw4 .img-wrap .frame-box-1 {
  bottom: -20%;
  left: -14%;
  width: 85%;
  transform: rotate(15deg);
}
.cid-tqnAYKepw4 .img-wrap .frame-box-2 {
  bottom: -18%;
  right: -44%;
  width: 84%;
  transform: rotate(165deg);
}
@media (max-width: 991px) {
  .cid-tqnAYKepw4 .img-wrap .frame-box-2 {
    bottom: auto;
    top: -15%;
  }
}
.cid-tqnAYKepw4 .mbr-text,
.cid-tqnAYKepw4 .mbr-section-btn {
  color: #fffdfb;
}
.cid-tJu5gE2qrd {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #fffcf5;
}
.cid-tJu5gE2qrd .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJu5gE2qrd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tJu5gE2qrd .row {
  align-items: stretch;
  justify-content: center;
}
.cid-tJu5gE2qrd .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.cid-tJu5gE2qrd .row .img-item img {
  width: 100%;
  object-fit: cover;
  min-height: 160px;
  border-radius: 2rem;
}
@media (max-width: 767px) {
  .cid-tJu5gE2qrd .row .img-item img {
    min-height: 75px;
  }
}
.cid-tJucAtDiKI {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #fffcf5;
}
.cid-tJucAtDiKI .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJucAtDiKI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tJucAtDiKI .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-tJucAtDiKI .row {
    align-items: center !important;
  }
}
.cid-tJucAtDiKI .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 991px) {
  .cid-tJucAtDiKI .mbr-section-head {
    margin-bottom: 75px;
  }
}
@media (max-width: 767px) {
  .cid-tJucAtDiKI .mbr-section-head {
    margin-bottom: 65px;
  }
}
.cid-tJucAtDiKI .mbr-section-title {
  color: #829D85;
  margin-bottom: 0;
}
.cid-tJucAtDiKI .mbr-section-subtitle {
  color: #353535;
  margin-top: 20px;
}
.cid-tJucAtDiKI .text-wrap {
  width: 100%;
  padding: 36px 0;
  border-top: 1px solid #829d85;
}
@media (max-width: 991px) {
  .cid-tJucAtDiKI .text-wrap {
    padding: 30px 0;
  }
}
.cid-tJucAtDiKI .mbr-title {
  color: #987A5A;
}
.cid-tJucAtDiKI .mbr-text {
  margin-top: 12px;
  color: #353535;
}
.cid-tJucAtDiKI .list-box {
  width: 100%;
}
.cid-tJucAtDiKI .list {
  list-style: none;
  margin-top: 22px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #353535;
}
.cid-tJucAtDiKI .list-text {
  position: relative;
}
.cid-tJucAtDiKI .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-tJucAtDiKI .list-text:before {
  content: "";
  position: absolute;
  display: block;
  width: 16px;
  height: 14px;
  left: -30px;
  top: 7px;
  background-image: url("../../../assets/images/marker.svg");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}
.cid-tJucAtDiKI .mbr-section-btn {
  margin-top: 20px;
}
.cid-tJucAtDiKI .img-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  border-radius: 0 0 0 100px;
  overflow: hidden;
  border-radius: 0 0 100px 0;
}
@media (max-width: 991px) {
  .cid-tJucAtDiKI .img-box {
    border-radius: 0;
  }
}
@media (max-width: 767px) {
  .cid-tJucAtDiKI .img-box {
    border-radius: 0 0 0 15vw;
    border-radius: 0 0 15vw 0;
  }
}
.cid-tJucAtDiKI .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-tqnElwBPRR {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fffcf5;
  overflow: hidden;
}
.cid-tqnElwBPRR .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqnElwBPRR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqnElwBPRR .row {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tqnElwBPRR .row {
    flex-wrap: wrap;
  }
}
.cid-tqnElwBPRR .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 80px 0;
}
.cid-tqnElwBPRR .text-wrap:before {
  content: "";
  position: absolute;
  right: -100px;
  top: 0;
  height: 100%;
  width: 100vw;
  border-radius: 0 65px 65px 0;
  background-color: #f6efe8;
  z-index: -1;
}
@media (max-width: 1199px) {
  .cid-tqnElwBPRR .text-wrap:before {
    border-radius: 0 40px 40px 0;
  }
}
@media (max-width: 991px) {
  .cid-tqnElwBPRR .text-wrap:before {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0;
  }
}
@media (max-width: 991px) {
  .cid-tqnElwBPRR .text-wrap {
    padding: 50px 0 90px;
  }
}
@media (max-width: 767px) {
  .cid-tqnElwBPRR .text-wrap {
    margin-bottom: 20px;
  }
}
.cid-tqnElwBPRR .mbr-section-title {
  color: #987a5a;
  text-align: right;
}
.cid-tqnElwBPRR .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tqnElwBPRR .mbr-text {
    margin-top: 12px;
  }
}
.cid-tqnElwBPRR .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tqnElwBPRR .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-tqnElwBPRR .col-img {
  width: 390px;
}
@media (max-width: 1199px) {
  .cid-tqnElwBPRR .col-img {
    width: 330px;
  }
}
@media (max-width: 991px) {
  .cid-tqnElwBPRR .col-img {
    width: 250px;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-tqnElwBPRR .col-img {
    margin-bottom: -50px;
  }
}
.cid-tqnElwBPRR .img-wrap {
  position: relative;
  width: 100%;
}
.cid-tqnElwBPRR .img-wrap .img-box {
  position: relative;
  z-index: 3;
  width: 100%;
  border-radius: 0 65px 65px 65px;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-tqnElwBPRR .img-wrap .img-box {
    border-radius: 0 40px 40px 40px;
  }
}
@media (max-width: 991px) {
  .cid-tqnElwBPRR .img-wrap .img-box {
    transform: translateY(-50px);
    border-radius: 0 30px 30px 30px;
  }
}
.cid-tqnElwBPRR .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-tqnElwBPRR .mbr-text,
.cid-tqnElwBPRR .mbr-section-btn {
  text-align: right;
}
.cid-tqnCncJetc {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fffcf5;
}
.cid-tqnCncJetc .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqnCncJetc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqnCncJetc .text-wrap {
  width: 100%;
}
.cid-tqnCncJetc .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 767px) {
  .cid-tqnCncJetc .mbr-section-head {
    margin-bottom: 60px;
  }
}
.cid-tqnCncJetc .mbr-section-title {
  color: #829D85;
  margin-bottom: 0;
}
.cid-tqnCncJetc .mbr-text {
  color: #353535;
  margin-top: 20px;
}
.cid-tqnCncJetc .item-row {
  row-gap: 40px;
  margin-left: -20px;
  margin-right: -20px;
}
.cid-tqnCncJetc .item-row > [class*="col"] {
  padding-left: 20px;
  padding-right: 20px;
}
.cid-tqnCncJetc .item-wrapper {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  height: 100%;
  background-color: #fffcf5;
  overflow: hidden;
  border: 1px solid rgba(68, 106, 73, 0.8);
  border-radius: 45px;
}
.cid-tqnCncJetc .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.cid-tqnCncJetc .item-img img {
  aspect-ratio: 1.42857143;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-tqnCncJetc .item-title-wrap {
  padding: 45px 26px;
  border-radius: 0 0 45px 45px;
  border: 1px solid rgba(68, 106, 73, 0.8);
  background-color: rgba(68, 106, 73, 0.8);
}
.cid-tqnCncJetc .item-title {
  width: 100%;
  margin: 0;
  color: #f6efe8;
}
.cid-tqnCncJetc .item-text-wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  flex-grow: 1;
  padding: 26px;
}
.cid-tqnCncJetc .item-text {
  color: #353535;
  margin: 0;
}
.cid-tqnCncJetc .mbr-section-btn {
  margin-top: 10px;
}
.cid-tqnCncJetc .mbr-section-btn .btn {
  width: 180px;
  min-width: auto;
  min-height: 55px;
  max-width: 100%;
}
.cid-tJu0yVBKOD {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #fffcf5;
}
.cid-tJu0yVBKOD .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJu0yVBKOD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tJu0yVBKOD .text-wrap {
  width: 100%;
}
.cid-tJu0yVBKOD .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 767px) {
  .cid-tJu0yVBKOD .mbr-section-head {
    margin-bottom: 60px;
  }
}
.cid-tJu0yVBKOD .mbr-section-title {
  color: #829D85;
  margin-bottom: 0;
}
.cid-tJu0yVBKOD .mbr-text {
  color: #353535;
  margin-top: 20px;
}
.cid-tJu0yVBKOD .item-row {
  row-gap: 40px;
  margin-left: -20px;
  margin-right: -20px;
}
.cid-tJu0yVBKOD .item-row > [class*="col"] {
  padding-left: 20px;
  padding-right: 20px;
}
.cid-tJu0yVBKOD .item-wrapper {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  height: 100%;
  background-color: #fffcf5;
  overflow: hidden;
  border: 1px solid rgba(130, 157, 133, 0.8);
  border-radius: 45px;
}
.cid-tJu0yVBKOD .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.cid-tJu0yVBKOD .item-img img {
  aspect-ratio: 1.42857143;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-tJu0yVBKOD .item-title-wrap {
  padding: 45px 26px;
  border-radius: 0 0 45px 45px;
  border: 1px solid rgba(130, 157, 133, 0.8);
  background-color: rgba(68, 106, 73, 0.8);
}
.cid-tJu0yVBKOD .item-title {
  width: 100%;
  margin: 0;
  color: #f6efe8;
}
.cid-tJu0yVBKOD .item-text-wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  flex-grow: 1;
  padding: 26px;
}
.cid-tJu0yVBKOD .item-text {
  color: #353535;
  margin: 0;
}
.cid-tJu0yVBKOD .mbr-section-btn {
  margin-top: 10px;
}
.cid-tJu0yVBKOD .mbr-section-btn .btn {
  width: 180px;
  min-width: auto;
  min-height: 55px;
  max-width: 100%;
}
.cid-tJuEeTyYVh {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/mbr-1920x1440.jpg");
}
.cid-tJuEeTyYVh .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJuEeTyYVh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tJuEeTyYVh .text-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  min-height: 280px;
  padding: 70px 50px;
  background-image: url("../../../assets/images/blobs-3.svg");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}
.cid-tJuEeTyYVh .mbr-section-title {
  width: 100%;
  color: #353535;
  margin-bottom: 0;
}
.cid-tJuEeTyYVh .mbr-section-title.display-4 {
  font-size: 48px;
}
@media (max-width: 767px) {
  .cid-tJuEeTyYVh .mbr-section-title.display-4 {
    font-size: 36px;
  }
}
@media (max-width: 575px) {
  .cid-tJuEeTyYVh .mbr-section-title.display-4 {
    font-size: 28px;
  }
}
.cid-tJuEeTyYVh .mbr-text {
  width: 100%;
  color: #353535;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-tJuEeTyYVh .mbr-text {
    margin-top: 16px;
  }
}
.cid-tJuEeTyYVh .mbr-section-btn {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-tJuEeTyYVh .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-tJuzOhqWvY {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background: #fffcf5;
}
.cid-tJuzOhqWvY .card-box {
  max-width: 505px;
  margin: 0 auto;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tJuzOhqWvY .card-box {
    max-width: 100%;
    margin-bottom: 70px;
  }
}
.cid-tJuzOhqWvY .card-title {
  color: #45494E;
}
.cid-tJuzOhqWvY .mbr-text {
  color: #45494E;
  margin-top: 10px;
}
@media (max-width: 991px) {
  .cid-tJuzOhqWvY .mbr-text {
    margin-top: 14px;
  }
}
.cid-tJuzOhqWvY .mbr-section-btn {
  margin-top: 30px;
}
.cid-tJuzOhqWvY .map-wrap {
  position: relative;
  padding-bottom: 110%;
  width: 100%;
}
.cid-tJuzOhqWvY .map-position-container {
  position: absolute;
  width: 100%;
  height: 100%;
}
.cid-tJuzOhqWvY .google-map {
  height: 100%;
  width: 100%;
  position: relative;
}
.cid-tJuzOhqWvY .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tJuzOhqWvY .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-tJuzOhqWvY .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tJuzOhqWvY .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tJuMpDDDdV {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #829d85;
}
.cid-tJuMpDDDdV .mbr-text {
  color: #FFFCF5;
}
.cid-tQvELbA2JV {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 90px;
}
.cid-tQvELbA2JV nav.navbar {
  position: fixed;
}
.cid-tQvELbA2JV .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-tQvELbA2JV .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tQvELbA2JV .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tQvELbA2JV .dropdown-item:hover,
.cid-tQvELbA2JV .dropdown-item:focus {
  background: #829d85 !important;
  color: white !important;
}
.cid-tQvELbA2JV .dropdown-item:hover span {
  color: white;
}
.cid-tQvELbA2JV .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tQvELbA2JV .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tQvELbA2JV .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tQvELbA2JV .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tQvELbA2JV .nav-link {
  position: relative;
}
.cid-tQvELbA2JV .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tQvELbA2JV .container {
    flex-wrap: nowrap;
  }
}
.cid-tQvELbA2JV .iconfont-wrapper {
  color: #353535 !important;
  font-size: 18px;
  padding-right: 0;
}
.cid-tQvELbA2JV .iconfont-wrapper .mbr-iconfont {
  transition: .4s all;
}
.cid-tQvELbA2JV .iconfont-wrapper .mbr-iconfont:hover {
  color: #829d85;
}
.cid-tQvELbA2JV .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 66.66666667%;
  margin-right: auto;
  min-height: 89px;
}
.cid-tQvELbA2JV .navbar-nav .nav-item {
  margin: 2px;
}
.cid-tQvELbA2JV .navbar-nav .nav-link {
  padding: 5px 9px;
  transition: .4s all;
}
.cid-tQvELbA2JV .navbar-nav .nav-link:hover {
  transform: scale(1.1);
}
.cid-tQvELbA2JV .dropdown-menu,
.cid-tQvELbA2JV .navbar.opened {
  background: #fffcf5 !important;
}
.cid-tQvELbA2JV .nav-item:focus,
.cid-tQvELbA2JV .nav-link:focus {
  outline: none;
}
.cid-tQvELbA2JV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tQvELbA2JV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tQvELbA2JV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tQvELbA2JV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tQvELbA2JV .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tQvELbA2JV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tQvELbA2JV .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: none !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fffcf5;
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-tQvELbA2JV .navbar.opened {
  transition: all 0.3s;
}
.cid-tQvELbA2JV .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tQvELbA2JV .navbar .navbar-logo img {
  width: auto;
}
.cid-tQvELbA2JV .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tQvELbA2JV .navbar.collapsed {
  justify-content: center;
}
.cid-tQvELbA2JV .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tQvELbA2JV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tQvELbA2JV .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tQvELbA2JV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tQvELbA2JV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tQvELbA2JV .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-tQvELbA2JV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tQvELbA2JV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tQvELbA2JV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tQvELbA2JV .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tQvELbA2JV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tQvELbA2JV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tQvELbA2JV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tQvELbA2JV .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-tQvELbA2JV .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tQvELbA2JV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tQvELbA2JV .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tQvELbA2JV .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tQvELbA2JV .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tQvELbA2JV .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tQvELbA2JV .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tQvELbA2JV .navbar.navbar-short {
  min-height: 90px;
}
.cid-tQvELbA2JV .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tQvELbA2JV .navbar.navbar-short .navbar-brand {
  min-height: 89px;
  padding: 0;
}
.cid-tQvELbA2JV .navbar-brand {
  min-height: 89px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  width: 25%;
}
.cid-tQvELbA2JV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tQvELbA2JV .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tQvELbA2JV .dropdown-item.active,
.cid-tQvELbA2JV .dropdown-item:active {
  background-color: transparent;
}
.cid-tQvELbA2JV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tQvELbA2JV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tQvELbA2JV .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tQvELbA2JV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fffcf5;
}
.cid-tQvELbA2JV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tQvELbA2JV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tQvELbA2JV ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tQvELbA2JV .navbar-buttons {
  text-align: center;
}
.cid-tQvELbA2JV button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  background-color: #f6efe8;
  border-radius: 50%;
}
.cid-tQvELbA2JV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 13px;
  width: 22px;
  height: 2px;
  background-color: #715537;
}
.cid-tQvELbA2JV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 17px;
  transition: all 0.2s;
}
.cid-tQvELbA2JV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-tQvELbA2JV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-tQvELbA2JV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 29px;
  transition: all 0.2s;
}
.cid-tQvELbA2JV nav.opened .hamburger span:nth-child(1) {
  top: 17px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-tQvELbA2JV nav.opened .hamburger span:nth-child(2) {
  transform: translateY(-1px) rotate(45deg);
  transition: all 0.25s;
}
.cid-tQvELbA2JV nav.opened .hamburger span:nth-child(3) {
  transform: translateY(-1px) rotate(-45deg);
  transition: all 0.25s;
}
.cid-tQvELbA2JV nav.opened .hamburger span:nth-child(4) {
  top: 29px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-tQvELbA2JV .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tQvELbA2JV a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tQvELbA2JV .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-tQvELbA2JV .navbar {
    height: 70px;
  }
  .cid-tQvELbA2JV .navbar.opened {
    height: auto;
  }
  .cid-tQvELbA2JV .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tQvELbA2JV .container,
.cid-tQvELbA2JV .container-fluid {
  flex-wrap: wrap;
}
.cid-tQvELbA2JV .navbar-collapse {
  width: 75%;
  min-height: 89px;
}
.cid-tQvELbA2JV .border-item {
  width: 100%;
  height: 1px;
  background-color: #829d86;
}
.cid-tQvELbA2JV .mbr-section-btn .btn {
  width: 180px;
  min-width: auto;
  min-height: 55px;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-tQvELbA2JV .navbar-brand {
    width: calc(100% - 48px) !important;
    min-height: 89px;
  }
  .cid-tQvELbA2JV .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 1rem;
    order: 5;
  }
  .cid-tQvELbA2JV .navbar-nav {
    width: 100%;
  }
}
.cid-tQvELchySU {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fffcf5;
  overflow: hidden;
}
.cid-tQvELchySU .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQvELchySU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQvELchySU .row {
  flex-wrap: nowrap;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-tQvELchySU .row {
    flex-wrap: wrap;
  }
}
.cid-tQvELchySU .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 15px 0;
}
.cid-tQvELchySU .text-wrap:before {
  content: "";
  position: absolute;
  right: -100px;
  top: 0;
  height: 100%;
  width: 100vw;
  border-radius: 0 65px 65px 0;
  background-color: #4d8ab8;
  z-index: -1;
  border-radius: 65px 0 0 65px;
  right: auto;
  left: -100px;
}
@media (max-width: 1199px) {
  .cid-tQvELchySU .text-wrap:before {
    border-radius: 0 40px 40px 0;
    border-radius: 40px 0 0 40px;
  }
}
@media (max-width: 991px) {
  .cid-tQvELchySU .text-wrap:before {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0;
  }
}
@media (max-width: 991px) {
  .cid-tQvELchySU .text-wrap {
    padding: 20px 0 50px;
  }
}
@media (max-width: 767px) {
  .cid-tQvELchySU .text-wrap {
    margin-bottom: -5px;
  }
}
.cid-tQvELchySU .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tQvELchySU .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tQvELchySU .mbr-text {
    margin-top: 12px;
  }
}
.cid-tQvELchySU .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tQvELchySU .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-tQvELchySU .col-img {
  width: 390px;
}
@media (max-width: 1199px) {
  .cid-tQvELchySU .col-img {
    width: 330px;
  }
}
@media (max-width: 991px) {
  .cid-tQvELchySU .col-img {
    width: 250px;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-tQvELchySU .col-img {
    margin-bottom: -50px;
  }
}
.cid-tQvELchySU .img-wrap {
  position: relative;
  width: 100%;
}
.cid-tQvELchySU .img-wrap .img-box {
  position: relative;
  z-index: 3;
  width: 150%;
  border-radius: 65px 65px 65px 0;
  overflow: hidden;
  border-radius: 65px 0 65px 65px;
}
@media (max-width: 1199px) {
  .cid-tQvELchySU .img-wrap .img-box {
    border-radius: 0 40px 40px 40px;
    border-radius: 40px 0 40px 40px;
  }
}
@media (max-width: 991px) {
  .cid-tQvELchySU .img-wrap .img-box {
    transform: translateY(-15px);
    border-radius: 0 30px 30px 30px;
    width: 120%;
    border-radius: 30px 0 30px 30px;
  }
}
.cid-tQvELchySU .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-tQvELchySU .mbr-text,
.cid-tQvELchySU .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-tQvELd1yqJ {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #4d8ab8;
}
.cid-tQvELd1yqJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQvELd1yqJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQvELd1yqJ .mbr-section-title {
  width: 100%;
  color: #61411e;
  margin-bottom: 0;
}
.cid-tQvELd1yqJ .mbr-section-title.display-4 {
  font-size: 40px;
}
@media (max-width: 767px) {
  .cid-tQvELd1yqJ .mbr-section-title.display-4 {
    font-size: 32px;
    line-height: 1.2;
  }
}
@media (max-width: 575px) {
  .cid-tQvELd1yqJ .mbr-section-title.display-4 {
    font-size: 26px;
  }
}
.cid-tQvELd1yqJ .mbr-text {
  width: 100%;
  color: #353535;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-tQvELd1yqJ .mbr-text {
    margin-top: 16px;
  }
}
.cid-tQvELd1yqJ .mbr-section-btn {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-tQvELd1yqJ .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-tQvELd1yqJ .mbr-text,
.cid-tQvELd1yqJ .mbr-section-btn {
  color: #f6efe8;
}
.cid-tQvELdk45L {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fffcf5;
}
.cid-tQvELdk45L .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQvELdk45L .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQvELdk45L .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 991px) {
  .cid-tQvELdk45L .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tQvELdk45L .mbr-section-head {
    margin-bottom: 50px;
  }
}
.cid-tQvELdk45L .mbr-section-title {
  color: #b8a54d;
  margin-bottom: 0;
}
.cid-tQvELdk45L .mbr-section-subtitle {
  color: #353535;
  margin-top: 20px;
}
@media (max-width: 991px) {
  .cid-tQvELdk45L .col-img {
    display: none;
  }
}
.cid-tQvELdk45L .img-wrap {
  width: 100%;
}
.cid-tQvELdk45L .img-wrap .img-box {
  width: 100%;
  border-radius: 65px 65px 0 65px;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-tQvELdk45L .img-wrap .img-box {
    border-radius: 40px 40px 0 40px;
  }
}
.cid-tQvELdk45L .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-tQvELdk45L .mbr-iconfont {
  position: relative;
  font-size: 24px !important;
  font-family: 'Moririse2' !important;
  color: #987a5a;
  margin-left: 1rem;
  padding: 10px;
  transition: .3s all;
}
.cid-tQvELdk45L .mbr-iconfont:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(195, 195, 195, 0.9);
  opacity: 0;
  transition: .3s all;
}
.cid-tQvELdk45L .mbr-iconfont:before {
  position: relative;
  z-index: 2;
}
.cid-tQvELdk45L .panel-group {
  border: none;
  border-top: 1px solid #829d85;
  margin-top: 10px;
}
@media (max-width: 991px) {
  .cid-tQvELdk45L .panel-group {
    margin-top: 0;
  }
}
.cid-tQvELdk45L .card {
  border-bottom: 1px solid #829d85;
  border-radius: 0;
}
.cid-tQvELdk45L .card-header {
  padding: 20px 0;
  border: none;
  background-color: transparent;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .cid-tQvELdk45L .card-header {
    padding: 8px 0;
  }
}
.cid-tQvELdk45L .card-header:hover .mbr-iconfont {
  color: #829d85;
}
.cid-tQvELdk45L .card-header:hover .mbr-iconfont:after {
  opacity: 1;
}
.cid-tQvELdk45L .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #987A5A;
}
.cid-tQvELdk45L .panel-title[aria-expanded="true"] .mbr-iconfont {
  transform: rotate(45deg);
}
.cid-tQvELdk45L .panel-title-edit {
  color: #4d8ab8;
}
.cid-tQvELdk45L .panel-body {
  padding: 0 0 40px;
}
@media (max-width: 767px) {
  .cid-tQvELdk45L .panel-body {
    padding: 0 0 24px;
  }
}
.cid-tQvELdk45L .panel-text {
  color: #353535;
  margin: 0;
  text-align: left;
}
.cid-tQvELdKGmM {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fffcf5;
}
.cid-tQvELdKGmM .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQvELdKGmM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQvELdKGmM .text-wrap {
  width: 100%;
}
.cid-tQvELdKGmM .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 767px) {
  .cid-tQvELdKGmM .mbr-section-head {
    margin-bottom: 60px;
  }
}
.cid-tQvELdKGmM .mbr-section-title {
  color: #4d8ab8;
  margin-bottom: 0;
}
.cid-tQvELdKGmM .mbr-text {
  color: #353535;
  margin-top: 20px;
}
.cid-tQvELdKGmM .item-row {
  row-gap: 40px;
  margin-left: -20px;
  margin-right: -20px;
}
.cid-tQvELdKGmM .item-row > [class*="col"] {
  padding-left: 20px;
  padding-right: 20px;
}
.cid-tQvELdKGmM .item-wrapper {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  height: 100%;
  background-color: #fffcf5;
  overflow: hidden;
  border: 1px solid rgba(26, 145, 185, 0.8);
  border-radius: 45px;
}
.cid-tQvELdKGmM .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.cid-tQvELdKGmM .item-img img {
  aspect-ratio: 2;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-tQvELdKGmM .item-title-wrap {
  padding: 45px 26px;
  border-radius: 0 0 45px 45px;
  border: 1px solid rgba(26, 145, 185, 0.8);
  background-color: rgba(77, 138, 184, 0.8);
}
.cid-tQvELdKGmM .item-title {
  width: 100%;
  margin: 0;
  color: #f6efe8;
}
.cid-tQvELdKGmM .item-text-wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  flex-grow: 1;
  padding: 26px;
}
.cid-tQvELdKGmM .item-text {
  color: #353535;
  margin: 0;
}
.cid-tQvELdKGmM .mbr-section-btn {
  margin-top: 10px;
}
.cid-tQvELdKGmM .mbr-section-btn .btn {
  width: 180px;
  min-width: auto;
  min-height: 55px;
  max-width: 100%;
}
.cid-tQvELem618 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #fffcf5;
}
.cid-tQvELem618 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQvELem618 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQvELem618 .text-wrap {
  width: 100%;
}
.cid-tQvELem618 .mbr-title {
  margin-bottom: 0;
  color: #4d8ab8;
  text-align: center;
}
.cid-tQvELem618 .mbr-text {
  padding-top: 16px;
  color: #353535;
}
.cid-tQvELem618 .list-wrap {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tQvELem618 .list-wrap {
    margin-top: 24px;
  }
}
.cid-tQvELem618 .list-box {
  width: 100%;
}
.cid-tQvELem618 .list {
  list-style: none;
  margin-top: 22px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #353535;
}
.cid-tQvELem618 .list-text {
  position: relative;
}
.cid-tQvELem618 .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-tQvELem618 .list-text:before {
  content: "";
  position: absolute;
  display: block;
  width: 16px;
  height: 14px;
  left: -30px;
  top: 7px;
  background-image: url("../../../assets/images/marker.svg");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}
#custom-html-1h {
  /* Type valid CSS here */
}
#custom-html-1h div {
  padding: 2px 2px;
  color: #777;
  text-align: center;
}
#custom-html-1h p {
  font-size: 6px;
  color: #777;
}
#custom-html-1h .divformad {
  position: relative;
  padding-bottom: 56.5%;
  overflow: hidden;
  width: 100%;
  margin-right: 2rem;
}
@media (max-width: 1800px) {
  #custom-html-1h .divformad {
    padding-bottom: 24%;
  }
}
@media (max-width: 1440px) {
  #custom-html-1h .divformad {
    padding-bottom: 24%;
  }
}
@media (max-width: 1280px) {
  #custom-html-1h .divformad {
    padding-bottom: 26%;
  }
}
@media (max-width: 1200px) {
  #custom-html-1h .divformad {
    padding-bottom: 20%;
  }
}
@media (max-width: 1024px) {
  #custom-html-1h .divformad {
    padding-bottom: 20%;
  }
}
@media (max-width: 991px) {
  #custom-html-1h .divformad {
    padding-bottom: 20%;
  }
}
@media (max-width: 800px) {
  #custom-html-1h .divformad {
    padding-bottom: 20%;
  }
}
@media (max-width: 767px) {
  #custom-html-1h .divformad {
    padding-bottom: 100%;
  }
}
@media (max-width: 768px) {
  #custom-html-1h .divformad {
    padding-bottom: 100%;
  }
}
@media (max-width: 600px) {
  #custom-html-1h .divformad {
    padding-bottom: 100%;
  }
}
@media (max-width: 480px) {
  #custom-html-1h .divformad {
    padding-bottom: 100%;
  }
}
@media (max-width: 468px) {
  #custom-html-1h .divformad {
    padding-bottom: 100%;
  }
}
@media (max-width: 467px) {
  #custom-html-1h .divformad {
    padding-bottom: 100%;
  }
}
@media (max-width: 414px) {
  #custom-html-1h .divformad {
    padding-bottom: 100%;
  }
}
@media (max-width: 384px) {
  #custom-html-1h .divformad {
    padding-bottom: 100%;
  }
}
@media (max-width: 320px) {
  #custom-html-1h .divformad {
    padding-bottom: 100%;
  }
}
@media (max-width: 240px) {
  #custom-html-1h .divformad {
    padding-bottom: 100%;
  }
}
@media (max-width: 360px) {
  #custom-html-1h .divformad {
    padding-bottom: 100%;
  }
}
@media (max-width: 540px) {
  #custom-html-1h .divformad {
    padding-bottom: 100%;
  }
}
@media (max-width: 640px) {
  #custom-html-1h .divformad {
    padding-bottom: 100%;
  }
}
@media (max-width: 280px) {
  #custom-html-1h .divformad {
    padding-bottom: 100%;
  }
}
@media (max-width: 375px) {
  #custom-html-1h .divformad {
    padding-bottom: 100%;
  }
}
#custom-html-1h .formad {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.cid-tQvELeYP0b {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fffcf5;
  overflow: hidden;
}
.cid-tQvELeYP0b .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQvELeYP0b .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQvELeYP0b .row {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tQvELeYP0b .row {
    flex-wrap: wrap;
  }
}
.cid-tQvELeYP0b .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tQvELeYP0b .text-wrap {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .cid-tQvELeYP0b .text-wrap {
    margin-bottom: 20px;
  }
}
.cid-tQvELeYP0b .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #f8f1ea;
  transform: translateY(40%);
}
.cid-tQvELeYP0b .mbr-section-title {
  color: #61411e;
  text-align: center;
}
.cid-tQvELeYP0b .mbr-section-title a {
  pointer-events: none !important;
  font-style: italic !important;
  font-weight: bold !important;
}
.cid-tQvELeYP0b .mbr-section-subtitle {
  margin-top: 30px;
  color: #353535;
}
@media (max-width: 767px) {
  .cid-tQvELeYP0b .mbr-section-subtitle {
    margin-top: 12px;
  }
}
.cid-tQvELeYP0b .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tQvELeYP0b .mbr-text {
    margin-top: 12px;
  }
}
.cid-tQvELeYP0b .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tQvELeYP0b .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-tQvELeYP0b .col-img {
  width: 430px;
}
@media (max-width: 1199px) {
  .cid-tQvELeYP0b .col-img {
    width: 350px;
  }
}
.cid-tQvELeYP0b .img-wrap {
  position: relative;
  width: 50%;
}
.cid-tQvELeYP0b .img-wrap .img-box {
  position: relative;
  z-index: 3;
  width: 150%;
  border-top-left-radius: 65px;
  border-top-right-radius: 65px;
  border-bottom-right-radius: 65px;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-tQvELeYP0b .img-wrap .img-box {
    border-top-left-radius: 55px;
    border-top-right-radius: 55px;
    border-bottom-right-radius: 55px;
  }
}
.cid-tQvELeYP0b .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-tQvELeYP0b .img-wrap .frame-box {
  position: absolute;
  height: 240px;
}
.cid-tQvELeYP0b .img-wrap .frame-box svg {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
}
.cid-tQvELeYP0b .img-wrap .frame-box-1 {
  bottom: -20%;
  left: -14%;
  width: 85%;
  transform: rotate(15deg);
}
.cid-tQvELeYP0b .img-wrap .frame-box-2 {
  bottom: -18%;
  right: -44%;
  width: 84%;
  transform: rotate(165deg);
}
@media (max-width: 991px) {
  .cid-tQvELeYP0b .img-wrap .frame-box-2 {
    bottom: auto;
    top: -15%;
  }
}
.cid-tQvELeYP0b .mbr-text,
.cid-tQvELeYP0b .mbr-section-btn {
  color: #fffdfb;
}
.cid-tQvELfwM3M {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #fffcf5;
}
.cid-tQvELfwM3M .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQvELfwM3M .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQvELfwM3M .row {
  align-items: stretch;
  justify-content: center;
}
.cid-tQvELfwM3M .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.cid-tQvELfwM3M .row .img-item img {
  width: 100%;
  object-fit: cover;
  min-height: 160px;
  border-radius: 2rem;
}
@media (max-width: 767px) {
  .cid-tQvELfwM3M .row .img-item img {
    min-height: 75px;
  }
}
.cid-tQvELfWug6 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/mbr-1920x1440.jpg");
}
.cid-tQvELfWug6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQvELfWug6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQvELfWug6 .text-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  min-height: 280px;
  padding: 70px 50px;
  background-image: url("../../../assets/images/blobs-3.svg");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}
.cid-tQvELfWug6 .mbr-section-title {
  width: 100%;
  color: #353535;
  margin-bottom: 0;
}
.cid-tQvELfWug6 .mbr-section-title.display-4 {
  font-size: 48px;
}
@media (max-width: 767px) {
  .cid-tQvELfWug6 .mbr-section-title.display-4 {
    font-size: 36px;
  }
}
@media (max-width: 575px) {
  .cid-tQvELfWug6 .mbr-section-title.display-4 {
    font-size: 28px;
  }
}
.cid-tQvELfWug6 .mbr-text {
  width: 100%;
  color: #353535;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-tQvELfWug6 .mbr-text {
    margin-top: 16px;
  }
}
.cid-tQvELfWug6 .mbr-section-btn {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-tQvELfWug6 .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-tQvELgiVWD {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background: #fffcf5;
}
.cid-tQvELgiVWD .card-box {
  max-width: 505px;
  margin: 0 auto;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tQvELgiVWD .card-box {
    max-width: 100%;
    margin-bottom: 70px;
  }
}
.cid-tQvELgiVWD .card-title {
  color: #45494E;
}
.cid-tQvELgiVWD .mbr-text {
  color: #45494E;
  margin-top: 10px;
}
@media (max-width: 991px) {
  .cid-tQvELgiVWD .mbr-text {
    margin-top: 14px;
  }
}
.cid-tQvELgiVWD .mbr-section-btn {
  margin-top: 30px;
}
.cid-tQvELgiVWD .map-wrap {
  position: relative;
  padding-bottom: 110%;
  width: 100%;
}
.cid-tQvELgiVWD .map-position-container {
  position: absolute;
  width: 100%;
  height: 100%;
}
.cid-tQvELgiVWD .google-map {
  height: 100%;
  width: 100%;
  position: relative;
}
.cid-tQvELgiVWD .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tQvELgiVWD .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-tQvELgiVWD .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tQvELgiVWD .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tQvELgJhR6 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #829d85;
}
.cid-tQvELgJhR6 .mbr-text {
  color: #FFFCF5;
}
.cid-tJQEefJp6z {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 90px;
}
.cid-tJQEefJp6z nav.navbar {
  position: fixed;
}
.cid-tJQEefJp6z .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-tJQEefJp6z .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tJQEefJp6z .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tJQEefJp6z .dropdown-item:hover,
.cid-tJQEefJp6z .dropdown-item:focus {
  background: #829d85 !important;
  color: white !important;
}
.cid-tJQEefJp6z .dropdown-item:hover span {
  color: white;
}
.cid-tJQEefJp6z .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tJQEefJp6z .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tJQEefJp6z .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tJQEefJp6z .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tJQEefJp6z .nav-link {
  position: relative;
}
.cid-tJQEefJp6z .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tJQEefJp6z .container {
    flex-wrap: nowrap;
  }
}
.cid-tJQEefJp6z .iconfont-wrapper {
  color: #353535 !important;
  font-size: 18px;
  padding-right: 0;
}
.cid-tJQEefJp6z .iconfont-wrapper .mbr-iconfont {
  transition: .4s all;
}
.cid-tJQEefJp6z .iconfont-wrapper .mbr-iconfont:hover {
  color: #829d85;
}
.cid-tJQEefJp6z .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 66.66666667%;
  margin-right: auto;
  min-height: 89px;
}
.cid-tJQEefJp6z .navbar-nav .nav-item {
  margin: 2px;
}
.cid-tJQEefJp6z .navbar-nav .nav-link {
  padding: 5px 9px;
  transition: .4s all;
}
.cid-tJQEefJp6z .navbar-nav .nav-link:hover {
  transform: scale(1.1);
}
.cid-tJQEefJp6z .dropdown-menu,
.cid-tJQEefJp6z .navbar.opened {
  background: #fffcf5 !important;
}
.cid-tJQEefJp6z .nav-item:focus,
.cid-tJQEefJp6z .nav-link:focus {
  outline: none;
}
.cid-tJQEefJp6z .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tJQEefJp6z .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tJQEefJp6z .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tJQEefJp6z .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tJQEefJp6z .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tJQEefJp6z .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tJQEefJp6z .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: none !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fffcf5;
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-tJQEefJp6z .navbar.opened {
  transition: all 0.3s;
}
.cid-tJQEefJp6z .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tJQEefJp6z .navbar .navbar-logo img {
  width: auto;
}
.cid-tJQEefJp6z .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tJQEefJp6z .navbar.collapsed {
  justify-content: center;
}
.cid-tJQEefJp6z .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tJQEefJp6z .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tJQEefJp6z .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tJQEefJp6z .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tJQEefJp6z .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tJQEefJp6z .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-tJQEefJp6z .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tJQEefJp6z .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tJQEefJp6z .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tJQEefJp6z .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tJQEefJp6z .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tJQEefJp6z .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tJQEefJp6z .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tJQEefJp6z .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-tJQEefJp6z .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tJQEefJp6z .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tJQEefJp6z .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tJQEefJp6z .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tJQEefJp6z .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tJQEefJp6z .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tJQEefJp6z .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tJQEefJp6z .navbar.navbar-short {
  min-height: 90px;
}
.cid-tJQEefJp6z .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tJQEefJp6z .navbar.navbar-short .navbar-brand {
  min-height: 89px;
  padding: 0;
}
.cid-tJQEefJp6z .navbar-brand {
  min-height: 89px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  width: 25%;
}
.cid-tJQEefJp6z .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tJQEefJp6z .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tJQEefJp6z .dropdown-item.active,
.cid-tJQEefJp6z .dropdown-item:active {
  background-color: transparent;
}
.cid-tJQEefJp6z .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tJQEefJp6z .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tJQEefJp6z .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tJQEefJp6z .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fffcf5;
}
.cid-tJQEefJp6z .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tJQEefJp6z .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tJQEefJp6z ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tJQEefJp6z .navbar-buttons {
  text-align: center;
}
.cid-tJQEefJp6z button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  background-color: #f6efe8;
  border-radius: 50%;
}
.cid-tJQEefJp6z button.navbar-toggler .hamburger span {
  position: absolute;
  right: 13px;
  width: 22px;
  height: 2px;
  background-color: #715537;
}
.cid-tJQEefJp6z button.navbar-toggler .hamburger span:nth-child(1) {
  top: 17px;
  transition: all 0.2s;
}
.cid-tJQEefJp6z button.navbar-toggler .hamburger span:nth-child(2) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-tJQEefJp6z button.navbar-toggler .hamburger span:nth-child(3) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-tJQEefJp6z button.navbar-toggler .hamburger span:nth-child(4) {
  top: 29px;
  transition: all 0.2s;
}
.cid-tJQEefJp6z nav.opened .hamburger span:nth-child(1) {
  top: 17px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-tJQEefJp6z nav.opened .hamburger span:nth-child(2) {
  transform: translateY(-1px) rotate(45deg);
  transition: all 0.25s;
}
.cid-tJQEefJp6z nav.opened .hamburger span:nth-child(3) {
  transform: translateY(-1px) rotate(-45deg);
  transition: all 0.25s;
}
.cid-tJQEefJp6z nav.opened .hamburger span:nth-child(4) {
  top: 29px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-tJQEefJp6z .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tJQEefJp6z a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tJQEefJp6z .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-tJQEefJp6z .navbar {
    height: 70px;
  }
  .cid-tJQEefJp6z .navbar.opened {
    height: auto;
  }
  .cid-tJQEefJp6z .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tJQEefJp6z .container,
.cid-tJQEefJp6z .container-fluid {
  flex-wrap: wrap;
}
.cid-tJQEefJp6z .navbar-collapse {
  width: 75%;
  min-height: 89px;
}
.cid-tJQEefJp6z .border-item {
  width: 100%;
  height: 1px;
  background-color: #829d86;
}
.cid-tJQEefJp6z .mbr-section-btn .btn {
  width: 180px;
  min-width: auto;
  min-height: 55px;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-tJQEefJp6z .navbar-brand {
    width: calc(100% - 48px) !important;
    min-height: 89px;
  }
  .cid-tJQEefJp6z .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 1rem;
    order: 5;
  }
  .cid-tJQEefJp6z .navbar-nav {
    width: 100%;
  }
}
.cid-tJQEega2OS {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fffcf5;
  overflow: hidden;
}
.cid-tJQEega2OS .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJQEega2OS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tJQEega2OS .row {
  flex-wrap: nowrap;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-tJQEega2OS .row {
    flex-wrap: wrap;
  }
}
.cid-tJQEega2OS .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 15px 0;
}
.cid-tJQEega2OS .text-wrap:before {
  content: "";
  position: absolute;
  right: -100px;
  top: 0;
  height: 100%;
  width: 100vw;
  border-radius: 0 65px 65px 0;
  background-color: #4d8ab8;
  z-index: -1;
  border-radius: 65px 0 0 65px;
  right: auto;
  left: -100px;
}
@media (max-width: 1199px) {
  .cid-tJQEega2OS .text-wrap:before {
    border-radius: 0 40px 40px 0;
    border-radius: 40px 0 0 40px;
  }
}
@media (max-width: 991px) {
  .cid-tJQEega2OS .text-wrap:before {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0;
  }
}
@media (max-width: 991px) {
  .cid-tJQEega2OS .text-wrap {
    padding: 20px 0 50px;
  }
}
@media (max-width: 767px) {
  .cid-tJQEega2OS .text-wrap {
    margin-bottom: -5px;
  }
}
.cid-tJQEega2OS .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tJQEega2OS .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tJQEega2OS .mbr-text {
    margin-top: 12px;
  }
}
.cid-tJQEega2OS .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tJQEega2OS .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-tJQEega2OS .col-img {
  width: 390px;
}
@media (max-width: 1199px) {
  .cid-tJQEega2OS .col-img {
    width: 330px;
  }
}
@media (max-width: 991px) {
  .cid-tJQEega2OS .col-img {
    width: 250px;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-tJQEega2OS .col-img {
    margin-bottom: -50px;
  }
}
.cid-tJQEega2OS .img-wrap {
  position: relative;
  width: 100%;
}
.cid-tJQEega2OS .img-wrap .img-box {
  position: relative;
  z-index: 3;
  width: 150%;
  border-radius: 65px 65px 65px 0;
  overflow: hidden;
  border-radius: 65px 0 65px 65px;
}
@media (max-width: 1199px) {
  .cid-tJQEega2OS .img-wrap .img-box {
    border-radius: 0 40px 40px 40px;
    border-radius: 40px 0 40px 40px;
  }
}
@media (max-width: 991px) {
  .cid-tJQEega2OS .img-wrap .img-box {
    transform: translateY(-15px);
    border-radius: 0 30px 30px 30px;
    width: 120%;
    border-radius: 30px 0 30px 30px;
  }
}
.cid-tJQEega2OS .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-tJQEega2OS .mbr-text,
.cid-tJQEega2OS .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-tJQEeixUUN {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fffcf5;
}
.cid-tJQEeixUUN .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJQEeixUUN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tJQEeixUUN .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 991px) {
  .cid-tJQEeixUUN .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tJQEeixUUN .mbr-section-head {
    margin-bottom: 50px;
  }
}
.cid-tJQEeixUUN .mbr-section-title {
  color: #b8a54d;
  margin-bottom: 0;
}
.cid-tJQEeixUUN .mbr-section-subtitle {
  color: #353535;
  margin-top: 20px;
}
@media (max-width: 991px) {
  .cid-tJQEeixUUN .col-img {
    display: none;
  }
}
.cid-tJQEeixUUN .img-wrap {
  width: 100%;
}
.cid-tJQEeixUUN .img-wrap .img-box {
  width: 100%;
  border-radius: 65px 65px 0 65px;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-tJQEeixUUN .img-wrap .img-box {
    border-radius: 40px 40px 0 40px;
  }
}
.cid-tJQEeixUUN .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-tJQEeixUUN .mbr-iconfont {
  position: relative;
  font-size: 24px !important;
  font-family: 'Moririse2' !important;
  color: #987a5a;
  margin-left: 1rem;
  padding: 10px;
  transition: .3s all;
}
.cid-tJQEeixUUN .mbr-iconfont:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(195, 195, 195, 0.9);
  opacity: 0;
  transition: .3s all;
}
.cid-tJQEeixUUN .mbr-iconfont:before {
  position: relative;
  z-index: 2;
}
.cid-tJQEeixUUN .panel-group {
  border: none;
  border-top: 1px solid #829d85;
  margin-top: 10px;
}
@media (max-width: 991px) {
  .cid-tJQEeixUUN .panel-group {
    margin-top: 0;
  }
}
.cid-tJQEeixUUN .card {
  border-bottom: 1px solid #829d85;
  border-radius: 0;
}
.cid-tJQEeixUUN .card-header {
  padding: 20px 0;
  border: none;
  background-color: transparent;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .cid-tJQEeixUUN .card-header {
    padding: 8px 0;
  }
}
.cid-tJQEeixUUN .card-header:hover .mbr-iconfont {
  color: #829d85;
}
.cid-tJQEeixUUN .card-header:hover .mbr-iconfont:after {
  opacity: 1;
}
.cid-tJQEeixUUN .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #987A5A;
}
.cid-tJQEeixUUN .panel-title[aria-expanded="true"] .mbr-iconfont {
  transform: rotate(45deg);
}
.cid-tJQEeixUUN .panel-title-edit {
  color: #4d8ab8;
}
.cid-tJQEeixUUN .panel-body {
  padding: 0 0 40px;
}
@media (max-width: 767px) {
  .cid-tJQEeixUUN .panel-body {
    padding: 0 0 24px;
  }
}
.cid-tJQEeixUUN .panel-text {
  color: #353535;
  margin: 0;
  text-align: left;
}
.cid-tJQEehTNj5 {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #4d8ab8;
}
.cid-tJQEehTNj5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJQEehTNj5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tJQEehTNj5 .mbr-section-title {
  width: 100%;
  color: #61411e;
  margin-bottom: 0;
}
.cid-tJQEehTNj5 .mbr-section-title.display-4 {
  font-size: 40px;
}
@media (max-width: 767px) {
  .cid-tJQEehTNj5 .mbr-section-title.display-4 {
    font-size: 32px;
    line-height: 1.2;
  }
}
@media (max-width: 575px) {
  .cid-tJQEehTNj5 .mbr-section-title.display-4 {
    font-size: 26px;
  }
}
.cid-tJQEehTNj5 .mbr-text {
  width: 100%;
  color: #353535;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-tJQEehTNj5 .mbr-text {
    margin-top: 16px;
  }
}
.cid-tJQEehTNj5 .mbr-section-btn {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-tJQEehTNj5 .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-tJQEehTNj5 .mbr-text,
.cid-tJQEehTNj5 .mbr-section-btn {
  color: #f6efe8;
}
.cid-tQvFEkR9rv {
  padding-top: 4rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/mbr-2-1920x1280.jpg");
}
.cid-tQvFEkR9rv .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQvFEkR9rv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQvFEkR9rv .text-wrap {
  width: 100%;
}
.cid-tQvFEkR9rv .mbr-title {
  margin-bottom: 0;
  color: #0d5e9c;
  text-align: center;
}
.cid-tQvFEkR9rv .mbr-text {
  padding-top: 16px;
  color: #353535;
}
.cid-tQvFEkR9rv .list-wrap {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tQvFEkR9rv .list-wrap {
    margin-top: 24px;
  }
}
.cid-tQvFEkR9rv .list-box {
  width: 100%;
}
.cid-tQvFEkR9rv .list {
  list-style: none;
  margin-top: 22px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #353535;
}
.cid-tQvFEkR9rv .list-text {
  position: relative;
}
.cid-tQvFEkR9rv .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-tQvFEkR9rv .list-text:before {
  content: "";
  position: absolute;
  display: block;
  width: 16px;
  height: 14px;
  left: -30px;
  top: 7px;
  background-image: url("../../../assets/images/marker.svg");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}
.cid-tJTis0kbyo {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #1a91b9;
}
.cid-tJTis0kbyo .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJTis0kbyo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tJTis0kbyo .text-wrap {
  width: 100%;
}
.cid-tJTis0kbyo .mbr-title {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
.cid-tJTis0kbyo .mbr-text {
  padding-top: 16px;
  color: #353535;
}
.cid-tJTis0kbyo .list-wrap {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tJTis0kbyo .list-wrap {
    margin-top: 24px;
  }
}
.cid-tJTis0kbyo .list-box {
  width: 100%;
}
.cid-tJTis0kbyo .list {
  list-style: none;
  margin-top: 22px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #353535;
}
.cid-tJTis0kbyo .list-text {
  position: relative;
}
.cid-tJTis0kbyo .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-tJTis0kbyo .list-text:before {
  content: "";
  position: absolute;
  display: block;
  width: 16px;
  height: 14px;
  left: -30px;
  top: 7px;
  background-image: url("../../../assets/images/marker.svg");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}
.cid-tJQEejbsC4 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fffcf5;
  overflow: hidden;
}
.cid-tJQEejbsC4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJQEejbsC4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tJQEejbsC4 .row {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tJQEejbsC4 .row {
    flex-wrap: wrap;
  }
}
.cid-tJQEejbsC4 .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tJQEejbsC4 .text-wrap {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .cid-tJQEejbsC4 .text-wrap {
    margin-bottom: 20px;
  }
}
.cid-tJQEejbsC4 .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #f8f1ea;
  transform: translateY(40%);
}
.cid-tJQEejbsC4 .mbr-section-title {
  color: #61411e;
  text-align: center;
}
.cid-tJQEejbsC4 .mbr-section-title a {
  pointer-events: none !important;
  font-style: italic !important;
  font-weight: bold !important;
}
.cid-tJQEejbsC4 .mbr-section-subtitle {
  margin-top: 30px;
  color: #353535;
}
@media (max-width: 767px) {
  .cid-tJQEejbsC4 .mbr-section-subtitle {
    margin-top: 12px;
  }
}
.cid-tJQEejbsC4 .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tJQEejbsC4 .mbr-text {
    margin-top: 12px;
  }
}
.cid-tJQEejbsC4 .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tJQEejbsC4 .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-tJQEejbsC4 .col-img {
  width: 430px;
}
@media (max-width: 1199px) {
  .cid-tJQEejbsC4 .col-img {
    width: 350px;
  }
}
.cid-tJQEejbsC4 .img-wrap {
  position: relative;
  width: 50%;
}
.cid-tJQEejbsC4 .img-wrap .img-box {
  position: relative;
  z-index: 3;
  width: 150%;
  border-top-left-radius: 65px;
  border-top-right-radius: 65px;
  border-bottom-right-radius: 65px;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-tJQEejbsC4 .img-wrap .img-box {
    border-top-left-radius: 55px;
    border-top-right-radius: 55px;
    border-bottom-right-radius: 55px;
  }
}
.cid-tJQEejbsC4 .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-tJQEejbsC4 .img-wrap .frame-box {
  position: absolute;
  height: 240px;
}
.cid-tJQEejbsC4 .img-wrap .frame-box svg {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
}
.cid-tJQEejbsC4 .img-wrap .frame-box-1 {
  bottom: -20%;
  left: -14%;
  width: 85%;
  transform: rotate(15deg);
}
.cid-tJQEejbsC4 .img-wrap .frame-box-2 {
  bottom: -18%;
  right: -44%;
  width: 84%;
  transform: rotate(165deg);
}
@media (max-width: 991px) {
  .cid-tJQEejbsC4 .img-wrap .frame-box-2 {
    bottom: auto;
    top: -15%;
  }
}
.cid-tJQEejbsC4 .mbr-text,
.cid-tJQEejbsC4 .mbr-section-btn {
  color: #fffdfb;
}
.cid-tJQEejRz7X {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #fffcf5;
}
.cid-tJQEejRz7X .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJQEejRz7X .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tJQEejRz7X .row {
  align-items: stretch;
  justify-content: center;
}
.cid-tJQEejRz7X .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.cid-tJQEejRz7X .row .img-item img {
  width: 100%;
  object-fit: cover;
  min-height: 160px;
  border-radius: 2rem;
}
@media (max-width: 767px) {
  .cid-tJQEejRz7X .row .img-item img {
    min-height: 75px;
  }
}
.cid-tJQEekseeS {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/mbr-1920x1440.jpg");
}
.cid-tJQEekseeS .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJQEekseeS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tJQEekseeS .text-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  min-height: 280px;
  padding: 70px 50px;
  background-image: url("../../../assets/images/blobs-3.svg");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}
.cid-tJQEekseeS .mbr-section-title {
  width: 100%;
  color: #353535;
  margin-bottom: 0;
}
.cid-tJQEekseeS .mbr-section-title.display-4 {
  font-size: 48px;
}
@media (max-width: 767px) {
  .cid-tJQEekseeS .mbr-section-title.display-4 {
    font-size: 36px;
  }
}
@media (max-width: 575px) {
  .cid-tJQEekseeS .mbr-section-title.display-4 {
    font-size: 28px;
  }
}
.cid-tJQEekseeS .mbr-text {
  width: 100%;
  color: #353535;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-tJQEekseeS .mbr-text {
    margin-top: 16px;
  }
}
.cid-tJQEekseeS .mbr-section-btn {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-tJQEekseeS .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-tJQEekXSVj {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background: #fffcf5;
}
.cid-tJQEekXSVj .card-box {
  max-width: 505px;
  margin: 0 auto;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tJQEekXSVj .card-box {
    max-width: 100%;
    margin-bottom: 70px;
  }
}
.cid-tJQEekXSVj .card-title {
  color: #45494E;
}
.cid-tJQEekXSVj .mbr-text {
  color: #45494E;
  margin-top: 10px;
}
@media (max-width: 991px) {
  .cid-tJQEekXSVj .mbr-text {
    margin-top: 14px;
  }
}
.cid-tJQEekXSVj .mbr-section-btn {
  margin-top: 30px;
}
.cid-tJQEekXSVj .map-wrap {
  position: relative;
  padding-bottom: 110%;
  width: 100%;
}
.cid-tJQEekXSVj .map-position-container {
  position: absolute;
  width: 100%;
  height: 100%;
}
.cid-tJQEekXSVj .google-map {
  height: 100%;
  width: 100%;
  position: relative;
}
.cid-tJQEekXSVj .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tJQEekXSVj .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-tJQEekXSVj .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tJQEekXSVj .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tJQEelprYv {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #829d85;
}
.cid-tJQEelprYv .mbr-text {
  color: #FFFCF5;
}
.cid-uqCrYeq7T2 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 90px;
}
.cid-uqCrYeq7T2 nav.navbar {
  position: fixed;
}
.cid-uqCrYeq7T2 .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-uqCrYeq7T2 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uqCrYeq7T2 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uqCrYeq7T2 .dropdown-item:hover,
.cid-uqCrYeq7T2 .dropdown-item:focus {
  background: #829d85 !important;
  color: white !important;
}
.cid-uqCrYeq7T2 .dropdown-item:hover span {
  color: white;
}
.cid-uqCrYeq7T2 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uqCrYeq7T2 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uqCrYeq7T2 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uqCrYeq7T2 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uqCrYeq7T2 .nav-link {
  position: relative;
}
.cid-uqCrYeq7T2 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uqCrYeq7T2 .container {
    flex-wrap: nowrap;
  }
}
.cid-uqCrYeq7T2 .iconfont-wrapper {
  color: #353535 !important;
  font-size: 18px;
  padding-right: 0;
}
.cid-uqCrYeq7T2 .iconfont-wrapper .mbr-iconfont {
  transition: .4s all;
}
.cid-uqCrYeq7T2 .iconfont-wrapper .mbr-iconfont:hover {
  color: #829d85;
}
.cid-uqCrYeq7T2 .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 66.66666667%;
  margin-right: auto;
  min-height: 89px;
}
.cid-uqCrYeq7T2 .navbar-nav .nav-item {
  margin: 2px;
}
.cid-uqCrYeq7T2 .navbar-nav .nav-link {
  padding: 5px 9px;
  transition: .4s all;
}
.cid-uqCrYeq7T2 .navbar-nav .nav-link:hover {
  transform: scale(1.1);
}
.cid-uqCrYeq7T2 .dropdown-menu,
.cid-uqCrYeq7T2 .navbar.opened {
  background: #fffcf5 !important;
}
.cid-uqCrYeq7T2 .nav-item:focus,
.cid-uqCrYeq7T2 .nav-link:focus {
  outline: none;
}
.cid-uqCrYeq7T2 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uqCrYeq7T2 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uqCrYeq7T2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uqCrYeq7T2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uqCrYeq7T2 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uqCrYeq7T2 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uqCrYeq7T2 .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: none !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fffcf5;
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-uqCrYeq7T2 .navbar.opened {
  transition: all 0.3s;
}
.cid-uqCrYeq7T2 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uqCrYeq7T2 .navbar .navbar-logo img {
  width: auto;
}
.cid-uqCrYeq7T2 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uqCrYeq7T2 .navbar.collapsed {
  justify-content: center;
}
.cid-uqCrYeq7T2 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uqCrYeq7T2 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uqCrYeq7T2 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uqCrYeq7T2 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uqCrYeq7T2 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uqCrYeq7T2 .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-uqCrYeq7T2 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uqCrYeq7T2 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uqCrYeq7T2 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uqCrYeq7T2 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uqCrYeq7T2 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uqCrYeq7T2 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uqCrYeq7T2 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uqCrYeq7T2 .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-uqCrYeq7T2 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uqCrYeq7T2 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uqCrYeq7T2 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uqCrYeq7T2 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uqCrYeq7T2 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uqCrYeq7T2 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uqCrYeq7T2 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uqCrYeq7T2 .navbar.navbar-short {
  min-height: 90px;
}
.cid-uqCrYeq7T2 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uqCrYeq7T2 .navbar.navbar-short .navbar-brand {
  min-height: 89px;
  padding: 0;
}
.cid-uqCrYeq7T2 .navbar-brand {
  min-height: 89px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  width: 25%;
}
.cid-uqCrYeq7T2 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uqCrYeq7T2 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uqCrYeq7T2 .dropdown-item.active,
.cid-uqCrYeq7T2 .dropdown-item:active {
  background-color: transparent;
}
.cid-uqCrYeq7T2 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uqCrYeq7T2 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uqCrYeq7T2 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uqCrYeq7T2 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fffcf5;
}
.cid-uqCrYeq7T2 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uqCrYeq7T2 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uqCrYeq7T2 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uqCrYeq7T2 .navbar-buttons {
  text-align: center;
}
.cid-uqCrYeq7T2 button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  background-color: #f6efe8;
  border-radius: 50%;
}
.cid-uqCrYeq7T2 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 13px;
  width: 22px;
  height: 2px;
  background-color: #715537;
}
.cid-uqCrYeq7T2 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 17px;
  transition: all 0.2s;
}
.cid-uqCrYeq7T2 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-uqCrYeq7T2 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-uqCrYeq7T2 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 29px;
  transition: all 0.2s;
}
.cid-uqCrYeq7T2 nav.opened .hamburger span:nth-child(1) {
  top: 17px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-uqCrYeq7T2 nav.opened .hamburger span:nth-child(2) {
  transform: translateY(-1px) rotate(45deg);
  transition: all 0.25s;
}
.cid-uqCrYeq7T2 nav.opened .hamburger span:nth-child(3) {
  transform: translateY(-1px) rotate(-45deg);
  transition: all 0.25s;
}
.cid-uqCrYeq7T2 nav.opened .hamburger span:nth-child(4) {
  top: 29px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-uqCrYeq7T2 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uqCrYeq7T2 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uqCrYeq7T2 .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-uqCrYeq7T2 .navbar {
    height: 70px;
  }
  .cid-uqCrYeq7T2 .navbar.opened {
    height: auto;
  }
  .cid-uqCrYeq7T2 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uqCrYeq7T2 .container,
.cid-uqCrYeq7T2 .container-fluid {
  flex-wrap: wrap;
}
.cid-uqCrYeq7T2 .navbar-collapse {
  width: 75%;
  min-height: 89px;
}
.cid-uqCrYeq7T2 .border-item {
  width: 100%;
  height: 1px;
  background-color: #829d86;
}
.cid-uqCrYeq7T2 .mbr-section-btn .btn {
  width: 180px;
  min-width: auto;
  min-height: 55px;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-uqCrYeq7T2 .navbar-brand {
    width: calc(100% - 48px) !important;
    min-height: 89px;
  }
  .cid-uqCrYeq7T2 .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 1rem;
    order: 5;
  }
  .cid-uqCrYeq7T2 .navbar-nav {
    width: 100%;
  }
}
.cid-uqCrYeMxjY {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fffcf5;
  overflow: hidden;
}
.cid-uqCrYeMxjY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqCrYeMxjY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqCrYeMxjY .row {
  flex-wrap: nowrap;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uqCrYeMxjY .row {
    flex-wrap: wrap;
  }
}
.cid-uqCrYeMxjY .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 15px 0;
}
.cid-uqCrYeMxjY .text-wrap:before {
  content: "";
  position: absolute;
  right: -100px;
  top: 0;
  height: 100%;
  width: 100vw;
  border-radius: 0 65px 65px 0;
  background-color: #182257;
  z-index: -1;
  border-radius: 65px 0 0 65px;
  right: auto;
  left: -100px;
}
@media (max-width: 1199px) {
  .cid-uqCrYeMxjY .text-wrap:before {
    border-radius: 0 40px 40px 0;
    border-radius: 40px 0 0 40px;
  }
}
@media (max-width: 991px) {
  .cid-uqCrYeMxjY .text-wrap:before {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0;
  }
}
@media (max-width: 991px) {
  .cid-uqCrYeMxjY .text-wrap {
    padding: 20px 0 50px;
  }
}
@media (max-width: 767px) {
  .cid-uqCrYeMxjY .text-wrap {
    margin-bottom: -5px;
  }
}
.cid-uqCrYeMxjY .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uqCrYeMxjY .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uqCrYeMxjY .mbr-text {
    margin-top: 12px;
  }
}
.cid-uqCrYeMxjY .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uqCrYeMxjY .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-uqCrYeMxjY .col-img {
  width: 390px;
}
@media (max-width: 1199px) {
  .cid-uqCrYeMxjY .col-img {
    width: 330px;
  }
}
@media (max-width: 991px) {
  .cid-uqCrYeMxjY .col-img {
    width: 250px;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-uqCrYeMxjY .col-img {
    margin-bottom: -50px;
  }
}
.cid-uqCrYeMxjY .img-wrap {
  position: relative;
  width: 100%;
}
.cid-uqCrYeMxjY .img-wrap .img-box {
  position: relative;
  z-index: 3;
  width: 150%;
  border-radius: 65px 65px 65px 0;
  overflow: hidden;
  border-radius: 65px 0 65px 65px;
}
@media (max-width: 1199px) {
  .cid-uqCrYeMxjY .img-wrap .img-box {
    border-radius: 0 40px 40px 40px;
    border-radius: 40px 0 40px 40px;
  }
}
@media (max-width: 991px) {
  .cid-uqCrYeMxjY .img-wrap .img-box {
    transform: translateY(-15px);
    border-radius: 0 30px 30px 30px;
    width: 120%;
    border-radius: 30px 0 30px 30px;
  }
}
.cid-uqCrYeMxjY .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-uqCrYeMxjY .mbr-text,
.cid-uqCrYeMxjY .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uqCrYf2LbA {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #b8a54d;
}
.cid-uqCrYf2LbA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqCrYf2LbA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqCrYf2LbA .mbr-section-title {
  width: 100%;
  color: #353535;
  margin-bottom: 0;
}
.cid-uqCrYf2LbA .mbr-section-title.display-4 {
  font-size: 40px;
}
@media (max-width: 767px) {
  .cid-uqCrYf2LbA .mbr-section-title.display-4 {
    font-size: 32px;
    line-height: 1.2;
  }
}
@media (max-width: 575px) {
  .cid-uqCrYf2LbA .mbr-section-title.display-4 {
    font-size: 26px;
  }
}
.cid-uqCrYf2LbA .mbr-text {
  width: 100%;
  color: #353535;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uqCrYf2LbA .mbr-text {
    margin-top: 16px;
  }
}
.cid-uqCrYf2LbA .mbr-section-btn {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uqCrYf2LbA .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-uqCrYf2LbA .mbr-text,
.cid-uqCrYf2LbA .mbr-section-btn {
  color: #fffdfb;
}
.cid-uqCsRjxu7g {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fffcf5;
}
.cid-uqCsRjxu7g .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqCsRjxu7g .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqCsRjxu7g .text-wrap {
  width: 100%;
}
.cid-uqCsRjxu7g .mbr-title {
  margin-bottom: 0;
  color: #829D85;
}
.cid-uqCsRjxu7g .mbr-text {
  padding-top: 16px;
  color: #353535;
}
.cid-uqCsRjxu7g .list-wrap {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uqCsRjxu7g .list-wrap {
    margin-top: 24px;
  }
}
.cid-uqCsRjxu7g .list-box {
  width: 100%;
}
.cid-uqCsRjxu7g .list {
  list-style: none;
  margin-top: 22px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #353535;
}
.cid-uqCsRjxu7g .list-text {
  position: relative;
}
.cid-uqCsRjxu7g .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-uqCsRjxu7g .list-text:before {
  content: "";
  position: absolute;
  display: block;
  width: 16px;
  height: 14px;
  left: -30px;
  top: 7px;
  background-image: url("../../../assets/images/marker.svg");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}
.cid-uqCrYfBkij {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #11217b;
}
.cid-uqCrYfBkij .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqCrYfBkij .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqCrYfBkij .mbr-section-title {
  width: 100%;
  color: #f8f1ea;
  margin-bottom: 0;
}
.cid-uqCrYfBkij .mbr-section-title.display-4 {
  font-size: 40px;
}
@media (max-width: 767px) {
  .cid-uqCrYfBkij .mbr-section-title.display-4 {
    font-size: 32px;
    line-height: 1.2;
  }
}
@media (max-width: 575px) {
  .cid-uqCrYfBkij .mbr-section-title.display-4 {
    font-size: 26px;
  }
}
.cid-uqCrYfBkij .mbr-text {
  width: 100%;
  color: #353535;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uqCrYfBkij .mbr-text {
    margin-top: 16px;
  }
}
.cid-uqCrYfBkij .mbr-section-btn {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uqCrYfBkij .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-uqCrYfBkij .mbr-text,
.cid-uqCrYfBkij .mbr-section-btn {
  color: #f8f1ea;
}
.cid-uqCuZL2pdG {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fffcf5;
}
.cid-uqCuZL2pdG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqCuZL2pdG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqCuZL2pdG .text-wrap {
  width: 100%;
}
.cid-uqCuZL2pdG .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 767px) {
  .cid-uqCuZL2pdG .mbr-section-head {
    margin-bottom: 60px;
  }
}
.cid-uqCuZL2pdG .mbr-section-title {
  color: #829D85;
  margin-bottom: 0;
}
.cid-uqCuZL2pdG .mbr-text {
  color: #353535;
  margin-top: 20px;
}
.cid-uqCuZL2pdG .item-row {
  row-gap: 40px;
  margin-left: -20px;
  margin-right: -20px;
}
.cid-uqCuZL2pdG .item-row > [class*="col"] {
  padding-left: 20px;
  padding-right: 20px;
}
.cid-uqCuZL2pdG .item-wrapper {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(130, 157, 133, 0.8);
  border-radius: 45px;
}
.cid-uqCuZL2pdG .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.cid-uqCuZL2pdG .item-img img {
  aspect-ratio: 0.90909091;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-uqCuZL2pdG .item-title-wrap {
  padding: 45px 26px;
  border-radius: 0 0 45px 45px;
  border: 1px solid rgba(130, 157, 133, 0.8);
  background-color: rgba(169, 187, 171, 0.8);
}
.cid-uqCuZL2pdG .item-title {
  width: 100%;
  margin: 0;
  color: #987A5A;
}
.cid-uqCuZL2pdG .item-text-wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  flex-grow: 1;
  padding: 26px;
}
.cid-uqCuZL2pdG .item-text {
  color: #353535;
  margin: 0;
}
.cid-uqCuZL2pdG .mbr-section-btn {
  margin-top: 10px;
}
.cid-uqCuZL2pdG .mbr-section-btn .btn {
  width: 180px;
  min-width: auto;
  min-height: 55px;
  max-width: 100%;
}
.cid-uqDrap3cXG {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fffcf5;
}
.cid-uqDrap3cXG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqDrap3cXG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqDrap3cXG .mbr-section-title {
  width: 100%;
  color: #353535;
  margin-bottom: 0;
}
.cid-uqDrap3cXG .mbr-section-title.display-4 {
  font-size: 40px;
}
@media (max-width: 767px) {
  .cid-uqDrap3cXG .mbr-section-title.display-4 {
    font-size: 32px;
    line-height: 1.2;
  }
}
@media (max-width: 575px) {
  .cid-uqDrap3cXG .mbr-section-title.display-4 {
    font-size: 26px;
  }
}
.cid-uqDrap3cXG .mbr-text {
  width: 100%;
  color: #353535;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uqDrap3cXG .mbr-text {
    margin-top: 16px;
  }
}
.cid-uqDrap3cXG .mbr-section-btn {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uqDrap3cXG .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-uqCrYh02Po {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #11217b;
}
.cid-uqCrYh02Po .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqCrYh02Po .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqCrYh02Po .mbr-section-title {
  width: 100%;
  color: #61411e;
  margin-bottom: 0;
}
.cid-uqCrYh02Po .mbr-section-title.display-4 {
  font-size: 40px;
}
@media (max-width: 767px) {
  .cid-uqCrYh02Po .mbr-section-title.display-4 {
    font-size: 32px;
    line-height: 1.2;
  }
}
@media (max-width: 575px) {
  .cid-uqCrYh02Po .mbr-section-title.display-4 {
    font-size: 26px;
  }
}
.cid-uqCrYh02Po .mbr-text {
  width: 100%;
  color: #353535;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uqCrYh02Po .mbr-text {
    margin-top: 16px;
  }
}
.cid-uqCrYh02Po .mbr-section-btn {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uqCrYh02Po .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-uqCrYh02Po .mbr-text,
.cid-uqCrYh02Po .mbr-section-btn {
  color: #f6efe8;
}
.cid-uqCrYhhYbf {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fffcf5;
  overflow: hidden;
}
.cid-uqCrYhhYbf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqCrYhhYbf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqCrYhhYbf .row {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uqCrYhhYbf .row {
    flex-wrap: wrap;
  }
}
.cid-uqCrYhhYbf .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uqCrYhhYbf .text-wrap {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .cid-uqCrYhhYbf .text-wrap {
    margin-bottom: 20px;
  }
}
.cid-uqCrYhhYbf .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #f8f1ea;
  transform: translateY(40%);
}
.cid-uqCrYhhYbf .mbr-section-title {
  color: #61411e;
  text-align: center;
}
.cid-uqCrYhhYbf .mbr-section-title a {
  pointer-events: none !important;
  font-style: italic !important;
  font-weight: bold !important;
}
.cid-uqCrYhhYbf .mbr-section-subtitle {
  margin-top: 30px;
  color: #353535;
}
@media (max-width: 767px) {
  .cid-uqCrYhhYbf .mbr-section-subtitle {
    margin-top: 12px;
  }
}
.cid-uqCrYhhYbf .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uqCrYhhYbf .mbr-text {
    margin-top: 12px;
  }
}
.cid-uqCrYhhYbf .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uqCrYhhYbf .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-uqCrYhhYbf .col-img {
  width: 430px;
}
@media (max-width: 1199px) {
  .cid-uqCrYhhYbf .col-img {
    width: 350px;
  }
}
.cid-uqCrYhhYbf .img-wrap {
  position: relative;
  width: 50%;
}
.cid-uqCrYhhYbf .img-wrap .img-box {
  position: relative;
  z-index: 3;
  width: 150%;
  border-top-left-radius: 65px;
  border-top-right-radius: 65px;
  border-bottom-right-radius: 65px;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-uqCrYhhYbf .img-wrap .img-box {
    border-top-left-radius: 55px;
    border-top-right-radius: 55px;
    border-bottom-right-radius: 55px;
  }
}
.cid-uqCrYhhYbf .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-uqCrYhhYbf .img-wrap .frame-box {
  position: absolute;
  height: 240px;
}
.cid-uqCrYhhYbf .img-wrap .frame-box svg {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
}
.cid-uqCrYhhYbf .img-wrap .frame-box-1 {
  bottom: -20%;
  left: -14%;
  width: 85%;
  transform: rotate(15deg);
}
.cid-uqCrYhhYbf .img-wrap .frame-box-2 {
  bottom: -18%;
  right: -44%;
  width: 84%;
  transform: rotate(165deg);
}
@media (max-width: 991px) {
  .cid-uqCrYhhYbf .img-wrap .frame-box-2 {
    bottom: auto;
    top: -15%;
  }
}
.cid-uqCrYhhYbf .mbr-text,
.cid-uqCrYhhYbf .mbr-section-btn {
  color: #fffdfb;
}
.cid-uqCrYhUkaZ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/mbr-1920x1440.jpg");
}
.cid-uqCrYhUkaZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqCrYhUkaZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqCrYhUkaZ .text-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  min-height: 280px;
  padding: 70px 50px;
  background-image: url("../../../assets/images/blobs-3.svg");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}
.cid-uqCrYhUkaZ .mbr-section-title {
  width: 100%;
  color: #353535;
  margin-bottom: 0;
}
.cid-uqCrYhUkaZ .mbr-section-title.display-4 {
  font-size: 48px;
}
@media (max-width: 767px) {
  .cid-uqCrYhUkaZ .mbr-section-title.display-4 {
    font-size: 36px;
  }
}
@media (max-width: 575px) {
  .cid-uqCrYhUkaZ .mbr-section-title.display-4 {
    font-size: 28px;
  }
}
.cid-uqCrYhUkaZ .mbr-text {
  width: 100%;
  color: #353535;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uqCrYhUkaZ .mbr-text {
    margin-top: 16px;
  }
}
.cid-uqCrYhUkaZ .mbr-section-btn {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uqCrYhUkaZ .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-uqCrYiemcV {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background: #fffcf5;
}
.cid-uqCrYiemcV .card-box {
  max-width: 505px;
  margin: 0 auto;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uqCrYiemcV .card-box {
    max-width: 100%;
    margin-bottom: 70px;
  }
}
.cid-uqCrYiemcV .card-title {
  color: #45494E;
}
.cid-uqCrYiemcV .mbr-text {
  color: #45494E;
  margin-top: 10px;
}
@media (max-width: 991px) {
  .cid-uqCrYiemcV .mbr-text {
    margin-top: 14px;
  }
}
.cid-uqCrYiemcV .mbr-section-btn {
  margin-top: 30px;
}
.cid-uqCrYiemcV .map-wrap {
  position: relative;
  padding-bottom: 110%;
  width: 100%;
}
.cid-uqCrYiemcV .map-position-container {
  position: absolute;
  width: 100%;
  height: 100%;
}
.cid-uqCrYiemcV .google-map {
  height: 100%;
  width: 100%;
  position: relative;
}
.cid-uqCrYiemcV .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uqCrYiemcV .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-uqCrYiemcV .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uqCrYiemcV .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uqCrYiABo5 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #829d85;
}
.cid-uqCrYiABo5 .mbr-text {
  color: #FFFCF5;
}
.cid-tRbjakFHmg {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 90px;
}
.cid-tRbjakFHmg nav.navbar {
  position: fixed;
}
.cid-tRbjakFHmg .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-tRbjakFHmg .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tRbjakFHmg .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tRbjakFHmg .dropdown-item:hover,
.cid-tRbjakFHmg .dropdown-item:focus {
  background: #829d85 !important;
  color: white !important;
}
.cid-tRbjakFHmg .dropdown-item:hover span {
  color: white;
}
.cid-tRbjakFHmg .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tRbjakFHmg .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tRbjakFHmg .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tRbjakFHmg .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tRbjakFHmg .nav-link {
  position: relative;
}
.cid-tRbjakFHmg .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tRbjakFHmg .container {
    flex-wrap: nowrap;
  }
}
.cid-tRbjakFHmg .iconfont-wrapper {
  color: #353535 !important;
  font-size: 18px;
  padding-right: 0;
}
.cid-tRbjakFHmg .iconfont-wrapper .mbr-iconfont {
  transition: .4s all;
}
.cid-tRbjakFHmg .iconfont-wrapper .mbr-iconfont:hover {
  color: #829d85;
}
.cid-tRbjakFHmg .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 66.66666667%;
  margin-right: auto;
  min-height: 89px;
}
.cid-tRbjakFHmg .navbar-nav .nav-item {
  margin: 2px;
}
.cid-tRbjakFHmg .navbar-nav .nav-link {
  padding: 5px 9px;
  transition: .4s all;
}
.cid-tRbjakFHmg .navbar-nav .nav-link:hover {
  transform: scale(1.1);
}
.cid-tRbjakFHmg .dropdown-menu,
.cid-tRbjakFHmg .navbar.opened {
  background: #fffcf5 !important;
}
.cid-tRbjakFHmg .nav-item:focus,
.cid-tRbjakFHmg .nav-link:focus {
  outline: none;
}
.cid-tRbjakFHmg .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tRbjakFHmg .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tRbjakFHmg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tRbjakFHmg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tRbjakFHmg .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tRbjakFHmg .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tRbjakFHmg .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: none !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fffcf5;
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-tRbjakFHmg .navbar.opened {
  transition: all 0.3s;
}
.cid-tRbjakFHmg .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tRbjakFHmg .navbar .navbar-logo img {
  width: auto;
}
.cid-tRbjakFHmg .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tRbjakFHmg .navbar.collapsed {
  justify-content: center;
}
.cid-tRbjakFHmg .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tRbjakFHmg .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tRbjakFHmg .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tRbjakFHmg .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tRbjakFHmg .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tRbjakFHmg .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-tRbjakFHmg .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tRbjakFHmg .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tRbjakFHmg .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tRbjakFHmg .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tRbjakFHmg .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tRbjakFHmg .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tRbjakFHmg .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tRbjakFHmg .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-tRbjakFHmg .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tRbjakFHmg .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tRbjakFHmg .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tRbjakFHmg .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tRbjakFHmg .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tRbjakFHmg .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tRbjakFHmg .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tRbjakFHmg .navbar.navbar-short {
  min-height: 90px;
}
.cid-tRbjakFHmg .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tRbjakFHmg .navbar.navbar-short .navbar-brand {
  min-height: 89px;
  padding: 0;
}
.cid-tRbjakFHmg .navbar-brand {
  min-height: 89px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  width: 25%;
}
.cid-tRbjakFHmg .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tRbjakFHmg .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tRbjakFHmg .dropdown-item.active,
.cid-tRbjakFHmg .dropdown-item:active {
  background-color: transparent;
}
.cid-tRbjakFHmg .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tRbjakFHmg .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tRbjakFHmg .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tRbjakFHmg .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fffcf5;
}
.cid-tRbjakFHmg .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tRbjakFHmg .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tRbjakFHmg ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tRbjakFHmg .navbar-buttons {
  text-align: center;
}
.cid-tRbjakFHmg button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  background-color: #f6efe8;
  border-radius: 50%;
}
.cid-tRbjakFHmg button.navbar-toggler .hamburger span {
  position: absolute;
  right: 13px;
  width: 22px;
  height: 2px;
  background-color: #715537;
}
.cid-tRbjakFHmg button.navbar-toggler .hamburger span:nth-child(1) {
  top: 17px;
  transition: all 0.2s;
}
.cid-tRbjakFHmg button.navbar-toggler .hamburger span:nth-child(2) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-tRbjakFHmg button.navbar-toggler .hamburger span:nth-child(3) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-tRbjakFHmg button.navbar-toggler .hamburger span:nth-child(4) {
  top: 29px;
  transition: all 0.2s;
}
.cid-tRbjakFHmg nav.opened .hamburger span:nth-child(1) {
  top: 17px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-tRbjakFHmg nav.opened .hamburger span:nth-child(2) {
  transform: translateY(-1px) rotate(45deg);
  transition: all 0.25s;
}
.cid-tRbjakFHmg nav.opened .hamburger span:nth-child(3) {
  transform: translateY(-1px) rotate(-45deg);
  transition: all 0.25s;
}
.cid-tRbjakFHmg nav.opened .hamburger span:nth-child(4) {
  top: 29px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-tRbjakFHmg .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tRbjakFHmg a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tRbjakFHmg .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-tRbjakFHmg .navbar {
    height: 70px;
  }
  .cid-tRbjakFHmg .navbar.opened {
    height: auto;
  }
  .cid-tRbjakFHmg .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tRbjakFHmg .container,
.cid-tRbjakFHmg .container-fluid {
  flex-wrap: wrap;
}
.cid-tRbjakFHmg .navbar-collapse {
  width: 75%;
  min-height: 89px;
}
.cid-tRbjakFHmg .border-item {
  width: 100%;
  height: 1px;
  background-color: #829d86;
}
.cid-tRbjakFHmg .mbr-section-btn .btn {
  width: 180px;
  min-width: auto;
  min-height: 55px;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-tRbjakFHmg .navbar-brand {
    width: calc(100% - 48px) !important;
    min-height: 89px;
  }
  .cid-tRbjakFHmg .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 1rem;
    order: 5;
  }
  .cid-tRbjakFHmg .navbar-nav {
    width: 100%;
  }
}
.cid-tRbjal2Hq5 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fffcf5;
  overflow: hidden;
}
.cid-tRbjal2Hq5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRbjal2Hq5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRbjal2Hq5 .row {
  flex-wrap: nowrap;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-tRbjal2Hq5 .row {
    flex-wrap: wrap;
  }
}
.cid-tRbjal2Hq5 .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 15px 0;
}
.cid-tRbjal2Hq5 .text-wrap:before {
  content: "";
  position: absolute;
  right: -100px;
  top: 0;
  height: 100%;
  width: 100vw;
  border-radius: 0 65px 65px 0;
  background-color: #182257;
  z-index: -1;
  border-radius: 65px 0 0 65px;
  right: auto;
  left: -100px;
}
@media (max-width: 1199px) {
  .cid-tRbjal2Hq5 .text-wrap:before {
    border-radius: 0 40px 40px 0;
    border-radius: 40px 0 0 40px;
  }
}
@media (max-width: 991px) {
  .cid-tRbjal2Hq5 .text-wrap:before {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0;
  }
}
@media (max-width: 991px) {
  .cid-tRbjal2Hq5 .text-wrap {
    padding: 20px 0 50px;
  }
}
@media (max-width: 767px) {
  .cid-tRbjal2Hq5 .text-wrap {
    margin-bottom: -5px;
  }
}
.cid-tRbjal2Hq5 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tRbjal2Hq5 .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tRbjal2Hq5 .mbr-text {
    margin-top: 12px;
  }
}
.cid-tRbjal2Hq5 .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tRbjal2Hq5 .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-tRbjal2Hq5 .col-img {
  width: 390px;
}
@media (max-width: 1199px) {
  .cid-tRbjal2Hq5 .col-img {
    width: 330px;
  }
}
@media (max-width: 991px) {
  .cid-tRbjal2Hq5 .col-img {
    width: 250px;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-tRbjal2Hq5 .col-img {
    margin-bottom: -50px;
  }
}
.cid-tRbjal2Hq5 .img-wrap {
  position: relative;
  width: 100%;
}
.cid-tRbjal2Hq5 .img-wrap .img-box {
  position: relative;
  z-index: 3;
  width: 150%;
  border-radius: 65px 65px 65px 0;
  overflow: hidden;
  border-radius: 65px 0 65px 65px;
}
@media (max-width: 1199px) {
  .cid-tRbjal2Hq5 .img-wrap .img-box {
    border-radius: 0 40px 40px 40px;
    border-radius: 40px 0 40px 40px;
  }
}
@media (max-width: 991px) {
  .cid-tRbjal2Hq5 .img-wrap .img-box {
    transform: translateY(-15px);
    border-radius: 0 30px 30px 30px;
    width: 120%;
    border-radius: 30px 0 30px 30px;
  }
}
.cid-tRbjal2Hq5 .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-tRbjal2Hq5 .mbr-text,
.cid-tRbjal2Hq5 .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-tRbjali774 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #b8a54d;
}
.cid-tRbjali774 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRbjali774 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRbjali774 .mbr-section-title {
  width: 100%;
  color: #353535;
  margin-bottom: 0;
}
.cid-tRbjali774 .mbr-section-title.display-4 {
  font-size: 40px;
}
@media (max-width: 767px) {
  .cid-tRbjali774 .mbr-section-title.display-4 {
    font-size: 32px;
    line-height: 1.2;
  }
}
@media (max-width: 575px) {
  .cid-tRbjali774 .mbr-section-title.display-4 {
    font-size: 26px;
  }
}
.cid-tRbjali774 .mbr-text {
  width: 100%;
  color: #353535;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-tRbjali774 .mbr-text {
    margin-top: 16px;
  }
}
.cid-tRbjali774 .mbr-section-btn {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-tRbjali774 .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-tRbjali774 .mbr-text,
.cid-tRbjali774 .mbr-section-btn {
  color: #fffdfb;
}
.cid-tRbjalByBb {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fffcf5;
}
.cid-tRbjalByBb .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRbjalByBb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRbjalByBb .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 991px) {
  .cid-tRbjalByBb .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tRbjalByBb .mbr-section-head {
    margin-bottom: 50px;
  }
}
.cid-tRbjalByBb .mbr-section-title {
  color: #11217b;
  margin-bottom: 0;
}
.cid-tRbjalByBb .mbr-section-subtitle {
  color: #353535;
  margin-top: 20px;
}
@media (max-width: 991px) {
  .cid-tRbjalByBb .col-img {
    display: none;
  }
}
.cid-tRbjalByBb .img-wrap {
  width: 100%;
}
.cid-tRbjalByBb .img-wrap .img-box {
  width: 100%;
  border-radius: 65px 65px 0 65px;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-tRbjalByBb .img-wrap .img-box {
    border-radius: 40px 40px 0 40px;
  }
}
.cid-tRbjalByBb .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-tRbjalByBb .mbr-iconfont {
  position: relative;
  font-size: 24px !important;
  font-family: 'Moririse2' !important;
  color: #987a5a;
  margin-left: 1rem;
  padding: 10px;
  transition: .3s all;
}
.cid-tRbjalByBb .mbr-iconfont:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(195, 195, 195, 0.9);
  opacity: 0;
  transition: .3s all;
}
.cid-tRbjalByBb .mbr-iconfont:before {
  position: relative;
  z-index: 2;
}
.cid-tRbjalByBb .panel-group {
  border: none;
  border-top: 1px solid #829d85;
  margin-top: 10px;
}
@media (max-width: 991px) {
  .cid-tRbjalByBb .panel-group {
    margin-top: 0;
  }
}
.cid-tRbjalByBb .card {
  border-bottom: 1px solid #829d85;
  border-radius: 0;
}
.cid-tRbjalByBb .card-header {
  padding: 20px 0;
  border: none;
  background-color: transparent;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .cid-tRbjalByBb .card-header {
    padding: 8px 0;
  }
}
.cid-tRbjalByBb .card-header:hover .mbr-iconfont {
  color: #829d85;
}
.cid-tRbjalByBb .card-header:hover .mbr-iconfont:after {
  opacity: 1;
}
.cid-tRbjalByBb .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #987A5A;
}
.cid-tRbjalByBb .panel-title[aria-expanded="true"] .mbr-iconfont {
  transform: rotate(45deg);
}
.cid-tRbjalByBb .panel-title-edit {
  color: #4d8ab8;
}
.cid-tRbjalByBb .panel-body {
  padding: 0 0 40px;
}
@media (max-width: 767px) {
  .cid-tRbjalByBb .panel-body {
    padding: 0 0 24px;
  }
}
.cid-tRbjalByBb .panel-text {
  color: #353535;
  margin: 0;
  text-align: left;
}
.cid-tRbjam00Uw {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #11217b;
}
.cid-tRbjam00Uw .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRbjam00Uw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRbjam00Uw .mbr-section-title {
  width: 100%;
  color: #61411e;
  margin-bottom: 0;
}
.cid-tRbjam00Uw .mbr-section-title.display-4 {
  font-size: 40px;
}
@media (max-width: 767px) {
  .cid-tRbjam00Uw .mbr-section-title.display-4 {
    font-size: 32px;
    line-height: 1.2;
  }
}
@media (max-width: 575px) {
  .cid-tRbjam00Uw .mbr-section-title.display-4 {
    font-size: 26px;
  }
}
.cid-tRbjam00Uw .mbr-text {
  width: 100%;
  color: #353535;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-tRbjam00Uw .mbr-text {
    margin-top: 16px;
  }
}
.cid-tRbjam00Uw .mbr-section-btn {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-tRbjam00Uw .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-tRbjam00Uw .mbr-text,
.cid-tRbjam00Uw .mbr-section-btn {
  color: #f6efe8;
}
.cid-tRbjamfrmh {
  padding-top: 4rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/mbr-2-1920x1280.jpg");
}
.cid-tRbjamfrmh .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRbjamfrmh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRbjamfrmh .text-wrap {
  width: 100%;
}
.cid-tRbjamfrmh .mbr-title {
  margin-bottom: 0;
  color: #0d5e9c;
  text-align: center;
}
.cid-tRbjamfrmh .mbr-text {
  padding-top: 16px;
  color: #353535;
}
.cid-tRbjamfrmh .list-wrap {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tRbjamfrmh .list-wrap {
    margin-top: 24px;
  }
}
.cid-tRbjamfrmh .list-box {
  width: 100%;
}
.cid-tRbjamfrmh .list {
  list-style: none;
  margin-top: 22px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #353535;
}
.cid-tRbjamfrmh .list-text {
  position: relative;
}
.cid-tRbjamfrmh .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-tRbjamfrmh .list-text:before {
  content: "";
  position: absolute;
  display: block;
  width: 16px;
  height: 14px;
  left: -30px;
  top: 7px;
  background-image: url("../../../assets/images/marker.svg");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}
.cid-tRbjamzl6S {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #fffcf5;
}
.cid-tRbjamzl6S .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRbjamzl6S .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRbjamzl6S .text-wrap {
  width: 100%;
}
.cid-tRbjamzl6S .mbr-title {
  margin-bottom: 0;
  color: #11217b;
  text-align: center;
}
.cid-tRbjamzl6S .mbr-text {
  padding-top: 16px;
  color: #353535;
}
.cid-tRbjamzl6S .list-wrap {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tRbjamzl6S .list-wrap {
    margin-top: 24px;
  }
}
.cid-tRbjamzl6S .list-box {
  width: 100%;
}
.cid-tRbjamzl6S .list {
  list-style: none;
  margin-top: 22px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #353535;
}
.cid-tRbjamzl6S .list-text {
  position: relative;
}
.cid-tRbjamzl6S .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-tRbjamzl6S .list-text:before {
  content: "";
  position: absolute;
  display: block;
  width: 16px;
  height: 14px;
  left: -30px;
  top: 7px;
  background-image: url("../../../file:///C:/Users/milag/AppData/Local/Mobirise.com/Mobirise/milagrosvieyraok_0040gmail_002ecom/addons/adaptm5/components/aarticle1/ ");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}
.cid-unwFryYSUi {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fffcf5;
  overflow: hidden;
}
.cid-unwFryYSUi .mbr-fallback-image.disabled {
  display: none;
}
.cid-unwFryYSUi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-unwFryYSUi .row {
  flex-wrap: nowrap;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-unwFryYSUi .row {
    flex-wrap: wrap;
  }
}
.cid-unwFryYSUi .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 80px 0;
}
.cid-unwFryYSUi .text-wrap:before {
  content: "";
  position: absolute;
  right: -100px;
  top: 0;
  height: 100%;
  width: 100vw;
  border-radius: 0 65px 65px 0;
  background-color: #11217b;
  z-index: -1;
  border-radius: 65px 0 0 65px;
  right: auto;
  left: -100px;
}
@media (max-width: 1199px) {
  .cid-unwFryYSUi .text-wrap:before {
    border-radius: 0 40px 40px 0;
    border-radius: 40px 0 0 40px;
  }
}
@media (max-width: 991px) {
  .cid-unwFryYSUi .text-wrap:before {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0;
  }
}
@media (max-width: 991px) {
  .cid-unwFryYSUi .text-wrap {
    padding: 50px 0 90px;
  }
}
@media (max-width: 767px) {
  .cid-unwFryYSUi .text-wrap {
    margin-bottom: 20px;
  }
}
.cid-unwFryYSUi .mbr-section-title {
  color: #ffffff;
}
.cid-unwFryYSUi .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-unwFryYSUi .mbr-text {
    margin-top: 12px;
  }
}
.cid-unwFryYSUi .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-unwFryYSUi .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-unwFryYSUi .col-img {
  width: 390px;
}
@media (max-width: 1199px) {
  .cid-unwFryYSUi .col-img {
    width: 330px;
  }
}
@media (max-width: 991px) {
  .cid-unwFryYSUi .col-img {
    width: 250px;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-unwFryYSUi .col-img {
    margin-bottom: -50px;
  }
}
.cid-unwFryYSUi .img-wrap {
  position: relative;
  width: 100%;
}
.cid-unwFryYSUi .img-wrap .img-box {
  position: relative;
  z-index: 3;
  width: 100%;
  border-radius: 0 65px 65px 65px;
  overflow: hidden;
  border-radius: 65px 0 65px 65px;
}
@media (max-width: 1199px) {
  .cid-unwFryYSUi .img-wrap .img-box {
    border-radius: 0 40px 40px 40px;
    border-radius: 40px 0 40px 40px;
  }
}
@media (max-width: 991px) {
  .cid-unwFryYSUi .img-wrap .img-box {
    transform: translateY(-50px);
    border-radius: 0 30px 30px 30px;
    border-radius: 30px 0 30px 30px;
  }
}
.cid-unwFryYSUi .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-unwI2bxyQ2 {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #11217b;
}
.cid-unwI2bxyQ2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-unwI2bxyQ2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-unwI2bxyQ2 .mbr-section-title {
  width: 100%;
  color: #61411e;
  margin-bottom: 0;
}
.cid-unwI2bxyQ2 .mbr-section-title.display-4 {
  font-size: 40px;
}
@media (max-width: 767px) {
  .cid-unwI2bxyQ2 .mbr-section-title.display-4 {
    font-size: 32px;
    line-height: 1.2;
  }
}
@media (max-width: 575px) {
  .cid-unwI2bxyQ2 .mbr-section-title.display-4 {
    font-size: 26px;
  }
}
.cid-unwI2bxyQ2 .mbr-text {
  width: 100%;
  color: #353535;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-unwI2bxyQ2 .mbr-text {
    margin-top: 16px;
  }
}
.cid-unwI2bxyQ2 .mbr-section-btn {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-unwI2bxyQ2 .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-unwI2bxyQ2 .mbr-text,
.cid-unwI2bxyQ2 .mbr-section-btn {
  color: #f6efe8;
}
.cid-tRbjan1M3e {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fffcf5;
  overflow: hidden;
}
.cid-tRbjan1M3e .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRbjan1M3e .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRbjan1M3e .row {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tRbjan1M3e .row {
    flex-wrap: wrap;
  }
}
.cid-tRbjan1M3e .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tRbjan1M3e .text-wrap {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .cid-tRbjan1M3e .text-wrap {
    margin-bottom: 20px;
  }
}
.cid-tRbjan1M3e .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #f8f1ea;
  transform: translateY(40%);
}
.cid-tRbjan1M3e .mbr-section-title {
  color: #61411e;
  text-align: center;
}
.cid-tRbjan1M3e .mbr-section-title a {
  pointer-events: none !important;
  font-style: italic !important;
  font-weight: bold !important;
}
.cid-tRbjan1M3e .mbr-section-subtitle {
  margin-top: 30px;
  color: #353535;
}
@media (max-width: 767px) {
  .cid-tRbjan1M3e .mbr-section-subtitle {
    margin-top: 12px;
  }
}
.cid-tRbjan1M3e .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tRbjan1M3e .mbr-text {
    margin-top: 12px;
  }
}
.cid-tRbjan1M3e .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tRbjan1M3e .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-tRbjan1M3e .col-img {
  width: 430px;
}
@media (max-width: 1199px) {
  .cid-tRbjan1M3e .col-img {
    width: 350px;
  }
}
.cid-tRbjan1M3e .img-wrap {
  position: relative;
  width: 50%;
}
.cid-tRbjan1M3e .img-wrap .img-box {
  position: relative;
  z-index: 3;
  width: 150%;
  border-top-left-radius: 65px;
  border-top-right-radius: 65px;
  border-bottom-right-radius: 65px;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-tRbjan1M3e .img-wrap .img-box {
    border-top-left-radius: 55px;
    border-top-right-radius: 55px;
    border-bottom-right-radius: 55px;
  }
}
.cid-tRbjan1M3e .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-tRbjan1M3e .img-wrap .frame-box {
  position: absolute;
  height: 240px;
}
.cid-tRbjan1M3e .img-wrap .frame-box svg {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
}
.cid-tRbjan1M3e .img-wrap .frame-box-1 {
  bottom: -20%;
  left: -14%;
  width: 85%;
  transform: rotate(15deg);
}
.cid-tRbjan1M3e .img-wrap .frame-box-2 {
  bottom: -18%;
  right: -44%;
  width: 84%;
  transform: rotate(165deg);
}
@media (max-width: 991px) {
  .cid-tRbjan1M3e .img-wrap .frame-box-2 {
    bottom: auto;
    top: -15%;
  }
}
.cid-tRbjan1M3e .mbr-text,
.cid-tRbjan1M3e .mbr-section-btn {
  color: #fffdfb;
}
.cid-tRbjanmZXU {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #fffcf5;
}
.cid-tRbjanmZXU .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRbjanmZXU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRbjanmZXU .row {
  align-items: stretch;
  justify-content: center;
}
.cid-tRbjanmZXU .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.cid-tRbjanmZXU .row .img-item img {
  width: 100%;
  object-fit: cover;
  min-height: 160px;
  border-radius: 2rem;
}
@media (max-width: 767px) {
  .cid-tRbjanmZXU .row .img-item img {
    min-height: 75px;
  }
}
.cid-tRbjanIAIF {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/mbr-1920x1440.jpg");
}
.cid-tRbjanIAIF .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRbjanIAIF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRbjanIAIF .text-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  min-height: 280px;
  padding: 70px 50px;
  background-image: url("../../../assets/images/blobs-3.svg");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}
.cid-tRbjanIAIF .mbr-section-title {
  width: 100%;
  color: #353535;
  margin-bottom: 0;
}
.cid-tRbjanIAIF .mbr-section-title.display-4 {
  font-size: 48px;
}
@media (max-width: 767px) {
  .cid-tRbjanIAIF .mbr-section-title.display-4 {
    font-size: 36px;
  }
}
@media (max-width: 575px) {
  .cid-tRbjanIAIF .mbr-section-title.display-4 {
    font-size: 28px;
  }
}
.cid-tRbjanIAIF .mbr-text {
  width: 100%;
  color: #353535;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-tRbjanIAIF .mbr-text {
    margin-top: 16px;
  }
}
.cid-tRbjanIAIF .mbr-section-btn {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-tRbjanIAIF .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-tRbjao3hD3 {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background: #fffcf5;
}
.cid-tRbjao3hD3 .card-box {
  max-width: 505px;
  margin: 0 auto;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tRbjao3hD3 .card-box {
    max-width: 100%;
    margin-bottom: 70px;
  }
}
.cid-tRbjao3hD3 .card-title {
  color: #45494E;
}
.cid-tRbjao3hD3 .mbr-text {
  color: #45494E;
  margin-top: 10px;
}
@media (max-width: 991px) {
  .cid-tRbjao3hD3 .mbr-text {
    margin-top: 14px;
  }
}
.cid-tRbjao3hD3 .mbr-section-btn {
  margin-top: 30px;
}
.cid-tRbjao3hD3 .map-wrap {
  position: relative;
  padding-bottom: 110%;
  width: 100%;
}
.cid-tRbjao3hD3 .map-position-container {
  position: absolute;
  width: 100%;
  height: 100%;
}
.cid-tRbjao3hD3 .google-map {
  height: 100%;
  width: 100%;
  position: relative;
}
.cid-tRbjao3hD3 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tRbjao3hD3 .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-tRbjao3hD3 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tRbjao3hD3 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tRbjaormIg {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #829d85;
}
.cid-tRbjaormIg .mbr-text {
  color: #FFFCF5;
}
.cid-uWufALlVC9 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 90px;
}
.cid-uWufALlVC9 nav.navbar {
  position: fixed;
}
.cid-uWufALlVC9 .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-uWufALlVC9 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uWufALlVC9 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uWufALlVC9 .dropdown-item:hover,
.cid-uWufALlVC9 .dropdown-item:focus {
  background: #829d85 !important;
  color: white !important;
}
.cid-uWufALlVC9 .dropdown-item:hover span {
  color: white;
}
.cid-uWufALlVC9 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uWufALlVC9 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uWufALlVC9 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uWufALlVC9 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uWufALlVC9 .nav-link {
  position: relative;
}
.cid-uWufALlVC9 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uWufALlVC9 .container {
    flex-wrap: nowrap;
  }
}
.cid-uWufALlVC9 .iconfont-wrapper {
  color: #353535 !important;
  font-size: 18px;
  padding-right: 0;
}
.cid-uWufALlVC9 .iconfont-wrapper .mbr-iconfont {
  transition: .4s all;
}
.cid-uWufALlVC9 .iconfont-wrapper .mbr-iconfont:hover {
  color: #829d85;
}
.cid-uWufALlVC9 .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 66.66666667%;
  margin-right: auto;
  min-height: 89px;
}
.cid-uWufALlVC9 .navbar-nav .nav-item {
  margin: 2px;
}
.cid-uWufALlVC9 .navbar-nav .nav-link {
  padding: 5px 9px;
  transition: .4s all;
}
.cid-uWufALlVC9 .navbar-nav .nav-link:hover {
  transform: scale(1.1);
}
.cid-uWufALlVC9 .dropdown-menu,
.cid-uWufALlVC9 .navbar.opened {
  background: #fffcf5 !important;
}
.cid-uWufALlVC9 .nav-item:focus,
.cid-uWufALlVC9 .nav-link:focus {
  outline: none;
}
.cid-uWufALlVC9 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uWufALlVC9 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uWufALlVC9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uWufALlVC9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uWufALlVC9 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uWufALlVC9 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uWufALlVC9 .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: none !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fffcf5;
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-uWufALlVC9 .navbar.opened {
  transition: all 0.3s;
}
.cid-uWufALlVC9 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uWufALlVC9 .navbar .navbar-logo img {
  width: auto;
}
.cid-uWufALlVC9 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uWufALlVC9 .navbar.collapsed {
  justify-content: center;
}
.cid-uWufALlVC9 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uWufALlVC9 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uWufALlVC9 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uWufALlVC9 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uWufALlVC9 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uWufALlVC9 .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-uWufALlVC9 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uWufALlVC9 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uWufALlVC9 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uWufALlVC9 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uWufALlVC9 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uWufALlVC9 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uWufALlVC9 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uWufALlVC9 .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-uWufALlVC9 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uWufALlVC9 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uWufALlVC9 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uWufALlVC9 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uWufALlVC9 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uWufALlVC9 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uWufALlVC9 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uWufALlVC9 .navbar.navbar-short {
  min-height: 90px;
}
.cid-uWufALlVC9 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uWufALlVC9 .navbar.navbar-short .navbar-brand {
  min-height: 89px;
  padding: 0;
}
.cid-uWufALlVC9 .navbar-brand {
  min-height: 89px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  width: 25%;
}
.cid-uWufALlVC9 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uWufALlVC9 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uWufALlVC9 .dropdown-item.active,
.cid-uWufALlVC9 .dropdown-item:active {
  background-color: transparent;
}
.cid-uWufALlVC9 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uWufALlVC9 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uWufALlVC9 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uWufALlVC9 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fffcf5;
}
.cid-uWufALlVC9 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uWufALlVC9 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uWufALlVC9 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uWufALlVC9 .navbar-buttons {
  text-align: center;
}
.cid-uWufALlVC9 button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  background-color: #f6efe8;
  border-radius: 50%;
}
.cid-uWufALlVC9 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 13px;
  width: 22px;
  height: 2px;
  background-color: #715537;
}
.cid-uWufALlVC9 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 17px;
  transition: all 0.2s;
}
.cid-uWufALlVC9 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-uWufALlVC9 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-uWufALlVC9 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 29px;
  transition: all 0.2s;
}
.cid-uWufALlVC9 nav.opened .hamburger span:nth-child(1) {
  top: 17px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-uWufALlVC9 nav.opened .hamburger span:nth-child(2) {
  transform: translateY(-1px) rotate(45deg);
  transition: all 0.25s;
}
.cid-uWufALlVC9 nav.opened .hamburger span:nth-child(3) {
  transform: translateY(-1px) rotate(-45deg);
  transition: all 0.25s;
}
.cid-uWufALlVC9 nav.opened .hamburger span:nth-child(4) {
  top: 29px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-uWufALlVC9 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uWufALlVC9 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uWufALlVC9 .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-uWufALlVC9 .navbar {
    height: 70px;
  }
  .cid-uWufALlVC9 .navbar.opened {
    height: auto;
  }
  .cid-uWufALlVC9 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uWufALlVC9 .container,
.cid-uWufALlVC9 .container-fluid {
  flex-wrap: wrap;
}
.cid-uWufALlVC9 .navbar-collapse {
  width: 75%;
  min-height: 89px;
}
.cid-uWufALlVC9 .border-item {
  width: 100%;
  height: 1px;
  background-color: #829d86;
}
.cid-uWufALlVC9 .mbr-section-btn .btn {
  width: 180px;
  min-width: auto;
  min-height: 55px;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-uWufALlVC9 .navbar-brand {
    width: calc(100% - 48px) !important;
    min-height: 89px;
  }
  .cid-uWufALlVC9 .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 1rem;
    order: 5;
  }
  .cid-uWufALlVC9 .navbar-nav {
    width: 100%;
  }
}
.cid-uWufALHFi7 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fffcf5;
  overflow: hidden;
}
.cid-uWufALHFi7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWufALHFi7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWufALHFi7 .row {
  flex-wrap: nowrap;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uWufALHFi7 .row {
    flex-wrap: wrap;
  }
}
.cid-uWufALHFi7 .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 15px 0;
}
.cid-uWufALHFi7 .text-wrap:before {
  content: "";
  position: absolute;
  right: -100px;
  top: 0;
  height: 100%;
  width: 100vw;
  border-radius: 0 65px 65px 0;
  background-color: #4553a2;
  z-index: -1;
  border-radius: 65px 0 0 65px;
  right: auto;
  left: -100px;
}
@media (max-width: 1199px) {
  .cid-uWufALHFi7 .text-wrap:before {
    border-radius: 0 40px 40px 0;
    border-radius: 40px 0 0 40px;
  }
}
@media (max-width: 991px) {
  .cid-uWufALHFi7 .text-wrap:before {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0;
  }
}
@media (max-width: 991px) {
  .cid-uWufALHFi7 .text-wrap {
    padding: 20px 0 50px;
  }
}
@media (max-width: 767px) {
  .cid-uWufALHFi7 .text-wrap {
    margin-bottom: -5px;
  }
}
.cid-uWufALHFi7 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uWufALHFi7 .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uWufALHFi7 .mbr-text {
    margin-top: 12px;
  }
}
.cid-uWufALHFi7 .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uWufALHFi7 .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-uWufALHFi7 .col-img {
  width: 390px;
}
@media (max-width: 1199px) {
  .cid-uWufALHFi7 .col-img {
    width: 330px;
  }
}
@media (max-width: 991px) {
  .cid-uWufALHFi7 .col-img {
    width: 250px;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-uWufALHFi7 .col-img {
    margin-bottom: -50px;
  }
}
.cid-uWufALHFi7 .img-wrap {
  position: relative;
  width: 100%;
}
.cid-uWufALHFi7 .img-wrap .img-box {
  position: relative;
  z-index: 3;
  width: 150%;
  border-radius: 65px 65px 65px 0;
  overflow: hidden;
  border-radius: 65px 0 65px 65px;
}
@media (max-width: 1199px) {
  .cid-uWufALHFi7 .img-wrap .img-box {
    border-radius: 0 40px 40px 40px;
    border-radius: 40px 0 40px 40px;
  }
}
@media (max-width: 991px) {
  .cid-uWufALHFi7 .img-wrap .img-box {
    transform: translateY(-15px);
    border-radius: 0 30px 30px 30px;
    width: 120%;
    border-radius: 30px 0 30px 30px;
  }
}
.cid-uWufALHFi7 .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-uWufALHFi7 .mbr-text,
.cid-uWufALHFi7 .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uWufAMcX3s {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fffcf5;
}
.cid-uWufAMcX3s .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWufAMcX3s .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWufAMcX3s .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 991px) {
  .cid-uWufAMcX3s .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-uWufAMcX3s .mbr-section-head {
    margin-bottom: 50px;
  }
}
.cid-uWufAMcX3s .mbr-section-title {
  color: #4553a2;
  margin-bottom: 0;
}
.cid-uWufAMcX3s .mbr-section-subtitle {
  color: #353535;
  margin-top: 20px;
}
@media (max-width: 991px) {
  .cid-uWufAMcX3s .col-img {
    display: none;
  }
}
.cid-uWufAMcX3s .img-wrap {
  width: 100%;
}
.cid-uWufAMcX3s .img-wrap .img-box {
  width: 100%;
  border-radius: 65px 65px 0 65px;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-uWufAMcX3s .img-wrap .img-box {
    border-radius: 40px 40px 0 40px;
  }
}
.cid-uWufAMcX3s .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-uWufAMcX3s .mbr-iconfont {
  position: relative;
  font-size: 24px !important;
  font-family: 'Moririse2' !important;
  color: #987a5a;
  margin-left: 1rem;
  padding: 10px;
  transition: .3s all;
}
.cid-uWufAMcX3s .mbr-iconfont:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(195, 195, 195, 0.9);
  opacity: 0;
  transition: .3s all;
}
.cid-uWufAMcX3s .mbr-iconfont:before {
  position: relative;
  z-index: 2;
}
.cid-uWufAMcX3s .panel-group {
  border: none;
  border-top: 1px solid #829d85;
  margin-top: 10px;
}
@media (max-width: 991px) {
  .cid-uWufAMcX3s .panel-group {
    margin-top: 0;
  }
}
.cid-uWufAMcX3s .card {
  border-bottom: 1px solid #829d85;
  border-radius: 0;
}
.cid-uWufAMcX3s .card-header {
  padding: 20px 0;
  border: none;
  background-color: transparent;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .cid-uWufAMcX3s .card-header {
    padding: 8px 0;
  }
}
.cid-uWufAMcX3s .card-header:hover .mbr-iconfont {
  color: #829d85;
}
.cid-uWufAMcX3s .card-header:hover .mbr-iconfont:after {
  opacity: 1;
}
.cid-uWufAMcX3s .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #987A5A;
}
.cid-uWufAMcX3s .panel-title[aria-expanded="true"] .mbr-iconfont {
  transform: rotate(45deg);
}
.cid-uWufAMcX3s .panel-title-edit {
  color: #4d8ab8;
}
.cid-uWufAMcX3s .panel-body {
  padding: 0 0 40px;
}
@media (max-width: 767px) {
  .cid-uWufAMcX3s .panel-body {
    padding: 0 0 24px;
  }
}
.cid-uWufAMcX3s .panel-text {
  color: #353535;
  margin: 0;
  text-align: left;
}
.cid-uWufAMvNib {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #4553a2;
}
.cid-uWufAMvNib .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWufAMvNib .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWufAMvNib .mbr-section-title {
  width: 100%;
  color: #61411e;
  margin-bottom: 0;
}
.cid-uWufAMvNib .mbr-section-title.display-4 {
  font-size: 40px;
}
@media (max-width: 767px) {
  .cid-uWufAMvNib .mbr-section-title.display-4 {
    font-size: 32px;
    line-height: 1.2;
  }
}
@media (max-width: 575px) {
  .cid-uWufAMvNib .mbr-section-title.display-4 {
    font-size: 26px;
  }
}
.cid-uWufAMvNib .mbr-text {
  width: 100%;
  color: #353535;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uWufAMvNib .mbr-text {
    margin-top: 16px;
  }
}
.cid-uWufAMvNib .mbr-section-btn {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uWufAMvNib .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-uWufAMvNib .mbr-text,
.cid-uWufAMvNib .mbr-section-btn {
  color: #f6efe8;
}
.cid-uWufAMMYdI {
  padding-top: 4rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/mbr-2-1920x1280.jpg");
}
.cid-uWufAMMYdI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWufAMMYdI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWufAMMYdI .text-wrap {
  width: 100%;
}
.cid-uWufAMMYdI .mbr-title {
  margin-bottom: 0;
  color: #0d5e9c;
  text-align: center;
}
.cid-uWufAMMYdI .mbr-text {
  padding-top: 16px;
  color: #353535;
}
.cid-uWufAMMYdI .list-wrap {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uWufAMMYdI .list-wrap {
    margin-top: 24px;
  }
}
.cid-uWufAMMYdI .list-box {
  width: 100%;
}
.cid-uWufAMMYdI .list {
  list-style: none;
  margin-top: 22px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #353535;
}
.cid-uWufAMMYdI .list-text {
  position: relative;
}
.cid-uWufAMMYdI .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-uWufAMMYdI .list-text:before {
  content: "";
  position: absolute;
  display: block;
  width: 16px;
  height: 14px;
  left: -30px;
  top: 7px;
  background-image: url("../../../assets/images/marker.svg");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}
.cid-uWufAN7aQG {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #fffcf5;
}
.cid-uWufAN7aQG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWufAN7aQG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWufAN7aQG .text-wrap {
  width: 100%;
}
.cid-uWufAN7aQG .mbr-title {
  margin-bottom: 0;
  color: #11217b;
  text-align: center;
}
.cid-uWufAN7aQG .mbr-text {
  padding-top: 16px;
  color: #353535;
}
.cid-uWufAN7aQG .list-wrap {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uWufAN7aQG .list-wrap {
    margin-top: 24px;
  }
}
.cid-uWufAN7aQG .list-box {
  width: 100%;
}
.cid-uWufAN7aQG .list {
  list-style: none;
  margin-top: 22px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #353535;
}
.cid-uWufAN7aQG .list-text {
  position: relative;
}
.cid-uWufAN7aQG .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-uWufAN7aQG .list-text:before {
  content: "";
  position: absolute;
  display: block;
  width: 16px;
  height: 14px;
  left: -30px;
  top: 7px;
  background-image: url("../../../file:///C:/Users/milag/AppData/Local/Mobirise.com/Mobirise/milagrosvieyraok_0040gmail_002ecom/addons/adaptm5/components/aarticle1/ ");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}
.cid-uWufANoy4w {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fffcf5;
  overflow: hidden;
}
.cid-uWufANoy4w .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWufANoy4w .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWufANoy4w .row {
  flex-wrap: nowrap;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uWufANoy4w .row {
    flex-wrap: wrap;
  }
}
.cid-uWufANoy4w .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 80px 0;
}
.cid-uWufANoy4w .text-wrap:before {
  content: "";
  position: absolute;
  right: -100px;
  top: 0;
  height: 100%;
  width: 100vw;
  border-radius: 0 65px 65px 0;
  background-color: #4553a2;
  z-index: -1;
  border-radius: 65px 0 0 65px;
  right: auto;
  left: -100px;
}
@media (max-width: 1199px) {
  .cid-uWufANoy4w .text-wrap:before {
    border-radius: 0 40px 40px 0;
    border-radius: 40px 0 0 40px;
  }
}
@media (max-width: 991px) {
  .cid-uWufANoy4w .text-wrap:before {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0;
  }
}
@media (max-width: 991px) {
  .cid-uWufANoy4w .text-wrap {
    padding: 50px 0 90px;
  }
}
@media (max-width: 767px) {
  .cid-uWufANoy4w .text-wrap {
    margin-bottom: 20px;
  }
}
.cid-uWufANoy4w .mbr-section-title {
  color: #ffffff;
}
.cid-uWufANoy4w .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uWufANoy4w .mbr-text {
    margin-top: 12px;
  }
}
.cid-uWufANoy4w .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uWufANoy4w .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-uWufANoy4w .col-img {
  width: 390px;
}
@media (max-width: 1199px) {
  .cid-uWufANoy4w .col-img {
    width: 330px;
  }
}
@media (max-width: 991px) {
  .cid-uWufANoy4w .col-img {
    width: 250px;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-uWufANoy4w .col-img {
    margin-bottom: -50px;
  }
}
.cid-uWufANoy4w .img-wrap {
  position: relative;
  width: 100%;
}
.cid-uWufANoy4w .img-wrap .img-box {
  position: relative;
  z-index: 3;
  width: 100%;
  border-radius: 0 65px 65px 65px;
  overflow: hidden;
  border-radius: 65px 0 65px 65px;
}
@media (max-width: 1199px) {
  .cid-uWufANoy4w .img-wrap .img-box {
    border-radius: 0 40px 40px 40px;
    border-radius: 40px 0 40px 40px;
  }
}
@media (max-width: 991px) {
  .cid-uWufANoy4w .img-wrap .img-box {
    transform: translateY(-50px);
    border-radius: 0 30px 30px 30px;
    border-radius: 30px 0 30px 30px;
  }
}
.cid-uWufANoy4w .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-uWufANH1qk {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #b8a54d;
}
.cid-uWufANH1qk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWufANH1qk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWufANH1qk .mbr-section-title {
  width: 100%;
  color: #61411e;
  margin-bottom: 0;
}
.cid-uWufANH1qk .mbr-section-title.display-4 {
  font-size: 40px;
}
@media (max-width: 767px) {
  .cid-uWufANH1qk .mbr-section-title.display-4 {
    font-size: 32px;
    line-height: 1.2;
  }
}
@media (max-width: 575px) {
  .cid-uWufANH1qk .mbr-section-title.display-4 {
    font-size: 26px;
  }
}
.cid-uWufANH1qk .mbr-text {
  width: 100%;
  color: #353535;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uWufANH1qk .mbr-text {
    margin-top: 16px;
  }
}
.cid-uWufANH1qk .mbr-section-btn {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uWufANH1qk .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-uWufANH1qk .mbr-text,
.cid-uWufANH1qk .mbr-section-btn {
  color: #f6efe8;
}
.cid-uWufANXTsu {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fffcf5;
  overflow: hidden;
}
.cid-uWufANXTsu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWufANXTsu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWufANXTsu .row {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uWufANXTsu .row {
    flex-wrap: wrap;
  }
}
.cid-uWufANXTsu .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uWufANXTsu .text-wrap {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .cid-uWufANXTsu .text-wrap {
    margin-bottom: 20px;
  }
}
.cid-uWufANXTsu .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #f8f1ea;
  transform: translateY(40%);
}
.cid-uWufANXTsu .mbr-section-title {
  color: #61411e;
  text-align: center;
}
.cid-uWufANXTsu .mbr-section-title a {
  pointer-events: none !important;
  font-style: italic !important;
  font-weight: bold !important;
}
.cid-uWufANXTsu .mbr-section-subtitle {
  margin-top: 30px;
  color: #353535;
}
@media (max-width: 767px) {
  .cid-uWufANXTsu .mbr-section-subtitle {
    margin-top: 12px;
  }
}
.cid-uWufANXTsu .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uWufANXTsu .mbr-text {
    margin-top: 12px;
  }
}
.cid-uWufANXTsu .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uWufANXTsu .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-uWufANXTsu .col-img {
  width: 430px;
}
@media (max-width: 1199px) {
  .cid-uWufANXTsu .col-img {
    width: 350px;
  }
}
.cid-uWufANXTsu .img-wrap {
  position: relative;
  width: 50%;
}
.cid-uWufANXTsu .img-wrap .img-box {
  position: relative;
  z-index: 3;
  width: 150%;
  border-top-left-radius: 65px;
  border-top-right-radius: 65px;
  border-bottom-right-radius: 65px;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-uWufANXTsu .img-wrap .img-box {
    border-top-left-radius: 55px;
    border-top-right-radius: 55px;
    border-bottom-right-radius: 55px;
  }
}
.cid-uWufANXTsu .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-uWufANXTsu .img-wrap .frame-box {
  position: absolute;
  height: 240px;
}
.cid-uWufANXTsu .img-wrap .frame-box svg {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
}
.cid-uWufANXTsu .img-wrap .frame-box-1 {
  bottom: -20%;
  left: -14%;
  width: 85%;
  transform: rotate(15deg);
}
.cid-uWufANXTsu .img-wrap .frame-box-2 {
  bottom: -18%;
  right: -44%;
  width: 84%;
  transform: rotate(165deg);
}
@media (max-width: 991px) {
  .cid-uWufANXTsu .img-wrap .frame-box-2 {
    bottom: auto;
    top: -15%;
  }
}
.cid-uWufANXTsu .mbr-text,
.cid-uWufANXTsu .mbr-section-btn {
  color: #fffdfb;
}
.cid-uWufAOBYfn {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/whatsapp20image202024-10-0620at208.08.2620am-1600x1200.jpeg");
}
.cid-uWufAOBYfn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWufAOBYfn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWufAOBYfn .text-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  min-height: 280px;
  padding: 70px 50px;
  background-image: url("../../../assets/images/blobs-3.svg");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}
.cid-uWufAOBYfn .mbr-section-title {
  width: 100%;
  color: #353535;
  margin-bottom: 0;
}
.cid-uWufAOBYfn .mbr-section-title.display-4 {
  font-size: 48px;
}
@media (max-width: 767px) {
  .cid-uWufAOBYfn .mbr-section-title.display-4 {
    font-size: 36px;
  }
}
@media (max-width: 575px) {
  .cid-uWufAOBYfn .mbr-section-title.display-4 {
    font-size: 28px;
  }
}
.cid-uWufAOBYfn .mbr-text {
  width: 100%;
  color: #353535;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uWufAOBYfn .mbr-text {
    margin-top: 16px;
  }
}
.cid-uWufAOBYfn .mbr-section-btn {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uWufAOBYfn .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-uWufAOTCzy {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background: #fffcf5;
}
.cid-uWufAOTCzy .card-box {
  max-width: 505px;
  margin: 0 auto;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uWufAOTCzy .card-box {
    max-width: 100%;
    margin-bottom: 70px;
  }
}
.cid-uWufAOTCzy .card-title {
  color: #45494E;
}
.cid-uWufAOTCzy .mbr-text {
  color: #45494E;
  margin-top: 10px;
}
@media (max-width: 991px) {
  .cid-uWufAOTCzy .mbr-text {
    margin-top: 14px;
  }
}
.cid-uWufAOTCzy .mbr-section-btn {
  margin-top: 30px;
}
.cid-uWufAOTCzy .map-wrap {
  position: relative;
  padding-bottom: 110%;
  width: 100%;
}
.cid-uWufAOTCzy .map-position-container {
  position: absolute;
  width: 100%;
  height: 100%;
}
.cid-uWufAOTCzy .google-map {
  height: 100%;
  width: 100%;
  position: relative;
}
.cid-uWufAOTCzy .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uWufAOTCzy .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-uWufAOTCzy .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uWufAOTCzy .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uWufAPhpPU {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #829d85;
}
.cid-uWufAPhpPU .mbr-text {
  color: #FFFCF5;
}
