.btn {
  border-width: 2px;
}
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: #f9c625 !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: #f9c625;
  border: 1px solid #f9c625;
  transform: rotate(-5deg);
  z-index: -1;
  transition: .35s all;
}
.btn-primary,
.btn-primary:active {
  background-color: transparent  !important;
  border-color: #f9c625 !important;
  color: #420962 !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: #420962 !important;
}
.btn-primary:hover:before,
.btn-primary:focus:before,
.btn-primary.focus:before,
.btn-primary.active:before {
  background-color: #f9c625 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #420962 !important;
  background-color: #c29505 !important;
  border-color: #c29505 !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 #f9c625;
  transform: rotate(-5deg);
  z-index: -1;
  transition: .35s all;
}
.btn-primary-outline,
.btn-primary-outline:active {
  color: #420962;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #420962 !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #420962 !important;
  background-color: #c29505 !important;
  border-color: #c29505 !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: #f9c625 !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: #b38905 !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: #f9c625;
}
.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: #f9c625;
  border-color: #f9c625;
  color: #372a02;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #f9c625;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fefaec;
}
.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*/
.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: #f9c625 !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: #f9c625;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #f9c625;
  color: #000000;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #f9c625;
}
.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: #f9c625;
  border-bottom-color: #f9c625;
}
.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: #f9c625 !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='%23f9c625' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition-duration: .4s;
}
a:hover {
  background-image: none !important;
}
.container {
  max-width: 1190px;
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 1199px) {
  .container {
    max-width: 990px;
  }
}
@media (max-width: 991px) {
  .container {
    max-width: 670px;
  }
}
@media (max-width: 991px) {
  .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.row {
  margin-left: -15px;
  margin-right: -15px;
  justify-content: center;
}
.row > [class*="col"] {
  padding-left: 15px;
  padding-right: 15px;
}
.row {
  justify-content: center;
}
b,
strong {
  font-weight: 700 !important;
}
.mbr-section-btn .btn {
  position: relative;
  min-width: 200px;
  min-height: 60px;
  padding: 14px 28px;
  font-weight: 500;
  transition-duration: .35s;
  box-shadow: none !important;
  border: none !important;
  border-radius: 0 !important;
  z-index: 2;
}
.mbr-section-btn .btn.btn-black {
  color: #ffffff !important;
}
.mbr-section-btn .btn.btn-white {
  color: #353535 !important;
}
.mbr-section-btn .btn.btn-black-outline {
  color: #353535 !important;
}
.mbr-section-btn .btn.btn-white-outline {
  color: #ffffff !important;
}
.mbr-section-btn .btn:hover {
  transform: scale(0.9);
}
.mbr-section-btn .btn:hover:before {
  transform: rotate(0deg) scale(1.1111);
}
.cid-tqnAYxqier {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 90px;
}
.cid-tqnAYxqier nav.navbar {
  position: fixed;
}
.cid-tqnAYxqier .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tqnAYxqier .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tqnAYxqier .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tqnAYxqier .dropdown-item:hover,
.cid-tqnAYxqier .dropdown-item:focus {
  background: #f9c625 !important;
  color: white !important;
}
.cid-tqnAYxqier .dropdown-item:hover span {
  color: white;
}
.cid-tqnAYxqier .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tqnAYxqier .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tqnAYxqier .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tqnAYxqier .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tqnAYxqier .nav-link {
  position: relative;
}
.cid-tqnAYxqier .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tqnAYxqier .container {
    flex-wrap: nowrap;
  }
}
.cid-tqnAYxqier .iconfont-wrapper {
  color: #353535 !important;
  font-size: 18px;
  padding-right: 0;
}
.cid-tqnAYxqier .iconfont-wrapper .mbr-iconfont {
  transition: .4s all;
}
.cid-tqnAYxqier .iconfont-wrapper .mbr-iconfont:hover {
  color: #f9c625;
}
.cid-tqnAYxqier .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 66.66666667%;
  margin-right: auto;
  min-height: 89px;
}
.cid-tqnAYxqier .navbar-nav .nav-item {
  margin: 2px;
}
.cid-tqnAYxqier .navbar-nav .nav-link {
  padding: 5px 9px;
  transition: .4s all;
}
.cid-tqnAYxqier .navbar-nav .nav-link:hover {
  transform: scale(1.1);
}
.cid-tqnAYxqier .dropdown-menu,
.cid-tqnAYxqier .navbar.opened {
  background: #fffcf5 !important;
}
.cid-tqnAYxqier .nav-item:focus,
.cid-tqnAYxqier .nav-link:focus {
  outline: none;
}
.cid-tqnAYxqier .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tqnAYxqier .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tqnAYxqier .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tqnAYxqier .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tqnAYxqier .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tqnAYxqier .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tqnAYxqier .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: none !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fffcf5;
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-tqnAYxqier .navbar.opened {
  transition: all 0.3s;
}
.cid-tqnAYxqier .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tqnAYxqier .navbar .navbar-logo img {
  width: auto;
}
.cid-tqnAYxqier .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tqnAYxqier .navbar.collapsed {
  justify-content: center;
}
.cid-tqnAYxqier .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tqnAYxqier .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tqnAYxqier .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.6rem);
  }
}
.cid-tqnAYxqier .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tqnAYxqier .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tqnAYxqier .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tqnAYxqier .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tqnAYxqier .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tqnAYxqier .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tqnAYxqier .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tqnAYxqier .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tqnAYxqier .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tqnAYxqier .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tqnAYxqier .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tqnAYxqier .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tqnAYxqier .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tqnAYxqier .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tqnAYxqier .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tqnAYxqier .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tqnAYxqier .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tqnAYxqier .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tqnAYxqier .navbar.navbar-short {
  min-height: 90px;
}
.cid-tqnAYxqier .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tqnAYxqier .navbar.navbar-short .navbar-brand {
  min-height: 89px;
  padding: 0;
}
.cid-tqnAYxqier .navbar-brand {
  min-height: 89px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  width: 25%;
}
.cid-tqnAYxqier .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tqnAYxqier .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tqnAYxqier .dropdown-item.active,
.cid-tqnAYxqier .dropdown-item:active {
  background-color: transparent;
}
.cid-tqnAYxqier .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tqnAYxqier .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tqnAYxqier .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tqnAYxqier .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fffcf5;
}
.cid-tqnAYxqier .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tqnAYxqier .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tqnAYxqier ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tqnAYxqier .navbar-buttons {
  text-align: center;
}
.cid-tqnAYxqier button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  background-color: #f6efe8;
  border-radius: 50%;
}
.cid-tqnAYxqier button.navbar-toggler .hamburger span {
  position: absolute;
  right: 13px;
  width: 22px;
  height: 2px;
  background-color: #715537;
}
.cid-tqnAYxqier button.navbar-toggler .hamburger span:nth-child(1) {
  top: 17px;
  transition: all 0.2s;
}
.cid-tqnAYxqier button.navbar-toggler .hamburger span:nth-child(2) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-tqnAYxqier button.navbar-toggler .hamburger span:nth-child(3) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-tqnAYxqier button.navbar-toggler .hamburger span:nth-child(4) {
  top: 29px;
  transition: all 0.2s;
}
.cid-tqnAYxqier nav.opened .hamburger span:nth-child(1) {
  top: 17px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-tqnAYxqier nav.opened .hamburger span:nth-child(2) {
  transform: translateY(-1px) rotate(45deg);
  transition: all 0.25s;
}
.cid-tqnAYxqier nav.opened .hamburger span:nth-child(3) {
  transform: translateY(-1px) rotate(-45deg);
  transition: all 0.25s;
}
.cid-tqnAYxqier nav.opened .hamburger span:nth-child(4) {
  top: 29px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-tqnAYxqier .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tqnAYxqier a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tqnAYxqier .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tqnAYxqier .navbar {
    height: 70px;
  }
  .cid-tqnAYxqier .navbar.opened {
    height: auto;
  }
  .cid-tqnAYxqier .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tqnAYxqier .container,
.cid-tqnAYxqier .container-fluid {
  flex-wrap: wrap;
}
.cid-tqnAYxqier .navbar-collapse {
  width: 75%;
  min-height: 89px;
}
.cid-tqnAYxqier .border-item {
  width: 100%;
  height: 1px;
  background-color: #829d86;
}
.cid-tqnAYxqier .mbr-section-btn .btn {
  width: 180px;
  min-width: auto;
  min-height: 55px;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-tqnAYxqier .navbar-brand {
    width: calc(100% - 48px) !important;
    min-height: 89px;
  }
  .cid-tqnAYxqier .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 1rem;
    order: 5;
  }
  .cid-tqnAYxqier .navbar-nav {
    width: 100%;
  }
}
.cid-tqnAYKepw4 {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #fffcf5;
  overflow: hidden;
}
.cid-tqnAYKepw4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqnAYKepw4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqnAYKepw4 .row {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tqnAYKepw4 .row {
    flex-wrap: wrap;
  }
}
.cid-tqnAYKepw4 .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tqnAYKepw4 .text-wrap {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .cid-tqnAYKepw4 .text-wrap {
    margin-bottom: 20px;
  }
}
.cid-tqnAYKepw4 .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #a9bbab;
  transform: translateY(40%);
}
.cid-tqnAYKepw4 .mbr-section-title {
  color: #353535;
}
.cid-tqnAYKepw4 .mbr-section-title a {
  pointer-events: none !important;
  font-style: italic !important;
  font-weight: bold !important;
}
.cid-tqnAYKepw4 .mbr-section-subtitle {
  margin-top: 30px;
  color: #353535;
}
@media (max-width: 767px) {
  .cid-tqnAYKepw4 .mbr-section-subtitle {
    margin-top: 12px;
  }
}
.cid-tqnAYKepw4 .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tqnAYKepw4 .mbr-text {
    margin-top: 12px;
  }
}
.cid-tqnAYKepw4 .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tqnAYKepw4 .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-tqnAYKepw4 .col-img {
  width: 430px;
}
@media (max-width: 1199px) {
  .cid-tqnAYKepw4 .col-img {
    width: 350px;
  }
}
.cid-tqnAYKepw4 .img-wrap {
  position: relative;
  width: 100%;
}
.cid-tqnAYKepw4 .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-tqnAYKepw4 .img-wrap .img-box {
    border-top-left-radius: 55px;
    border-top-right-radius: 55px;
    border-bottom-right-radius: 55px;
  }
}
.cid-tqnAYKepw4 .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-tqnAYKepw4 .img-wrap .frame-box {
  position: absolute;
  height: 240px;
}
.cid-tqnAYKepw4 .img-wrap .frame-box svg {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
}
.cid-tqnAYKepw4 .img-wrap .frame-box-1 {
  bottom: -20%;
  left: -14%;
  width: 85%;
  transform: rotate(10deg);
}
.cid-tqnAYKepw4 .img-wrap .frame-box-2 {
  bottom: -18%;
  right: -14%;
  width: 84%;
  transform: rotate(0deg);
}
@media (max-width: 991px) {
  .cid-tqnAYKepw4 .img-wrap .frame-box-2 {
    bottom: auto;
    top: -15%;
  }
}
.cid-tqnElwBPRR {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fffcf5;
  overflow: hidden;
}
.cid-tqnElwBPRR .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqnElwBPRR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqnElwBPRR .row {
  flex-wrap: nowrap;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-tqnElwBPRR .row {
    flex-wrap: wrap;
  }
}
.cid-tqnElwBPRR .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 80px 0;
}
.cid-tqnElwBPRR .text-wrap:before {
  content: "";
  position: absolute;
  right: -100px;
  top: 0;
  height: 100%;
  width: 100vw;
  border-radius: 0 65px 65px 0;
  background-color: #f6efe8;
  z-index: -1;
  border-radius: 65px 0 0 65px;
  right: auto;
  left: -100px;
}
@media (max-width: 1199px) {
  .cid-tqnElwBPRR .text-wrap:before {
    border-radius: 0 40px 40px 0;
    border-radius: 40px 0 0 40px;
  }
}
@media (max-width: 991px) {
  .cid-tqnElwBPRR .text-wrap:before {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0;
  }
}
@media (max-width: 991px) {
  .cid-tqnElwBPRR .text-wrap {
    padding: 50px 0 90px;
  }
}
@media (max-width: 767px) {
  .cid-tqnElwBPRR .text-wrap {
    margin-bottom: 20px;
  }
}
.cid-tqnElwBPRR .mbr-section-title {
  color: #353535;
  text-align: right;
}
.cid-tqnElwBPRR .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tqnElwBPRR .mbr-text {
    margin-top: 12px;
  }
}
.cid-tqnElwBPRR .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tqnElwBPRR .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-tqnElwBPRR .col-img {
  width: 480px;
}
@media (max-width: 1199px) {
  .cid-tqnElwBPRR .col-img {
    width: 480px;
  }
}
@media (max-width: 991px) {
  .cid-tqnElwBPRR .col-img {
    width: 380px;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-tqnElwBPRR .col-img {
    margin-bottom: -50px;
  }
}
.cid-tqnElwBPRR .img-wrap {
  position: relative;
  width: 100%;
}
.cid-tqnElwBPRR .img-wrap .img-box {
  position: relative;
  z-index: 3;
  width: 100%;
  border-radius: 0 65px 65px 65px;
  overflow: hidden;
  border-radius: 65px 0 65px 65px;
}
@media (max-width: 1199px) {
  .cid-tqnElwBPRR .img-wrap .img-box {
    border-radius: 0 40px 40px 40px;
    border-radius: 40px 0 40px 40px;
  }
}
@media (max-width: 991px) {
  .cid-tqnElwBPRR .img-wrap .img-box {
    transform: translateY(-50px);
    border-radius: 0 30px 30px 30px;
    border-radius: 30px 0 30px 30px;
  }
}
.cid-tqnElwBPRR .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-tqnElwBPRR .mbr-text,
.cid-tqnElwBPRR .mbr-section-btn {
  text-align: left;
}
.cid-tqnBI9Wnff {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #fffcf5;
  overflow: hidden;
}
.cid-tqnBI9Wnff .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqnBI9Wnff .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqnBI9Wnff .row {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tqnBI9Wnff .row {
    flex-wrap: wrap;
  }
}
.cid-tqnBI9Wnff .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 80px 0;
}
.cid-tqnBI9Wnff .text-wrap:before {
  content: "";
  position: absolute;
  right: -100px;
  top: 0;
  height: 100%;
  width: 100vw;
  border-radius: 0 65px 65px 0;
  background-color: #f6efe8;
  z-index: -1;
}
@media (max-width: 1199px) {
  .cid-tqnBI9Wnff .text-wrap:before {
    border-radius: 0 40px 40px 0;
  }
}
@media (max-width: 991px) {
  .cid-tqnBI9Wnff .text-wrap:before {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0;
  }
}
@media (max-width: 991px) {
  .cid-tqnBI9Wnff .text-wrap {
    padding: 50px 0 90px;
  }
}
@media (max-width: 767px) {
  .cid-tqnBI9Wnff .text-wrap {
    margin-bottom: 20px;
  }
}
.cid-tqnBI9Wnff .mbr-section-title {
  color: #353535;
  text-align: left;
}
.cid-tqnBI9Wnff .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tqnBI9Wnff .mbr-text {
    margin-top: 12px;
  }
}
.cid-tqnBI9Wnff .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tqnBI9Wnff .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-tqnBI9Wnff .col-img {
  width: 390px;
}
@media (max-width: 1199px) {
  .cid-tqnBI9Wnff .col-img {
    width: 330px;
  }
}
@media (max-width: 991px) {
  .cid-tqnBI9Wnff .col-img {
    width: 250px;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-tqnBI9Wnff .col-img {
    margin-bottom: -50px;
  }
}
.cid-tqnBI9Wnff .img-wrap {
  position: relative;
  width: 100%;
}
.cid-tqnBI9Wnff .img-wrap .img-box {
  position: relative;
  z-index: 3;
  width: 100%;
  border-radius: 0 65px 65px 65px;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-tqnBI9Wnff .img-wrap .img-box {
    border-radius: 0 40px 40px 40px;
  }
}
@media (max-width: 991px) {
  .cid-tqnBI9Wnff .img-wrap .img-box {
    transform: translateY(-50px);
    border-radius: 0 30px 30px 30px;
  }
}
.cid-tqnBI9Wnff .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-tqnBI9Wnff .mbr-text,
.cid-tqnBI9Wnff .mbr-section-btn {
  text-align: left;
}
.cid-uCA8QP3oMB {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fffcf5;
}
.cid-uCA8QP3oMB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCA8QP3oMB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCA8QP3oMB .text-wrap {
  width: 100%;
}
.cid-uCA8QP3oMB .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 767px) {
  .cid-uCA8QP3oMB .mbr-section-head {
    margin-bottom: 65px;
  }
}
.cid-uCA8QP3oMB .mbr-section-title {
  color: #829D85;
  margin-bottom: 0;
}
.cid-uCA8QP3oMB .mbr-text {
  color: #353535;
  margin-top: 20px;
}
.cid-uCA8QP3oMB .item-row {
  row-gap: 50px;
}
.cid-uCA8QP3oMB .item-wrap {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: stretch;
}
.cid-uCA8QP3oMB .img-box {
  display: flex;
  align-items: center;
  max-width: 105px;
  width: 100%;
  height: 85px;
  margin: 0 auto 20px;
}
.cid-uCA8QP3oMB .img-box img {
  width: 100%;
  height: auto;
}
.cid-uCA8QP3oMB .item-title {
  width: 100%;
  margin: 0;
  color: #987A5A;
}
.cid-uCA8QP3oMB .item-text {
  color: #353535;
  margin: 20px 0 0;
}
@media (max-width: 767px) {
  .cid-uCA8QP3oMB .item-text {
    margin: 16px 0 0;
  }
}
.cid-uCA8QP3oMB .mbr-section-btn {
  margin-top: 20px;
}
.cid-uCA8QP3oMB .mbr-section-btn .btn {
  width: 180px;
  min-width: auto;
  min-height: 55px;
  max-width: 100%;
}
.cid-uCM2Ck7Whz {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #fffcf5;
}
.cid-uCM2Ck7Whz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCM2Ck7Whz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCM2Ck7Whz .text-wrap {
  width: 100%;
}
.cid-uCM2Ck7Whz .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 767px) {
  .cid-uCM2Ck7Whz .mbr-section-head {
    margin-bottom: 65px;
  }
}
.cid-uCM2Ck7Whz .mbr-section-title {
  color: #829D85;
  margin-bottom: 0;
}
.cid-uCM2Ck7Whz .mbr-text {
  color: #353535;
  margin-top: 20px;
}
.cid-uCM2Ck7Whz .item-row {
  row-gap: 50px;
}
.cid-uCM2Ck7Whz .item-wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
}
.cid-uCM2Ck7Whz .img-box {
  display: flex;
  align-items: center;
  max-width: 105px;
  width: 100%;
  height: 85px;
  margin: 0 auto 20px;
}
.cid-uCM2Ck7Whz .img-box img {
  width: 100%;
  height: auto;
}
.cid-uCM2Ck7Whz .item-title {
  width: 100%;
  margin: 0;
  color: #987A5A;
}
.cid-uCM2Ck7Whz .item-text {
  color: #353535;
  margin: 20px 0 0;
}
@media (max-width: 767px) {
  .cid-uCM2Ck7Whz .item-text {
    margin: 16px 0 0;
  }
}
.cid-uCM2Ck7Whz .mbr-section-btn {
  margin-top: 20px;
}
.cid-uCM2Ck7Whz .mbr-section-btn .btn {
  width: 180px;
  min-width: auto;
  min-height: 55px;
  max-width: 100%;
}
.cid-tqnCYOhjI6 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fffcf5;
}
.cid-tqnCYOhjI6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqnCYOhjI6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqnCYOhjI6 .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 991px) {
  .cid-tqnCYOhjI6 .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tqnCYOhjI6 .mbr-section-head {
    margin-bottom: 50px;
  }
}
.cid-tqnCYOhjI6 .mbr-section-title {
  color: #829D85;
  margin-bottom: 0;
}
.cid-tqnCYOhjI6 .mbr-section-subtitle {
  color: #353535;
  margin-top: 20px;
}
@media (max-width: 991px) {
  .cid-tqnCYOhjI6 .col-img {
    display: none;
  }
}
.cid-tqnCYOhjI6 .img-wrap {
  width: 100%;
}
.cid-tqnCYOhjI6 .img-wrap .img-box {
  width: 100%;
  border-radius: 65px 65px 0 65px;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-tqnCYOhjI6 .img-wrap .img-box {
    border-radius: 40px 40px 0 40px;
  }
}
.cid-tqnCYOhjI6 .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-tqnCYOhjI6 .mbr-iconfont {
  position: relative;
  font-size: 24px !important;
  font-family: 'Moririse2' !important;
  color: #987a5a;
  margin-left: 1rem;
  padding: 10px;
  transition: .3s all;
}
.cid-tqnCYOhjI6 .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-tqnCYOhjI6 .mbr-iconfont:before {
  position: relative;
  z-index: 2;
}
.cid-tqnCYOhjI6 .panel-group {
  border: none;
  border-top: 1px solid #829d85;
  margin-top: 10px;
}
@media (max-width: 991px) {
  .cid-tqnCYOhjI6 .panel-group {
    margin-top: 0;
  }
}
.cid-tqnCYOhjI6 .card {
  border-bottom: 1px solid #829d85;
  border-radius: 0;
}
.cid-tqnCYOhjI6 .card-header {
  padding: 20px 0;
  border: none;
  background-color: transparent;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .cid-tqnCYOhjI6 .card-header {
    padding: 8px 0;
  }
}
.cid-tqnCYOhjI6 .card-header:hover .mbr-iconfont {
  color: #829d85;
}
.cid-tqnCYOhjI6 .card-header:hover .mbr-iconfont:after {
  opacity: 1;
}
.cid-tqnCYOhjI6 .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #987A5A;
}
.cid-tqnCYOhjI6 .panel-title[aria-expanded="true"] .mbr-iconfont {
  transform: rotate(45deg);
}
.cid-tqnCYOhjI6 .panel-title-edit {
  color: #987A5A;
}
.cid-tqnCYOhjI6 .panel-body {
  padding: 0 0 40px;
}
@media (max-width: 767px) {
  .cid-tqnCYOhjI6 .panel-body {
    padding: 0 0 24px;
  }
}
.cid-tqnCYOhjI6 .panel-text {
  color: #353535;
  margin: 0;
}
.cid-uF8wIfTqYn {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #fffcf5;
}
.cid-uF8wIfTqYn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uF8wIfTqYn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uF8wIfTqYn .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 991px) {
  .cid-uF8wIfTqYn .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-uF8wIfTqYn .mbr-section-head {
    margin-bottom: 50px;
  }
}
.cid-uF8wIfTqYn .mbr-section-title {
  color: #829D85;
  margin-bottom: 0;
}
.cid-uF8wIfTqYn .mbr-section-subtitle {
  color: #353535;
  margin-top: 20px;
}
.cid-uF8wIfTqYn .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uF8wIfTqYn .col-img {
    display: none;
  }
}
.cid-uF8wIfTqYn .img-wrap {
  width: 100%;
}
.cid-uF8wIfTqYn .img-wrap .img-box {
  width: 100%;
  border-radius: 65px 65px 0 65px;
  overflow: hidden;
  border-radius: 65px 65px 65px 0;
}
@media (max-width: 1199px) {
  .cid-uF8wIfTqYn .img-wrap .img-box {
    border-radius: 40px 40px 0 40px;
    border-radius: 40px  40px 40px 0;
  }
}
.cid-uF8wIfTqYn .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-uF8wIfTqYn .mbr-iconfont {
  position: relative;
  font-size: 24px !important;
  font-family: 'Moririse2' !important;
  color: #987a5a;
  margin-left: 1rem;
  padding: 10px;
  transition: .3s all;
}
.cid-uF8wIfTqYn .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-uF8wIfTqYn .mbr-iconfont:before {
  position: relative;
  z-index: 2;
}
.cid-uF8wIfTqYn .panel-group {
  border: none;
  border-top: 1px solid #829d85;
  margin-top: 10px;
}
@media (max-width: 991px) {
  .cid-uF8wIfTqYn .panel-group {
    margin-top: 0;
  }
}
.cid-uF8wIfTqYn .card {
  border-bottom: 1px solid #829d85;
  border-radius: 0;
}
.cid-uF8wIfTqYn .card-header {
  padding: 20px 0;
  border: none;
  background-color: transparent;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .cid-uF8wIfTqYn .card-header {
    padding: 8px 0;
  }
}
.cid-uF8wIfTqYn .card-header:hover .mbr-iconfont {
  color: #829d85;
}
.cid-uF8wIfTqYn .card-header:hover .mbr-iconfont:after {
  opacity: 1;
}
.cid-uF8wIfTqYn .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #987A5A;
}
.cid-uF8wIfTqYn .panel-title[aria-expanded="true"] .mbr-iconfont {
  transform: rotate(45deg);
}
.cid-uF8wIfTqYn .panel-title-edit {
  color: #987A5A;
}
.cid-uF8wIfTqYn .panel-body {
  padding: 0 0 40px;
}
@media (max-width: 767px) {
  .cid-uF8wIfTqYn .panel-body {
    padding: 0 0 24px;
  }
}
.cid-uF8wIfTqYn .panel-text {
  color: #353535;
  margin: 0;
}
.cid-tqnCXAgMzK {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #fffcf5;
  overflow: hidden;
}
.cid-tqnCXAgMzK .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqnCXAgMzK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqnCXAgMzK .mbr-section-head {
  width: 100%;
  margin-bottom: 100px;
}
@media (max-width: 991px) {
  .cid-tqnCXAgMzK .mbr-section-head {
    margin-bottom: 75px;
  }
}
@media (max-width: 767px) {
  .cid-tqnCXAgMzK .mbr-section-head {
    margin-bottom: 60px;
  }
}
.cid-tqnCXAgMzK .main-title {
  color: #829D85;
  margin-bottom: 0;
}
.cid-tqnCXAgMzK .main-subtitle {
  color: #353535;
  margin-top: 20px;
}
.cid-tqnCXAgMzK .row {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tqnCXAgMzK .row {
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  .cid-tqnCXAgMzK .col-text {
    order: 2;
  }
}
.cid-tqnCXAgMzK .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 80px 0;
  margin-top: 40px;
}
@media (max-width: 991px) {
  .cid-tqnCXAgMzK .text-wrap {
    margin-top: 0;
    padding: 80px 0 55px;
  }
}
.cid-tqnCXAgMzK .text-wrap:before {
  content: "";
  position: absolute;
  right: -100px;
  top: 0;
  height: 100%;
  width: 100vw;
  border-radius: 0 65px 65px 0;
  background-color: #f6efe8;
  z-index: -1;
}
@media (max-width: 1199px) {
  .cid-tqnCXAgMzK .text-wrap:before {
    border-radius: 0 40px 40px 0;
  }
}
@media (max-width: 991px) {
  .cid-tqnCXAgMzK .text-wrap:before {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0;
  }
}
.cid-tqnCXAgMzK .mbr-section-title {
  color: #353535;
  text-align: left;
}
.cid-tqnCXAgMzK .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tqnCXAgMzK .mbr-text {
    margin-top: 12px;
  }
}
.cid-tqnCXAgMzK .link-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: 90px;
}
@media (max-width: 1199px) {
  .cid-tqnCXAgMzK .link-wrap {
    margin-top: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tqnCXAgMzK .link-wrap {
    flex-wrap: wrap;
  }
}
@media (max-width: 575px) {
  .cid-tqnCXAgMzK .link-wrap {
    margin-top: 40px;
  }
}
.cid-tqnCXAgMzK .link-text {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 125px;
  width: 100%;
  color: #987A5A;
}
@media (max-width: 767px) {
  .cid-tqnCXAgMzK .link-text {
    min-height: 160px;
  }
}
.cid-tqnCXAgMzK .link-text a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 125px;
  width: 100%;
  padding: 10px;
  color: inherit !important;
  transition: .3s all !important;
}
@media (max-width: 767px) {
  .cid-tqnCXAgMzK .link-text a {
    min-height: 160px;
  }
}
.cid-tqnCXAgMzK .link-item {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 31%;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  transition: .3s all;
}
.cid-tqnCXAgMzK .link-item:nth-child(1) {
  background-image: url("../../../assets/images/frame9.webp");
  z-index: 1;
}
@media (max-width: 767px) {
  .cid-tqnCXAgMzK .link-item:nth-child(1) {
    margin-right: auto;
  }
}
.cid-tqnCXAgMzK .link-item:nth-child(2) {
  margin: 12px -10px 0;
  background-image: url("../../../assets/images/frame10.webp");
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-tqnCXAgMzK .link-item:nth-child(2) {
    margin: -20px 0 0;
    margin-left: auto;
  }
}
.cid-tqnCXAgMzK .link-item:nth-child(2) .link-text {
  min-height: 135px;
}
@media (max-width: 767px) {
  .cid-tqnCXAgMzK .link-item:nth-child(2) .link-text {
    min-height: 160px;
  }
}
.cid-tqnCXAgMzK .link-item:nth-child(3) {
  background-image: url("../../../assets/images/frame11.webp");
  z-index: 1;
}
@media (max-width: 767px) {
  .cid-tqnCXAgMzK .link-item:nth-child(3) {
    margin: -20px 0 0;
    margin-right: auto;
  }
}
@media (max-width: 767px) {
  .cid-tqnCXAgMzK .link-item {
    width: 60%;
  }
}
@media (max-width: 575px) {
  .cid-tqnCXAgMzK .link-item {
    width: 75%;
  }
}
@media (min-width: 768px) {
  .cid-tqnCXAgMzK .link-item:hover {
    transform: rotate(-12deg);
  }
  .cid-tqnCXAgMzK .link-item:hover .link-text a {
    color: inherit !important;
    transform: rotate(12deg) scale(0.9);
  }
  .cid-tqnCXAgMzK .link-item:nth-child(2):hover {
    transform: rotate(12deg);
  }
  .cid-tqnCXAgMzK .link-item:nth-child(2):hover .link-text a {
    color: inherit !important;
    transform: rotate(-12deg) scale(0.9);
  }
}
.cid-tqnCXAgMzK .col-img {
  width: 430px;
}
@media (max-width: 1199px) {
  .cid-tqnCXAgMzK .col-img {
    width: 330px;
  }
}
@media (max-width: 991px) {
  .cid-tqnCXAgMzK .col-img {
    max-width: 350px;
    width: 100%;
    margin: 0 auto;
    order: 1;
    margin-bottom: -45px;
  }
}
.cid-tqnCXAgMzK .img-wrap {
  position: relative;
  width: 100%;
}
.cid-tqnCXAgMzK .img-wrap .img-box {
  position: relative;
  z-index: 3;
  width: 100%;
  border-radius: 0 65px 65px 65px;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-tqnCXAgMzK .img-wrap .img-box {
    border-radius: 0 40px 40px 40px;
  }
}
@media (max-width: 991px) {
  .cid-tqnCXAgMzK .img-wrap .img-box {
    border-radius: 0 40px 40px 40px;
  }
}
.cid-tqnCXAgMzK .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-uWiMpCKzRF {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #fffcf5;
}
.cid-uWiMpCKzRF .google-map {
  width: 100%;
  height: 25rem;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: gray;
}
.cid-uWiMpCKzRF .google-map iframe {
  width: inherit;
  height: 100%;
}
.cid-uWiMpCKzRF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWiMpCKzRF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqnD0kMOSc {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background4.webp");
}
.cid-tqnD0kMOSc .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqnD0kMOSc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqnD0kMOSc .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 991px) {
  .cid-tqnD0kMOSc .mbr-section-head {
    margin-bottom: 75px;
  }
}
@media (max-width: 767px) {
  .cid-tqnD0kMOSc .mbr-section-head {
    margin-bottom: 65px;
  }
}
.cid-tqnD0kMOSc .mbr-section-title {
  color: #829D85;
  margin-bottom: 0;
}
.cid-tqnD0kMOSc .mbr-section-subtitle {
  color: #353535;
  margin-top: 20px;
}
.cid-tqnD0kMOSc .form-wrap {
  width: 100%;
  margin: 0 auto;
  padding: 0 !important;
}
.cid-tqnD0kMOSc form {
  width: 100%;
}
.cid-tqnD0kMOSc form .dragArea.row {
  justify-content: flex-start;
  width: auto !important;
}
.cid-tqnD0kMOSc form p {
  color: #353535;
}
.cid-tqnD0kMOSc form .mbr-section-btn .btn {
  width: 100%;
}
.cid-tqnD0kMOSc form .mbr-section-btn .btn:before {
  transform: rotate(0);
  border-radius: 60px;
  background: transparent;
}
.cid-tqnD0kMOSc form .mbr-section-btn .btn:hover {
  transform: translate(0, 0);
}
.cid-tqnD0kMOSc form .form-group {
  margin-top: 0 !important;
  margin-bottom: 24px !important;
}
.cid-tqnD0kMOSc form .form-control {
  height: 60px;
  border: none !important;
  border-bottom: 1px solid #f9c625 !important;
  background: transparent;
  outline: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  margin-bottom: 0;
  padding: 20px 0;
  font-size: 18px;
  color: #353535;
  font-weight: 500;
  transition: .3s;
}
.cid-tqnD0kMOSc form .form-control::-webkit-input-placeholder {
  color: #6C6C6C;
}
.cid-tqnD0kMOSc form .form-control::-moz-placeholder {
  color: #6C6C6C;
}
.cid-tqnD0kMOSc form .form-control:-moz-placeholder {
  color: #6C6C6C;
}
.cid-tqnD0kMOSc form .form-control:-ms-input-placeholder {
  color: #6C6C6C;
}
.cid-tqnD0kMOSc form select {
  color: #6C6C6C !important;
}
.cid-tqnD0kMOSc form textarea {
  height: 150px !important;
  min-height: 150px !important;
  padding: 20px;
  resize: none;
}
.cid-tqnD0kMOSc form textarea::-webkit-input-placeholder {
  color: #6C6C6C !important;
}
.cid-tqnD0kMOSc form textarea::-moz-placeholder {
  color: #6C6C6C !important;
}
.cid-tqnD0kMOSc form textarea:-moz-placeholder {
  color: #6C6C6C !important;
}
.cid-tqnD0kMOSc form textarea:-ms-input-placeholder {
  color: #6C6C6C !important;
}
.cid-tqnD0kMOSc form input,
.cid-tqnD0kMOSc form textarea {
  transition: .4s all;
}
.cid-tqnD0kMOSc form input:active,
.cid-tqnD0kMOSc form textarea:active,
.cid-tqnD0kMOSc form input:focus,
.cid-tqnD0kMOSc form textarea:focus {
  background-color: transparent !important;
  border-color: #f9c625 !important;
  outline: none !important;
}
.cid-tqnD0kMOSc form input:active::-webkit-input-placeholder,
.cid-tqnD0kMOSc form textarea:active::-webkit-input-placeholder,
.cid-tqnD0kMOSc form input:focus::-webkit-input-placeholder,
.cid-tqnD0kMOSc form textarea:focus::-webkit-input-placeholder {
  color: #6C6C6C !important;
}
.cid-tqnD0kMOSc form input:active::-moz-placeholder,
.cid-tqnD0kMOSc form textarea:active::-moz-placeholder,
.cid-tqnD0kMOSc form input:focus::-moz-placeholder,
.cid-tqnD0kMOSc form textarea:focus::-moz-placeholder {
  color: #6C6C6C !important;
}
.cid-tqnD0kMOSc form input:active:-moz-placeholder,
.cid-tqnD0kMOSc form textarea:active:-moz-placeholder,
.cid-tqnD0kMOSc form input:focus:-moz-placeholder,
.cid-tqnD0kMOSc form textarea:focus:-moz-placeholder {
  color: #6C6C6C !important;
}
.cid-tqnD0kMOSc form input:active:-ms-input-placeholder,
.cid-tqnD0kMOSc form textarea:active:-ms-input-placeholder,
.cid-tqnD0kMOSc form input:focus:-ms-input-placeholder,
.cid-tqnD0kMOSc form textarea:focus:-ms-input-placeholder {
  color: #6C6C6C !important;
}
.cid-tqnD0kMOSc form .row {
  flex-wrap: wrap;
  margin-left: -8px !important;
  margin-right: -8px !important;
}
.cid-tqnD0kMOSc form .row [class*=col] {
  padding-left: 8px !important;
  padding-right: 8px !important;
}
.cid-tqnD0kMOSc form label {
  width: 100%;
  color: #353535;
  margin-bottom: 5px;
}
.cid-tqnD0kMOSc form .form-check label {
  color: #353535;
}
.cid-tqnD0kMOSc form .form-check-input {
  border-color: #f9c625 !important;
  outline: none !important;
  box-shadow: none !important;
  background-color: transparent !important;
}
.cid-tqnD0kMOSc form .form-check-input:focus,
.cid-tqnD0kMOSc form .form-check-input:hover {
  background-color: transparent !important;
  border-color: #f9c625 !important;
}
.cid-tqnD0kMOSc form .form-check-input:checked {
  border-color: #f9c625 !important;
  background-color: #FFFCF5 !important;
}
.cid-tqnCYjVLFo {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #829d85;
}
.cid-tqnCYjVLFo .mbr-text {
  color: #FFFCF5;
}
.cid-tqnAYxqier {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 90px;
}
.cid-tqnAYxqier nav.navbar {
  position: fixed;
}
.cid-tqnAYxqier .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tqnAYxqier .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tqnAYxqier .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tqnAYxqier .dropdown-item:hover,
.cid-tqnAYxqier .dropdown-item:focus {
  background: #f9c625 !important;
  color: white !important;
}
.cid-tqnAYxqier .dropdown-item:hover span {
  color: white;
}
.cid-tqnAYxqier .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tqnAYxqier .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tqnAYxqier .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tqnAYxqier .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tqnAYxqier .nav-link {
  position: relative;
}
.cid-tqnAYxqier .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tqnAYxqier .container {
    flex-wrap: nowrap;
  }
}
.cid-tqnAYxqier .iconfont-wrapper {
  color: #353535 !important;
  font-size: 18px;
  padding-right: 0;
}
.cid-tqnAYxqier .iconfont-wrapper .mbr-iconfont {
  transition: .4s all;
}
.cid-tqnAYxqier .iconfont-wrapper .mbr-iconfont:hover {
  color: #f9c625;
}
.cid-tqnAYxqier .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 66.66666667%;
  margin-right: auto;
  min-height: 89px;
}
.cid-tqnAYxqier .navbar-nav .nav-item {
  margin: 2px;
}
.cid-tqnAYxqier .navbar-nav .nav-link {
  padding: 5px 9px;
  transition: .4s all;
}
.cid-tqnAYxqier .navbar-nav .nav-link:hover {
  transform: scale(1.1);
}
.cid-tqnAYxqier .dropdown-menu,
.cid-tqnAYxqier .navbar.opened {
  background: #fffcf5 !important;
}
.cid-tqnAYxqier .nav-item:focus,
.cid-tqnAYxqier .nav-link:focus {
  outline: none;
}
.cid-tqnAYxqier .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tqnAYxqier .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tqnAYxqier .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tqnAYxqier .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tqnAYxqier .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tqnAYxqier .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tqnAYxqier .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: none !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fffcf5;
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-tqnAYxqier .navbar.opened {
  transition: all 0.3s;
}
.cid-tqnAYxqier .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tqnAYxqier .navbar .navbar-logo img {
  width: auto;
}
.cid-tqnAYxqier .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tqnAYxqier .navbar.collapsed {
  justify-content: center;
}
.cid-tqnAYxqier .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tqnAYxqier .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tqnAYxqier .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.6rem);
  }
}
.cid-tqnAYxqier .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tqnAYxqier .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tqnAYxqier .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tqnAYxqier .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tqnAYxqier .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tqnAYxqier .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tqnAYxqier .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tqnAYxqier .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tqnAYxqier .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tqnAYxqier .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tqnAYxqier .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tqnAYxqier .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tqnAYxqier .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tqnAYxqier .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tqnAYxqier .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tqnAYxqier .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tqnAYxqier .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tqnAYxqier .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tqnAYxqier .navbar.navbar-short {
  min-height: 90px;
}
.cid-tqnAYxqier .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tqnAYxqier .navbar.navbar-short .navbar-brand {
  min-height: 89px;
  padding: 0;
}
.cid-tqnAYxqier .navbar-brand {
  min-height: 89px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  width: 25%;
}
.cid-tqnAYxqier .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tqnAYxqier .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tqnAYxqier .dropdown-item.active,
.cid-tqnAYxqier .dropdown-item:active {
  background-color: transparent;
}
.cid-tqnAYxqier .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tqnAYxqier .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tqnAYxqier .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tqnAYxqier .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fffcf5;
}
.cid-tqnAYxqier .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tqnAYxqier .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tqnAYxqier ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tqnAYxqier .navbar-buttons {
  text-align: center;
}
.cid-tqnAYxqier button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  background-color: #f6efe8;
  border-radius: 50%;
}
.cid-tqnAYxqier button.navbar-toggler .hamburger span {
  position: absolute;
  right: 13px;
  width: 22px;
  height: 2px;
  background-color: #715537;
}
.cid-tqnAYxqier button.navbar-toggler .hamburger span:nth-child(1) {
  top: 17px;
  transition: all 0.2s;
}
.cid-tqnAYxqier button.navbar-toggler .hamburger span:nth-child(2) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-tqnAYxqier button.navbar-toggler .hamburger span:nth-child(3) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-tqnAYxqier button.navbar-toggler .hamburger span:nth-child(4) {
  top: 29px;
  transition: all 0.2s;
}
.cid-tqnAYxqier nav.opened .hamburger span:nth-child(1) {
  top: 17px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-tqnAYxqier nav.opened .hamburger span:nth-child(2) {
  transform: translateY(-1px) rotate(45deg);
  transition: all 0.25s;
}
.cid-tqnAYxqier nav.opened .hamburger span:nth-child(3) {
  transform: translateY(-1px) rotate(-45deg);
  transition: all 0.25s;
}
.cid-tqnAYxqier nav.opened .hamburger span:nth-child(4) {
  top: 29px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-tqnAYxqier .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tqnAYxqier a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tqnAYxqier .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tqnAYxqier .navbar {
    height: 70px;
  }
  .cid-tqnAYxqier .navbar.opened {
    height: auto;
  }
  .cid-tqnAYxqier .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tqnAYxqier .container,
.cid-tqnAYxqier .container-fluid {
  flex-wrap: wrap;
}
.cid-tqnAYxqier .navbar-collapse {
  width: 75%;
  min-height: 89px;
}
.cid-tqnAYxqier .border-item {
  width: 100%;
  height: 1px;
  background-color: #829d86;
}
.cid-tqnAYxqier .mbr-section-btn .btn {
  width: 180px;
  min-width: auto;
  min-height: 55px;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-tqnAYxqier .navbar-brand {
    width: calc(100% - 48px) !important;
    min-height: 89px;
  }
  .cid-tqnAYxqier .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 1rem;
    order: 5;
  }
  .cid-tqnAYxqier .navbar-nav {
    width: 100%;
  }
}
.cid-uCMbjV48Sb {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fffcf5;
}
.cid-uCMbjV48Sb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCMbjV48Sb .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-uCMbjV48Sb .row {
    align-items: center !important;
  }
}
.cid-uCMbjV48Sb .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 991px) {
  .cid-uCMbjV48Sb .mbr-section-head {
    margin-bottom: 75px;
  }
}
@media (max-width: 767px) {
  .cid-uCMbjV48Sb .mbr-section-head {
    margin-bottom: 65px;
  }
}
.cid-uCMbjV48Sb .mbr-section-title {
  color: #829D85;
  margin-bottom: 0;
}
.cid-uCMbjV48Sb .mbr-section-subtitle {
  color: #353535;
  margin-top: 20px;
}
.cid-uCMbjV48Sb .text-wrap {
  width: 100%;
  padding: 36px 0;
  border-top: 1px solid #829d85;
}
@media (max-width: 991px) {
  .cid-uCMbjV48Sb .text-wrap {
    padding: 30px 0;
  }
}
.cid-uCMbjV48Sb .mbr-title {
  color: #987A5A;
}
.cid-uCMbjV48Sb .mbr-text {
  margin-top: 12px;
  color: #353535;
}
.cid-uCMbjV48Sb .list-box {
  width: 100%;
}
.cid-uCMbjV48Sb .list {
  list-style: none;
  margin-top: 22px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #353535;
}
.cid-uCMbjV48Sb .list-text {
  position: relative;
}
.cid-uCMbjV48Sb .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-uCMbjV48Sb .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-uCMbjV48Sb .mbr-section-btn {
  margin-top: 20px;
}
.cid-uCMbjV48Sb .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-uCMbjV48Sb .img-box {
    border-radius: 0;
  }
}
@media (max-width: 767px) {
  .cid-uCMbjV48Sb .img-box {
    border-radius: 0 15vw 0 0;
  }
}
.cid-uCMbjV48Sb .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-uCMbsO9N7M {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #fffcf5;
}
.cid-uCMbsO9N7M .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCMbsO9N7M .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCMbsO9N7M .text-wrap {
  width: 100%;
}
.cid-uCMbsO9N7M .mbr-title {
  margin-bottom: 0;
  color: #829D85;
}
.cid-uCMbsO9N7M .mbr-text {
  padding-top: 16px;
  color: #353535;
}
.cid-uCMbsO9N7M .list-wrap {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uCMbsO9N7M .list-wrap {
    margin-top: 24px;
  }
}
.cid-uCMbsO9N7M .list-box {
  width: 100%;
}
.cid-uCMbsO9N7M .list {
  list-style: none;
  margin-top: 22px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #353535;
}
.cid-uCMbsO9N7M .list-text {
  position: relative;
}
.cid-uCMbsO9N7M .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-uCMbsO9N7M .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-uF8HwY2DsU {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #fffcf5;
  overflow: hidden;
}
.cid-uF8HwY2DsU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uF8HwY2DsU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uF8HwY2DsU .row {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uF8HwY2DsU .row {
    flex-wrap: wrap;
  }
}
.cid-uF8HwY2DsU .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uF8HwY2DsU .text-wrap {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .cid-uF8HwY2DsU .text-wrap {
    margin-bottom: 20px;
  }
}
.cid-uF8HwY2DsU .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #a9bbab;
  transform: translateY(40%);
}
.cid-uF8HwY2DsU .mbr-section-title {
  color: #353535;
}
.cid-uF8HwY2DsU .mbr-section-title a {
  pointer-events: none !important;
  font-style: italic !important;
  font-weight: bold !important;
}
.cid-uF8HwY2DsU .mbr-section-subtitle {
  margin-top: 30px;
  color: #353535;
}
@media (max-width: 767px) {
  .cid-uF8HwY2DsU .mbr-section-subtitle {
    margin-top: 12px;
  }
}
.cid-uF8HwY2DsU .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uF8HwY2DsU .mbr-text {
    margin-top: 12px;
  }
}
.cid-uF8HwY2DsU .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uF8HwY2DsU .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-uF8HwY2DsU .col-img {
  width: 430px;
}
@media (max-width: 1199px) {
  .cid-uF8HwY2DsU .col-img {
    width: 350px;
  }
}
.cid-uF8HwY2DsU .img-wrap {
  position: relative;
  width: 100%;
}
.cid-uF8HwY2DsU .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-uF8HwY2DsU .img-wrap .img-box {
    border-top-left-radius: 55px;
    border-top-right-radius: 55px;
    border-bottom-right-radius: 55px;
  }
}
.cid-uF8HwY2DsU .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-uF8HwY2DsU .img-wrap .frame-box {
  position: absolute;
  height: 240px;
}
.cid-uF8HwY2DsU .img-wrap .frame-box svg {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
}
.cid-uF8HwY2DsU .img-wrap .frame-box-1 {
  bottom: -20%;
  left: -14%;
  width: 85%;
  transform: rotate(10deg);
}
.cid-uF8HwY2DsU .img-wrap .frame-box-2 {
  bottom: -18%;
  right: -14%;
  width: 84%;
  transform: rotate(0deg);
}
@media (max-width: 991px) {
  .cid-uF8HwY2DsU .img-wrap .frame-box-2 {
    bottom: auto;
    top: -15%;
  }
}
.cid-tqnCYjVLFo {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #829d85;
}
.cid-tqnCYjVLFo .mbr-text {
  color: #FFFCF5;
}
.cid-uCMfereMDL {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 90px;
}
.cid-uCMfereMDL nav.navbar {
  position: fixed;
}
.cid-uCMfereMDL .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-uCMfereMDL .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uCMfereMDL .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uCMfereMDL .dropdown-item:hover,
.cid-uCMfereMDL .dropdown-item:focus {
  background: #f9c625 !important;
  color: white !important;
}
.cid-uCMfereMDL .dropdown-item:hover span {
  color: white;
}
.cid-uCMfereMDL .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uCMfereMDL .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uCMfereMDL .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uCMfereMDL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCMfereMDL .nav-link {
  position: relative;
}
.cid-uCMfereMDL .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uCMfereMDL .container {
    flex-wrap: nowrap;
  }
}
.cid-uCMfereMDL .iconfont-wrapper {
  color: #353535 !important;
  font-size: 18px;
  padding-right: 0;
}
.cid-uCMfereMDL .iconfont-wrapper .mbr-iconfont {
  transition: .4s all;
}
.cid-uCMfereMDL .iconfont-wrapper .mbr-iconfont:hover {
  color: #f9c625;
}
.cid-uCMfereMDL .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 66.66666667%;
  margin-right: auto;
  min-height: 89px;
}
.cid-uCMfereMDL .navbar-nav .nav-item {
  margin: 2px;
}
.cid-uCMfereMDL .navbar-nav .nav-link {
  padding: 5px 9px;
  transition: .4s all;
}
.cid-uCMfereMDL .navbar-nav .nav-link:hover {
  transform: scale(1.1);
}
.cid-uCMfereMDL .dropdown-menu,
.cid-uCMfereMDL .navbar.opened {
  background: #fffcf5 !important;
}
.cid-uCMfereMDL .nav-item:focus,
.cid-uCMfereMDL .nav-link:focus {
  outline: none;
}
.cid-uCMfereMDL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCMfereMDL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCMfereMDL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uCMfereMDL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCMfereMDL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uCMfereMDL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uCMfereMDL .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: none !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fffcf5;
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-uCMfereMDL .navbar.opened {
  transition: all 0.3s;
}
.cid-uCMfereMDL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uCMfereMDL .navbar .navbar-logo img {
  width: auto;
}
.cid-uCMfereMDL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uCMfereMDL .navbar.collapsed {
  justify-content: center;
}
.cid-uCMfereMDL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uCMfereMDL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uCMfereMDL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.6rem);
  }
}
.cid-uCMfereMDL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCMfereMDL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCMfereMDL .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-uCMfereMDL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uCMfereMDL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uCMfereMDL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uCMfereMDL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCMfereMDL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCMfereMDL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCMfereMDL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCMfereMDL .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-uCMfereMDL .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uCMfereMDL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCMfereMDL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCMfereMDL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCMfereMDL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uCMfereMDL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uCMfereMDL .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uCMfereMDL .navbar.navbar-short {
  min-height: 90px;
}
.cid-uCMfereMDL .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uCMfereMDL .navbar.navbar-short .navbar-brand {
  min-height: 89px;
  padding: 0;
}
.cid-uCMfereMDL .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-uCMfereMDL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCMfereMDL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCMfereMDL .dropdown-item.active,
.cid-uCMfereMDL .dropdown-item:active {
  background-color: transparent;
}
.cid-uCMfereMDL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCMfereMDL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCMfereMDL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCMfereMDL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fffcf5;
}
.cid-uCMfereMDL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCMfereMDL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCMfereMDL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCMfereMDL .navbar-buttons {
  text-align: center;
}
.cid-uCMfereMDL 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-uCMfereMDL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 13px;
  width: 22px;
  height: 2px;
  background-color: #715537;
}
.cid-uCMfereMDL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 17px;
  transition: all 0.2s;
}
.cid-uCMfereMDL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-uCMfereMDL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-uCMfereMDL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 29px;
  transition: all 0.2s;
}
.cid-uCMfereMDL nav.opened .hamburger span:nth-child(1) {
  top: 17px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-uCMfereMDL nav.opened .hamburger span:nth-child(2) {
  transform: translateY(-1px) rotate(45deg);
  transition: all 0.25s;
}
.cid-uCMfereMDL nav.opened .hamburger span:nth-child(3) {
  transform: translateY(-1px) rotate(-45deg);
  transition: all 0.25s;
}
.cid-uCMfereMDL nav.opened .hamburger span:nth-child(4) {
  top: 29px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-uCMfereMDL .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uCMfereMDL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCMfereMDL .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-uCMfereMDL .navbar {
    height: 70px;
  }
  .cid-uCMfereMDL .navbar.opened {
    height: auto;
  }
  .cid-uCMfereMDL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uCMfereMDL .container,
.cid-uCMfereMDL .container-fluid {
  flex-wrap: wrap;
}
.cid-uCMfereMDL .navbar-collapse {
  width: 75%;
  min-height: 89px;
}
.cid-uCMfereMDL .border-item {
  width: 100%;
  height: 1px;
  background-color: #829d86;
}
.cid-uCMfereMDL .mbr-section-btn .btn {
  width: 180px;
  min-width: auto;
  min-height: 55px;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-uCMfereMDL .navbar-brand {
    width: calc(100% - 48px) !important;
    min-height: 89px;
  }
  .cid-uCMfereMDL .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 1rem;
    order: 5;
  }
  .cid-uCMfereMDL .navbar-nav {
    width: 100%;
  }
}
.cid-uCMfequyfK {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fffcf5;
}
.cid-uCMfequyfK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCMfequyfK .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-uCMfequyfK .row {
    align-items: center !important;
  }
}
.cid-uCMfequyfK .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 991px) {
  .cid-uCMfequyfK .mbr-section-head {
    margin-bottom: 75px;
  }
}
@media (max-width: 767px) {
  .cid-uCMfequyfK .mbr-section-head {
    margin-bottom: 65px;
  }
}
.cid-uCMfequyfK .mbr-section-title {
  color: #829D85;
  margin-bottom: 0;
}
.cid-uCMfequyfK .mbr-section-subtitle {
  color: #353535;
  margin-top: 20px;
}
.cid-uCMfequyfK .text-wrap {
  width: 100%;
  padding: 36px 0;
  border-top: 1px solid #829d85;
}
@media (max-width: 991px) {
  .cid-uCMfequyfK .text-wrap {
    padding: 30px 0;
  }
}
.cid-uCMfequyfK .mbr-title {
  color: #987A5A;
}
.cid-uCMfequyfK .mbr-text {
  margin-top: 12px;
  color: #353535;
}
.cid-uCMfequyfK .list-box {
  width: 100%;
}
.cid-uCMfequyfK .list {
  list-style: none;
  margin-top: 22px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #353535;
}
.cid-uCMfequyfK .list-text {
  position: relative;
}
.cid-uCMfequyfK .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-uCMfequyfK .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-uCMfequyfK .mbr-section-btn {
  margin-top: 20px;
}
.cid-uCMfequyfK .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-uCMfequyfK .img-box {
    border-radius: 0;
  }
}
@media (max-width: 767px) {
  .cid-uCMfequyfK .img-box {
    border-radius: 0 15vw 0 0;
  }
}
.cid-uCMfequyfK .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-uF8OvG6sN7 {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #fffcf5;
  overflow: hidden;
}
.cid-uF8OvG6sN7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uF8OvG6sN7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uF8OvG6sN7 .row {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uF8OvG6sN7 .row {
    flex-wrap: wrap;
  }
}
.cid-uF8OvG6sN7 .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uF8OvG6sN7 .text-wrap {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .cid-uF8OvG6sN7 .text-wrap {
    margin-bottom: 20px;
  }
}
.cid-uF8OvG6sN7 .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #a9bbab;
  transform: translateY(40%);
}
.cid-uF8OvG6sN7 .mbr-section-title {
  color: #353535;
}
.cid-uF8OvG6sN7 .mbr-section-title a {
  pointer-events: none !important;
  font-style: italic !important;
  font-weight: bold !important;
}
.cid-uF8OvG6sN7 .mbr-section-subtitle {
  margin-top: 30px;
  color: #353535;
}
@media (max-width: 767px) {
  .cid-uF8OvG6sN7 .mbr-section-subtitle {
    margin-top: 12px;
  }
}
.cid-uF8OvG6sN7 .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uF8OvG6sN7 .mbr-text {
    margin-top: 12px;
  }
}
.cid-uF8OvG6sN7 .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uF8OvG6sN7 .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-uF8OvG6sN7 .col-img {
  width: 430px;
}
@media (max-width: 1199px) {
  .cid-uF8OvG6sN7 .col-img {
    width: 350px;
  }
}
.cid-uF8OvG6sN7 .img-wrap {
  position: relative;
  width: 100%;
}
.cid-uF8OvG6sN7 .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-uF8OvG6sN7 .img-wrap .img-box {
    border-top-left-radius: 55px;
    border-top-right-radius: 55px;
    border-bottom-right-radius: 55px;
  }
}
.cid-uF8OvG6sN7 .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-uF8OvG6sN7 .img-wrap .frame-box {
  position: absolute;
  height: 240px;
}
.cid-uF8OvG6sN7 .img-wrap .frame-box svg {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
}
.cid-uF8OvG6sN7 .img-wrap .frame-box-1 {
  bottom: -20%;
  left: -14%;
  width: 85%;
  transform: rotate(10deg);
}
.cid-uF8OvG6sN7 .img-wrap .frame-box-2 {
  bottom: -18%;
  right: -14%;
  width: 84%;
  transform: rotate(0deg);
}
@media (max-width: 991px) {
  .cid-uF8OvG6sN7 .img-wrap .frame-box-2 {
    bottom: auto;
    top: -15%;
  }
}
.cid-uCMferJAbU {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #829d85;
}
.cid-uCMferJAbU .mbr-text {
  color: #FFFCF5;
}
.cid-uCMf6muhrc {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 90px;
}
.cid-uCMf6muhrc nav.navbar {
  position: fixed;
}
.cid-uCMf6muhrc .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-uCMf6muhrc .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uCMf6muhrc .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uCMf6muhrc .dropdown-item:hover,
.cid-uCMf6muhrc .dropdown-item:focus {
  background: #f9c625 !important;
  color: white !important;
}
.cid-uCMf6muhrc .dropdown-item:hover span {
  color: white;
}
.cid-uCMf6muhrc .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uCMf6muhrc .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uCMf6muhrc .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uCMf6muhrc .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCMf6muhrc .nav-link {
  position: relative;
}
.cid-uCMf6muhrc .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uCMf6muhrc .container {
    flex-wrap: nowrap;
  }
}
.cid-uCMf6muhrc .iconfont-wrapper {
  color: #353535 !important;
  font-size: 18px;
  padding-right: 0;
}
.cid-uCMf6muhrc .iconfont-wrapper .mbr-iconfont {
  transition: .4s all;
}
.cid-uCMf6muhrc .iconfont-wrapper .mbr-iconfont:hover {
  color: #f9c625;
}
.cid-uCMf6muhrc .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 66.66666667%;
  margin-right: auto;
  min-height: 89px;
}
.cid-uCMf6muhrc .navbar-nav .nav-item {
  margin: 2px;
}
.cid-uCMf6muhrc .navbar-nav .nav-link {
  padding: 5px 9px;
  transition: .4s all;
}
.cid-uCMf6muhrc .navbar-nav .nav-link:hover {
  transform: scale(1.1);
}
.cid-uCMf6muhrc .dropdown-menu,
.cid-uCMf6muhrc .navbar.opened {
  background: #fffcf5 !important;
}
.cid-uCMf6muhrc .nav-item:focus,
.cid-uCMf6muhrc .nav-link:focus {
  outline: none;
}
.cid-uCMf6muhrc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCMf6muhrc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCMf6muhrc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uCMf6muhrc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCMf6muhrc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uCMf6muhrc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uCMf6muhrc .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: none !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fffcf5;
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-uCMf6muhrc .navbar.opened {
  transition: all 0.3s;
}
.cid-uCMf6muhrc .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uCMf6muhrc .navbar .navbar-logo img {
  width: auto;
}
.cid-uCMf6muhrc .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uCMf6muhrc .navbar.collapsed {
  justify-content: center;
}
.cid-uCMf6muhrc .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uCMf6muhrc .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uCMf6muhrc .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.6rem);
  }
}
.cid-uCMf6muhrc .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCMf6muhrc .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCMf6muhrc .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-uCMf6muhrc .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uCMf6muhrc .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uCMf6muhrc .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uCMf6muhrc .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCMf6muhrc .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCMf6muhrc .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCMf6muhrc .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCMf6muhrc .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-uCMf6muhrc .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uCMf6muhrc .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCMf6muhrc .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCMf6muhrc .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCMf6muhrc .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uCMf6muhrc .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uCMf6muhrc .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uCMf6muhrc .navbar.navbar-short {
  min-height: 90px;
}
.cid-uCMf6muhrc .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uCMf6muhrc .navbar.navbar-short .navbar-brand {
  min-height: 89px;
  padding: 0;
}
.cid-uCMf6muhrc .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-uCMf6muhrc .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCMf6muhrc .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCMf6muhrc .dropdown-item.active,
.cid-uCMf6muhrc .dropdown-item:active {
  background-color: transparent;
}
.cid-uCMf6muhrc .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCMf6muhrc .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCMf6muhrc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCMf6muhrc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fffcf5;
}
.cid-uCMf6muhrc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCMf6muhrc .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCMf6muhrc ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCMf6muhrc .navbar-buttons {
  text-align: center;
}
.cid-uCMf6muhrc 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-uCMf6muhrc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 13px;
  width: 22px;
  height: 2px;
  background-color: #715537;
}
.cid-uCMf6muhrc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 17px;
  transition: all 0.2s;
}
.cid-uCMf6muhrc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-uCMf6muhrc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-uCMf6muhrc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 29px;
  transition: all 0.2s;
}
.cid-uCMf6muhrc nav.opened .hamburger span:nth-child(1) {
  top: 17px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-uCMf6muhrc nav.opened .hamburger span:nth-child(2) {
  transform: translateY(-1px) rotate(45deg);
  transition: all 0.25s;
}
.cid-uCMf6muhrc nav.opened .hamburger span:nth-child(3) {
  transform: translateY(-1px) rotate(-45deg);
  transition: all 0.25s;
}
.cid-uCMf6muhrc nav.opened .hamburger span:nth-child(4) {
  top: 29px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-uCMf6muhrc .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uCMf6muhrc a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCMf6muhrc .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-uCMf6muhrc .navbar {
    height: 70px;
  }
  .cid-uCMf6muhrc .navbar.opened {
    height: auto;
  }
  .cid-uCMf6muhrc .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uCMf6muhrc .container,
.cid-uCMf6muhrc .container-fluid {
  flex-wrap: wrap;
}
.cid-uCMf6muhrc .navbar-collapse {
  width: 75%;
  min-height: 89px;
}
.cid-uCMf6muhrc .border-item {
  width: 100%;
  height: 1px;
  background-color: #829d86;
}
.cid-uCMf6muhrc .mbr-section-btn .btn {
  width: 180px;
  min-width: auto;
  min-height: 55px;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-uCMf6muhrc .navbar-brand {
    width: calc(100% - 48px) !important;
    min-height: 89px;
  }
  .cid-uCMf6muhrc .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 1rem;
    order: 5;
  }
  .cid-uCMf6muhrc .navbar-nav {
    width: 100%;
  }
}
.cid-uCMf6lQ0Lv {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fffcf5;
}
.cid-uCMf6lQ0Lv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCMf6lQ0Lv .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-uCMf6lQ0Lv .row {
    align-items: center !important;
  }
}
.cid-uCMf6lQ0Lv .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 991px) {
  .cid-uCMf6lQ0Lv .mbr-section-head {
    margin-bottom: 75px;
  }
}
@media (max-width: 767px) {
  .cid-uCMf6lQ0Lv .mbr-section-head {
    margin-bottom: 65px;
  }
}
.cid-uCMf6lQ0Lv .mbr-section-title {
  color: #829D85;
  margin-bottom: 0;
}
.cid-uCMf6lQ0Lv .mbr-section-subtitle {
  color: #353535;
  margin-top: 20px;
}
.cid-uCMf6lQ0Lv .text-wrap {
  width: 100%;
  padding: 36px 0;
  border-top: 1px solid #829d85;
}
@media (max-width: 991px) {
  .cid-uCMf6lQ0Lv .text-wrap {
    padding: 30px 0;
  }
}
.cid-uCMf6lQ0Lv .mbr-title {
  color: #987A5A;
}
.cid-uCMf6lQ0Lv .mbr-text {
  margin-top: 12px;
  color: #353535;
}
.cid-uCMf6lQ0Lv .list-box {
  width: 100%;
}
.cid-uCMf6lQ0Lv .list {
  list-style: none;
  margin-top: 22px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #353535;
}
.cid-uCMf6lQ0Lv .list-text {
  position: relative;
}
.cid-uCMf6lQ0Lv .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-uCMf6lQ0Lv .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-uCMf6lQ0Lv .mbr-section-btn {
  margin-top: 20px;
}
.cid-uCMf6lQ0Lv .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-uCMf6lQ0Lv .img-box {
    border-radius: 0;
  }
}
@media (max-width: 767px) {
  .cid-uCMf6lQ0Lv .img-box {
    border-radius: 0 15vw 0 0;
  }
}
.cid-uCMf6lQ0Lv .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-uF8L2DhaOi {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #fffcf5;
  overflow: hidden;
}
.cid-uF8L2DhaOi .mbr-fallback-image.disabled {
  display: none;
}
.cid-uF8L2DhaOi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uF8L2DhaOi .row {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uF8L2DhaOi .row {
    flex-wrap: wrap;
  }
}
.cid-uF8L2DhaOi .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uF8L2DhaOi .text-wrap {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .cid-uF8L2DhaOi .text-wrap {
    margin-bottom: 20px;
  }
}
.cid-uF8L2DhaOi .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #a9bbab;
  transform: translateY(40%);
}
.cid-uF8L2DhaOi .mbr-section-title {
  color: #353535;
}
.cid-uF8L2DhaOi .mbr-section-title a {
  pointer-events: none !important;
  font-style: italic !important;
  font-weight: bold !important;
}
.cid-uF8L2DhaOi .mbr-section-subtitle {
  margin-top: 30px;
  color: #353535;
}
@media (max-width: 767px) {
  .cid-uF8L2DhaOi .mbr-section-subtitle {
    margin-top: 12px;
  }
}
.cid-uF8L2DhaOi .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uF8L2DhaOi .mbr-text {
    margin-top: 12px;
  }
}
.cid-uF8L2DhaOi .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uF8L2DhaOi .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-uF8L2DhaOi .col-img {
  width: 430px;
}
@media (max-width: 1199px) {
  .cid-uF8L2DhaOi .col-img {
    width: 350px;
  }
}
.cid-uF8L2DhaOi .img-wrap {
  position: relative;
  width: 100%;
}
.cid-uF8L2DhaOi .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-uF8L2DhaOi .img-wrap .img-box {
    border-top-left-radius: 55px;
    border-top-right-radius: 55px;
    border-bottom-right-radius: 55px;
  }
}
.cid-uF8L2DhaOi .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-uF8L2DhaOi .img-wrap .frame-box {
  position: absolute;
  height: 240px;
}
.cid-uF8L2DhaOi .img-wrap .frame-box svg {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
}
.cid-uF8L2DhaOi .img-wrap .frame-box-1 {
  bottom: -20%;
  left: -14%;
  width: 85%;
  transform: rotate(10deg);
}
.cid-uF8L2DhaOi .img-wrap .frame-box-2 {
  bottom: -18%;
  right: -14%;
  width: 84%;
  transform: rotate(0deg);
}
@media (max-width: 991px) {
  .cid-uF8L2DhaOi .img-wrap .frame-box-2 {
    bottom: auto;
    top: -15%;
  }
}
.cid-uCMf6mWo7m {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #829d85;
}
.cid-uCMf6mWo7m .mbr-text {
  color: #FFFCF5;
}
.cid-uCMfaZgH8q {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 90px;
}
.cid-uCMfaZgH8q nav.navbar {
  position: fixed;
}
.cid-uCMfaZgH8q .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-uCMfaZgH8q .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uCMfaZgH8q .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uCMfaZgH8q .dropdown-item:hover,
.cid-uCMfaZgH8q .dropdown-item:focus {
  background: #f9c625 !important;
  color: white !important;
}
.cid-uCMfaZgH8q .dropdown-item:hover span {
  color: white;
}
.cid-uCMfaZgH8q .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uCMfaZgH8q .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uCMfaZgH8q .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uCMfaZgH8q .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCMfaZgH8q .nav-link {
  position: relative;
}
.cid-uCMfaZgH8q .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uCMfaZgH8q .container {
    flex-wrap: nowrap;
  }
}
.cid-uCMfaZgH8q .iconfont-wrapper {
  color: #353535 !important;
  font-size: 18px;
  padding-right: 0;
}
.cid-uCMfaZgH8q .iconfont-wrapper .mbr-iconfont {
  transition: .4s all;
}
.cid-uCMfaZgH8q .iconfont-wrapper .mbr-iconfont:hover {
  color: #f9c625;
}
.cid-uCMfaZgH8q .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 66.66666667%;
  margin-right: auto;
  min-height: 89px;
}
.cid-uCMfaZgH8q .navbar-nav .nav-item {
  margin: 2px;
}
.cid-uCMfaZgH8q .navbar-nav .nav-link {
  padding: 5px 9px;
  transition: .4s all;
}
.cid-uCMfaZgH8q .navbar-nav .nav-link:hover {
  transform: scale(1.1);
}
.cid-uCMfaZgH8q .dropdown-menu,
.cid-uCMfaZgH8q .navbar.opened {
  background: #fffcf5 !important;
}
.cid-uCMfaZgH8q .nav-item:focus,
.cid-uCMfaZgH8q .nav-link:focus {
  outline: none;
}
.cid-uCMfaZgH8q .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCMfaZgH8q .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCMfaZgH8q .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uCMfaZgH8q .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCMfaZgH8q .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uCMfaZgH8q .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uCMfaZgH8q .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: none !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fffcf5;
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-uCMfaZgH8q .navbar.opened {
  transition: all 0.3s;
}
.cid-uCMfaZgH8q .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uCMfaZgH8q .navbar .navbar-logo img {
  width: auto;
}
.cid-uCMfaZgH8q .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uCMfaZgH8q .navbar.collapsed {
  justify-content: center;
}
.cid-uCMfaZgH8q .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uCMfaZgH8q .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uCMfaZgH8q .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.6rem);
  }
}
.cid-uCMfaZgH8q .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCMfaZgH8q .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCMfaZgH8q .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-uCMfaZgH8q .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uCMfaZgH8q .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uCMfaZgH8q .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uCMfaZgH8q .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCMfaZgH8q .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCMfaZgH8q .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCMfaZgH8q .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCMfaZgH8q .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-uCMfaZgH8q .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uCMfaZgH8q .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCMfaZgH8q .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCMfaZgH8q .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCMfaZgH8q .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uCMfaZgH8q .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uCMfaZgH8q .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uCMfaZgH8q .navbar.navbar-short {
  min-height: 90px;
}
.cid-uCMfaZgH8q .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uCMfaZgH8q .navbar.navbar-short .navbar-brand {
  min-height: 89px;
  padding: 0;
}
.cid-uCMfaZgH8q .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-uCMfaZgH8q .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCMfaZgH8q .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCMfaZgH8q .dropdown-item.active,
.cid-uCMfaZgH8q .dropdown-item:active {
  background-color: transparent;
}
.cid-uCMfaZgH8q .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCMfaZgH8q .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCMfaZgH8q .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCMfaZgH8q .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fffcf5;
}
.cid-uCMfaZgH8q .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCMfaZgH8q .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCMfaZgH8q ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCMfaZgH8q .navbar-buttons {
  text-align: center;
}
.cid-uCMfaZgH8q 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-uCMfaZgH8q button.navbar-toggler .hamburger span {
  position: absolute;
  right: 13px;
  width: 22px;
  height: 2px;
  background-color: #715537;
}
.cid-uCMfaZgH8q button.navbar-toggler .hamburger span:nth-child(1) {
  top: 17px;
  transition: all 0.2s;
}
.cid-uCMfaZgH8q button.navbar-toggler .hamburger span:nth-child(2) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-uCMfaZgH8q button.navbar-toggler .hamburger span:nth-child(3) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-uCMfaZgH8q button.navbar-toggler .hamburger span:nth-child(4) {
  top: 29px;
  transition: all 0.2s;
}
.cid-uCMfaZgH8q nav.opened .hamburger span:nth-child(1) {
  top: 17px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-uCMfaZgH8q nav.opened .hamburger span:nth-child(2) {
  transform: translateY(-1px) rotate(45deg);
  transition: all 0.25s;
}
.cid-uCMfaZgH8q nav.opened .hamburger span:nth-child(3) {
  transform: translateY(-1px) rotate(-45deg);
  transition: all 0.25s;
}
.cid-uCMfaZgH8q nav.opened .hamburger span:nth-child(4) {
  top: 29px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-uCMfaZgH8q .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uCMfaZgH8q a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCMfaZgH8q .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-uCMfaZgH8q .navbar {
    height: 70px;
  }
  .cid-uCMfaZgH8q .navbar.opened {
    height: auto;
  }
  .cid-uCMfaZgH8q .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uCMfaZgH8q .container,
.cid-uCMfaZgH8q .container-fluid {
  flex-wrap: wrap;
}
.cid-uCMfaZgH8q .navbar-collapse {
  width: 75%;
  min-height: 89px;
}
.cid-uCMfaZgH8q .border-item {
  width: 100%;
  height: 1px;
  background-color: #829d86;
}
.cid-uCMfaZgH8q .mbr-section-btn .btn {
  width: 180px;
  min-width: auto;
  min-height: 55px;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-uCMfaZgH8q .navbar-brand {
    width: calc(100% - 48px) !important;
    min-height: 89px;
  }
  .cid-uCMfaZgH8q .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 1rem;
    order: 5;
  }
  .cid-uCMfaZgH8q .navbar-nav {
    width: 100%;
  }
}
.cid-uCMfaYBXa9 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fffcf5;
}
.cid-uCMfaYBXa9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCMfaYBXa9 .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-uCMfaYBXa9 .row {
    align-items: center !important;
  }
}
.cid-uCMfaYBXa9 .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 991px) {
  .cid-uCMfaYBXa9 .mbr-section-head {
    margin-bottom: 75px;
  }
}
@media (max-width: 767px) {
  .cid-uCMfaYBXa9 .mbr-section-head {
    margin-bottom: 65px;
  }
}
.cid-uCMfaYBXa9 .mbr-section-title {
  color: #829D85;
  margin-bottom: 0;
}
.cid-uCMfaYBXa9 .mbr-section-subtitle {
  color: #353535;
  margin-top: 20px;
}
.cid-uCMfaYBXa9 .text-wrap {
  width: 100%;
  padding: 36px 0;
  border-top: 1px solid #829d85;
}
@media (max-width: 991px) {
  .cid-uCMfaYBXa9 .text-wrap {
    padding: 30px 0;
  }
}
.cid-uCMfaYBXa9 .mbr-title {
  color: #987A5A;
}
.cid-uCMfaYBXa9 .mbr-text {
  margin-top: 12px;
  color: #353535;
}
.cid-uCMfaYBXa9 .list-box {
  width: 100%;
}
.cid-uCMfaYBXa9 .list {
  list-style: none;
  margin-top: 22px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #353535;
}
.cid-uCMfaYBXa9 .list-text {
  position: relative;
}
.cid-uCMfaYBXa9 .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-uCMfaYBXa9 .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-uCMfaYBXa9 .mbr-section-btn {
  margin-top: 20px;
}
.cid-uCMfaYBXa9 .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-uCMfaYBXa9 .img-box {
    border-radius: 0;
  }
}
@media (max-width: 767px) {
  .cid-uCMfaYBXa9 .img-box {
    border-radius: 0 15vw 0 0;
  }
}
.cid-uCMfaYBXa9 .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-uCMfaYZG6L {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #fffcf5;
}
.cid-uCMfaYZG6L .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCMfaYZG6L .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCMfaYZG6L .text-wrap {
  width: 100%;
}
.cid-uCMfaYZG6L .mbr-title {
  margin-bottom: 0;
  color: #829D85;
}
.cid-uCMfaYZG6L .mbr-text {
  padding-top: 16px;
  color: #353535;
}
.cid-uCMfaYZG6L .list-wrap {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uCMfaYZG6L .list-wrap {
    margin-top: 24px;
  }
}
.cid-uCMfaYZG6L .list-box {
  width: 100%;
}
.cid-uCMfaYZG6L .list {
  list-style: none;
  margin-top: 22px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #353535;
}
.cid-uCMfaYZG6L .list-text {
  position: relative;
}
.cid-uCMfaYZG6L .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-uCMfaYZG6L .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-uF8NeG84hC {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #fffcf5;
  overflow: hidden;
}
.cid-uF8NeG84hC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uF8NeG84hC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uF8NeG84hC .row {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uF8NeG84hC .row {
    flex-wrap: wrap;
  }
}
.cid-uF8NeG84hC .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uF8NeG84hC .text-wrap {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .cid-uF8NeG84hC .text-wrap {
    margin-bottom: 20px;
  }
}
.cid-uF8NeG84hC .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #a9bbab;
  transform: translateY(40%);
}
.cid-uF8NeG84hC .mbr-section-title {
  color: #353535;
}
.cid-uF8NeG84hC .mbr-section-title a {
  pointer-events: none !important;
  font-style: italic !important;
  font-weight: bold !important;
}
.cid-uF8NeG84hC .mbr-section-subtitle {
  margin-top: 30px;
  color: #353535;
}
@media (max-width: 767px) {
  .cid-uF8NeG84hC .mbr-section-subtitle {
    margin-top: 12px;
  }
}
.cid-uF8NeG84hC .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uF8NeG84hC .mbr-text {
    margin-top: 12px;
  }
}
.cid-uF8NeG84hC .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uF8NeG84hC .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-uF8NeG84hC .col-img {
  width: 430px;
}
@media (max-width: 1199px) {
  .cid-uF8NeG84hC .col-img {
    width: 350px;
  }
}
.cid-uF8NeG84hC .img-wrap {
  position: relative;
  width: 100%;
}
.cid-uF8NeG84hC .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-uF8NeG84hC .img-wrap .img-box {
    border-top-left-radius: 55px;
    border-top-right-radius: 55px;
    border-bottom-right-radius: 55px;
  }
}
.cid-uF8NeG84hC .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-uF8NeG84hC .img-wrap .frame-box {
  position: absolute;
  height: 240px;
}
.cid-uF8NeG84hC .img-wrap .frame-box svg {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
}
.cid-uF8NeG84hC .img-wrap .frame-box-1 {
  bottom: -20%;
  left: -14%;
  width: 85%;
  transform: rotate(10deg);
}
.cid-uF8NeG84hC .img-wrap .frame-box-2 {
  bottom: -18%;
  right: -14%;
  width: 84%;
  transform: rotate(0deg);
}
@media (max-width: 991px) {
  .cid-uF8NeG84hC .img-wrap .frame-box-2 {
    bottom: auto;
    top: -15%;
  }
}
.cid-uCMfaZIWht {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #829d85;
}
.cid-uCMfaZIWht .mbr-text {
  color: #FFFCF5;
}
.cid-uCMeYLfqbD {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 90px;
}
.cid-uCMeYLfqbD nav.navbar {
  position: fixed;
}
.cid-uCMeYLfqbD .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-uCMeYLfqbD .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uCMeYLfqbD .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uCMeYLfqbD .dropdown-item:hover,
.cid-uCMeYLfqbD .dropdown-item:focus {
  background: #f9c625 !important;
  color: white !important;
}
.cid-uCMeYLfqbD .dropdown-item:hover span {
  color: white;
}
.cid-uCMeYLfqbD .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uCMeYLfqbD .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uCMeYLfqbD .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uCMeYLfqbD .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCMeYLfqbD .nav-link {
  position: relative;
}
.cid-uCMeYLfqbD .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uCMeYLfqbD .container {
    flex-wrap: nowrap;
  }
}
.cid-uCMeYLfqbD .iconfont-wrapper {
  color: #353535 !important;
  font-size: 18px;
  padding-right: 0;
}
.cid-uCMeYLfqbD .iconfont-wrapper .mbr-iconfont {
  transition: .4s all;
}
.cid-uCMeYLfqbD .iconfont-wrapper .mbr-iconfont:hover {
  color: #f9c625;
}
.cid-uCMeYLfqbD .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 66.66666667%;
  margin-right: auto;
  min-height: 89px;
}
.cid-uCMeYLfqbD .navbar-nav .nav-item {
  margin: 2px;
}
.cid-uCMeYLfqbD .navbar-nav .nav-link {
  padding: 5px 9px;
  transition: .4s all;
}
.cid-uCMeYLfqbD .navbar-nav .nav-link:hover {
  transform: scale(1.1);
}
.cid-uCMeYLfqbD .dropdown-menu,
.cid-uCMeYLfqbD .navbar.opened {
  background: #fffcf5 !important;
}
.cid-uCMeYLfqbD .nav-item:focus,
.cid-uCMeYLfqbD .nav-link:focus {
  outline: none;
}
.cid-uCMeYLfqbD .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCMeYLfqbD .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCMeYLfqbD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uCMeYLfqbD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCMeYLfqbD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uCMeYLfqbD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uCMeYLfqbD .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: none !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fffcf5;
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-uCMeYLfqbD .navbar.opened {
  transition: all 0.3s;
}
.cid-uCMeYLfqbD .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uCMeYLfqbD .navbar .navbar-logo img {
  width: auto;
}
.cid-uCMeYLfqbD .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uCMeYLfqbD .navbar.collapsed {
  justify-content: center;
}
.cid-uCMeYLfqbD .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uCMeYLfqbD .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uCMeYLfqbD .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.6rem);
  }
}
.cid-uCMeYLfqbD .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCMeYLfqbD .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCMeYLfqbD .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-uCMeYLfqbD .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uCMeYLfqbD .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uCMeYLfqbD .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uCMeYLfqbD .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCMeYLfqbD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCMeYLfqbD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCMeYLfqbD .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCMeYLfqbD .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-uCMeYLfqbD .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uCMeYLfqbD .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCMeYLfqbD .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCMeYLfqbD .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCMeYLfqbD .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uCMeYLfqbD .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uCMeYLfqbD .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uCMeYLfqbD .navbar.navbar-short {
  min-height: 90px;
}
.cid-uCMeYLfqbD .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uCMeYLfqbD .navbar.navbar-short .navbar-brand {
  min-height: 89px;
  padding: 0;
}
.cid-uCMeYLfqbD .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-uCMeYLfqbD .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCMeYLfqbD .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCMeYLfqbD .dropdown-item.active,
.cid-uCMeYLfqbD .dropdown-item:active {
  background-color: transparent;
}
.cid-uCMeYLfqbD .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCMeYLfqbD .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCMeYLfqbD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCMeYLfqbD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fffcf5;
}
.cid-uCMeYLfqbD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCMeYLfqbD .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCMeYLfqbD ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCMeYLfqbD .navbar-buttons {
  text-align: center;
}
.cid-uCMeYLfqbD 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-uCMeYLfqbD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 13px;
  width: 22px;
  height: 2px;
  background-color: #715537;
}
.cid-uCMeYLfqbD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 17px;
  transition: all 0.2s;
}
.cid-uCMeYLfqbD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-uCMeYLfqbD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-uCMeYLfqbD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 29px;
  transition: all 0.2s;
}
.cid-uCMeYLfqbD nav.opened .hamburger span:nth-child(1) {
  top: 17px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-uCMeYLfqbD nav.opened .hamburger span:nth-child(2) {
  transform: translateY(-1px) rotate(45deg);
  transition: all 0.25s;
}
.cid-uCMeYLfqbD nav.opened .hamburger span:nth-child(3) {
  transform: translateY(-1px) rotate(-45deg);
  transition: all 0.25s;
}
.cid-uCMeYLfqbD nav.opened .hamburger span:nth-child(4) {
  top: 29px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-uCMeYLfqbD .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uCMeYLfqbD a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCMeYLfqbD .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-uCMeYLfqbD .navbar {
    height: 70px;
  }
  .cid-uCMeYLfqbD .navbar.opened {
    height: auto;
  }
  .cid-uCMeYLfqbD .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uCMeYLfqbD .container,
.cid-uCMeYLfqbD .container-fluid {
  flex-wrap: wrap;
}
.cid-uCMeYLfqbD .navbar-collapse {
  width: 75%;
  min-height: 89px;
}
.cid-uCMeYLfqbD .border-item {
  width: 100%;
  height: 1px;
  background-color: #829d86;
}
.cid-uCMeYLfqbD .mbr-section-btn .btn {
  width: 180px;
  min-width: auto;
  min-height: 55px;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-uCMeYLfqbD .navbar-brand {
    width: calc(100% - 48px) !important;
    min-height: 89px;
  }
  .cid-uCMeYLfqbD .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 1rem;
    order: 5;
  }
  .cid-uCMeYLfqbD .navbar-nav {
    width: 100%;
  }
}
.cid-uCMeYKuGE7 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fffcf5;
}
.cid-uCMeYKuGE7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCMeYKuGE7 .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-uCMeYKuGE7 .row {
    align-items: center !important;
  }
}
.cid-uCMeYKuGE7 .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 991px) {
  .cid-uCMeYKuGE7 .mbr-section-head {
    margin-bottom: 75px;
  }
}
@media (max-width: 767px) {
  .cid-uCMeYKuGE7 .mbr-section-head {
    margin-bottom: 65px;
  }
}
.cid-uCMeYKuGE7 .mbr-section-title {
  color: #829D85;
  margin-bottom: 0;
}
.cid-uCMeYKuGE7 .mbr-section-subtitle {
  color: #353535;
  margin-top: 20px;
}
.cid-uCMeYKuGE7 .text-wrap {
  width: 100%;
  padding: 36px 0;
  border-top: 1px solid #829d85;
}
@media (max-width: 991px) {
  .cid-uCMeYKuGE7 .text-wrap {
    padding: 30px 0;
  }
}
.cid-uCMeYKuGE7 .mbr-title {
  color: #987A5A;
}
.cid-uCMeYKuGE7 .mbr-text {
  margin-top: 12px;
  color: #353535;
}
.cid-uCMeYKuGE7 .list-box {
  width: 100%;
}
.cid-uCMeYKuGE7 .list {
  list-style: none;
  margin-top: 22px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #353535;
}
.cid-uCMeYKuGE7 .list-text {
  position: relative;
}
.cid-uCMeYKuGE7 .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-uCMeYKuGE7 .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-uCMeYKuGE7 .mbr-section-btn {
  margin-top: 20px;
}
.cid-uCMeYKuGE7 .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-uCMeYKuGE7 .img-box {
    border-radius: 0;
  }
}
@media (max-width: 767px) {
  .cid-uCMeYKuGE7 .img-box {
    border-radius: 0 15vw 0 0;
  }
}
.cid-uCMeYKuGE7 .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-uF8Go1DzSN {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #fffcf5;
  overflow: hidden;
}
.cid-uF8Go1DzSN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uF8Go1DzSN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uF8Go1DzSN .row {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uF8Go1DzSN .row {
    flex-wrap: wrap;
  }
}
.cid-uF8Go1DzSN .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uF8Go1DzSN .text-wrap {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .cid-uF8Go1DzSN .text-wrap {
    margin-bottom: 20px;
  }
}
.cid-uF8Go1DzSN .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #a9bbab;
  transform: translateY(40%);
}
.cid-uF8Go1DzSN .mbr-section-title {
  color: #353535;
}
.cid-uF8Go1DzSN .mbr-section-title a {
  pointer-events: none !important;
  font-style: italic !important;
  font-weight: bold !important;
}
.cid-uF8Go1DzSN .mbr-section-subtitle {
  margin-top: 30px;
  color: #353535;
}
@media (max-width: 767px) {
  .cid-uF8Go1DzSN .mbr-section-subtitle {
    margin-top: 12px;
  }
}
.cid-uF8Go1DzSN .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uF8Go1DzSN .mbr-text {
    margin-top: 12px;
  }
}
.cid-uF8Go1DzSN .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uF8Go1DzSN .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-uF8Go1DzSN .col-img {
  width: 430px;
}
@media (max-width: 1199px) {
  .cid-uF8Go1DzSN .col-img {
    width: 350px;
  }
}
.cid-uF8Go1DzSN .img-wrap {
  position: relative;
  width: 100%;
}
.cid-uF8Go1DzSN .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-uF8Go1DzSN .img-wrap .img-box {
    border-top-left-radius: 55px;
    border-top-right-radius: 55px;
    border-bottom-right-radius: 55px;
  }
}
.cid-uF8Go1DzSN .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-uF8Go1DzSN .img-wrap .frame-box {
  position: absolute;
  height: 240px;
}
.cid-uF8Go1DzSN .img-wrap .frame-box svg {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
}
.cid-uF8Go1DzSN .img-wrap .frame-box-1 {
  bottom: -20%;
  left: -14%;
  width: 85%;
  transform: rotate(10deg);
}
.cid-uF8Go1DzSN .img-wrap .frame-box-2 {
  bottom: -18%;
  right: -14%;
  width: 84%;
  transform: rotate(0deg);
}
@media (max-width: 991px) {
  .cid-uF8Go1DzSN .img-wrap .frame-box-2 {
    bottom: auto;
    top: -15%;
  }
}
.cid-uCMeYLJRM0 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #829d85;
}
.cid-uCMeYLJRM0 .mbr-text {
  color: #FFFCF5;
}
.cid-uF8zUVNUlv {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 90px;
}
.cid-uF8zUVNUlv nav.navbar {
  position: fixed;
}
.cid-uF8zUVNUlv .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-uF8zUVNUlv .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uF8zUVNUlv .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uF8zUVNUlv .dropdown-item:hover,
.cid-uF8zUVNUlv .dropdown-item:focus {
  background: #f9c625 !important;
  color: white !important;
}
.cid-uF8zUVNUlv .dropdown-item:hover span {
  color: white;
}
.cid-uF8zUVNUlv .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uF8zUVNUlv .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uF8zUVNUlv .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uF8zUVNUlv .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uF8zUVNUlv .nav-link {
  position: relative;
}
.cid-uF8zUVNUlv .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uF8zUVNUlv .container {
    flex-wrap: nowrap;
  }
}
.cid-uF8zUVNUlv .iconfont-wrapper {
  color: #353535 !important;
  font-size: 18px;
  padding-right: 0;
}
.cid-uF8zUVNUlv .iconfont-wrapper .mbr-iconfont {
  transition: .4s all;
}
.cid-uF8zUVNUlv .iconfont-wrapper .mbr-iconfont:hover {
  color: #f9c625;
}
.cid-uF8zUVNUlv .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 66.66666667%;
  margin-right: auto;
  min-height: 89px;
}
.cid-uF8zUVNUlv .navbar-nav .nav-item {
  margin: 2px;
}
.cid-uF8zUVNUlv .navbar-nav .nav-link {
  padding: 5px 9px;
  transition: .4s all;
}
.cid-uF8zUVNUlv .navbar-nav .nav-link:hover {
  transform: scale(1.1);
}
.cid-uF8zUVNUlv .dropdown-menu,
.cid-uF8zUVNUlv .navbar.opened {
  background: #fffcf5 !important;
}
.cid-uF8zUVNUlv .nav-item:focus,
.cid-uF8zUVNUlv .nav-link:focus {
  outline: none;
}
.cid-uF8zUVNUlv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uF8zUVNUlv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uF8zUVNUlv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uF8zUVNUlv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uF8zUVNUlv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uF8zUVNUlv .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uF8zUVNUlv .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: none !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fffcf5;
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-uF8zUVNUlv .navbar.opened {
  transition: all 0.3s;
}
.cid-uF8zUVNUlv .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uF8zUVNUlv .navbar .navbar-logo img {
  width: auto;
}
.cid-uF8zUVNUlv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uF8zUVNUlv .navbar.collapsed {
  justify-content: center;
}
.cid-uF8zUVNUlv .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uF8zUVNUlv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uF8zUVNUlv .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.6rem);
  }
}
.cid-uF8zUVNUlv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uF8zUVNUlv .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uF8zUVNUlv .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-uF8zUVNUlv .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uF8zUVNUlv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uF8zUVNUlv .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uF8zUVNUlv .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uF8zUVNUlv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uF8zUVNUlv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uF8zUVNUlv .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uF8zUVNUlv .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-uF8zUVNUlv .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uF8zUVNUlv .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uF8zUVNUlv .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uF8zUVNUlv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uF8zUVNUlv .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uF8zUVNUlv .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uF8zUVNUlv .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uF8zUVNUlv .navbar.navbar-short {
  min-height: 90px;
}
.cid-uF8zUVNUlv .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uF8zUVNUlv .navbar.navbar-short .navbar-brand {
  min-height: 89px;
  padding: 0;
}
.cid-uF8zUVNUlv .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-uF8zUVNUlv .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uF8zUVNUlv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uF8zUVNUlv .dropdown-item.active,
.cid-uF8zUVNUlv .dropdown-item:active {
  background-color: transparent;
}
.cid-uF8zUVNUlv .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uF8zUVNUlv .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uF8zUVNUlv .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uF8zUVNUlv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fffcf5;
}
.cid-uF8zUVNUlv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uF8zUVNUlv .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uF8zUVNUlv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uF8zUVNUlv .navbar-buttons {
  text-align: center;
}
.cid-uF8zUVNUlv 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-uF8zUVNUlv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 13px;
  width: 22px;
  height: 2px;
  background-color: #715537;
}
.cid-uF8zUVNUlv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 17px;
  transition: all 0.2s;
}
.cid-uF8zUVNUlv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-uF8zUVNUlv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-uF8zUVNUlv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 29px;
  transition: all 0.2s;
}
.cid-uF8zUVNUlv nav.opened .hamburger span:nth-child(1) {
  top: 17px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-uF8zUVNUlv nav.opened .hamburger span:nth-child(2) {
  transform: translateY(-1px) rotate(45deg);
  transition: all 0.25s;
}
.cid-uF8zUVNUlv nav.opened .hamburger span:nth-child(3) {
  transform: translateY(-1px) rotate(-45deg);
  transition: all 0.25s;
}
.cid-uF8zUVNUlv nav.opened .hamburger span:nth-child(4) {
  top: 29px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-uF8zUVNUlv .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uF8zUVNUlv a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uF8zUVNUlv .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-uF8zUVNUlv .navbar {
    height: 70px;
  }
  .cid-uF8zUVNUlv .navbar.opened {
    height: auto;
  }
  .cid-uF8zUVNUlv .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uF8zUVNUlv .container,
.cid-uF8zUVNUlv .container-fluid {
  flex-wrap: wrap;
}
.cid-uF8zUVNUlv .navbar-collapse {
  width: 75%;
  min-height: 89px;
}
.cid-uF8zUVNUlv .border-item {
  width: 100%;
  height: 1px;
  background-color: #829d86;
}
.cid-uF8zUVNUlv .mbr-section-btn .btn {
  width: 180px;
  min-width: auto;
  min-height: 55px;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-uF8zUVNUlv .navbar-brand {
    width: calc(100% - 48px) !important;
    min-height: 89px;
  }
  .cid-uF8zUVNUlv .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 1rem;
    order: 5;
  }
  .cid-uF8zUVNUlv .navbar-nav {
    width: 100%;
  }
}
.cid-uF8zUWEag5 {
  padding-top: 5rem;
  padding-bottom: 6rem;
  background-color: #fffcf5;
}
.cid-uF8zUWEag5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uF8zUWEag5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uF8zUWEag5 .text-wrap {
  width: 100%;
}
.cid-uF8zUWEag5 .mbr-title {
  margin-bottom: 0;
  color: #829D85;
  text-align: center;
}
.cid-uF8zUWEag5 .mbr-text {
  padding-top: 16px;
  color: #353535;
}
.cid-uF8zUWEag5 .list-wrap {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uF8zUWEag5 .list-wrap {
    margin-top: 24px;
  }
}
.cid-uF8zUWEag5 .list-box {
  width: 100%;
}
.cid-uF8zUWEag5 .list {
  list-style: none;
  margin-top: 22px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #353535;
}
.cid-uF8zUWEag5 .list-text {
  position: relative;
}
.cid-uF8zUWEag5 .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-uF8zUWEag5 .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-uF8CbWzS8X {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fffcf5;
  overflow: hidden;
}
.cid-uF8CbWzS8X .mbr-fallback-image.disabled {
  display: none;
}
.cid-uF8CbWzS8X .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uF8CbWzS8X .row {
  flex-wrap: nowrap;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uF8CbWzS8X .row {
    flex-wrap: wrap;
  }
}
.cid-uF8CbWzS8X .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 80px 0;
}
.cid-uF8CbWzS8X .text-wrap:before {
  content: "";
  position: absolute;
  right: -100px;
  top: 0;
  height: 100%;
  width: 100vw;
  border-radius: 0 65px 65px 0;
  background-color: #f6efe8;
  z-index: -1;
  border-radius: 65px 0 0 65px;
  right: auto;
  left: -100px;
}
@media (max-width: 1199px) {
  .cid-uF8CbWzS8X .text-wrap:before {
    border-radius: 0 40px 40px 0;
    border-radius: 40px 0 0 40px;
  }
}
@media (max-width: 991px) {
  .cid-uF8CbWzS8X .text-wrap:before {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0;
  }
}
@media (max-width: 991px) {
  .cid-uF8CbWzS8X .text-wrap {
    padding: 50px 0 90px;
  }
}
@media (max-width: 767px) {
  .cid-uF8CbWzS8X .text-wrap {
    margin-bottom: 20px;
  }
}
.cid-uF8CbWzS8X .mbr-section-title {
  color: #353535;
}
.cid-uF8CbWzS8X .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uF8CbWzS8X .mbr-text {
    margin-top: 12px;
  }
}
.cid-uF8CbWzS8X .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uF8CbWzS8X .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-uF8CbWzS8X .col-img {
  width: 390px;
}
@media (max-width: 1199px) {
  .cid-uF8CbWzS8X .col-img {
    width: 330px;
  }
}
@media (max-width: 991px) {
  .cid-uF8CbWzS8X .col-img {
    width: 250px;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-uF8CbWzS8X .col-img {
    margin-bottom: -50px;
  }
}
.cid-uF8CbWzS8X .img-wrap {
  position: relative;
  width: 100%;
}
.cid-uF8CbWzS8X .img-wrap .img-box {
  position: relative;
  z-index: 3;
  width: 100%;
  border-radius: 0 65px 65px 65px;
  overflow: hidden;
  border-radius: 65px 0 65px 65px;
}
@media (max-width: 1199px) {
  .cid-uF8CbWzS8X .img-wrap .img-box {
    border-radius: 0 40px 40px 40px;
    border-radius: 40px 0 40px 40px;
  }
}
@media (max-width: 991px) {
  .cid-uF8CbWzS8X .img-wrap .img-box {
    transform: translateY(-50px);
    border-radius: 0 30px 30px 30px;
    border-radius: 30px 0 30px 30px;
  }
}
.cid-uF8CbWzS8X .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-uF8zUWXIKn {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #829d85;
}
.cid-uF8zUWXIKn .mbr-text {
  color: #FFFCF5;
}
.cid-uF8Dft6ABM {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 90px;
}
.cid-uF8Dft6ABM nav.navbar {
  position: fixed;
}
.cid-uF8Dft6ABM .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-uF8Dft6ABM .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uF8Dft6ABM .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uF8Dft6ABM .dropdown-item:hover,
.cid-uF8Dft6ABM .dropdown-item:focus {
  background: #f9c625 !important;
  color: white !important;
}
.cid-uF8Dft6ABM .dropdown-item:hover span {
  color: white;
}
.cid-uF8Dft6ABM .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uF8Dft6ABM .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uF8Dft6ABM .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uF8Dft6ABM .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uF8Dft6ABM .nav-link {
  position: relative;
}
.cid-uF8Dft6ABM .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uF8Dft6ABM .container {
    flex-wrap: nowrap;
  }
}
.cid-uF8Dft6ABM .iconfont-wrapper {
  color: #353535 !important;
  font-size: 18px;
  padding-right: 0;
}
.cid-uF8Dft6ABM .iconfont-wrapper .mbr-iconfont {
  transition: .4s all;
}
.cid-uF8Dft6ABM .iconfont-wrapper .mbr-iconfont:hover {
  color: #f9c625;
}
.cid-uF8Dft6ABM .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 66.66666667%;
  margin-right: auto;
  min-height: 89px;
}
.cid-uF8Dft6ABM .navbar-nav .nav-item {
  margin: 2px;
}
.cid-uF8Dft6ABM .navbar-nav .nav-link {
  padding: 5px 9px;
  transition: .4s all;
}
.cid-uF8Dft6ABM .navbar-nav .nav-link:hover {
  transform: scale(1.1);
}
.cid-uF8Dft6ABM .dropdown-menu,
.cid-uF8Dft6ABM .navbar.opened {
  background: #fffcf5 !important;
}
.cid-uF8Dft6ABM .nav-item:focus,
.cid-uF8Dft6ABM .nav-link:focus {
  outline: none;
}
.cid-uF8Dft6ABM .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uF8Dft6ABM .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uF8Dft6ABM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uF8Dft6ABM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uF8Dft6ABM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uF8Dft6ABM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uF8Dft6ABM .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: none !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fffcf5;
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-uF8Dft6ABM .navbar.opened {
  transition: all 0.3s;
}
.cid-uF8Dft6ABM .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uF8Dft6ABM .navbar .navbar-logo img {
  width: auto;
}
.cid-uF8Dft6ABM .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uF8Dft6ABM .navbar.collapsed {
  justify-content: center;
}
.cid-uF8Dft6ABM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uF8Dft6ABM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uF8Dft6ABM .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.6rem);
  }
}
.cid-uF8Dft6ABM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uF8Dft6ABM .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uF8Dft6ABM .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-uF8Dft6ABM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uF8Dft6ABM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uF8Dft6ABM .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uF8Dft6ABM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uF8Dft6ABM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uF8Dft6ABM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uF8Dft6ABM .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uF8Dft6ABM .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-uF8Dft6ABM .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uF8Dft6ABM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uF8Dft6ABM .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uF8Dft6ABM .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uF8Dft6ABM .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uF8Dft6ABM .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uF8Dft6ABM .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uF8Dft6ABM .navbar.navbar-short {
  min-height: 90px;
}
.cid-uF8Dft6ABM .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uF8Dft6ABM .navbar.navbar-short .navbar-brand {
  min-height: 89px;
  padding: 0;
}
.cid-uF8Dft6ABM .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-uF8Dft6ABM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uF8Dft6ABM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uF8Dft6ABM .dropdown-item.active,
.cid-uF8Dft6ABM .dropdown-item:active {
  background-color: transparent;
}
.cid-uF8Dft6ABM .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uF8Dft6ABM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uF8Dft6ABM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uF8Dft6ABM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fffcf5;
}
.cid-uF8Dft6ABM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uF8Dft6ABM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uF8Dft6ABM ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uF8Dft6ABM .navbar-buttons {
  text-align: center;
}
.cid-uF8Dft6ABM 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-uF8Dft6ABM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 13px;
  width: 22px;
  height: 2px;
  background-color: #715537;
}
.cid-uF8Dft6ABM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 17px;
  transition: all 0.2s;
}
.cid-uF8Dft6ABM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-uF8Dft6ABM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-uF8Dft6ABM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 29px;
  transition: all 0.2s;
}
.cid-uF8Dft6ABM nav.opened .hamburger span:nth-child(1) {
  top: 17px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-uF8Dft6ABM nav.opened .hamburger span:nth-child(2) {
  transform: translateY(-1px) rotate(45deg);
  transition: all 0.25s;
}
.cid-uF8Dft6ABM nav.opened .hamburger span:nth-child(3) {
  transform: translateY(-1px) rotate(-45deg);
  transition: all 0.25s;
}
.cid-uF8Dft6ABM nav.opened .hamburger span:nth-child(4) {
  top: 29px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-uF8Dft6ABM .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uF8Dft6ABM a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uF8Dft6ABM .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-uF8Dft6ABM .navbar {
    height: 70px;
  }
  .cid-uF8Dft6ABM .navbar.opened {
    height: auto;
  }
  .cid-uF8Dft6ABM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uF8Dft6ABM .container,
.cid-uF8Dft6ABM .container-fluid {
  flex-wrap: wrap;
}
.cid-uF8Dft6ABM .navbar-collapse {
  width: 75%;
  min-height: 89px;
}
.cid-uF8Dft6ABM .border-item {
  width: 100%;
  height: 1px;
  background-color: #829d86;
}
.cid-uF8Dft6ABM .mbr-section-btn .btn {
  width: 180px;
  min-width: auto;
  min-height: 55px;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-uF8Dft6ABM .navbar-brand {
    width: calc(100% - 48px) !important;
    min-height: 89px;
  }
  .cid-uF8Dft6ABM .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 1rem;
    order: 5;
  }
  .cid-uF8Dft6ABM .navbar-nav {
    width: 100%;
  }
}
.cid-uF8DftFZgI {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #fffcf5;
}
.cid-uF8DftFZgI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uF8DftFZgI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uF8DftFZgI .text-wrap {
  width: 100%;
}
.cid-uF8DftFZgI .mbr-title {
  margin-bottom: 0;
  color: #829D85;
  text-align: center;
}
.cid-uF8DftFZgI .mbr-text {
  padding-top: 16px;
  color: #353535;
}
.cid-uF8DftFZgI .list-wrap {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uF8DftFZgI .list-wrap {
    margin-top: 24px;
  }
}
.cid-uF8DftFZgI .list-box {
  width: 100%;
}
.cid-uF8DftFZgI .list {
  list-style: none;
  margin-top: 22px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #353535;
  padding-left: 0;
}
.cid-uF8DftFZgI .list-text {
  position: relative;
}
.cid-uF8DftFZgI .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-uF8Dfu4KZK {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #fffcf5;
  overflow: hidden;
}
.cid-uF8Dfu4KZK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uF8Dfu4KZK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uF8Dfu4KZK .row {
  flex-wrap: nowrap;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uF8Dfu4KZK .row {
    flex-wrap: wrap;
  }
}
.cid-uF8Dfu4KZK .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 80px 0;
}
.cid-uF8Dfu4KZK .text-wrap:before {
  content: "";
  position: absolute;
  right: -100px;
  top: 0;
  height: 100%;
  width: 100vw;
  border-radius: 0 65px 65px 0;
  background-color: #f6efe8;
  z-index: -1;
  border-radius: 65px 0 0 65px;
  right: auto;
  left: -100px;
}
@media (max-width: 1199px) {
  .cid-uF8Dfu4KZK .text-wrap:before {
    border-radius: 0 40px 40px 0;
    border-radius: 40px 0 0 40px;
  }
}
@media (max-width: 991px) {
  .cid-uF8Dfu4KZK .text-wrap:before {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0;
  }
}
@media (max-width: 991px) {
  .cid-uF8Dfu4KZK .text-wrap {
    padding: 50px 0 90px;
  }
}
@media (max-width: 767px) {
  .cid-uF8Dfu4KZK .text-wrap {
    margin-bottom: 20px;
  }
}
.cid-uF8Dfu4KZK .mbr-section-title {
  color: #353535;
}
.cid-uF8Dfu4KZK .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uF8Dfu4KZK .mbr-text {
    margin-top: 12px;
  }
}
.cid-uF8Dfu4KZK .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uF8Dfu4KZK .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-uF8Dfu4KZK .col-img {
  width: 390px;
}
@media (max-width: 1199px) {
  .cid-uF8Dfu4KZK .col-img {
    width: 330px;
  }
}
@media (max-width: 991px) {
  .cid-uF8Dfu4KZK .col-img {
    width: 250px;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-uF8Dfu4KZK .col-img {
    margin-bottom: -50px;
  }
}
.cid-uF8Dfu4KZK .img-wrap {
  position: relative;
  width: 100%;
}
.cid-uF8Dfu4KZK .img-wrap .img-box {
  position: relative;
  z-index: 3;
  width: 100%;
  border-radius: 0 65px 65px 65px;
  overflow: hidden;
  border-radius: 65px 0 65px 65px;
}
@media (max-width: 1199px) {
  .cid-uF8Dfu4KZK .img-wrap .img-box {
    border-radius: 0 40px 40px 40px;
    border-radius: 40px 0 40px 40px;
  }
}
@media (max-width: 991px) {
  .cid-uF8Dfu4KZK .img-wrap .img-box {
    transform: translateY(-50px);
    border-radius: 0 30px 30px 30px;
    border-radius: 30px 0 30px 30px;
  }
}
.cid-uF8Dfu4KZK .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-uF8Dfuo1Bq {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #829d85;
}
.cid-uF8Dfuo1Bq .mbr-text {
  color: #FFFCF5;
}
.cid-tqnAYxqier {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 90px;
}
.cid-tqnAYxqier nav.navbar {
  position: fixed;
}
.cid-tqnAYxqier .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tqnAYxqier .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tqnAYxqier .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tqnAYxqier .dropdown-item:hover,
.cid-tqnAYxqier .dropdown-item:focus {
  background: #f9c625 !important;
  color: white !important;
}
.cid-tqnAYxqier .dropdown-item:hover span {
  color: white;
}
.cid-tqnAYxqier .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tqnAYxqier .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tqnAYxqier .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tqnAYxqier .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tqnAYxqier .nav-link {
  position: relative;
}
.cid-tqnAYxqier .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tqnAYxqier .container {
    flex-wrap: nowrap;
  }
}
.cid-tqnAYxqier .iconfont-wrapper {
  color: #353535 !important;
  font-size: 18px;
  padding-right: 0;
}
.cid-tqnAYxqier .iconfont-wrapper .mbr-iconfont {
  transition: .4s all;
}
.cid-tqnAYxqier .iconfont-wrapper .mbr-iconfont:hover {
  color: #f9c625;
}
.cid-tqnAYxqier .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 66.66666667%;
  margin-right: auto;
  min-height: 89px;
}
.cid-tqnAYxqier .navbar-nav .nav-item {
  margin: 2px;
}
.cid-tqnAYxqier .navbar-nav .nav-link {
  padding: 5px 9px;
  transition: .4s all;
}
.cid-tqnAYxqier .navbar-nav .nav-link:hover {
  transform: scale(1.1);
}
.cid-tqnAYxqier .dropdown-menu,
.cid-tqnAYxqier .navbar.opened {
  background: #fffcf5 !important;
}
.cid-tqnAYxqier .nav-item:focus,
.cid-tqnAYxqier .nav-link:focus {
  outline: none;
}
.cid-tqnAYxqier .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tqnAYxqier .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tqnAYxqier .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tqnAYxqier .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tqnAYxqier .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tqnAYxqier .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tqnAYxqier .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: none !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fffcf5;
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-tqnAYxqier .navbar.opened {
  transition: all 0.3s;
}
.cid-tqnAYxqier .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tqnAYxqier .navbar .navbar-logo img {
  width: auto;
}
.cid-tqnAYxqier .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tqnAYxqier .navbar.collapsed {
  justify-content: center;
}
.cid-tqnAYxqier .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tqnAYxqier .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tqnAYxqier .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.6rem);
  }
}
.cid-tqnAYxqier .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tqnAYxqier .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tqnAYxqier .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tqnAYxqier .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tqnAYxqier .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tqnAYxqier .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tqnAYxqier .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tqnAYxqier .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tqnAYxqier .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tqnAYxqier .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tqnAYxqier .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tqnAYxqier .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tqnAYxqier .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tqnAYxqier .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tqnAYxqier .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tqnAYxqier .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tqnAYxqier .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tqnAYxqier .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tqnAYxqier .navbar.navbar-short {
  min-height: 90px;
}
.cid-tqnAYxqier .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tqnAYxqier .navbar.navbar-short .navbar-brand {
  min-height: 89px;
  padding: 0;
}
.cid-tqnAYxqier .navbar-brand {
  min-height: 89px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  width: 25%;
}
.cid-tqnAYxqier .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tqnAYxqier .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tqnAYxqier .dropdown-item.active,
.cid-tqnAYxqier .dropdown-item:active {
  background-color: transparent;
}
.cid-tqnAYxqier .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tqnAYxqier .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tqnAYxqier .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tqnAYxqier .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fffcf5;
}
.cid-tqnAYxqier .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tqnAYxqier .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tqnAYxqier ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tqnAYxqier .navbar-buttons {
  text-align: center;
}
.cid-tqnAYxqier button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  background-color: #f6efe8;
  border-radius: 50%;
}
.cid-tqnAYxqier button.navbar-toggler .hamburger span {
  position: absolute;
  right: 13px;
  width: 22px;
  height: 2px;
  background-color: #715537;
}
.cid-tqnAYxqier button.navbar-toggler .hamburger span:nth-child(1) {
  top: 17px;
  transition: all 0.2s;
}
.cid-tqnAYxqier button.navbar-toggler .hamburger span:nth-child(2) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-tqnAYxqier button.navbar-toggler .hamburger span:nth-child(3) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-tqnAYxqier button.navbar-toggler .hamburger span:nth-child(4) {
  top: 29px;
  transition: all 0.2s;
}
.cid-tqnAYxqier nav.opened .hamburger span:nth-child(1) {
  top: 17px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-tqnAYxqier nav.opened .hamburger span:nth-child(2) {
  transform: translateY(-1px) rotate(45deg);
  transition: all 0.25s;
}
.cid-tqnAYxqier nav.opened .hamburger span:nth-child(3) {
  transform: translateY(-1px) rotate(-45deg);
  transition: all 0.25s;
}
.cid-tqnAYxqier nav.opened .hamburger span:nth-child(4) {
  top: 29px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-tqnAYxqier .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tqnAYxqier a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tqnAYxqier .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tqnAYxqier .navbar {
    height: 70px;
  }
  .cid-tqnAYxqier .navbar.opened {
    height: auto;
  }
  .cid-tqnAYxqier .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tqnAYxqier .container,
.cid-tqnAYxqier .container-fluid {
  flex-wrap: wrap;
}
.cid-tqnAYxqier .navbar-collapse {
  width: 75%;
  min-height: 89px;
}
.cid-tqnAYxqier .border-item {
  width: 100%;
  height: 1px;
  background-color: #829d86;
}
.cid-tqnAYxqier .mbr-section-btn .btn {
  width: 180px;
  min-width: auto;
  min-height: 55px;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-tqnAYxqier .navbar-brand {
    width: calc(100% - 48px) !important;
    min-height: 89px;
  }
  .cid-tqnAYxqier .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 1rem;
    order: 5;
  }
  .cid-tqnAYxqier .navbar-nav {
    width: 100%;
  }
}
.cid-uFegBzBBJI {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fffcf5;
}
.cid-uFegBzBBJI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFegBzBBJI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFegBzBBJI .text-wrap {
  width: 100%;
}
.cid-uFegBzBBJI .mbr-title {
  margin-bottom: 0;
  color: #829D85;
}
.cid-uFegBzBBJI .mbr-text {
  padding-top: 16px;
  color: #353535;
}
.cid-uFegBzBBJI .list-wrap {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uFegBzBBJI .list-wrap {
    margin-top: 24px;
  }
}
.cid-uFegBzBBJI .list-box {
  width: 100%;
}
.cid-uFegBzBBJI .list {
  list-style: none;
  margin-top: 22px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #353535;
}
.cid-uFegBzBBJI .list-text {
  position: relative;
}
.cid-uFegBzBBJI .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-uFegBzBBJI .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-tqnCYjVLFo {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #829d85;
}
.cid-tqnCYjVLFo .mbr-text {
  color: #FFFCF5;
}
