body {
  font-family: Noto Sans;
}
.display-1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.375rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.46875rem;
}
.display-2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.125rem;
}
.display-4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.5625rem;
}
.display-5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 500;
}
.display-5 > .mbr-iconfont {
  font-size: 1.75rem;
}
.display-7 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.125rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.40625rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.5rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.0625rem;
    font-size: calc( 2.18125rem + (4.375 - 2.18125) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.18125rem + (4.375 - 2.18125) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2rem;
    font-size: calc( 1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1rem;
    font-size: calc( 1.0875rem + (1.25 - 1.0875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0875rem + (1.25 - 1.0875) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.9rem;
    font-size: calc( 1.04375rem + (1.125 - 1.04375) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.04375rem + (1.125 - 1.04375) * ((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: #caa9a8 !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: #caa9a8;
  border: 1px solid #caa9a8;
  transform: rotate(-5deg);
  z-index: -1;
  transition: .35s all;
}
.btn-warning,
.btn-warning:active {
  background-color: transparent  !important;
  border-color: #caa9a8 !important;
  color: #54566c !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: #54566c !important;
}
.btn-warning:hover:before,
.btn-warning:focus:before,
.btn-warning.focus:before,
.btn-warning.active:before {
  background-color: #caa9a8 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #54566c !important;
  background-color: #a97472 !important;
  border-color: #a97472 !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 #caa9a8;
  transform: rotate(-5deg);
  z-index: -1;
  transition: .35s all;
}
.btn-warning-outline,
.btn-warning-outline:active {
  color: #54566c;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #54566c !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #54566c !important;
  background-color: #a97472 !important;
  border-color: #a97472 !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: #caa9a8 !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: #a36a69 !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: #caa9a8;
}
.alert-danger {
  background-color: #895957;
}
.mbr-gallery-filter li.active .btn {
  background-color: #829d85;
  border-color: #829d85;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
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: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #c19f9e;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.5625rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #829d85 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.5625rem;
}
blockquote {
  border-color: #829d85;
}
/* Forms */
.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);
}
*:focus-visible {
  outline: red solid 2px !important;
  outline-offset: 2px !important;
  transition: outline 0.2s ease-in-out;
}
.cid-tqnGSSQQAK {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 90px;
}
.cid-tqnGSSQQAK nav.navbar {
  position: fixed;
}
.cid-tqnGSSQQAK .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-tqnGSSQQAK .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tqnGSSQQAK .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tqnGSSQQAK .dropdown-item:hover,
.cid-tqnGSSQQAK .dropdown-item:focus {
  background: #829d85 !important;
  color: white !important;
}
.cid-tqnGSSQQAK .dropdown-item:hover span {
  color: white;
}
.cid-tqnGSSQQAK .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tqnGSSQQAK .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tqnGSSQQAK .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tqnGSSQQAK .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tqnGSSQQAK .nav-link {
  position: relative;
}
.cid-tqnGSSQQAK .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tqnGSSQQAK .container {
    flex-wrap: nowrap;
  }
}
.cid-tqnGSSQQAK .iconfont-wrapper {
  color: #353535 !important;
  font-size: 18px;
  padding-right: 0;
}
.cid-tqnGSSQQAK .iconfont-wrapper .mbr-iconfont {
  transition: .4s all;
}
.cid-tqnGSSQQAK .iconfont-wrapper .mbr-iconfont:hover {
  color: #829d85;
}
.cid-tqnGSSQQAK .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 66.66666667%;
  margin-right: auto;
  min-height: 89px;
}
.cid-tqnGSSQQAK .navbar-nav .nav-item {
  margin: 2px;
}
.cid-tqnGSSQQAK .navbar-nav .nav-link {
  padding: 5px 9px;
  transition: .4s all;
}
.cid-tqnGSSQQAK .navbar-nav .nav-link:hover {
  transform: scale(1.1);
}
.cid-tqnGSSQQAK .dropdown-menu,
.cid-tqnGSSQQAK .navbar.opened {
  background: #f1dbda !important;
}
.cid-tqnGSSQQAK .nav-item:focus,
.cid-tqnGSSQQAK .nav-link:focus {
  outline: none;
}
.cid-tqnGSSQQAK .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tqnGSSQQAK .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tqnGSSQQAK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tqnGSSQQAK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tqnGSSQQAK .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tqnGSSQQAK .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tqnGSSQQAK .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: #f1dbda;
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-tqnGSSQQAK .navbar.opened {
  transition: all 0.3s;
}
.cid-tqnGSSQQAK .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tqnGSSQQAK .navbar .navbar-logo img {
  width: auto;
}
.cid-tqnGSSQQAK .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tqnGSSQQAK .navbar.collapsed {
  justify-content: center;
}
.cid-tqnGSSQQAK .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tqnGSSQQAK .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tqnGSSQQAK .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tqnGSSQQAK .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tqnGSSQQAK .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tqnGSSQQAK .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-tqnGSSQQAK .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tqnGSSQQAK .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tqnGSSQQAK .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tqnGSSQQAK .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tqnGSSQQAK .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tqnGSSQQAK .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tqnGSSQQAK .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tqnGSSQQAK .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-tqnGSSQQAK .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tqnGSSQQAK .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tqnGSSQQAK .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tqnGSSQQAK .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tqnGSSQQAK .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tqnGSSQQAK .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tqnGSSQQAK .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tqnGSSQQAK .navbar.navbar-short {
  min-height: 90px;
}
.cid-tqnGSSQQAK .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tqnGSSQQAK .navbar.navbar-short .navbar-brand {
  min-height: 89px;
  padding: 0;
}
.cid-tqnGSSQQAK .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-tqnGSSQQAK .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tqnGSSQQAK .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tqnGSSQQAK .dropdown-item.active,
.cid-tqnGSSQQAK .dropdown-item:active {
  background-color: transparent;
}
.cid-tqnGSSQQAK .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tqnGSSQQAK .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tqnGSSQQAK .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tqnGSSQQAK .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f1dbda;
}
.cid-tqnGSSQQAK .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tqnGSSQQAK .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tqnGSSQQAK ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tqnGSSQQAK .navbar-buttons {
  text-align: center;
}
.cid-tqnGSSQQAK 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-tqnGSSQQAK button.navbar-toggler .hamburger span {
  position: absolute;
  right: 13px;
  width: 22px;
  height: 2px;
  background-color: #715537;
}
.cid-tqnGSSQQAK button.navbar-toggler .hamburger span:nth-child(1) {
  top: 17px;
  transition: all 0.2s;
}
.cid-tqnGSSQQAK button.navbar-toggler .hamburger span:nth-child(2) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-tqnGSSQQAK button.navbar-toggler .hamburger span:nth-child(3) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-tqnGSSQQAK button.navbar-toggler .hamburger span:nth-child(4) {
  top: 29px;
  transition: all 0.2s;
}
.cid-tqnGSSQQAK nav.opened .hamburger span:nth-child(1) {
  top: 17px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-tqnGSSQQAK nav.opened .hamburger span:nth-child(2) {
  transform: translateY(-1px) rotate(45deg);
  transition: all 0.25s;
}
.cid-tqnGSSQQAK nav.opened .hamburger span:nth-child(3) {
  transform: translateY(-1px) rotate(-45deg);
  transition: all 0.25s;
}
.cid-tqnGSSQQAK nav.opened .hamburger span:nth-child(4) {
  top: 29px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-tqnGSSQQAK .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tqnGSSQQAK a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tqnGSSQQAK .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-tqnGSSQQAK .navbar {
    height: 70px;
  }
  .cid-tqnGSSQQAK .navbar.opened {
    height: auto;
  }
  .cid-tqnGSSQQAK .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tqnGSSQQAK .container,
.cid-tqnGSSQQAK .container-fluid {
  flex-wrap: wrap;
}
.cid-tqnGSSQQAK .navbar-collapse {
  width: 75%;
  min-height: 89px;
}
.cid-tqnGSSQQAK .border-item {
  width: 100%;
  height: 1px;
  background-color: #caa9a8;
}
.cid-tqnGSSQQAK .mbr-section-btn .btn {
  width: 180px;
  min-width: auto;
  min-height: 55px;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-tqnGSSQQAK .navbar-brand {
    width: calc(100% - 48px) !important;
    min-height: 89px;
  }
  .cid-tqnGSSQQAK .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 1rem;
    order: 5;
  }
  .cid-tqnGSSQQAK .navbar-nav {
    width: 100%;
  }
}
.cid-tqnIBxS2Xz {
  background-color: #fffcf5;
  overflow: hidden;
}
.cid-tqnIBxS2Xz .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqnIBxS2Xz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqnIBxS2Xz .row {
  flex-wrap: nowrap;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-tqnIBxS2Xz .row {
    flex-wrap: wrap;
  }
}
.cid-tqnIBxS2Xz .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tqnIBxS2Xz .text-wrap {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .cid-tqnIBxS2Xz .text-wrap {
    margin-bottom: 20px;
  }
}
.cid-tqnIBxS2Xz .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #a9bbab;
  transform: translateY(40%);
}
.cid-tqnIBxS2Xz .mbr-section-title {
  color: #353535;
  text-align: left;
}
.cid-tqnIBxS2Xz .mbr-section-title a {
  pointer-events: none !important;
  font-style: italic !important;
  font-weight: bold !important;
}
.cid-tqnIBxS2Xz .mbr-section-subtitle {
  margin-top: 30px;
  color: #353535;
}
@media (max-width: 767px) {
  .cid-tqnIBxS2Xz .mbr-section-subtitle {
    margin-top: 12px;
  }
}
.cid-tqnIBxS2Xz .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tqnIBxS2Xz .mbr-text {
    margin-top: 12px;
  }
}
.cid-tqnIBxS2Xz .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tqnIBxS2Xz .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-tqnIBxS2Xz .col-img {
  width: 430px;
}
@media (max-width: 1199px) {
  .cid-tqnIBxS2Xz .col-img {
    width: 350px;
  }
}
.cid-tqnIBxS2Xz .img-wrap {
  position: relative;
  width: 100%;
}
.cid-tqnIBxS2Xz .img-wrap .img-box {
  position: relative;
  z-index: 3;
  width: 100%;
  border-top-left-radius: 65px;
  border-top-right-radius: 65px;
  border-bottom-right-radius: 65px;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-tqnIBxS2Xz .img-wrap .img-box {
    border-top-left-radius: 55px;
    border-top-right-radius: 55px;
    border-bottom-right-radius: 55px;
  }
}
.cid-tqnIBxS2Xz .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-tqnIBxS2Xz .img-wrap .frame-box {
  position: absolute;
  height: 240px;
}
.cid-tqnIBxS2Xz .img-wrap .frame-box svg {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
}
.cid-tqnIBxS2Xz .img-wrap .frame-box-1 {
  bottom: -20%;
  left: -14%;
  width: 85%;
  transform: rotate(10deg);
}
.cid-tqnIBxS2Xz .img-wrap .frame-box-2 {
  bottom: -18%;
  right: -14%;
  width: 84%;
  transform: rotate(0deg);
}
@media (max-width: 991px) {
  .cid-tqnIBxS2Xz .img-wrap .frame-box-2 {
    bottom: auto;
    top: -15%;
  }
}
.cid-tqnIBxS2Xz .mbr-text,
.cid-tqnIBxS2Xz .mbr-section-btn {
  text-align: left;
}
.cid-v7BeX6qb67 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1dbda;
}
.cid-v7BeX6qb67 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7BeX6qb67 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7BeX6qb67 .mbr-text {
  color: #000000;
}
.cid-v7BeX6qb67 .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-v7BeX6qb67 .item-wrapper {
  background: #f7f5f0;
  padding: 2.25rem 2.25rem 1rem 2.25rem;
}
@media (max-width: 767px) {
  .cid-v7BeX6qb67 .item-wrapper {
    padding: 2rem 1.5rem 0.5rem 1.5rem;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-v7BeX6qb67 .item-wrapper {
    padding: 2rem 1.5rem 0.5rem 1.5rem;
  }
}
.cid-v7BeX6qb67 .main-button {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-v7BeX6qb67 .main-button {
    margin-bottom: 2rem;
  }
}
.cid-v7BeX6qb67 .counter-container ul {
  margin: 0;
  padding-left: 2.25rem;
  list-style: none;
}
.cid-v7BeX6qb67 .counter-container ul li {
  position: relative;
  list-style: none;
  margin-bottom: 2rem;
}
.cid-v7BeX6qb67 .counter-container ul li:before {
  position: absolute;
  left: -1.5em;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000000;
  background-color: #000000;
  width: 0.5em;
  height: 0.5em;
  top: 0.4em;
  border-radius: 50%;
}
.cid-v7BeX6qb67 .mbr-text UL {
  text-align: left;
}
.cid-v7BeX6qb67 .mbr-section-subtitle,
.cid-v7BeX6qb67 .main-button {
  color: #000000;
}
.cid-v7BeX6qb67 .mbr-section-title {
  color: #000000;
}
.cid-v7B8GwFRED {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fffcf5;
}
.cid-v7B8GwFRED .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7B8GwFRED .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7B8GwFRED .text-wrap {
  width: 100%;
}
.cid-v7B8GwFRED .mbr-title {
  margin-bottom: 0;
  color: #829D85;
}
.cid-v7B8GwFRED .mbr-text {
  padding-top: 16px;
  color: #353535;
}
.cid-v7B8GwFRED .list-wrap {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-v7B8GwFRED .list-wrap {
    margin-top: 24px;
  }
}
.cid-v7B8GwFRED .list-box {
  width: 100%;
}
.cid-v7B8GwFRED .list {
  list-style: none;
  margin-top: 22px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #353535;
}
.cid-v7B8GwFRED .list-text {
  position: relative;
}
.cid-v7B8GwFRED .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-v7B8GwFRED .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-tqnJNh3H3d {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f1dbda;
  overflow: hidden;
}
.cid-tqnJNh3H3d .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqnJNh3H3d .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqnJNh3H3d .row {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tqnJNh3H3d .row {
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  .cid-tqnJNh3H3d .col-text {
    order: 2;
  }
}
.cid-tqnJNh3H3d .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tqnJNh3H3d .text-wrap {
    margin-top: 30px;
  }
}
.cid-tqnJNh3H3d .mbr-section-title {
  color: #000000;
  text-align: justify;
}
.cid-tqnJNh3H3d .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tqnJNh3H3d .mbr-text {
    margin-top: 12px;
  }
}
.cid-tqnJNh3H3d .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tqnJNh3H3d .mbr-section-btn {
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .cid-tqnJNh3H3d .col-img {
    order: 1;
  }
}
.cid-tqnJNh3H3d .img-wrap {
  position: relative;
  width: 100%;
}
.cid-tqnJNh3H3d .img-wrap .img-box {
  position: relative;
  z-index: 3;
  width: 100%;
  border-radius: 65px 65px 65px 0;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-tqnJNh3H3d .img-wrap .img-box {
    border-radius: 55px 55px 55px 0;
  }
}
@media (max-width: 991px) {
  .cid-tqnJNh3H3d .img-wrap .img-box {
    border-radius: 65px 65px 65px 0;
  }
}
@media (max-width: 767px) {
  .cid-tqnJNh3H3d .img-wrap .img-box {
    border-radius: 55px 55px 55px 0;
  }
}
@media (max-width: 575px) {
  .cid-tqnJNh3H3d .img-wrap .img-box {
    border-radius: 45px 45px 45px 0;
  }
}
.cid-tqnJNh3H3d .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-tqnJNh3H3d .mbr-text,
.cid-tqnJNh3H3d .mbr-section-btn {
  text-align: justify;
}
.cid-tqnKHbtjLQ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f1dbda;
}
.cid-tqnKHbtjLQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqnKHbtjLQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tqnKHbtjLQ .row {
    align-items: center !important;
  }
}
.cid-tqnKHbtjLQ .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 991px) {
  .cid-tqnKHbtjLQ .mbr-section-head {
    margin-bottom: 75px;
  }
}
@media (max-width: 767px) {
  .cid-tqnKHbtjLQ .mbr-section-head {
    margin-bottom: 65px;
  }
}
.cid-tqnKHbtjLQ .mbr-section-title {
  color: #000000;
  margin-bottom: 0;
}
.cid-tqnKHbtjLQ .mbr-section-subtitle {
  color: #353535;
  margin-top: 20px;
  text-align: justify;
}
.cid-tqnKHbtjLQ .text-wrap {
  width: 100%;
  padding: 36px 0;
  border-top: 1px solid #895957;
}
@media (max-width: 991px) {
  .cid-tqnKHbtjLQ .text-wrap {
    padding: 30px 0;
  }
}
.cid-tqnKHbtjLQ .mbr-title {
  color: #61411e;
}
.cid-tqnKHbtjLQ .mbr-text {
  margin-top: 12px;
  color: #353535;
}
.cid-tqnKHbtjLQ .list-box {
  width: 100%;
}
.cid-tqnKHbtjLQ .list {
  list-style: none;
  margin-top: 22px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #353535;
  padding-left: 0;
}
.cid-tqnKHbtjLQ .list-text {
  position: relative;
}
.cid-tqnKHbtjLQ .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-tqnKHbtjLQ .mbr-section-btn {
  margin-top: 20px;
}
.cid-tqnKHbtjLQ .img-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  border-radius: 0 100px 0 0;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-tqnKHbtjLQ .img-box {
    border-radius: 0;
  }
}
@media (max-width: 767px) {
  .cid-tqnKHbtjLQ .img-box {
    border-radius: 0 15vw 0 0;
  }
}
.cid-tqnKHbtjLQ .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-v7xnMbw7Ud {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fffcf5;
  overflow: hidden;
}
.cid-v7xnMbw7Ud .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7xnMbw7Ud .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7xnMbw7Ud .mbr-section-head {
  width: 100%;
  margin-bottom: 100px;
}
@media (max-width: 991px) {
  .cid-v7xnMbw7Ud .mbr-section-head {
    margin-bottom: 75px;
  }
}
@media (max-width: 767px) {
  .cid-v7xnMbw7Ud .mbr-section-head {
    margin-bottom: 65px;
  }
}
.cid-v7xnMbw7Ud .mbr-section-title {
  color: #000000;
  margin-bottom: 0;
}
.cid-v7xnMbw7Ud .mbr-section-subtitle {
  color: #353535;
  margin-top: 20px;
  text-align: justify;
}
.cid-v7xnMbw7Ud .items-row {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-v7xnMbw7Ud .items-row {
    row-gap: 50px;
  }
}
.cid-v7xnMbw7Ud .card-title {
  position: relative;
  max-width: 360px;
  width: 100%;
  color: #000000;
}
@media (max-width: 575px) {
  .cid-v7xnMbw7Ud .card-title {
    max-width: 100%;
  }
}
.cid-v7xnMbw7Ud .card-text {
  position: relative;
  max-width: 360px;
  width: 100%;
  margin-top: 16px;
  color: #353535;
}
@media (max-width: 575px) {
  .cid-v7xnMbw7Ud .card-text {
    max-width: 100%;
    margin-top: 12px;
  }
}
.cid-v7xnMbw7Ud .item-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 560px;
  padding: 50px 50px 60px;
  background-position: center;
  background-size: 100% 100%;
}
@media (max-width: 575px) {
  .cid-v7xnMbw7Ud .item-wrap {
    padding: 20px !important;
  }
}
.cid-v7xnMbw7Ud .item {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.cid-v7xnMbw7Ud .item:nth-child(1) .item-wrap {
  margin-right: auto;
  background-image: url("../../../assets/images/frame5.png");
}
.cid-v7xnMbw7Ud .item:nth-child(2) {
  margin-top: -12px;
}
@media (max-width: 991px) {
  .cid-v7xnMbw7Ud .item:nth-child(2) {
    margin: 0;
  }
}
.cid-v7xnMbw7Ud .item:nth-child(2) .item-wrap {
  margin-left: auto;
  background-image: url("../../../assets/images/frame6.png");
}
.cid-v7xnMbw7Ud .item:nth-child(3) {
  margin-top: -12px;
}
@media (max-width: 991px) {
  .cid-v7xnMbw7Ud .item:nth-child(3) {
    margin: 0;
  }
}
.cid-v7xnMbw7Ud .item:nth-child(3) .item-wrap {
  max-width: 600px;
  margin-right: auto;
  background-image: url("../../../assets/images/frame7.png");
}
.cid-v7xnMbw7Ud .item:nth-child(4) .item-wrap {
  max-width: 508px;
  margin-left: auto;
  padding: 50px 40px 60px;
  background-image: url("../../../assets/images/frame8.png");
}
.cid-tqnPVhqg2X {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f1dbda;
}
.cid-tqnPVhqg2X .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqnPVhqg2X .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqnPVhqg2X .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-tqnPVhqg2X .row {
    align-items: center !important;
  }
}
.cid-tqnPVhqg2X .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 991px) {
  .cid-tqnPVhqg2X .mbr-section-head {
    margin-bottom: 75px;
  }
}
@media (max-width: 767px) {
  .cid-tqnPVhqg2X .mbr-section-head {
    margin-bottom: 65px;
  }
}
.cid-tqnPVhqg2X .mbr-section-title {
  color: #000000;
  margin-bottom: 0;
}
.cid-tqnPVhqg2X .mbr-section-subtitle {
  color: #000000;
  margin-top: 20px;
}
.cid-tqnPVhqg2X .text-wrap {
  width: 100%;
  padding: 36px 0;
}
@media (max-width: 991px) {
  .cid-tqnPVhqg2X .text-wrap {
    padding: 30px 0;
  }
}
.cid-tqnPVhqg2X .mbr-title {
  color: #61411e;
}
.cid-tqnPVhqg2X .mbr-text {
  margin-top: 12px;
  color: #353535;
}
.cid-tqnPVhqg2X .list-box {
  width: 100%;
}
.cid-tqnPVhqg2X .list {
  list-style: none;
  margin-top: 22px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #353535;
  padding-left: 0;
}
.cid-tqnPVhqg2X .list-text {
  position: relative;
}
.cid-tqnPVhqg2X .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-tqnPVhqg2X .mbr-section-btn {
  margin-top: 20px;
}
.cid-tqnPVhqg2X .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-tqnPVhqg2X .img-box {
    border-radius: 0;
  }
}
@media (max-width: 767px) {
  .cid-tqnPVhqg2X .img-box {
    border-radius: 0 0 0 15vw;
    border-radius: 0 0 15vw 0;
  }
}
.cid-tqnPVhqg2X .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-tqnP5LWWNT {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f1dbda;
}
.cid-tqnP5LWWNT .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqnP5LWWNT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqnP5LWWNT .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-tqnP5LWWNT .mbr-section-title {
  width: 100%;
  color: #353535;
  margin-bottom: 0;
}
.cid-tqnP5LWWNT .mbr-section-title.display-4 {
  font-size: 48px;
}
@media (max-width: 767px) {
  .cid-tqnP5LWWNT .mbr-section-title.display-4 {
    font-size: 36px;
  }
}
@media (max-width: 575px) {
  .cid-tqnP5LWWNT .mbr-section-title.display-4 {
    font-size: 28px;
  }
}
.cid-tqnP5LWWNT .mbr-text {
  width: 100%;
  color: #353535;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-tqnP5LWWNT .mbr-text {
    margin-top: 16px;
  }
}
.cid-tqnP5LWWNT .mbr-section-btn {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-tqnP5LWWNT .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-tqnP5LWWNT .mbr-text,
.cid-tqnP5LWWNT .mbr-section-btn {
  text-align: justify;
}
.cid-tqnOQy9hhI {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f1dbda;
}
.cid-tqnOQy9hhI .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqnOQy9hhI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqnOQy9hhI .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 991px) {
  .cid-tqnOQy9hhI .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tqnOQy9hhI .mbr-section-head {
    margin-bottom: 50px;
  }
}
.cid-tqnOQy9hhI .mbr-section-title {
  color: #353535;
  margin-bottom: 0;
}
.cid-tqnOQy9hhI .mbr-section-subtitle {
  color: #353535;
  margin-top: 20px;
}
@media (max-width: 991px) {
  .cid-tqnOQy9hhI .col-img {
    display: none;
  }
}
.cid-tqnOQy9hhI .img-wrap {
  width: 100%;
}
.cid-tqnOQy9hhI .img-wrap .img-box {
  width: 100%;
  border-radius: 65px 65px 0 65px;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-tqnOQy9hhI .img-wrap .img-box {
    border-radius: 40px 40px 0 40px;
  }
}
.cid-tqnOQy9hhI .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-tqnOQy9hhI .mbr-iconfont {
  position: relative;
  font-size: 24px !important;
  font-family: 'Moririse2' !important;
  color: #987a5a;
  margin-left: 1rem;
  padding: 10px;
  transition: .3s all;
}
.cid-tqnOQy9hhI .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-tqnOQy9hhI .mbr-iconfont:before {
  position: relative;
  z-index: 2;
}
.cid-tqnOQy9hhI .panel-group {
  border: none;
  border-top: 1px solid #895957;
  margin-top: 10px;
}
@media (max-width: 991px) {
  .cid-tqnOQy9hhI .panel-group {
    margin-top: 0;
  }
}
.cid-tqnOQy9hhI .card {
  border-bottom: 1px solid #895957;
  border-radius: 0;
}
.cid-tqnOQy9hhI .card-header {
  padding: 20px 0;
  border: none;
  background-color: transparent;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .cid-tqnOQy9hhI .card-header {
    padding: 8px 0;
  }
}
.cid-tqnOQy9hhI .card-header:hover .mbr-iconfont {
  color: #895957;
}
.cid-tqnOQy9hhI .card-header:hover .mbr-iconfont:after {
  opacity: 1;
}
.cid-tqnOQy9hhI .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #987A5A;
}
.cid-tqnOQy9hhI .panel-title[aria-expanded="true"] .mbr-iconfont {
  transform: rotate(45deg);
}
.cid-tqnOQy9hhI .panel-title-edit {
  color: #987A5A;
}
.cid-tqnOQy9hhI .panel-body {
  padding: 0 0 40px;
}
@media (max-width: 767px) {
  .cid-tqnOQy9hhI .panel-body {
    padding: 0 0 24px;
  }
}
.cid-tqnOQy9hhI .panel-text {
  color: #353535;
  margin: 0;
}
.cid-v7B9mtUOjR {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fffcf5;
}
.cid-v7B9mtUOjR .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7B9mtUOjR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7B9mtUOjR .text-wrap {
  width: 100%;
}
.cid-v7B9mtUOjR .mbr-title {
  margin-bottom: 0;
  color: #000000;
}
.cid-v7B9mtUOjR .mbr-text {
  padding-top: 16px;
  color: #353535;
}
.cid-v7B9mtUOjR .list-wrap {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-v7B9mtUOjR .list-wrap {
    margin-top: 24px;
  }
}
.cid-v7B9mtUOjR .list-box {
  width: 100%;
}
.cid-v7B9mtUOjR .list {
  list-style: none;
  margin-top: 22px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #353535;
}
.cid-v7B9mtUOjR .list-text {
  position: relative;
}
.cid-v7B9mtUOjR .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-v7B9mtUOjR .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-v7xnfhavBv {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #f1dbda;
}
.cid-v7xnfhavBv .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7xnfhavBv .item-wrapper {
  display: flex;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-v7xnfhavBv .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v7xnfhavBv .item-wrapper:hover .iconfont-wrapper:after {
  width: 70px;
  height: 70px;
}
.cid-v7xnfhavBv a {
  font-weight: 600;
}
.cid-v7xnfhavBv a:hover {
  background: none !important;
}
@media (min-width: 1400px) {
  .cid-v7xnfhavBv .col-lg-3,
  .cid-v7xnfhavBv .col-xl-3 {
    max-width: 20%;
  }
}
@media (max-width: 1200px) {
  .cid-v7xnfhavBv .col-lg-12 {
    min-width: 100% !important;
  }
}
.cid-v7xnfhavBv .card-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-v7xnfhavBv h5 {
  margin: 0;
}
.cid-v7xnfhavBv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7xnfhavBv .iconfont-wrapper {
  position: relative;
}
.cid-v7xnfhavBv .mbr-iconfont {
  display: flex;
  padding-right: 1rem;
  font-size: 2rem;
  color: #000000;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 2;
  position: relative;
}
.cid-v7xnfhavBv .socicon {
  font-size: 1rem;
  width: 30px;
  height: 30px;
}
.cid-v7xnfhavBv .sociconfont-wrapper {
  display: flex;
}
.cid-v7xnfhavBv .card-title,
.cid-v7xnfhavBv .iconfont-wrapper {
  color: #000000;
}
.cid-v7xnfhavBv .card-text {
  color: #000000;
}
.cid-v7xnfhavBv .mbr-section-title {
  color: #000000;
}
.cid-v7xnfhavBv .main-title,
.cid-v7xnfhavBv .iconfont-wrapper {
  text-align: left;
  color: #df7f11;
}
.cid-tqnNLkY391 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #caa9a8;
}
.cid-tqnNLkY391 .mbr-text {
  color: #FFFCF5;
}
.cid-tqnNLkY391 .media-container-row .mbr-text {
  color: #353535;
}
.cid-v7Bduxdc3H {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 90px;
}
.cid-v7Bduxdc3H nav.navbar {
  position: fixed;
}
.cid-v7Bduxdc3H .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-v7Bduxdc3H .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v7Bduxdc3H .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v7Bduxdc3H .dropdown-item:hover,
.cid-v7Bduxdc3H .dropdown-item:focus {
  background: #829d85 !important;
  color: white !important;
}
.cid-v7Bduxdc3H .dropdown-item:hover span {
  color: white;
}
.cid-v7Bduxdc3H .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v7Bduxdc3H .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v7Bduxdc3H .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v7Bduxdc3H .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v7Bduxdc3H .nav-link {
  position: relative;
}
.cid-v7Bduxdc3H .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-v7Bduxdc3H .container {
    flex-wrap: nowrap;
  }
}
.cid-v7Bduxdc3H .iconfont-wrapper {
  color: #353535 !important;
  font-size: 18px;
  padding-right: 0;
}
.cid-v7Bduxdc3H .iconfont-wrapper .mbr-iconfont {
  transition: .4s all;
}
.cid-v7Bduxdc3H .iconfont-wrapper .mbr-iconfont:hover {
  color: #829d85;
}
.cid-v7Bduxdc3H .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 66.66666667%;
  margin-right: auto;
  min-height: 89px;
}
.cid-v7Bduxdc3H .navbar-nav .nav-item {
  margin: 2px;
}
.cid-v7Bduxdc3H .navbar-nav .nav-link {
  padding: 5px 9px;
  transition: .4s all;
}
.cid-v7Bduxdc3H .navbar-nav .nav-link:hover {
  transform: scale(1.1);
}
.cid-v7Bduxdc3H .dropdown-menu,
.cid-v7Bduxdc3H .navbar.opened {
  background: #f1dbda !important;
}
.cid-v7Bduxdc3H .nav-item:focus,
.cid-v7Bduxdc3H .nav-link:focus {
  outline: none;
}
.cid-v7Bduxdc3H .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v7Bduxdc3H .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v7Bduxdc3H .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v7Bduxdc3H .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v7Bduxdc3H .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v7Bduxdc3H .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v7Bduxdc3H .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: #f1dbda;
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-v7Bduxdc3H .navbar.opened {
  transition: all 0.3s;
}
.cid-v7Bduxdc3H .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v7Bduxdc3H .navbar .navbar-logo img {
  width: auto;
}
.cid-v7Bduxdc3H .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v7Bduxdc3H .navbar.collapsed {
  justify-content: center;
}
.cid-v7Bduxdc3H .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v7Bduxdc3H .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v7Bduxdc3H .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v7Bduxdc3H .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v7Bduxdc3H .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v7Bduxdc3H .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-v7Bduxdc3H .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v7Bduxdc3H .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v7Bduxdc3H .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v7Bduxdc3H .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v7Bduxdc3H .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v7Bduxdc3H .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v7Bduxdc3H .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v7Bduxdc3H .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-v7Bduxdc3H .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v7Bduxdc3H .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v7Bduxdc3H .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v7Bduxdc3H .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v7Bduxdc3H .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v7Bduxdc3H .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v7Bduxdc3H .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v7Bduxdc3H .navbar.navbar-short {
  min-height: 90px;
}
.cid-v7Bduxdc3H .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v7Bduxdc3H .navbar.navbar-short .navbar-brand {
  min-height: 89px;
  padding: 0;
}
.cid-v7Bduxdc3H .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-v7Bduxdc3H .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v7Bduxdc3H .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v7Bduxdc3H .dropdown-item.active,
.cid-v7Bduxdc3H .dropdown-item:active {
  background-color: transparent;
}
.cid-v7Bduxdc3H .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v7Bduxdc3H .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v7Bduxdc3H .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v7Bduxdc3H .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f1dbda;
}
.cid-v7Bduxdc3H .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v7Bduxdc3H .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v7Bduxdc3H ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v7Bduxdc3H .navbar-buttons {
  text-align: center;
}
.cid-v7Bduxdc3H 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-v7Bduxdc3H button.navbar-toggler .hamburger span {
  position: absolute;
  right: 13px;
  width: 22px;
  height: 2px;
  background-color: #715537;
}
.cid-v7Bduxdc3H button.navbar-toggler .hamburger span:nth-child(1) {
  top: 17px;
  transition: all 0.2s;
}
.cid-v7Bduxdc3H button.navbar-toggler .hamburger span:nth-child(2) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-v7Bduxdc3H button.navbar-toggler .hamburger span:nth-child(3) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-v7Bduxdc3H button.navbar-toggler .hamburger span:nth-child(4) {
  top: 29px;
  transition: all 0.2s;
}
.cid-v7Bduxdc3H nav.opened .hamburger span:nth-child(1) {
  top: 17px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-v7Bduxdc3H nav.opened .hamburger span:nth-child(2) {
  transform: translateY(-1px) rotate(45deg);
  transition: all 0.25s;
}
.cid-v7Bduxdc3H nav.opened .hamburger span:nth-child(3) {
  transform: translateY(-1px) rotate(-45deg);
  transition: all 0.25s;
}
.cid-v7Bduxdc3H nav.opened .hamburger span:nth-child(4) {
  top: 29px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-v7Bduxdc3H .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v7Bduxdc3H a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v7Bduxdc3H .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-v7Bduxdc3H .navbar {
    height: 70px;
  }
  .cid-v7Bduxdc3H .navbar.opened {
    height: auto;
  }
  .cid-v7Bduxdc3H .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v7Bduxdc3H .container,
.cid-v7Bduxdc3H .container-fluid {
  flex-wrap: wrap;
}
.cid-v7Bduxdc3H .navbar-collapse {
  width: 75%;
  min-height: 89px;
}
.cid-v7Bduxdc3H .border-item {
  width: 100%;
  height: 1px;
  background-color: #caa9a8;
}
.cid-v7Bduxdc3H .mbr-section-btn .btn {
  width: 180px;
  min-width: auto;
  min-height: 55px;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-v7Bduxdc3H .navbar-brand {
    width: calc(100% - 48px) !important;
    min-height: 89px;
  }
  .cid-v7Bduxdc3H .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 1rem;
    order: 5;
  }
  .cid-v7Bduxdc3H .navbar-nav {
    width: 100%;
  }
}
.cid-v7BduyF8za {
  background-color: #fffcf5;
  overflow: hidden;
}
.cid-v7BduyF8za .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7BduyF8za .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7BduyF8za .row {
  flex-wrap: nowrap;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-v7BduyF8za .row {
    flex-wrap: wrap;
  }
}
.cid-v7BduyF8za .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-v7BduyF8za .text-wrap {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .cid-v7BduyF8za .text-wrap {
    margin-bottom: 20px;
  }
}
.cid-v7BduyF8za .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #a9bbab;
  transform: translateY(40%);
}
.cid-v7BduyF8za .mbr-section-title {
  color: #353535;
  text-align: left;
}
.cid-v7BduyF8za .mbr-section-title a {
  pointer-events: none !important;
  font-style: italic !important;
  font-weight: bold !important;
}
.cid-v7BduyF8za .mbr-section-subtitle {
  margin-top: 30px;
  color: #353535;
}
@media (max-width: 767px) {
  .cid-v7BduyF8za .mbr-section-subtitle {
    margin-top: 12px;
  }
}
.cid-v7BduyF8za .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-v7BduyF8za .mbr-text {
    margin-top: 12px;
  }
}
.cid-v7BduyF8za .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-v7BduyF8za .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-v7BduyF8za .col-img {
  width: 430px;
}
@media (max-width: 1199px) {
  .cid-v7BduyF8za .col-img {
    width: 350px;
  }
}
.cid-v7BduyF8za .img-wrap {
  position: relative;
  width: 100%;
}
.cid-v7BduyF8za .img-wrap .img-box {
  position: relative;
  z-index: 3;
  width: 100%;
  border-top-left-radius: 65px;
  border-top-right-radius: 65px;
  border-bottom-right-radius: 65px;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-v7BduyF8za .img-wrap .img-box {
    border-top-left-radius: 55px;
    border-top-right-radius: 55px;
    border-bottom-right-radius: 55px;
  }
}
.cid-v7BduyF8za .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-v7BduyF8za .img-wrap .frame-box {
  position: absolute;
  height: 240px;
}
.cid-v7BduyF8za .img-wrap .frame-box svg {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
}
.cid-v7BduyF8za .img-wrap .frame-box-1 {
  bottom: -20%;
  left: -14%;
  width: 85%;
  transform: rotate(10deg);
}
.cid-v7BduyF8za .img-wrap .frame-box-2 {
  bottom: -18%;
  right: -14%;
  width: 84%;
  transform: rotate(0deg);
}
@media (max-width: 991px) {
  .cid-v7BduyF8za .img-wrap .frame-box-2 {
    bottom: auto;
    top: -15%;
  }
}
.cid-v7BduyF8za .mbr-text,
.cid-v7BduyF8za .mbr-section-btn {
  text-align: left;
}
.cid-v7BduA0lR3 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fffcf5;
}
.cid-v7BduA0lR3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7BduA0lR3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7BduA0lR3 .text-wrap {
  width: 100%;
}
.cid-v7BduA0lR3 .mbr-title {
  margin-bottom: 0;
  color: #829D85;
}
.cid-v7BduA0lR3 .mbr-text {
  padding-top: 16px;
  color: #353535;
}
.cid-v7BduA0lR3 .list-wrap {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-v7BduA0lR3 .list-wrap {
    margin-top: 24px;
  }
}
.cid-v7BduA0lR3 .list-box {
  width: 100%;
}
.cid-v7BduA0lR3 .list {
  list-style: none;
  margin-top: 22px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #353535;
}
.cid-v7BduA0lR3 .list-text {
  position: relative;
}
.cid-v7BduA0lR3 .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-v7BduA0lR3 .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-v7BduAQtU6 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #f1dbda;
}
.cid-v7BduAQtU6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7BduAQtU6 .item-wrapper {
  display: flex;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-v7BduAQtU6 .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v7BduAQtU6 .item-wrapper:hover .iconfont-wrapper:after {
  width: 70px;
  height: 70px;
}
.cid-v7BduAQtU6 a {
  font-weight: 600;
}
.cid-v7BduAQtU6 a:hover {
  background: none !important;
}
@media (min-width: 1400px) {
  .cid-v7BduAQtU6 .col-lg-3,
  .cid-v7BduAQtU6 .col-xl-3 {
    max-width: 20%;
  }
}
@media (max-width: 1200px) {
  .cid-v7BduAQtU6 .col-lg-12 {
    min-width: 100% !important;
  }
}
.cid-v7BduAQtU6 .card-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-v7BduAQtU6 h5 {
  margin: 0;
}
.cid-v7BduAQtU6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7BduAQtU6 .iconfont-wrapper {
  position: relative;
}
.cid-v7BduAQtU6 .mbr-iconfont {
  display: flex;
  padding-right: 1rem;
  font-size: 2rem;
  color: #000000;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 2;
  position: relative;
}
.cid-v7BduAQtU6 .socicon {
  font-size: 1rem;
  width: 30px;
  height: 30px;
}
.cid-v7BduAQtU6 .sociconfont-wrapper {
  display: flex;
}
.cid-v7BduAQtU6 .card-title,
.cid-v7BduAQtU6 .iconfont-wrapper {
  color: #000000;
}
.cid-v7BduAQtU6 .card-text {
  color: #000000;
}
.cid-v7BduAQtU6 .mbr-section-title {
  color: #000000;
}
.cid-v7BduAQtU6 .main-title,
.cid-v7BduAQtU6 .iconfont-wrapper {
  text-align: left;
  color: #df7f11;
}
.cid-v7BduBPOp0 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #caa9a8;
}
.cid-v7BduBPOp0 .mbr-text {
  color: #FFFCF5;
}
.cid-v7BduBPOp0 .media-container-row .mbr-text {
  color: #353535;
}
.cid-v7BaZr7Lki {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 90px;
}
.cid-v7BaZr7Lki nav.navbar {
  position: fixed;
}
.cid-v7BaZr7Lki .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-v7BaZr7Lki .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v7BaZr7Lki .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v7BaZr7Lki .dropdown-item:hover,
.cid-v7BaZr7Lki .dropdown-item:focus {
  background: #829d85 !important;
  color: white !important;
}
.cid-v7BaZr7Lki .dropdown-item:hover span {
  color: white;
}
.cid-v7BaZr7Lki .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v7BaZr7Lki .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v7BaZr7Lki .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v7BaZr7Lki .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v7BaZr7Lki .nav-link {
  position: relative;
}
.cid-v7BaZr7Lki .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-v7BaZr7Lki .container {
    flex-wrap: nowrap;
  }
}
.cid-v7BaZr7Lki .iconfont-wrapper {
  color: #353535 !important;
  font-size: 18px;
  padding-right: 0;
}
.cid-v7BaZr7Lki .iconfont-wrapper .mbr-iconfont {
  transition: .4s all;
}
.cid-v7BaZr7Lki .iconfont-wrapper .mbr-iconfont:hover {
  color: #829d85;
}
.cid-v7BaZr7Lki .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 66.66666667%;
  margin-right: auto;
  min-height: 89px;
}
.cid-v7BaZr7Lki .navbar-nav .nav-item {
  margin: 2px;
}
.cid-v7BaZr7Lki .navbar-nav .nav-link {
  padding: 5px 9px;
  transition: .4s all;
}
.cid-v7BaZr7Lki .navbar-nav .nav-link:hover {
  transform: scale(1.1);
}
.cid-v7BaZr7Lki .dropdown-menu,
.cid-v7BaZr7Lki .navbar.opened {
  background: #f1dbda !important;
}
.cid-v7BaZr7Lki .nav-item:focus,
.cid-v7BaZr7Lki .nav-link:focus {
  outline: none;
}
.cid-v7BaZr7Lki .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v7BaZr7Lki .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v7BaZr7Lki .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v7BaZr7Lki .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v7BaZr7Lki .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v7BaZr7Lki .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v7BaZr7Lki .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: #f1dbda;
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-v7BaZr7Lki .navbar.opened {
  transition: all 0.3s;
}
.cid-v7BaZr7Lki .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v7BaZr7Lki .navbar .navbar-logo img {
  width: auto;
}
.cid-v7BaZr7Lki .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v7BaZr7Lki .navbar.collapsed {
  justify-content: center;
}
.cid-v7BaZr7Lki .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v7BaZr7Lki .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v7BaZr7Lki .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v7BaZr7Lki .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v7BaZr7Lki .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v7BaZr7Lki .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-v7BaZr7Lki .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v7BaZr7Lki .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v7BaZr7Lki .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v7BaZr7Lki .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v7BaZr7Lki .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v7BaZr7Lki .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v7BaZr7Lki .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v7BaZr7Lki .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-v7BaZr7Lki .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v7BaZr7Lki .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v7BaZr7Lki .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v7BaZr7Lki .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v7BaZr7Lki .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v7BaZr7Lki .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v7BaZr7Lki .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v7BaZr7Lki .navbar.navbar-short {
  min-height: 90px;
}
.cid-v7BaZr7Lki .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v7BaZr7Lki .navbar.navbar-short .navbar-brand {
  min-height: 89px;
  padding: 0;
}
.cid-v7BaZr7Lki .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-v7BaZr7Lki .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v7BaZr7Lki .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v7BaZr7Lki .dropdown-item.active,
.cid-v7BaZr7Lki .dropdown-item:active {
  background-color: transparent;
}
.cid-v7BaZr7Lki .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v7BaZr7Lki .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v7BaZr7Lki .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v7BaZr7Lki .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f1dbda;
}
.cid-v7BaZr7Lki .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v7BaZr7Lki .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v7BaZr7Lki ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v7BaZr7Lki .navbar-buttons {
  text-align: center;
}
.cid-v7BaZr7Lki 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-v7BaZr7Lki button.navbar-toggler .hamburger span {
  position: absolute;
  right: 13px;
  width: 22px;
  height: 2px;
  background-color: #715537;
}
.cid-v7BaZr7Lki button.navbar-toggler .hamburger span:nth-child(1) {
  top: 17px;
  transition: all 0.2s;
}
.cid-v7BaZr7Lki button.navbar-toggler .hamburger span:nth-child(2) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-v7BaZr7Lki button.navbar-toggler .hamburger span:nth-child(3) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-v7BaZr7Lki button.navbar-toggler .hamburger span:nth-child(4) {
  top: 29px;
  transition: all 0.2s;
}
.cid-v7BaZr7Lki nav.opened .hamburger span:nth-child(1) {
  top: 17px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-v7BaZr7Lki nav.opened .hamburger span:nth-child(2) {
  transform: translateY(-1px) rotate(45deg);
  transition: all 0.25s;
}
.cid-v7BaZr7Lki nav.opened .hamburger span:nth-child(3) {
  transform: translateY(-1px) rotate(-45deg);
  transition: all 0.25s;
}
.cid-v7BaZr7Lki nav.opened .hamburger span:nth-child(4) {
  top: 29px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-v7BaZr7Lki .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v7BaZr7Lki a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v7BaZr7Lki .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-v7BaZr7Lki .navbar {
    height: 70px;
  }
  .cid-v7BaZr7Lki .navbar.opened {
    height: auto;
  }
  .cid-v7BaZr7Lki .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v7BaZr7Lki .container,
.cid-v7BaZr7Lki .container-fluid {
  flex-wrap: wrap;
}
.cid-v7BaZr7Lki .navbar-collapse {
  width: 75%;
  min-height: 89px;
}
.cid-v7BaZr7Lki .border-item {
  width: 100%;
  height: 1px;
  background-color: #caa9a8;
}
.cid-v7BaZr7Lki .mbr-section-btn .btn {
  width: 180px;
  min-width: auto;
  min-height: 55px;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-v7BaZr7Lki .navbar-brand {
    width: calc(100% - 48px) !important;
    min-height: 89px;
  }
  .cid-v7BaZr7Lki .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 1rem;
    order: 5;
  }
  .cid-v7BaZr7Lki .navbar-nav {
    width: 100%;
  }
}
.cid-v7BaZyOV6s {
  background-color: #fffcf5;
  overflow: hidden;
}
.cid-v7BaZyOV6s .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7BaZyOV6s .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7BaZyOV6s .row {
  flex-wrap: nowrap;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-v7BaZyOV6s .row {
    flex-wrap: wrap;
  }
}
.cid-v7BaZyOV6s .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-v7BaZyOV6s .text-wrap {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .cid-v7BaZyOV6s .text-wrap {
    margin-bottom: 20px;
  }
}
.cid-v7BaZyOV6s .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #a9bbab;
  transform: translateY(40%);
}
.cid-v7BaZyOV6s .mbr-section-title {
  color: #353535;
  text-align: left;
}
.cid-v7BaZyOV6s .mbr-section-title a {
  pointer-events: none !important;
  font-style: italic !important;
  font-weight: bold !important;
}
.cid-v7BaZyOV6s .mbr-section-subtitle {
  margin-top: 30px;
  color: #353535;
}
@media (max-width: 767px) {
  .cid-v7BaZyOV6s .mbr-section-subtitle {
    margin-top: 12px;
  }
}
.cid-v7BaZyOV6s .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-v7BaZyOV6s .mbr-text {
    margin-top: 12px;
  }
}
.cid-v7BaZyOV6s .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-v7BaZyOV6s .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-v7BaZyOV6s .col-img {
  width: 430px;
}
@media (max-width: 1199px) {
  .cid-v7BaZyOV6s .col-img {
    width: 350px;
  }
}
.cid-v7BaZyOV6s .img-wrap {
  position: relative;
  width: 100%;
}
.cid-v7BaZyOV6s .img-wrap .img-box {
  position: relative;
  z-index: 3;
  width: 100%;
  border-top-left-radius: 65px;
  border-top-right-radius: 65px;
  border-bottom-right-radius: 65px;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-v7BaZyOV6s .img-wrap .img-box {
    border-top-left-radius: 55px;
    border-top-right-radius: 55px;
    border-bottom-right-radius: 55px;
  }
}
.cid-v7BaZyOV6s .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-v7BaZyOV6s .img-wrap .frame-box {
  position: absolute;
  height: 240px;
}
.cid-v7BaZyOV6s .img-wrap .frame-box svg {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
}
.cid-v7BaZyOV6s .img-wrap .frame-box-1 {
  bottom: -20%;
  left: -14%;
  width: 85%;
  transform: rotate(10deg);
}
.cid-v7BaZyOV6s .img-wrap .frame-box-2 {
  bottom: -18%;
  right: -14%;
  width: 84%;
  transform: rotate(0deg);
}
@media (max-width: 991px) {
  .cid-v7BaZyOV6s .img-wrap .frame-box-2 {
    bottom: auto;
    top: -15%;
  }
}
.cid-v7BaZyOV6s .mbr-text,
.cid-v7BaZyOV6s .mbr-section-btn {
  text-align: left;
}
.cid-v7BfvFhzBh {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1dbda;
}
.cid-v7BfvFhzBh .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7BfvFhzBh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7BfvFhzBh .mbr-text {
  color: #000000;
}
.cid-v7BfvFhzBh .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-v7BfvFhzBh .item-wrapper {
  background: #f7f5f0;
  padding: 2.25rem 2.25rem 1rem 2.25rem;
}
@media (max-width: 767px) {
  .cid-v7BfvFhzBh .item-wrapper {
    padding: 2rem 1.5rem 0.5rem 1.5rem;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-v7BfvFhzBh .item-wrapper {
    padding: 2rem 1.5rem 0.5rem 1.5rem;
  }
}
.cid-v7BfvFhzBh .main-button {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-v7BfvFhzBh .main-button {
    margin-bottom: 2rem;
  }
}
.cid-v7BfvFhzBh .counter-container ul {
  margin: 0;
  padding-left: 2.25rem;
  list-style: none;
}
.cid-v7BfvFhzBh .counter-container ul li {
  position: relative;
  list-style: none;
  margin-bottom: 2rem;
}
.cid-v7BfvFhzBh .counter-container ul li:before {
  position: absolute;
  left: -1.5em;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #895957;
  background-color: #895957;
  width: 0.5em;
  height: 0.5em;
  top: 0.4em;
  border-radius: 50%;
}
.cid-v7BfvFhzBh .mbr-text UL {
  text-align: left;
}
.cid-v7BfvFhzBh .mbr-section-subtitle,
.cid-v7BfvFhzBh .main-button {
  color: #000000;
}
.cid-v7BfvFhzBh .mbr-section-title {
  color: #000000;
}
.cid-v7BaZBu4Pt {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fffcf5;
}
.cid-v7BaZBu4Pt .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7BaZBu4Pt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7BaZBu4Pt .text-wrap {
  width: 100%;
}
.cid-v7BaZBu4Pt .mbr-title {
  margin-bottom: 0;
  color: #829D85;
}
.cid-v7BaZBu4Pt .mbr-text {
  padding-top: 16px;
  color: #353535;
}
.cid-v7BaZBu4Pt .list-wrap {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-v7BaZBu4Pt .list-wrap {
    margin-top: 24px;
  }
}
.cid-v7BaZBu4Pt .list-box {
  width: 100%;
}
.cid-v7BaZBu4Pt .list {
  list-style: none;
  margin-top: 22px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #353535;
}
.cid-v7BaZBu4Pt .list-text {
  position: relative;
}
.cid-v7BaZBu4Pt .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-v7BaZBu4Pt .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-v7BaZKpOrK {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f1dbda;
  overflow: hidden;
}
.cid-v7BaZKpOrK .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7BaZKpOrK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7BaZKpOrK .row {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v7BaZKpOrK .row {
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  .cid-v7BaZKpOrK .col-text {
    order: 2;
  }
}
.cid-v7BaZKpOrK .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-v7BaZKpOrK .text-wrap {
    margin-top: 30px;
  }
}
.cid-v7BaZKpOrK .mbr-section-title {
  color: #000000;
  text-align: justify;
}
.cid-v7BaZKpOrK .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-v7BaZKpOrK .mbr-text {
    margin-top: 12px;
  }
}
.cid-v7BaZKpOrK .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-v7BaZKpOrK .mbr-section-btn {
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .cid-v7BaZKpOrK .col-img {
    order: 1;
  }
}
.cid-v7BaZKpOrK .img-wrap {
  position: relative;
  width: 100%;
}
.cid-v7BaZKpOrK .img-wrap .img-box {
  position: relative;
  z-index: 3;
  width: 100%;
  border-radius: 65px 65px 65px 0;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-v7BaZKpOrK .img-wrap .img-box {
    border-radius: 55px 55px 55px 0;
  }
}
@media (max-width: 991px) {
  .cid-v7BaZKpOrK .img-wrap .img-box {
    border-radius: 65px 65px 65px 0;
  }
}
@media (max-width: 767px) {
  .cid-v7BaZKpOrK .img-wrap .img-box {
    border-radius: 55px 55px 55px 0;
  }
}
@media (max-width: 575px) {
  .cid-v7BaZKpOrK .img-wrap .img-box {
    border-radius: 45px 45px 45px 0;
  }
}
.cid-v7BaZKpOrK .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-v7BaZKpOrK .mbr-text,
.cid-v7BaZKpOrK .mbr-section-btn {
  text-align: justify;
}
.cid-v7BaZS5n38 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f1dbda;
}
.cid-v7BaZS5n38 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7BaZS5n38 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v7BaZS5n38 .row {
    align-items: center !important;
  }
}
.cid-v7BaZS5n38 .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 991px) {
  .cid-v7BaZS5n38 .mbr-section-head {
    margin-bottom: 75px;
  }
}
@media (max-width: 767px) {
  .cid-v7BaZS5n38 .mbr-section-head {
    margin-bottom: 65px;
  }
}
.cid-v7BaZS5n38 .mbr-section-title {
  color: #000000;
  margin-bottom: 0;
}
.cid-v7BaZS5n38 .mbr-section-subtitle {
  color: #353535;
  margin-top: 20px;
  text-align: justify;
}
.cid-v7BaZS5n38 .text-wrap {
  width: 100%;
  padding: 36px 0;
  border-top: 1px solid #895957;
}
@media (max-width: 991px) {
  .cid-v7BaZS5n38 .text-wrap {
    padding: 30px 0;
  }
}
.cid-v7BaZS5n38 .mbr-title {
  color: #61411e;
}
.cid-v7BaZS5n38 .mbr-text {
  margin-top: 12px;
  color: #353535;
}
.cid-v7BaZS5n38 .list-box {
  width: 100%;
}
.cid-v7BaZS5n38 .list {
  list-style: none;
  margin-top: 22px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #353535;
  padding-left: 0;
}
.cid-v7BaZS5n38 .list-text {
  position: relative;
}
.cid-v7BaZS5n38 .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-v7BaZS5n38 .mbr-section-btn {
  margin-top: 20px;
}
.cid-v7BaZS5n38 .img-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  border-radius: 0 100px 0 0;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-v7BaZS5n38 .img-box {
    border-radius: 0;
  }
}
@media (max-width: 767px) {
  .cid-v7BaZS5n38 .img-box {
    border-radius: 0 15vw 0 0;
  }
}
.cid-v7BaZS5n38 .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-v7Bb0wROe1 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fffcf5;
  overflow: hidden;
}
.cid-v7Bb0wROe1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7Bb0wROe1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7Bb0wROe1 .mbr-section-head {
  width: 100%;
  margin-bottom: 100px;
}
@media (max-width: 991px) {
  .cid-v7Bb0wROe1 .mbr-section-head {
    margin-bottom: 75px;
  }
}
@media (max-width: 767px) {
  .cid-v7Bb0wROe1 .mbr-section-head {
    margin-bottom: 65px;
  }
}
.cid-v7Bb0wROe1 .mbr-section-title {
  color: #000000;
  margin-bottom: 0;
}
.cid-v7Bb0wROe1 .mbr-section-subtitle {
  color: #353535;
  margin-top: 20px;
  text-align: justify;
}
.cid-v7Bb0wROe1 .items-row {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-v7Bb0wROe1 .items-row {
    row-gap: 50px;
  }
}
.cid-v7Bb0wROe1 .card-title {
  position: relative;
  max-width: 360px;
  width: 100%;
  color: #000000;
}
@media (max-width: 575px) {
  .cid-v7Bb0wROe1 .card-title {
    max-width: 100%;
  }
}
.cid-v7Bb0wROe1 .card-text {
  position: relative;
  max-width: 360px;
  width: 100%;
  margin-top: 16px;
  color: #353535;
}
@media (max-width: 575px) {
  .cid-v7Bb0wROe1 .card-text {
    max-width: 100%;
    margin-top: 12px;
  }
}
.cid-v7Bb0wROe1 .item-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 560px;
  padding: 50px 50px 60px;
  background-position: center;
  background-size: 100% 100%;
}
@media (max-width: 575px) {
  .cid-v7Bb0wROe1 .item-wrap {
    padding: 20px !important;
  }
}
.cid-v7Bb0wROe1 .item {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.cid-v7Bb0wROe1 .item:nth-child(1) .item-wrap {
  margin-right: auto;
  background-image: url("../../../assets/images/frame5.png");
}
.cid-v7Bb0wROe1 .item:nth-child(2) {
  margin-top: -12px;
}
@media (max-width: 991px) {
  .cid-v7Bb0wROe1 .item:nth-child(2) {
    margin: 0;
  }
}
.cid-v7Bb0wROe1 .item:nth-child(2) .item-wrap {
  margin-left: auto;
  background-image: url("../../../assets/images/frame6.png");
}
.cid-v7Bb0wROe1 .item:nth-child(3) {
  margin-top: -12px;
}
@media (max-width: 991px) {
  .cid-v7Bb0wROe1 .item:nth-child(3) {
    margin: 0;
  }
}
.cid-v7Bb0wROe1 .item:nth-child(3) .item-wrap {
  max-width: 600px;
  margin-right: auto;
  background-image: url("../../../assets/images/frame7.png");
}
.cid-v7Bb0wROe1 .item:nth-child(4) .item-wrap {
  max-width: 508px;
  margin-left: auto;
  padding: 50px 40px 60px;
  background-image: url("../../../assets/images/frame8.png");
}
.cid-v7Bb1ZXNfL {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f1dbda;
}
.cid-v7Bb1ZXNfL .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7Bb1ZXNfL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7Bb1ZXNfL .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-v7Bb1ZXNfL .row {
    align-items: center !important;
  }
}
.cid-v7Bb1ZXNfL .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 991px) {
  .cid-v7Bb1ZXNfL .mbr-section-head {
    margin-bottom: 75px;
  }
}
@media (max-width: 767px) {
  .cid-v7Bb1ZXNfL .mbr-section-head {
    margin-bottom: 65px;
  }
}
.cid-v7Bb1ZXNfL .mbr-section-title {
  color: #000000;
  margin-bottom: 0;
}
.cid-v7Bb1ZXNfL .mbr-section-subtitle {
  color: #000000;
  margin-top: 20px;
}
.cid-v7Bb1ZXNfL .text-wrap {
  width: 100%;
  padding: 36px 0;
}
@media (max-width: 991px) {
  .cid-v7Bb1ZXNfL .text-wrap {
    padding: 30px 0;
  }
}
.cid-v7Bb1ZXNfL .mbr-title {
  color: #61411e;
}
.cid-v7Bb1ZXNfL .mbr-text {
  margin-top: 12px;
  color: #353535;
}
.cid-v7Bb1ZXNfL .list-box {
  width: 100%;
}
.cid-v7Bb1ZXNfL .list {
  list-style: none;
  margin-top: 22px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #353535;
  padding-left: 0;
}
.cid-v7Bb1ZXNfL .list-text {
  position: relative;
}
.cid-v7Bb1ZXNfL .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-v7Bb1ZXNfL .mbr-section-btn {
  margin-top: 20px;
}
.cid-v7Bb1ZXNfL .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-v7Bb1ZXNfL .img-box {
    border-radius: 0;
  }
}
@media (max-width: 767px) {
  .cid-v7Bb1ZXNfL .img-box {
    border-radius: 0 0 0 15vw;
    border-radius: 0 0 15vw 0;
  }
}
.cid-v7Bb1ZXNfL .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-v7Bb2m80Pm {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f1dbda;
}
.cid-v7Bb2m80Pm .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7Bb2m80Pm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7Bb2m80Pm .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-v7Bb2m80Pm .mbr-section-title {
  width: 100%;
  color: #353535;
  margin-bottom: 0;
}
.cid-v7Bb2m80Pm .mbr-section-title.display-4 {
  font-size: 48px;
}
@media (max-width: 767px) {
  .cid-v7Bb2m80Pm .mbr-section-title.display-4 {
    font-size: 36px;
  }
}
@media (max-width: 575px) {
  .cid-v7Bb2m80Pm .mbr-section-title.display-4 {
    font-size: 28px;
  }
}
.cid-v7Bb2m80Pm .mbr-text {
  width: 100%;
  color: #353535;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-v7Bb2m80Pm .mbr-text {
    margin-top: 16px;
  }
}
.cid-v7Bb2m80Pm .mbr-section-btn {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-v7Bb2m80Pm .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-v7Bb2m80Pm .mbr-text,
.cid-v7Bb2m80Pm .mbr-section-btn {
  text-align: justify;
}
.cid-v7Bb2nbqiG {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f1dbda;
}
.cid-v7Bb2nbqiG .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7Bb2nbqiG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7Bb2nbqiG .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 991px) {
  .cid-v7Bb2nbqiG .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-v7Bb2nbqiG .mbr-section-head {
    margin-bottom: 50px;
  }
}
.cid-v7Bb2nbqiG .mbr-section-title {
  color: #353535;
  margin-bottom: 0;
}
.cid-v7Bb2nbqiG .mbr-section-subtitle {
  color: #353535;
  margin-top: 20px;
}
@media (max-width: 991px) {
  .cid-v7Bb2nbqiG .col-img {
    display: none;
  }
}
.cid-v7Bb2nbqiG .img-wrap {
  width: 100%;
}
.cid-v7Bb2nbqiG .img-wrap .img-box {
  width: 100%;
  border-radius: 65px 65px 0 65px;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-v7Bb2nbqiG .img-wrap .img-box {
    border-radius: 40px 40px 0 40px;
  }
}
.cid-v7Bb2nbqiG .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-v7Bb2nbqiG .mbr-iconfont {
  position: relative;
  font-size: 24px !important;
  font-family: 'Moririse2' !important;
  color: #987a5a;
  margin-left: 1rem;
  padding: 10px;
  transition: .3s all;
}
.cid-v7Bb2nbqiG .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-v7Bb2nbqiG .mbr-iconfont:before {
  position: relative;
  z-index: 2;
}
.cid-v7Bb2nbqiG .panel-group {
  border: none;
  border-top: 1px solid #895957;
  margin-top: 10px;
}
@media (max-width: 991px) {
  .cid-v7Bb2nbqiG .panel-group {
    margin-top: 0;
  }
}
.cid-v7Bb2nbqiG .card {
  border-bottom: 1px solid #895957;
  border-radius: 0;
}
.cid-v7Bb2nbqiG .card-header {
  padding: 20px 0;
  border: none;
  background-color: transparent;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .cid-v7Bb2nbqiG .card-header {
    padding: 8px 0;
  }
}
.cid-v7Bb2nbqiG .card-header:hover .mbr-iconfont {
  color: #895957;
}
.cid-v7Bb2nbqiG .card-header:hover .mbr-iconfont:after {
  opacity: 1;
}
.cid-v7Bb2nbqiG .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #987A5A;
}
.cid-v7Bb2nbqiG .panel-title[aria-expanded="true"] .mbr-iconfont {
  transform: rotate(45deg);
}
.cid-v7Bb2nbqiG .panel-title-edit {
  color: #987A5A;
}
.cid-v7Bb2nbqiG .panel-body {
  padding: 0 0 40px;
}
@media (max-width: 767px) {
  .cid-v7Bb2nbqiG .panel-body {
    padding: 0 0 24px;
  }
}
.cid-v7Bb2nbqiG .panel-text {
  color: #353535;
  margin: 0;
}
.cid-v7Bb2oGtpA {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fffcf5;
}
.cid-v7Bb2oGtpA .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7Bb2oGtpA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7Bb2oGtpA .text-wrap {
  width: 100%;
}
.cid-v7Bb2oGtpA .mbr-title {
  margin-bottom: 0;
  color: #000000;
}
.cid-v7Bb2oGtpA .mbr-text {
  padding-top: 16px;
  color: #353535;
}
.cid-v7Bb2oGtpA .list-wrap {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-v7Bb2oGtpA .list-wrap {
    margin-top: 24px;
  }
}
.cid-v7Bb2oGtpA .list-box {
  width: 100%;
}
.cid-v7Bb2oGtpA .list {
  list-style: none;
  margin-top: 22px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #353535;
}
.cid-v7Bb2oGtpA .list-text {
  position: relative;
}
.cid-v7Bb2oGtpA .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-v7Bb2oGtpA .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-v7BVm7xbaN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v7BVm7xbaN .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7BVm7xbaN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7BVm7xbaN .content-wrap {
  margin-bottom: 56px;
}
@media (max-width: 992px) {
  .cid-v7BVm7xbaN .content-wrap {
    margin-bottom: 32px;
  }
}
.cid-v7BVm7xbaN .content-wrap .label-wrapper {
  margin-bottom: 16px;
}
.cid-v7BVm7xbaN .content-wrap .label-wrapper .mbr-label {
  padding: 2px 12px;
  margin-bottom: 0;
  display: inline-block;
  background-color: #f7f7f7;
}
.cid-v7BVm7xbaN .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-v7BVm7xbaN .content-wrap .text-wrapper .mbr-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v7BVm7xbaN .content-wrap .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-v7BVm7xbaN .card-wrapper {
  background-color: #f7f7f7;
  padding: 8px;
}
.cid-v7BVm7xbaN .card-wrapper .panel-group .card {
  position: relative;
  padding: 0;
  border-bottom: none;
  background-color: #ffffff;
  margin-top: 8px;
  overflow: hidden;
}
.cid-v7BVm7xbaN .card-wrapper .panel-group .card:first-child {
  margin-top: 0;
}
.cid-v7BVm7xbaN .card-wrapper .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-v7BVm7xbaN .card-wrapper .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 24px;
}
.cid-v7BVm7xbaN .card-wrapper .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.cid-v7BVm7xbaN .card-wrapper .panel-group .card .card-header .panel-title .icon-wrapper {
  width: 20px;
  height: 20px;
  min-width: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v7BVm7xbaN .card-wrapper .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  color: #000000;
}
.cid-v7BVm7xbaN .card-wrapper .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  transform: rotate(-45deg);
}
.cid-v7BVm7xbaN .card-wrapper .panel-group .card .panel-collapse .panel-body {
  padding: 0 24px 24px 24px;
}
.cid-v7BVm7xbaN .card-wrapper .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
  transition: all .3s ease;
  transform: translateY(10px);
  opacity: 0;
}
.cid-v7BVm7xbaN .card-wrapper .panel-group .card .panel-collapse.show .panel-body .panel-text {
  transform: translateY(0);
  opacity: 1;
}
.cid-v7BVm7xbaN .mbr-label,
.cid-v7BVm7xbaN .label-wrapper {
  color: #000000;
  text-align: center;
}
.cid-v7BVm7xbaN .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-v7BVm7xbaN .mbr-text,
.cid-v7BVm7xbaN .text-wrapper {
  color: #4f4f4f;
  text-align: center;
}
.cid-v7BVm7xbaN .panel-title-edit {
  color: #000000;
}
.cid-v7BVm7xbaN .panel-text {
  color: #4f4f4f;
}
.cid-v7NVcw6CXt {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v7NVcw6CXt .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7NVcw6CXt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7NVcw6CXt .card-wrapper {
  background-color: #f7f7f7;
  padding: 8px;
}
.cid-v7NVcw6CXt .card-wrapper .card-wrap .google-map iframe {
  height: 500px;
}
@media (max-width: 992px) {
  .cid-v7NVcw6CXt .card-wrapper .card-wrap .google-map iframe {
    height: 300px;
  }
}
.cid-v7Bb2pD0qU {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #f1dbda;
}
.cid-v7Bb2pD0qU .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7Bb2pD0qU .item-wrapper {
  display: flex;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-v7Bb2pD0qU .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v7Bb2pD0qU .item-wrapper:hover .iconfont-wrapper:after {
  width: 70px;
  height: 70px;
}
.cid-v7Bb2pD0qU a {
  font-weight: 600;
}
.cid-v7Bb2pD0qU a:hover {
  background: none !important;
}
@media (min-width: 1400px) {
  .cid-v7Bb2pD0qU .col-lg-3,
  .cid-v7Bb2pD0qU .col-xl-3 {
    max-width: 20%;
  }
}
@media (max-width: 1200px) {
  .cid-v7Bb2pD0qU .col-lg-12 {
    min-width: 100% !important;
  }
}
.cid-v7Bb2pD0qU .card-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-v7Bb2pD0qU h5 {
  margin: 0;
}
.cid-v7Bb2pD0qU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7Bb2pD0qU .iconfont-wrapper {
  position: relative;
}
.cid-v7Bb2pD0qU .mbr-iconfont {
  display: flex;
  padding-right: 1rem;
  font-size: 2rem;
  color: #000000;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 2;
  position: relative;
}
.cid-v7Bb2pD0qU .socicon {
  font-size: 1rem;
  width: 30px;
  height: 30px;
}
.cid-v7Bb2pD0qU .sociconfont-wrapper {
  display: flex;
}
.cid-v7Bb2pD0qU .card-title,
.cid-v7Bb2pD0qU .iconfont-wrapper {
  color: #000000;
}
.cid-v7Bb2pD0qU .card-text {
  color: #000000;
}
.cid-v7Bb2pD0qU .mbr-section-title {
  color: #000000;
}
.cid-v7Bb2pD0qU .main-title,
.cid-v7Bb2pD0qU .iconfont-wrapper {
  text-align: left;
  color: #df7f11;
}
.cid-v7Bb2qMVXX {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #caa9a8;
}
.cid-v7Bb2qMVXX .mbr-text {
  color: #FFFCF5;
}
.cid-v7Bb2qMVXX .media-container-row .mbr-text {
  color: #353535;
}
.cid-v7BalXjohh {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 90px;
}
.cid-v7BalXjohh nav.navbar {
  position: fixed;
}
.cid-v7BalXjohh .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-v7BalXjohh .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v7BalXjohh .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v7BalXjohh .dropdown-item:hover,
.cid-v7BalXjohh .dropdown-item:focus {
  background: #829d85 !important;
  color: white !important;
}
.cid-v7BalXjohh .dropdown-item:hover span {
  color: white;
}
.cid-v7BalXjohh .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v7BalXjohh .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v7BalXjohh .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v7BalXjohh .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v7BalXjohh .nav-link {
  position: relative;
}
.cid-v7BalXjohh .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-v7BalXjohh .container {
    flex-wrap: nowrap;
  }
}
.cid-v7BalXjohh .iconfont-wrapper {
  color: #353535 !important;
  font-size: 18px;
  padding-right: 0;
}
.cid-v7BalXjohh .iconfont-wrapper .mbr-iconfont {
  transition: .4s all;
}
.cid-v7BalXjohh .iconfont-wrapper .mbr-iconfont:hover {
  color: #829d85;
}
.cid-v7BalXjohh .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 66.66666667%;
  margin-right: auto;
  min-height: 89px;
}
.cid-v7BalXjohh .navbar-nav .nav-item {
  margin: 2px;
}
.cid-v7BalXjohh .navbar-nav .nav-link {
  padding: 5px 9px;
  transition: .4s all;
}
.cid-v7BalXjohh .navbar-nav .nav-link:hover {
  transform: scale(1.1);
}
.cid-v7BalXjohh .dropdown-menu,
.cid-v7BalXjohh .navbar.opened {
  background: #f1dbda !important;
}
.cid-v7BalXjohh .nav-item:focus,
.cid-v7BalXjohh .nav-link:focus {
  outline: none;
}
.cid-v7BalXjohh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v7BalXjohh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v7BalXjohh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v7BalXjohh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v7BalXjohh .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v7BalXjohh .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v7BalXjohh .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: #f1dbda;
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-v7BalXjohh .navbar.opened {
  transition: all 0.3s;
}
.cid-v7BalXjohh .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v7BalXjohh .navbar .navbar-logo img {
  width: auto;
}
.cid-v7BalXjohh .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v7BalXjohh .navbar.collapsed {
  justify-content: center;
}
.cid-v7BalXjohh .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v7BalXjohh .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v7BalXjohh .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v7BalXjohh .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v7BalXjohh .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v7BalXjohh .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-v7BalXjohh .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v7BalXjohh .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v7BalXjohh .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v7BalXjohh .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v7BalXjohh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v7BalXjohh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v7BalXjohh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v7BalXjohh .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-v7BalXjohh .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v7BalXjohh .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v7BalXjohh .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v7BalXjohh .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v7BalXjohh .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v7BalXjohh .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v7BalXjohh .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v7BalXjohh .navbar.navbar-short {
  min-height: 90px;
}
.cid-v7BalXjohh .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v7BalXjohh .navbar.navbar-short .navbar-brand {
  min-height: 89px;
  padding: 0;
}
.cid-v7BalXjohh .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-v7BalXjohh .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v7BalXjohh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v7BalXjohh .dropdown-item.active,
.cid-v7BalXjohh .dropdown-item:active {
  background-color: transparent;
}
.cid-v7BalXjohh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v7BalXjohh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v7BalXjohh .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v7BalXjohh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f1dbda;
}
.cid-v7BalXjohh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v7BalXjohh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v7BalXjohh ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v7BalXjohh .navbar-buttons {
  text-align: center;
}
.cid-v7BalXjohh 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-v7BalXjohh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 13px;
  width: 22px;
  height: 2px;
  background-color: #715537;
}
.cid-v7BalXjohh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 17px;
  transition: all 0.2s;
}
.cid-v7BalXjohh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-v7BalXjohh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-v7BalXjohh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 29px;
  transition: all 0.2s;
}
.cid-v7BalXjohh nav.opened .hamburger span:nth-child(1) {
  top: 17px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-v7BalXjohh nav.opened .hamburger span:nth-child(2) {
  transform: translateY(-1px) rotate(45deg);
  transition: all 0.25s;
}
.cid-v7BalXjohh nav.opened .hamburger span:nth-child(3) {
  transform: translateY(-1px) rotate(-45deg);
  transition: all 0.25s;
}
.cid-v7BalXjohh nav.opened .hamburger span:nth-child(4) {
  top: 29px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-v7BalXjohh .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v7BalXjohh a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v7BalXjohh .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-v7BalXjohh .navbar {
    height: 70px;
  }
  .cid-v7BalXjohh .navbar.opened {
    height: auto;
  }
  .cid-v7BalXjohh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v7BalXjohh .container,
.cid-v7BalXjohh .container-fluid {
  flex-wrap: wrap;
}
.cid-v7BalXjohh .navbar-collapse {
  width: 75%;
  min-height: 89px;
}
.cid-v7BalXjohh .border-item {
  width: 100%;
  height: 1px;
  background-color: #caa9a8;
}
.cid-v7BalXjohh .mbr-section-btn .btn {
  width: 180px;
  min-width: auto;
  min-height: 55px;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-v7BalXjohh .navbar-brand {
    width: calc(100% - 48px) !important;
    min-height: 89px;
  }
  .cid-v7BalXjohh .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 1rem;
    order: 5;
  }
  .cid-v7BalXjohh .navbar-nav {
    width: 100%;
  }
}
.cid-v7BaqIl78C {
  background-color: #fffcf5;
  overflow: hidden;
}
.cid-v7BaqIl78C .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7BaqIl78C .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7BaqIl78C .row {
  flex-wrap: nowrap;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-v7BaqIl78C .row {
    flex-wrap: wrap;
  }
}
.cid-v7BaqIl78C .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-v7BaqIl78C .text-wrap {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .cid-v7BaqIl78C .text-wrap {
    margin-bottom: 20px;
  }
}
.cid-v7BaqIl78C .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #a9bbab;
  transform: translateY(40%);
}
.cid-v7BaqIl78C .mbr-section-title {
  color: #353535;
  text-align: left;
}
.cid-v7BaqIl78C .mbr-section-title a {
  pointer-events: none !important;
  font-style: italic !important;
  font-weight: bold !important;
}
.cid-v7BaqIl78C .mbr-section-subtitle {
  margin-top: 30px;
  color: #353535;
}
@media (max-width: 767px) {
  .cid-v7BaqIl78C .mbr-section-subtitle {
    margin-top: 12px;
  }
}
.cid-v7BaqIl78C .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-v7BaqIl78C .mbr-text {
    margin-top: 12px;
  }
}
.cid-v7BaqIl78C .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-v7BaqIl78C .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-v7BaqIl78C .col-img {
  width: 430px;
}
@media (max-width: 1199px) {
  .cid-v7BaqIl78C .col-img {
    width: 350px;
  }
}
.cid-v7BaqIl78C .img-wrap {
  position: relative;
  width: 100%;
}
.cid-v7BaqIl78C .img-wrap .img-box {
  position: relative;
  z-index: 3;
  width: 100%;
  border-top-left-radius: 65px;
  border-top-right-radius: 65px;
  border-bottom-right-radius: 65px;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-v7BaqIl78C .img-wrap .img-box {
    border-top-left-radius: 55px;
    border-top-right-radius: 55px;
    border-bottom-right-radius: 55px;
  }
}
.cid-v7BaqIl78C .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-v7BaqIl78C .img-wrap .frame-box {
  position: absolute;
  height: 240px;
}
.cid-v7BaqIl78C .img-wrap .frame-box svg {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
}
.cid-v7BaqIl78C .img-wrap .frame-box-1 {
  bottom: -20%;
  left: -14%;
  width: 85%;
  transform: rotate(10deg);
}
.cid-v7BaqIl78C .img-wrap .frame-box-2 {
  bottom: -18%;
  right: -14%;
  width: 84%;
  transform: rotate(0deg);
}
@media (max-width: 991px) {
  .cid-v7BaqIl78C .img-wrap .frame-box-2 {
    bottom: auto;
    top: -15%;
  }
}
.cid-v7BaqIl78C .mbr-text,
.cid-v7BaqIl78C .mbr-section-btn {
  text-align: left;
}
.cid-v7BfqvrUkn {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1dbda;
}
.cid-v7BfqvrUkn .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7BfqvrUkn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7BfqvrUkn .mbr-text {
  color: #000000;
}
.cid-v7BfqvrUkn .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-v7BfqvrUkn .item-wrapper {
  background: #f7f5f0;
  padding: 2.25rem 2.25rem 1rem 2.25rem;
}
@media (max-width: 767px) {
  .cid-v7BfqvrUkn .item-wrapper {
    padding: 2rem 1.5rem 0.5rem 1.5rem;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-v7BfqvrUkn .item-wrapper {
    padding: 2rem 1.5rem 0.5rem 1.5rem;
  }
}
.cid-v7BfqvrUkn .main-button {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-v7BfqvrUkn .main-button {
    margin-bottom: 2rem;
  }
}
.cid-v7BfqvrUkn .counter-container ul {
  margin: 0;
  padding-left: 2.25rem;
  list-style: none;
}
.cid-v7BfqvrUkn .counter-container ul li {
  position: relative;
  list-style: none;
  margin-bottom: 2rem;
}
.cid-v7BfqvrUkn .counter-container ul li:before {
  position: absolute;
  left: -1.5em;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #895957;
  background-color: #895957;
  width: 0.5em;
  height: 0.5em;
  top: 0.4em;
  border-radius: 50%;
}
.cid-v7BfqvrUkn .mbr-text UL {
  text-align: left;
}
.cid-v7BfqvrUkn .mbr-section-subtitle,
.cid-v7BfqvrUkn .main-button {
  color: #000000;
}
.cid-v7BfqvrUkn .mbr-section-title {
  color: #000000;
}
.cid-v7BaqKhWj1 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fffcf5;
}
.cid-v7BaqKhWj1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7BaqKhWj1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7BaqKhWj1 .text-wrap {
  width: 100%;
}
.cid-v7BaqKhWj1 .mbr-title {
  margin-bottom: 0;
  color: #829D85;
}
.cid-v7BaqKhWj1 .mbr-text {
  padding-top: 16px;
  color: #353535;
}
.cid-v7BaqKhWj1 .list-wrap {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-v7BaqKhWj1 .list-wrap {
    margin-top: 24px;
  }
}
.cid-v7BaqKhWj1 .list-box {
  width: 100%;
}
.cid-v7BaqKhWj1 .list {
  list-style: none;
  margin-top: 22px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #353535;
}
.cid-v7BaqKhWj1 .list-text {
  position: relative;
}
.cid-v7BaqKhWj1 .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-v7BaqKhWj1 .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-v7BaqM73o6 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f1dbda;
  overflow: hidden;
}
.cid-v7BaqM73o6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7BaqM73o6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7BaqM73o6 .row {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v7BaqM73o6 .row {
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  .cid-v7BaqM73o6 .col-text {
    order: 2;
  }
}
.cid-v7BaqM73o6 .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-v7BaqM73o6 .text-wrap {
    margin-top: 30px;
  }
}
.cid-v7BaqM73o6 .mbr-section-title {
  color: #000000;
  text-align: justify;
}
.cid-v7BaqM73o6 .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-v7BaqM73o6 .mbr-text {
    margin-top: 12px;
  }
}
.cid-v7BaqM73o6 .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-v7BaqM73o6 .mbr-section-btn {
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .cid-v7BaqM73o6 .col-img {
    order: 1;
  }
}
.cid-v7BaqM73o6 .img-wrap {
  position: relative;
  width: 100%;
}
.cid-v7BaqM73o6 .img-wrap .img-box {
  position: relative;
  z-index: 3;
  width: 100%;
  border-radius: 65px 65px 65px 0;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-v7BaqM73o6 .img-wrap .img-box {
    border-radius: 55px 55px 55px 0;
  }
}
@media (max-width: 991px) {
  .cid-v7BaqM73o6 .img-wrap .img-box {
    border-radius: 65px 65px 65px 0;
  }
}
@media (max-width: 767px) {
  .cid-v7BaqM73o6 .img-wrap .img-box {
    border-radius: 55px 55px 55px 0;
  }
}
@media (max-width: 575px) {
  .cid-v7BaqM73o6 .img-wrap .img-box {
    border-radius: 45px 45px 45px 0;
  }
}
.cid-v7BaqM73o6 .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-v7BaqM73o6 .mbr-text,
.cid-v7BaqM73o6 .mbr-section-btn {
  text-align: justify;
}
.cid-v7BaqNjCtm {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f1dbda;
}
.cid-v7BaqNjCtm .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7BaqNjCtm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v7BaqNjCtm .row {
    align-items: center !important;
  }
}
.cid-v7BaqNjCtm .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 991px) {
  .cid-v7BaqNjCtm .mbr-section-head {
    margin-bottom: 75px;
  }
}
@media (max-width: 767px) {
  .cid-v7BaqNjCtm .mbr-section-head {
    margin-bottom: 65px;
  }
}
.cid-v7BaqNjCtm .mbr-section-title {
  color: #000000;
  margin-bottom: 0;
}
.cid-v7BaqNjCtm .mbr-section-subtitle {
  color: #353535;
  margin-top: 20px;
  text-align: justify;
}
.cid-v7BaqNjCtm .text-wrap {
  width: 100%;
  padding: 36px 0;
  border-top: 1px solid #895957;
}
@media (max-width: 991px) {
  .cid-v7BaqNjCtm .text-wrap {
    padding: 30px 0;
  }
}
.cid-v7BaqNjCtm .mbr-title {
  color: #61411e;
}
.cid-v7BaqNjCtm .mbr-text {
  margin-top: 12px;
  color: #353535;
}
.cid-v7BaqNjCtm .list-box {
  width: 100%;
}
.cid-v7BaqNjCtm .list {
  list-style: none;
  margin-top: 22px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #353535;
  padding-left: 0;
}
.cid-v7BaqNjCtm .list-text {
  position: relative;
}
.cid-v7BaqNjCtm .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-v7BaqNjCtm .mbr-section-btn {
  margin-top: 20px;
}
.cid-v7BaqNjCtm .img-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  border-radius: 0 100px 0 0;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-v7BaqNjCtm .img-box {
    border-radius: 0;
  }
}
@media (max-width: 767px) {
  .cid-v7BaqNjCtm .img-box {
    border-radius: 0 15vw 0 0;
  }
}
.cid-v7BaqNjCtm .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-v7BaqOYco5 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fffcf5;
  overflow: hidden;
}
.cid-v7BaqOYco5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7BaqOYco5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7BaqOYco5 .mbr-section-head {
  width: 100%;
  margin-bottom: 100px;
}
@media (max-width: 991px) {
  .cid-v7BaqOYco5 .mbr-section-head {
    margin-bottom: 75px;
  }
}
@media (max-width: 767px) {
  .cid-v7BaqOYco5 .mbr-section-head {
    margin-bottom: 65px;
  }
}
.cid-v7BaqOYco5 .mbr-section-title {
  color: #000000;
  margin-bottom: 0;
}
.cid-v7BaqOYco5 .mbr-section-subtitle {
  color: #353535;
  margin-top: 20px;
  text-align: justify;
}
.cid-v7BaqOYco5 .items-row {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-v7BaqOYco5 .items-row {
    row-gap: 50px;
  }
}
.cid-v7BaqOYco5 .card-title {
  position: relative;
  max-width: 360px;
  width: 100%;
  color: #000000;
}
@media (max-width: 575px) {
  .cid-v7BaqOYco5 .card-title {
    max-width: 100%;
  }
}
.cid-v7BaqOYco5 .card-text {
  position: relative;
  max-width: 360px;
  width: 100%;
  margin-top: 16px;
  color: #353535;
}
@media (max-width: 575px) {
  .cid-v7BaqOYco5 .card-text {
    max-width: 100%;
    margin-top: 12px;
  }
}
.cid-v7BaqOYco5 .item-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 560px;
  padding: 50px 50px 60px;
  background-position: center;
  background-size: 100% 100%;
}
@media (max-width: 575px) {
  .cid-v7BaqOYco5 .item-wrap {
    padding: 20px !important;
  }
}
.cid-v7BaqOYco5 .item {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.cid-v7BaqOYco5 .item:nth-child(1) .item-wrap {
  margin-right: auto;
  background-image: url("../../../assets/images/frame5.png");
}
.cid-v7BaqOYco5 .item:nth-child(2) {
  margin-top: -12px;
}
@media (max-width: 991px) {
  .cid-v7BaqOYco5 .item:nth-child(2) {
    margin: 0;
  }
}
.cid-v7BaqOYco5 .item:nth-child(2) .item-wrap {
  margin-left: auto;
  background-image: url("../../../assets/images/frame6.png");
}
.cid-v7BaqOYco5 .item:nth-child(3) {
  margin-top: -12px;
}
@media (max-width: 991px) {
  .cid-v7BaqOYco5 .item:nth-child(3) {
    margin: 0;
  }
}
.cid-v7BaqOYco5 .item:nth-child(3) .item-wrap {
  max-width: 600px;
  margin-right: auto;
  background-image: url("../../../assets/images/frame7.png");
}
.cid-v7BaqOYco5 .item:nth-child(4) .item-wrap {
  max-width: 508px;
  margin-left: auto;
  padding: 50px 40px 60px;
  background-image: url("../../../assets/images/frame8.png");
}
.cid-v7BaqQVqRP {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f1dbda;
}
.cid-v7BaqQVqRP .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7BaqQVqRP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7BaqQVqRP .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-v7BaqQVqRP .row {
    align-items: center !important;
  }
}
.cid-v7BaqQVqRP .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 991px) {
  .cid-v7BaqQVqRP .mbr-section-head {
    margin-bottom: 75px;
  }
}
@media (max-width: 767px) {
  .cid-v7BaqQVqRP .mbr-section-head {
    margin-bottom: 65px;
  }
}
.cid-v7BaqQVqRP .mbr-section-title {
  color: #000000;
  margin-bottom: 0;
}
.cid-v7BaqQVqRP .mbr-section-subtitle {
  color: #000000;
  margin-top: 20px;
}
.cid-v7BaqQVqRP .text-wrap {
  width: 100%;
  padding: 36px 0;
}
@media (max-width: 991px) {
  .cid-v7BaqQVqRP .text-wrap {
    padding: 30px 0;
  }
}
.cid-v7BaqQVqRP .mbr-title {
  color: #61411e;
}
.cid-v7BaqQVqRP .mbr-text {
  margin-top: 12px;
  color: #353535;
}
.cid-v7BaqQVqRP .list-box {
  width: 100%;
}
.cid-v7BaqQVqRP .list {
  list-style: none;
  margin-top: 22px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #353535;
  padding-left: 0;
}
.cid-v7BaqQVqRP .list-text {
  position: relative;
}
.cid-v7BaqQVqRP .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-v7BaqQVqRP .mbr-section-btn {
  margin-top: 20px;
}
.cid-v7BaqQVqRP .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-v7BaqQVqRP .img-box {
    border-radius: 0;
  }
}
@media (max-width: 767px) {
  .cid-v7BaqQVqRP .img-box {
    border-radius: 0 0 0 15vw;
    border-radius: 0 0 15vw 0;
  }
}
.cid-v7BaqQVqRP .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-v7BaqSfeJ6 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f1dbda;
}
.cid-v7BaqSfeJ6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7BaqSfeJ6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7BaqSfeJ6 .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-v7BaqSfeJ6 .mbr-section-title {
  width: 100%;
  color: #353535;
  margin-bottom: 0;
}
.cid-v7BaqSfeJ6 .mbr-section-title.display-4 {
  font-size: 48px;
}
@media (max-width: 767px) {
  .cid-v7BaqSfeJ6 .mbr-section-title.display-4 {
    font-size: 36px;
  }
}
@media (max-width: 575px) {
  .cid-v7BaqSfeJ6 .mbr-section-title.display-4 {
    font-size: 28px;
  }
}
.cid-v7BaqSfeJ6 .mbr-text {
  width: 100%;
  color: #353535;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-v7BaqSfeJ6 .mbr-text {
    margin-top: 16px;
  }
}
.cid-v7BaqSfeJ6 .mbr-section-btn {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-v7BaqSfeJ6 .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-v7BaqSfeJ6 .mbr-text,
.cid-v7BaqSfeJ6 .mbr-section-btn {
  text-align: justify;
}
.cid-v7BaqTcG96 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f1dbda;
}
.cid-v7BaqTcG96 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7BaqTcG96 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7BaqTcG96 .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 991px) {
  .cid-v7BaqTcG96 .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-v7BaqTcG96 .mbr-section-head {
    margin-bottom: 50px;
  }
}
.cid-v7BaqTcG96 .mbr-section-title {
  color: #353535;
  margin-bottom: 0;
}
.cid-v7BaqTcG96 .mbr-section-subtitle {
  color: #353535;
  margin-top: 20px;
}
@media (max-width: 991px) {
  .cid-v7BaqTcG96 .col-img {
    display: none;
  }
}
.cid-v7BaqTcG96 .img-wrap {
  width: 100%;
}
.cid-v7BaqTcG96 .img-wrap .img-box {
  width: 100%;
  border-radius: 65px 65px 0 65px;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-v7BaqTcG96 .img-wrap .img-box {
    border-radius: 40px 40px 0 40px;
  }
}
.cid-v7BaqTcG96 .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-v7BaqTcG96 .mbr-iconfont {
  position: relative;
  font-size: 24px !important;
  font-family: 'Moririse2' !important;
  color: #987a5a;
  margin-left: 1rem;
  padding: 10px;
  transition: .3s all;
}
.cid-v7BaqTcG96 .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-v7BaqTcG96 .mbr-iconfont:before {
  position: relative;
  z-index: 2;
}
.cid-v7BaqTcG96 .panel-group {
  border: none;
  border-top: 1px solid #895957;
  margin-top: 10px;
}
@media (max-width: 991px) {
  .cid-v7BaqTcG96 .panel-group {
    margin-top: 0;
  }
}
.cid-v7BaqTcG96 .card {
  border-bottom: 1px solid #895957;
  border-radius: 0;
}
.cid-v7BaqTcG96 .card-header {
  padding: 20px 0;
  border: none;
  background-color: transparent;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .cid-v7BaqTcG96 .card-header {
    padding: 8px 0;
  }
}
.cid-v7BaqTcG96 .card-header:hover .mbr-iconfont {
  color: #895957;
}
.cid-v7BaqTcG96 .card-header:hover .mbr-iconfont:after {
  opacity: 1;
}
.cid-v7BaqTcG96 .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #987A5A;
}
.cid-v7BaqTcG96 .panel-title[aria-expanded="true"] .mbr-iconfont {
  transform: rotate(45deg);
}
.cid-v7BaqTcG96 .panel-title-edit {
  color: #987A5A;
}
.cid-v7BaqTcG96 .panel-body {
  padding: 0 0 40px;
}
@media (max-width: 767px) {
  .cid-v7BaqTcG96 .panel-body {
    padding: 0 0 24px;
  }
}
.cid-v7BaqTcG96 .panel-text {
  color: #353535;
  margin: 0;
}
.cid-v7BaqVfVWq {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fffcf5;
}
.cid-v7BaqVfVWq .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7BaqVfVWq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7BaqVfVWq .text-wrap {
  width: 100%;
}
.cid-v7BaqVfVWq .mbr-title {
  margin-bottom: 0;
  color: #000000;
}
.cid-v7BaqVfVWq .mbr-text {
  padding-top: 16px;
  color: #353535;
}
.cid-v7BaqVfVWq .list-wrap {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-v7BaqVfVWq .list-wrap {
    margin-top: 24px;
  }
}
.cid-v7BaqVfVWq .list-box {
  width: 100%;
}
.cid-v7BaqVfVWq .list {
  list-style: none;
  margin-top: 22px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #353535;
}
.cid-v7BaqVfVWq .list-text {
  position: relative;
}
.cid-v7BaqVfVWq .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-v7BaqVfVWq .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-v7C6pBZ3Oy {
  padding-top: 6rem;
  padding-bottom: 6rem;
  overflow: hidden;
  background-color: #fffcf5;
}
.cid-v7C6pBZ3Oy .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7C6pBZ3Oy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7C6pBZ3Oy .video-wrapper iframe {
  width: 100%;
}
.cid-v7C6pBZ3Oy .mbr-section-title,
.cid-v7C6pBZ3Oy .mbr-section-subtitle,
.cid-v7C6pBZ3Oy .mbr-text {
  text-align: center;
}
.cid-v7C6pBZ3Oy .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 767px) {
  .cid-v7C6pBZ3Oy .mbr-section-head {
    margin-bottom: 60px;
  }
}
.cid-v7C6pBZ3Oy .mbr-section-title {
  color: #829D85;
  margin-bottom: 0;
  text-align: center;
}
.cid-v7C6pBZ3Oy .mbr-section-subtitle {
  color: #353535;
  margin-top: 20px;
}
.cid-v7C6pBZ3Oy .box {
  width: 100%;
  border-radius: 45px;
  overflow: hidden;
  border: 1px solid rgba(130, 157, 133, 0.8);
}
.cid-v7BUTr6uU1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v7BUTr6uU1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7BUTr6uU1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7BUTr6uU1 .content-wrap {
  margin-bottom: 56px;
}
@media (max-width: 992px) {
  .cid-v7BUTr6uU1 .content-wrap {
    margin-bottom: 32px;
  }
}
.cid-v7BUTr6uU1 .content-wrap .label-wrapper {
  margin-bottom: 16px;
}
.cid-v7BUTr6uU1 .content-wrap .label-wrapper .mbr-label {
  padding: 2px 12px;
  margin-bottom: 0;
  display: inline-block;
  background-color: #f7f7f7;
}
.cid-v7BUTr6uU1 .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-v7BUTr6uU1 .content-wrap .text-wrapper .mbr-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v7BUTr6uU1 .content-wrap .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-v7BUTr6uU1 .card-wrapper {
  background-color: #f7f7f7;
  padding: 8px;
}
.cid-v7BUTr6uU1 .card-wrapper .panel-group .card {
  position: relative;
  padding: 0;
  border-bottom: none;
  background-color: #ffffff;
  margin-top: 8px;
  overflow: hidden;
}
.cid-v7BUTr6uU1 .card-wrapper .panel-group .card:first-child {
  margin-top: 0;
}
.cid-v7BUTr6uU1 .card-wrapper .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-v7BUTr6uU1 .card-wrapper .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 24px;
}
.cid-v7BUTr6uU1 .card-wrapper .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.cid-v7BUTr6uU1 .card-wrapper .panel-group .card .card-header .panel-title .icon-wrapper {
  width: 20px;
  height: 20px;
  min-width: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v7BUTr6uU1 .card-wrapper .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  color: #000000;
}
.cid-v7BUTr6uU1 .card-wrapper .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  transform: rotate(-45deg);
}
.cid-v7BUTr6uU1 .card-wrapper .panel-group .card .panel-collapse .panel-body {
  padding: 0 24px 24px 24px;
}
.cid-v7BUTr6uU1 .card-wrapper .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
  transition: all .3s ease;
  transform: translateY(10px);
  opacity: 0;
}
.cid-v7BUTr6uU1 .card-wrapper .panel-group .card .panel-collapse.show .panel-body .panel-text {
  transform: translateY(0);
  opacity: 1;
}
.cid-v7BUTr6uU1 .mbr-label,
.cid-v7BUTr6uU1 .label-wrapper {
  color: #000000;
  text-align: center;
}
.cid-v7BUTr6uU1 .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-v7BUTr6uU1 .mbr-text,
.cid-v7BUTr6uU1 .text-wrapper {
  color: #4f4f4f;
  text-align: center;
}
.cid-v7BUTr6uU1 .panel-title-edit {
  color: #000000;
}
.cid-v7BUTr6uU1 .panel-text {
  color: #4f4f4f;
}
.cid-v7BaqWqO14 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #f1dbda;
}
.cid-v7BaqWqO14 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7BaqWqO14 .item-wrapper {
  display: flex;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-v7BaqWqO14 .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v7BaqWqO14 .item-wrapper:hover .iconfont-wrapper:after {
  width: 70px;
  height: 70px;
}
.cid-v7BaqWqO14 a {
  font-weight: 600;
}
.cid-v7BaqWqO14 a:hover {
  background: none !important;
}
@media (min-width: 1400px) {
  .cid-v7BaqWqO14 .col-lg-3,
  .cid-v7BaqWqO14 .col-xl-3 {
    max-width: 20%;
  }
}
@media (max-width: 1200px) {
  .cid-v7BaqWqO14 .col-lg-12 {
    min-width: 100% !important;
  }
}
.cid-v7BaqWqO14 .card-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-v7BaqWqO14 h5 {
  margin: 0;
}
.cid-v7BaqWqO14 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7BaqWqO14 .iconfont-wrapper {
  position: relative;
}
.cid-v7BaqWqO14 .mbr-iconfont {
  display: flex;
  padding-right: 1rem;
  font-size: 2rem;
  color: #000000;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 2;
  position: relative;
}
.cid-v7BaqWqO14 .socicon {
  font-size: 1rem;
  width: 30px;
  height: 30px;
}
.cid-v7BaqWqO14 .sociconfont-wrapper {
  display: flex;
}
.cid-v7BaqWqO14 .card-title,
.cid-v7BaqWqO14 .iconfont-wrapper {
  color: #000000;
}
.cid-v7BaqWqO14 .card-text {
  color: #000000;
}
.cid-v7BaqWqO14 .mbr-section-title {
  color: #000000;
}
.cid-v7BaqWqO14 .main-title,
.cid-v7BaqWqO14 .iconfont-wrapper {
  text-align: left;
  color: #df7f11;
}
.cid-v7BaqY52Tl {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #caa9a8;
}
.cid-v7BaqY52Tl .mbr-text {
  color: #FFFCF5;
}
.cid-v7BaqY52Tl .media-container-row .mbr-text {
  color: #353535;
}
.cid-v7B9Gyv0EO {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 90px;
}
.cid-v7B9Gyv0EO nav.navbar {
  position: fixed;
}
.cid-v7B9Gyv0EO .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-v7B9Gyv0EO .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v7B9Gyv0EO .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v7B9Gyv0EO .dropdown-item:hover,
.cid-v7B9Gyv0EO .dropdown-item:focus {
  background: #829d85 !important;
  color: white !important;
}
.cid-v7B9Gyv0EO .dropdown-item:hover span {
  color: white;
}
.cid-v7B9Gyv0EO .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v7B9Gyv0EO .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v7B9Gyv0EO .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v7B9Gyv0EO .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v7B9Gyv0EO .nav-link {
  position: relative;
}
.cid-v7B9Gyv0EO .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-v7B9Gyv0EO .container {
    flex-wrap: nowrap;
  }
}
.cid-v7B9Gyv0EO .iconfont-wrapper {
  color: #353535 !important;
  font-size: 18px;
  padding-right: 0;
}
.cid-v7B9Gyv0EO .iconfont-wrapper .mbr-iconfont {
  transition: .4s all;
}
.cid-v7B9Gyv0EO .iconfont-wrapper .mbr-iconfont:hover {
  color: #829d85;
}
.cid-v7B9Gyv0EO .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 66.66666667%;
  margin-right: auto;
  min-height: 89px;
}
.cid-v7B9Gyv0EO .navbar-nav .nav-item {
  margin: 2px;
}
.cid-v7B9Gyv0EO .navbar-nav .nav-link {
  padding: 5px 9px;
  transition: .4s all;
}
.cid-v7B9Gyv0EO .navbar-nav .nav-link:hover {
  transform: scale(1.1);
}
.cid-v7B9Gyv0EO .dropdown-menu,
.cid-v7B9Gyv0EO .navbar.opened {
  background: #f1dbda !important;
}
.cid-v7B9Gyv0EO .nav-item:focus,
.cid-v7B9Gyv0EO .nav-link:focus {
  outline: none;
}
.cid-v7B9Gyv0EO .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v7B9Gyv0EO .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v7B9Gyv0EO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v7B9Gyv0EO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v7B9Gyv0EO .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v7B9Gyv0EO .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v7B9Gyv0EO .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: #f1dbda;
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-v7B9Gyv0EO .navbar.opened {
  transition: all 0.3s;
}
.cid-v7B9Gyv0EO .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v7B9Gyv0EO .navbar .navbar-logo img {
  width: auto;
}
.cid-v7B9Gyv0EO .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v7B9Gyv0EO .navbar.collapsed {
  justify-content: center;
}
.cid-v7B9Gyv0EO .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v7B9Gyv0EO .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v7B9Gyv0EO .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v7B9Gyv0EO .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v7B9Gyv0EO .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v7B9Gyv0EO .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-v7B9Gyv0EO .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v7B9Gyv0EO .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v7B9Gyv0EO .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v7B9Gyv0EO .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v7B9Gyv0EO .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v7B9Gyv0EO .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v7B9Gyv0EO .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v7B9Gyv0EO .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-v7B9Gyv0EO .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v7B9Gyv0EO .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v7B9Gyv0EO .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v7B9Gyv0EO .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v7B9Gyv0EO .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v7B9Gyv0EO .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v7B9Gyv0EO .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v7B9Gyv0EO .navbar.navbar-short {
  min-height: 90px;
}
.cid-v7B9Gyv0EO .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v7B9Gyv0EO .navbar.navbar-short .navbar-brand {
  min-height: 89px;
  padding: 0;
}
.cid-v7B9Gyv0EO .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-v7B9Gyv0EO .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v7B9Gyv0EO .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v7B9Gyv0EO .dropdown-item.active,
.cid-v7B9Gyv0EO .dropdown-item:active {
  background-color: transparent;
}
.cid-v7B9Gyv0EO .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v7B9Gyv0EO .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v7B9Gyv0EO .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v7B9Gyv0EO .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f1dbda;
}
.cid-v7B9Gyv0EO .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v7B9Gyv0EO .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v7B9Gyv0EO ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v7B9Gyv0EO .navbar-buttons {
  text-align: center;
}
.cid-v7B9Gyv0EO 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-v7B9Gyv0EO button.navbar-toggler .hamburger span {
  position: absolute;
  right: 13px;
  width: 22px;
  height: 2px;
  background-color: #715537;
}
.cid-v7B9Gyv0EO button.navbar-toggler .hamburger span:nth-child(1) {
  top: 17px;
  transition: all 0.2s;
}
.cid-v7B9Gyv0EO button.navbar-toggler .hamburger span:nth-child(2) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-v7B9Gyv0EO button.navbar-toggler .hamburger span:nth-child(3) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-v7B9Gyv0EO button.navbar-toggler .hamburger span:nth-child(4) {
  top: 29px;
  transition: all 0.2s;
}
.cid-v7B9Gyv0EO nav.opened .hamburger span:nth-child(1) {
  top: 17px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-v7B9Gyv0EO nav.opened .hamburger span:nth-child(2) {
  transform: translateY(-1px) rotate(45deg);
  transition: all 0.25s;
}
.cid-v7B9Gyv0EO nav.opened .hamburger span:nth-child(3) {
  transform: translateY(-1px) rotate(-45deg);
  transition: all 0.25s;
}
.cid-v7B9Gyv0EO nav.opened .hamburger span:nth-child(4) {
  top: 29px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-v7B9Gyv0EO .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v7B9Gyv0EO a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v7B9Gyv0EO .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-v7B9Gyv0EO .navbar {
    height: 70px;
  }
  .cid-v7B9Gyv0EO .navbar.opened {
    height: auto;
  }
  .cid-v7B9Gyv0EO .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v7B9Gyv0EO .container,
.cid-v7B9Gyv0EO .container-fluid {
  flex-wrap: wrap;
}
.cid-v7B9Gyv0EO .navbar-collapse {
  width: 75%;
  min-height: 89px;
}
.cid-v7B9Gyv0EO .border-item {
  width: 100%;
  height: 1px;
  background-color: #caa9a8;
}
.cid-v7B9Gyv0EO .mbr-section-btn .btn {
  width: 180px;
  min-width: auto;
  min-height: 55px;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-v7B9Gyv0EO .navbar-brand {
    width: calc(100% - 48px) !important;
    min-height: 89px;
  }
  .cid-v7B9Gyv0EO .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 1rem;
    order: 5;
  }
  .cid-v7B9Gyv0EO .navbar-nav {
    width: 100%;
  }
}
.cid-v7B9GzTyp3 {
  background-color: #fffcf5;
  overflow: hidden;
}
.cid-v7B9GzTyp3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7B9GzTyp3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7B9GzTyp3 .row {
  flex-wrap: nowrap;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-v7B9GzTyp3 .row {
    flex-wrap: wrap;
  }
}
.cid-v7B9GzTyp3 .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-v7B9GzTyp3 .text-wrap {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .cid-v7B9GzTyp3 .text-wrap {
    margin-bottom: 20px;
  }
}
.cid-v7B9GzTyp3 .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #a9bbab;
  transform: translateY(40%);
}
.cid-v7B9GzTyp3 .mbr-section-title {
  color: #353535;
  text-align: left;
}
.cid-v7B9GzTyp3 .mbr-section-title a {
  pointer-events: none !important;
  font-style: italic !important;
  font-weight: bold !important;
}
.cid-v7B9GzTyp3 .mbr-section-subtitle {
  margin-top: 30px;
  color: #353535;
}
@media (max-width: 767px) {
  .cid-v7B9GzTyp3 .mbr-section-subtitle {
    margin-top: 12px;
  }
}
.cid-v7B9GzTyp3 .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-v7B9GzTyp3 .mbr-text {
    margin-top: 12px;
  }
}
.cid-v7B9GzTyp3 .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-v7B9GzTyp3 .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-v7B9GzTyp3 .col-img {
  width: 430px;
}
@media (max-width: 1199px) {
  .cid-v7B9GzTyp3 .col-img {
    width: 350px;
  }
}
.cid-v7B9GzTyp3 .img-wrap {
  position: relative;
  width: 100%;
}
.cid-v7B9GzTyp3 .img-wrap .img-box {
  position: relative;
  z-index: 3;
  width: 100%;
  border-top-left-radius: 65px;
  border-top-right-radius: 65px;
  border-bottom-right-radius: 65px;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-v7B9GzTyp3 .img-wrap .img-box {
    border-top-left-radius: 55px;
    border-top-right-radius: 55px;
    border-bottom-right-radius: 55px;
  }
}
.cid-v7B9GzTyp3 .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-v7B9GzTyp3 .img-wrap .frame-box {
  position: absolute;
  height: 240px;
}
.cid-v7B9GzTyp3 .img-wrap .frame-box svg {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
}
.cid-v7B9GzTyp3 .img-wrap .frame-box-1 {
  bottom: -20%;
  left: -14%;
  width: 85%;
  transform: rotate(10deg);
}
.cid-v7B9GzTyp3 .img-wrap .frame-box-2 {
  bottom: -18%;
  right: -14%;
  width: 84%;
  transform: rotate(0deg);
}
@media (max-width: 991px) {
  .cid-v7B9GzTyp3 .img-wrap .frame-box-2 {
    bottom: auto;
    top: -15%;
  }
}
.cid-v7B9GzTyp3 .mbr-text,
.cid-v7B9GzTyp3 .mbr-section-btn {
  text-align: left;
}
.cid-v7BfbmAmRc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1dbda;
}
.cid-v7BfbmAmRc .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7BfbmAmRc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7BfbmAmRc .mbr-text {
  color: #000000;
}
.cid-v7BfbmAmRc .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-v7BfbmAmRc .item-wrapper {
  background: #f7f5f0;
  padding: 2.25rem 2.25rem 1rem 2.25rem;
}
@media (max-width: 767px) {
  .cid-v7BfbmAmRc .item-wrapper {
    padding: 2rem 1.5rem 0.5rem 1.5rem;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-v7BfbmAmRc .item-wrapper {
    padding: 2rem 1.5rem 0.5rem 1.5rem;
  }
}
.cid-v7BfbmAmRc .main-button {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-v7BfbmAmRc .main-button {
    margin-bottom: 2rem;
  }
}
.cid-v7BfbmAmRc .counter-container ul {
  margin: 0;
  padding-left: 2.25rem;
  list-style: none;
}
.cid-v7BfbmAmRc .counter-container ul li {
  position: relative;
  list-style: none;
  margin-bottom: 2rem;
}
.cid-v7BfbmAmRc .counter-container ul li:before {
  position: absolute;
  left: -1.5em;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #895957;
  background-color: #895957;
  width: 0.5em;
  height: 0.5em;
  top: 0.4em;
  border-radius: 50%;
}
.cid-v7BfbmAmRc .mbr-text UL {
  text-align: left;
}
.cid-v7BfbmAmRc .mbr-section-subtitle,
.cid-v7BfbmAmRc .main-button {
  color: #000000;
}
.cid-v7BfbmAmRc .mbr-section-title {
  color: #000000;
}
.cid-v7B9GAP6Y0 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fffcf5;
}
.cid-v7B9GAP6Y0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7B9GAP6Y0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7B9GAP6Y0 .text-wrap {
  width: 100%;
}
.cid-v7B9GAP6Y0 .mbr-title {
  margin-bottom: 0;
  color: #829D85;
}
.cid-v7B9GAP6Y0 .mbr-text {
  padding-top: 16px;
  color: #353535;
}
.cid-v7B9GAP6Y0 .list-wrap {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-v7B9GAP6Y0 .list-wrap {
    margin-top: 24px;
  }
}
.cid-v7B9GAP6Y0 .list-box {
  width: 100%;
}
.cid-v7B9GAP6Y0 .list {
  list-style: none;
  margin-top: 22px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #353535;
}
.cid-v7B9GAP6Y0 .list-text {
  position: relative;
}
.cid-v7B9GAP6Y0 .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-v7B9GAP6Y0 .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-v7B9GBOPtj {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f1dbda;
  overflow: hidden;
}
.cid-v7B9GBOPtj .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7B9GBOPtj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7B9GBOPtj .row {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v7B9GBOPtj .row {
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  .cid-v7B9GBOPtj .col-text {
    order: 2;
  }
}
.cid-v7B9GBOPtj .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-v7B9GBOPtj .text-wrap {
    margin-top: 30px;
  }
}
.cid-v7B9GBOPtj .mbr-section-title {
  color: #000000;
  text-align: justify;
}
.cid-v7B9GBOPtj .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-v7B9GBOPtj .mbr-text {
    margin-top: 12px;
  }
}
.cid-v7B9GBOPtj .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-v7B9GBOPtj .mbr-section-btn {
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .cid-v7B9GBOPtj .col-img {
    order: 1;
  }
}
.cid-v7B9GBOPtj .img-wrap {
  position: relative;
  width: 100%;
}
.cid-v7B9GBOPtj .img-wrap .img-box {
  position: relative;
  z-index: 3;
  width: 100%;
  border-radius: 65px 65px 65px 0;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-v7B9GBOPtj .img-wrap .img-box {
    border-radius: 55px 55px 55px 0;
  }
}
@media (max-width: 991px) {
  .cid-v7B9GBOPtj .img-wrap .img-box {
    border-radius: 65px 65px 65px 0;
  }
}
@media (max-width: 767px) {
  .cid-v7B9GBOPtj .img-wrap .img-box {
    border-radius: 55px 55px 55px 0;
  }
}
@media (max-width: 575px) {
  .cid-v7B9GBOPtj .img-wrap .img-box {
    border-radius: 45px 45px 45px 0;
  }
}
.cid-v7B9GBOPtj .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-v7B9GBOPtj .mbr-text,
.cid-v7B9GBOPtj .mbr-section-btn {
  text-align: justify;
}
.cid-v7B9GCD9iQ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f1dbda;
}
.cid-v7B9GCD9iQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7B9GCD9iQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v7B9GCD9iQ .row {
    align-items: center !important;
  }
}
.cid-v7B9GCD9iQ .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 991px) {
  .cid-v7B9GCD9iQ .mbr-section-head {
    margin-bottom: 75px;
  }
}
@media (max-width: 767px) {
  .cid-v7B9GCD9iQ .mbr-section-head {
    margin-bottom: 65px;
  }
}
.cid-v7B9GCD9iQ .mbr-section-title {
  color: #000000;
  margin-bottom: 0;
}
.cid-v7B9GCD9iQ .mbr-section-subtitle {
  color: #353535;
  margin-top: 20px;
  text-align: justify;
}
.cid-v7B9GCD9iQ .text-wrap {
  width: 100%;
  padding: 36px 0;
  border-top: 1px solid #895957;
}
@media (max-width: 991px) {
  .cid-v7B9GCD9iQ .text-wrap {
    padding: 30px 0;
  }
}
.cid-v7B9GCD9iQ .mbr-title {
  color: #61411e;
}
.cid-v7B9GCD9iQ .mbr-text {
  margin-top: 12px;
  color: #353535;
}
.cid-v7B9GCD9iQ .list-box {
  width: 100%;
}
.cid-v7B9GCD9iQ .list {
  list-style: none;
  margin-top: 22px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #353535;
  padding-left: 0;
}
.cid-v7B9GCD9iQ .list-text {
  position: relative;
}
.cid-v7B9GCD9iQ .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-v7B9GCD9iQ .mbr-section-btn {
  margin-top: 20px;
}
.cid-v7B9GCD9iQ .img-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  border-radius: 0 100px 0 0;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-v7B9GCD9iQ .img-box {
    border-radius: 0;
  }
}
@media (max-width: 767px) {
  .cid-v7B9GCD9iQ .img-box {
    border-radius: 0 15vw 0 0;
  }
}
.cid-v7B9GCD9iQ .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-v7B9GDSze3 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fffcf5;
  overflow: hidden;
}
.cid-v7B9GDSze3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7B9GDSze3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7B9GDSze3 .mbr-section-head {
  width: 100%;
  margin-bottom: 100px;
}
@media (max-width: 991px) {
  .cid-v7B9GDSze3 .mbr-section-head {
    margin-bottom: 75px;
  }
}
@media (max-width: 767px) {
  .cid-v7B9GDSze3 .mbr-section-head {
    margin-bottom: 65px;
  }
}
.cid-v7B9GDSze3 .mbr-section-title {
  color: #000000;
  margin-bottom: 0;
}
.cid-v7B9GDSze3 .mbr-section-subtitle {
  color: #353535;
  margin-top: 20px;
  text-align: justify;
}
.cid-v7B9GDSze3 .items-row {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-v7B9GDSze3 .items-row {
    row-gap: 50px;
  }
}
.cid-v7B9GDSze3 .card-title {
  position: relative;
  max-width: 360px;
  width: 100%;
  color: #000000;
}
@media (max-width: 575px) {
  .cid-v7B9GDSze3 .card-title {
    max-width: 100%;
  }
}
.cid-v7B9GDSze3 .card-text {
  position: relative;
  max-width: 360px;
  width: 100%;
  margin-top: 16px;
  color: #353535;
}
@media (max-width: 575px) {
  .cid-v7B9GDSze3 .card-text {
    max-width: 100%;
    margin-top: 12px;
  }
}
.cid-v7B9GDSze3 .item-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 560px;
  padding: 50px 50px 60px;
  background-position: center;
  background-size: 100% 100%;
}
@media (max-width: 575px) {
  .cid-v7B9GDSze3 .item-wrap {
    padding: 20px !important;
  }
}
.cid-v7B9GDSze3 .item {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.cid-v7B9GDSze3 .item:nth-child(1) .item-wrap {
  margin-right: auto;
  background-image: url("../../../assets/images/frame5.png");
}
.cid-v7B9GDSze3 .item:nth-child(2) {
  margin-top: -12px;
}
@media (max-width: 991px) {
  .cid-v7B9GDSze3 .item:nth-child(2) {
    margin: 0;
  }
}
.cid-v7B9GDSze3 .item:nth-child(2) .item-wrap {
  margin-left: auto;
  background-image: url("../../../assets/images/frame6.png");
}
.cid-v7B9GDSze3 .item:nth-child(3) {
  margin-top: -12px;
}
@media (max-width: 991px) {
  .cid-v7B9GDSze3 .item:nth-child(3) {
    margin: 0;
  }
}
.cid-v7B9GDSze3 .item:nth-child(3) .item-wrap {
  max-width: 600px;
  margin-right: auto;
  background-image: url("../../../assets/images/frame7.png");
}
.cid-v7B9GDSze3 .item:nth-child(4) .item-wrap {
  max-width: 508px;
  margin-left: auto;
  padding: 50px 40px 60px;
  background-image: url("../../../assets/images/frame8.png");
}
.cid-v7B9GF8xJg {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f1dbda;
}
.cid-v7B9GF8xJg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7B9GF8xJg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7B9GF8xJg .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-v7B9GF8xJg .row {
    align-items: center !important;
  }
}
.cid-v7B9GF8xJg .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 991px) {
  .cid-v7B9GF8xJg .mbr-section-head {
    margin-bottom: 75px;
  }
}
@media (max-width: 767px) {
  .cid-v7B9GF8xJg .mbr-section-head {
    margin-bottom: 65px;
  }
}
.cid-v7B9GF8xJg .mbr-section-title {
  color: #000000;
  margin-bottom: 0;
}
.cid-v7B9GF8xJg .mbr-section-subtitle {
  color: #000000;
  margin-top: 20px;
}
.cid-v7B9GF8xJg .text-wrap {
  width: 100%;
  padding: 36px 0;
}
@media (max-width: 991px) {
  .cid-v7B9GF8xJg .text-wrap {
    padding: 30px 0;
  }
}
.cid-v7B9GF8xJg .mbr-title {
  color: #61411e;
}
.cid-v7B9GF8xJg .mbr-text {
  margin-top: 12px;
  color: #353535;
}
.cid-v7B9GF8xJg .list-box {
  width: 100%;
}
.cid-v7B9GF8xJg .list {
  list-style: none;
  margin-top: 22px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #353535;
  padding-left: 0;
}
.cid-v7B9GF8xJg .list-text {
  position: relative;
}
.cid-v7B9GF8xJg .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-v7B9GF8xJg .mbr-section-btn {
  margin-top: 20px;
}
.cid-v7B9GF8xJg .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-v7B9GF8xJg .img-box {
    border-radius: 0;
  }
}
@media (max-width: 767px) {
  .cid-v7B9GF8xJg .img-box {
    border-radius: 0 0 0 15vw;
    border-radius: 0 0 15vw 0;
  }
}
.cid-v7B9GF8xJg .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-v7B9GGb0mO {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f1dbda;
}
.cid-v7B9GGb0mO .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7B9GGb0mO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7B9GGb0mO .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-v7B9GGb0mO .mbr-section-title {
  width: 100%;
  color: #353535;
  margin-bottom: 0;
}
.cid-v7B9GGb0mO .mbr-section-title.display-4 {
  font-size: 48px;
}
@media (max-width: 767px) {
  .cid-v7B9GGb0mO .mbr-section-title.display-4 {
    font-size: 36px;
  }
}
@media (max-width: 575px) {
  .cid-v7B9GGb0mO .mbr-section-title.display-4 {
    font-size: 28px;
  }
}
.cid-v7B9GGb0mO .mbr-text {
  width: 100%;
  color: #353535;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-v7B9GGb0mO .mbr-text {
    margin-top: 16px;
  }
}
.cid-v7B9GGb0mO .mbr-section-btn {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-v7B9GGb0mO .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-v7B9GGb0mO .mbr-text,
.cid-v7B9GGb0mO .mbr-section-btn {
  text-align: justify;
}
.cid-v7B9GH7eNP {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f1dbda;
}
.cid-v7B9GH7eNP .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7B9GH7eNP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7B9GH7eNP .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 991px) {
  .cid-v7B9GH7eNP .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-v7B9GH7eNP .mbr-section-head {
    margin-bottom: 50px;
  }
}
.cid-v7B9GH7eNP .mbr-section-title {
  color: #353535;
  margin-bottom: 0;
}
.cid-v7B9GH7eNP .mbr-section-subtitle {
  color: #353535;
  margin-top: 20px;
}
@media (max-width: 991px) {
  .cid-v7B9GH7eNP .col-img {
    display: none;
  }
}
.cid-v7B9GH7eNP .img-wrap {
  width: 100%;
}
.cid-v7B9GH7eNP .img-wrap .img-box {
  width: 100%;
  border-radius: 65px 65px 0 65px;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-v7B9GH7eNP .img-wrap .img-box {
    border-radius: 40px 40px 0 40px;
  }
}
.cid-v7B9GH7eNP .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-v7B9GH7eNP .mbr-iconfont {
  position: relative;
  font-size: 24px !important;
  font-family: 'Moririse2' !important;
  color: #987a5a;
  margin-left: 1rem;
  padding: 10px;
  transition: .3s all;
}
.cid-v7B9GH7eNP .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-v7B9GH7eNP .mbr-iconfont:before {
  position: relative;
  z-index: 2;
}
.cid-v7B9GH7eNP .panel-group {
  border: none;
  border-top: 1px solid #895957;
  margin-top: 10px;
}
@media (max-width: 991px) {
  .cid-v7B9GH7eNP .panel-group {
    margin-top: 0;
  }
}
.cid-v7B9GH7eNP .card {
  border-bottom: 1px solid #895957;
  border-radius: 0;
}
.cid-v7B9GH7eNP .card-header {
  padding: 20px 0;
  border: none;
  background-color: transparent;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .cid-v7B9GH7eNP .card-header {
    padding: 8px 0;
  }
}
.cid-v7B9GH7eNP .card-header:hover .mbr-iconfont {
  color: #895957;
}
.cid-v7B9GH7eNP .card-header:hover .mbr-iconfont:after {
  opacity: 1;
}
.cid-v7B9GH7eNP .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #987A5A;
}
.cid-v7B9GH7eNP .panel-title[aria-expanded="true"] .mbr-iconfont {
  transform: rotate(45deg);
}
.cid-v7B9GH7eNP .panel-title-edit {
  color: #987A5A;
}
.cid-v7B9GH7eNP .panel-body {
  padding: 0 0 40px;
}
@media (max-width: 767px) {
  .cid-v7B9GH7eNP .panel-body {
    padding: 0 0 24px;
  }
}
.cid-v7B9GH7eNP .panel-text {
  color: #353535;
  margin: 0;
}
.cid-v7B9GIwcAo {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fffcf5;
}
.cid-v7B9GIwcAo .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7B9GIwcAo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7B9GIwcAo .text-wrap {
  width: 100%;
}
.cid-v7B9GIwcAo .mbr-title {
  margin-bottom: 0;
  color: #000000;
}
.cid-v7B9GIwcAo .mbr-text {
  padding-top: 16px;
  color: #353535;
}
.cid-v7B9GIwcAo .list-wrap {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-v7B9GIwcAo .list-wrap {
    margin-top: 24px;
  }
}
.cid-v7B9GIwcAo .list-box {
  width: 100%;
}
.cid-v7B9GIwcAo .list {
  list-style: none;
  margin-top: 22px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #353535;
}
.cid-v7B9GIwcAo .list-text {
  position: relative;
}
.cid-v7B9GIwcAo .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-v7B9GIwcAo .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-v7BUfEYq6a {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v7BUfEYq6a .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7BUfEYq6a .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7BUfEYq6a .content-wrap {
  margin-bottom: 56px;
}
@media (max-width: 992px) {
  .cid-v7BUfEYq6a .content-wrap {
    margin-bottom: 32px;
  }
}
.cid-v7BUfEYq6a .content-wrap .label-wrapper {
  margin-bottom: 16px;
}
.cid-v7BUfEYq6a .content-wrap .label-wrapper .mbr-label {
  padding: 2px 12px;
  margin-bottom: 0;
  display: inline-block;
  background-color: #f7f7f7;
}
.cid-v7BUfEYq6a .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-v7BUfEYq6a .content-wrap .text-wrapper .mbr-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v7BUfEYq6a .content-wrap .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-v7BUfEYq6a .card-wrapper {
  background-color: #f7f7f7;
  padding: 8px;
}
.cid-v7BUfEYq6a .card-wrapper .panel-group .card {
  position: relative;
  padding: 0;
  border-bottom: none;
  background-color: #ffffff;
  margin-top: 8px;
  overflow: hidden;
}
.cid-v7BUfEYq6a .card-wrapper .panel-group .card:first-child {
  margin-top: 0;
}
.cid-v7BUfEYq6a .card-wrapper .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-v7BUfEYq6a .card-wrapper .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 24px;
}
.cid-v7BUfEYq6a .card-wrapper .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.cid-v7BUfEYq6a .card-wrapper .panel-group .card .card-header .panel-title .icon-wrapper {
  width: 20px;
  height: 20px;
  min-width: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v7BUfEYq6a .card-wrapper .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  color: #000000;
}
.cid-v7BUfEYq6a .card-wrapper .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  transform: rotate(-45deg);
}
.cid-v7BUfEYq6a .card-wrapper .panel-group .card .panel-collapse .panel-body {
  padding: 0 24px 24px 24px;
}
.cid-v7BUfEYq6a .card-wrapper .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
  transition: all .3s ease;
  transform: translateY(10px);
  opacity: 0;
}
.cid-v7BUfEYq6a .card-wrapper .panel-group .card .panel-collapse.show .panel-body .panel-text {
  transform: translateY(0);
  opacity: 1;
}
.cid-v7BUfEYq6a .mbr-label,
.cid-v7BUfEYq6a .label-wrapper {
  color: #000000;
  text-align: center;
}
.cid-v7BUfEYq6a .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-v7BUfEYq6a .mbr-text,
.cid-v7BUfEYq6a .text-wrapper {
  color: #4f4f4f;
  text-align: center;
}
.cid-v7BUfEYq6a .panel-title-edit {
  color: #000000;
}
.cid-v7BUfEYq6a .panel-text {
  color: #4f4f4f;
}
.cid-v7B9GJw7JC {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #f1dbda;
}
.cid-v7B9GJw7JC .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7B9GJw7JC .item-wrapper {
  display: flex;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-v7B9GJw7JC .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v7B9GJw7JC .item-wrapper:hover .iconfont-wrapper:after {
  width: 70px;
  height: 70px;
}
.cid-v7B9GJw7JC a {
  font-weight: 600;
}
.cid-v7B9GJw7JC a:hover {
  background: none !important;
}
@media (min-width: 1400px) {
  .cid-v7B9GJw7JC .col-lg-3,
  .cid-v7B9GJw7JC .col-xl-3 {
    max-width: 20%;
  }
}
@media (max-width: 1200px) {
  .cid-v7B9GJw7JC .col-lg-12 {
    min-width: 100% !important;
  }
}
.cid-v7B9GJw7JC .card-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-v7B9GJw7JC h5 {
  margin: 0;
}
.cid-v7B9GJw7JC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7B9GJw7JC .iconfont-wrapper {
  position: relative;
}
.cid-v7B9GJw7JC .mbr-iconfont {
  display: flex;
  padding-right: 1rem;
  font-size: 2rem;
  color: #000000;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 2;
  position: relative;
}
.cid-v7B9GJw7JC .socicon {
  font-size: 1rem;
  width: 30px;
  height: 30px;
}
.cid-v7B9GJw7JC .sociconfont-wrapper {
  display: flex;
}
.cid-v7B9GJw7JC .card-title,
.cid-v7B9GJw7JC .iconfont-wrapper {
  color: #000000;
}
.cid-v7B9GJw7JC .card-text {
  color: #000000;
}
.cid-v7B9GJw7JC .mbr-section-title {
  color: #000000;
}
.cid-v7B9GJw7JC .main-title,
.cid-v7B9GJw7JC .iconfont-wrapper {
  text-align: left;
  color: #df7f11;
}
.cid-v7B9GKZRIq {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #caa9a8;
}
.cid-v7B9GKZRIq .mbr-text {
  color: #FFFCF5;
}
.cid-v7B9GKZRIq .media-container-row .mbr-text {
  color: #353535;
}
.cid-v7BbylqCoB {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 90px;
}
.cid-v7BbylqCoB nav.navbar {
  position: fixed;
}
.cid-v7BbylqCoB .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-v7BbylqCoB .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v7BbylqCoB .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v7BbylqCoB .dropdown-item:hover,
.cid-v7BbylqCoB .dropdown-item:focus {
  background: #829d85 !important;
  color: white !important;
}
.cid-v7BbylqCoB .dropdown-item:hover span {
  color: white;
}
.cid-v7BbylqCoB .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v7BbylqCoB .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v7BbylqCoB .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v7BbylqCoB .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v7BbylqCoB .nav-link {
  position: relative;
}
.cid-v7BbylqCoB .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-v7BbylqCoB .container {
    flex-wrap: nowrap;
  }
}
.cid-v7BbylqCoB .iconfont-wrapper {
  color: #353535 !important;
  font-size: 18px;
  padding-right: 0;
}
.cid-v7BbylqCoB .iconfont-wrapper .mbr-iconfont {
  transition: .4s all;
}
.cid-v7BbylqCoB .iconfont-wrapper .mbr-iconfont:hover {
  color: #829d85;
}
.cid-v7BbylqCoB .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 66.66666667%;
  margin-right: auto;
  min-height: 89px;
}
.cid-v7BbylqCoB .navbar-nav .nav-item {
  margin: 2px;
}
.cid-v7BbylqCoB .navbar-nav .nav-link {
  padding: 5px 9px;
  transition: .4s all;
}
.cid-v7BbylqCoB .navbar-nav .nav-link:hover {
  transform: scale(1.1);
}
.cid-v7BbylqCoB .dropdown-menu,
.cid-v7BbylqCoB .navbar.opened {
  background: #f1dbda !important;
}
.cid-v7BbylqCoB .nav-item:focus,
.cid-v7BbylqCoB .nav-link:focus {
  outline: none;
}
.cid-v7BbylqCoB .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v7BbylqCoB .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v7BbylqCoB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v7BbylqCoB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v7BbylqCoB .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v7BbylqCoB .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v7BbylqCoB .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: #f1dbda;
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-v7BbylqCoB .navbar.opened {
  transition: all 0.3s;
}
.cid-v7BbylqCoB .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v7BbylqCoB .navbar .navbar-logo img {
  width: auto;
}
.cid-v7BbylqCoB .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v7BbylqCoB .navbar.collapsed {
  justify-content: center;
}
.cid-v7BbylqCoB .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v7BbylqCoB .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v7BbylqCoB .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v7BbylqCoB .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v7BbylqCoB .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v7BbylqCoB .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-v7BbylqCoB .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v7BbylqCoB .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v7BbylqCoB .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v7BbylqCoB .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v7BbylqCoB .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v7BbylqCoB .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v7BbylqCoB .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v7BbylqCoB .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-v7BbylqCoB .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v7BbylqCoB .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v7BbylqCoB .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v7BbylqCoB .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v7BbylqCoB .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v7BbylqCoB .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v7BbylqCoB .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v7BbylqCoB .navbar.navbar-short {
  min-height: 90px;
}
.cid-v7BbylqCoB .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v7BbylqCoB .navbar.navbar-short .navbar-brand {
  min-height: 89px;
  padding: 0;
}
.cid-v7BbylqCoB .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-v7BbylqCoB .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v7BbylqCoB .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v7BbylqCoB .dropdown-item.active,
.cid-v7BbylqCoB .dropdown-item:active {
  background-color: transparent;
}
.cid-v7BbylqCoB .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v7BbylqCoB .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v7BbylqCoB .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v7BbylqCoB .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f1dbda;
}
.cid-v7BbylqCoB .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v7BbylqCoB .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v7BbylqCoB ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v7BbylqCoB .navbar-buttons {
  text-align: center;
}
.cid-v7BbylqCoB 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-v7BbylqCoB button.navbar-toggler .hamburger span {
  position: absolute;
  right: 13px;
  width: 22px;
  height: 2px;
  background-color: #715537;
}
.cid-v7BbylqCoB button.navbar-toggler .hamburger span:nth-child(1) {
  top: 17px;
  transition: all 0.2s;
}
.cid-v7BbylqCoB button.navbar-toggler .hamburger span:nth-child(2) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-v7BbylqCoB button.navbar-toggler .hamburger span:nth-child(3) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-v7BbylqCoB button.navbar-toggler .hamburger span:nth-child(4) {
  top: 29px;
  transition: all 0.2s;
}
.cid-v7BbylqCoB nav.opened .hamburger span:nth-child(1) {
  top: 17px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-v7BbylqCoB nav.opened .hamburger span:nth-child(2) {
  transform: translateY(-1px) rotate(45deg);
  transition: all 0.25s;
}
.cid-v7BbylqCoB nav.opened .hamburger span:nth-child(3) {
  transform: translateY(-1px) rotate(-45deg);
  transition: all 0.25s;
}
.cid-v7BbylqCoB nav.opened .hamburger span:nth-child(4) {
  top: 29px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-v7BbylqCoB .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v7BbylqCoB a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v7BbylqCoB .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-v7BbylqCoB .navbar {
    height: 70px;
  }
  .cid-v7BbylqCoB .navbar.opened {
    height: auto;
  }
  .cid-v7BbylqCoB .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v7BbylqCoB .container,
.cid-v7BbylqCoB .container-fluid {
  flex-wrap: wrap;
}
.cid-v7BbylqCoB .navbar-collapse {
  width: 75%;
  min-height: 89px;
}
.cid-v7BbylqCoB .border-item {
  width: 100%;
  height: 1px;
  background-color: #caa9a8;
}
.cid-v7BbylqCoB .mbr-section-btn .btn {
  width: 180px;
  min-width: auto;
  min-height: 55px;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-v7BbylqCoB .navbar-brand {
    width: calc(100% - 48px) !important;
    min-height: 89px;
  }
  .cid-v7BbylqCoB .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 1rem;
    order: 5;
  }
  .cid-v7BbylqCoB .navbar-nav {
    width: 100%;
  }
}
.cid-v7Bbym4ImH {
  background-color: #fffcf5;
  overflow: hidden;
}
.cid-v7Bbym4ImH .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7Bbym4ImH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7Bbym4ImH .row {
  flex-wrap: nowrap;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-v7Bbym4ImH .row {
    flex-wrap: wrap;
  }
}
.cid-v7Bbym4ImH .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-v7Bbym4ImH .text-wrap {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .cid-v7Bbym4ImH .text-wrap {
    margin-bottom: 20px;
  }
}
.cid-v7Bbym4ImH .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #a9bbab;
  transform: translateY(40%);
}
.cid-v7Bbym4ImH .mbr-section-title {
  color: #353535;
  text-align: left;
}
.cid-v7Bbym4ImH .mbr-section-title a {
  pointer-events: none !important;
  font-style: italic !important;
  font-weight: bold !important;
}
.cid-v7Bbym4ImH .mbr-section-subtitle {
  margin-top: 30px;
  color: #353535;
}
@media (max-width: 767px) {
  .cid-v7Bbym4ImH .mbr-section-subtitle {
    margin-top: 12px;
  }
}
.cid-v7Bbym4ImH .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-v7Bbym4ImH .mbr-text {
    margin-top: 12px;
  }
}
.cid-v7Bbym4ImH .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-v7Bbym4ImH .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-v7Bbym4ImH .col-img {
  width: 430px;
}
@media (max-width: 1199px) {
  .cid-v7Bbym4ImH .col-img {
    width: 350px;
  }
}
.cid-v7Bbym4ImH .img-wrap {
  position: relative;
  width: 100%;
}
.cid-v7Bbym4ImH .img-wrap .img-box {
  position: relative;
  z-index: 3;
  width: 100%;
  border-top-left-radius: 65px;
  border-top-right-radius: 65px;
  border-bottom-right-radius: 65px;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-v7Bbym4ImH .img-wrap .img-box {
    border-top-left-radius: 55px;
    border-top-right-radius: 55px;
    border-bottom-right-radius: 55px;
  }
}
.cid-v7Bbym4ImH .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-v7Bbym4ImH .img-wrap .frame-box {
  position: absolute;
  height: 240px;
}
.cid-v7Bbym4ImH .img-wrap .frame-box svg {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
}
.cid-v7Bbym4ImH .img-wrap .frame-box-1 {
  bottom: -20%;
  left: -14%;
  width: 85%;
  transform: rotate(10deg);
}
.cid-v7Bbym4ImH .img-wrap .frame-box-2 {
  bottom: -18%;
  right: -14%;
  width: 84%;
  transform: rotate(0deg);
}
@media (max-width: 991px) {
  .cid-v7Bbym4ImH .img-wrap .frame-box-2 {
    bottom: auto;
    top: -15%;
  }
}
.cid-v7Bbym4ImH .mbr-text,
.cid-v7Bbym4ImH .mbr-section-btn {
  text-align: left;
}
.cid-v7BbymAYTp {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fffcf5;
}
.cid-v7BbymAYTp .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7BbymAYTp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7BbymAYTp .text-wrap {
  width: 100%;
}
.cid-v7BbymAYTp .mbr-title {
  margin-bottom: 0;
  color: #829D85;
}
.cid-v7BbymAYTp .mbr-text {
  padding-top: 16px;
  color: #353535;
}
.cid-v7BbymAYTp .list-wrap {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-v7BbymAYTp .list-wrap {
    margin-top: 24px;
  }
}
.cid-v7BbymAYTp .list-box {
  width: 100%;
}
.cid-v7BbymAYTp .list {
  list-style: none;
  margin-top: 22px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #353535;
}
.cid-v7BbymAYTp .list-text {
  position: relative;
}
.cid-v7BbymAYTp .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-v7BbymAYTp .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-v7BbyquvAx {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #f1dbda;
}
.cid-v7BbyquvAx .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7BbyquvAx .item-wrapper {
  display: flex;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-v7BbyquvAx .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v7BbyquvAx .item-wrapper:hover .iconfont-wrapper:after {
  width: 70px;
  height: 70px;
}
.cid-v7BbyquvAx a {
  font-weight: 600;
}
.cid-v7BbyquvAx a:hover {
  background: none !important;
}
@media (min-width: 1400px) {
  .cid-v7BbyquvAx .col-lg-3,
  .cid-v7BbyquvAx .col-xl-3 {
    max-width: 20%;
  }
}
@media (max-width: 1200px) {
  .cid-v7BbyquvAx .col-lg-12 {
    min-width: 100% !important;
  }
}
.cid-v7BbyquvAx .card-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-v7BbyquvAx h5 {
  margin: 0;
}
.cid-v7BbyquvAx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7BbyquvAx .iconfont-wrapper {
  position: relative;
}
.cid-v7BbyquvAx .mbr-iconfont {
  display: flex;
  padding-right: 1rem;
  font-size: 2rem;
  color: #000000;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 2;
  position: relative;
}
.cid-v7BbyquvAx .socicon {
  font-size: 1rem;
  width: 30px;
  height: 30px;
}
.cid-v7BbyquvAx .sociconfont-wrapper {
  display: flex;
}
.cid-v7BbyquvAx .card-title,
.cid-v7BbyquvAx .iconfont-wrapper {
  color: #000000;
}
.cid-v7BbyquvAx .card-text {
  color: #000000;
}
.cid-v7BbyquvAx .mbr-section-title {
  color: #000000;
}
.cid-v7BbyquvAx .main-title,
.cid-v7BbyquvAx .iconfont-wrapper {
  text-align: left;
  color: #df7f11;
}
.cid-v7BbyqXr6w {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #caa9a8;
}
.cid-v7BbyqXr6w .mbr-text {
  color: #FFFCF5;
}
.cid-v7BbyqXr6w .media-container-row .mbr-text {
  color: #353535;
}
