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: 3.2rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 4rem;
}
.display-4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.13rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.4125rem;
}
.display-5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 500;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.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: 2.56rem;
    font-size: calc( 1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.904rem;
    font-size: calc( 1.0454999999999999rem + (1.13 - 1.0454999999999999) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0454999999999999rem + (1.13 - 1.0454999999999999) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 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: #f52709 !important;
}
.bg-success {
  background-color: #446a49 !important;
}
.bg-info {
  background-color: #d0c4b7 !important;
}
.bg-warning {
  background-color: #d5c5b5 !important;
}
.bg-danger {
  background-color: #f8231a !important;
}
.btn-primary:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #f52709;
  border: 1px solid #f52709;
  transform: rotate(-5deg);
  z-index: -1;
  transition: .35s all;
}
.btn-primary,
.btn-primary:active {
  background-color: transparent  !important;
  border-color: #f52709 !important;
  color: #080744 !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: #080744 !important;
}
.btn-primary:hover:before,
.btn-primary:focus:before,
.btn-primary.focus:before,
.btn-primary.active:before {
  background-color: #f52709 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #080744 !important;
  background-color: #a11a06 !important;
  border-color: #a11a06 !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: #d5c5b5;
  border: 1px solid #d5c5b5;
  transform: rotate(-5deg);
  z-index: -1;
  transition: .35s all;
}
.btn-warning,
.btn-warning:active {
  background-color: transparent  !important;
  border-color: #d5c5b5 !important;
  color: #685b7d !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: #685b7d !important;
}
.btn-warning:hover:before,
.btn-warning:focus:before,
.btn-warning.focus:before,
.btn-warning.active:before {
  background-color: #d5c5b5 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #685b7d !important;
  background-color: #b69a7e !important;
  border-color: #b69a7e !important;
}
.btn-danger:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #f8231a;
  border: 1px solid #f8231a;
  transform: rotate(-5deg);
  z-index: -1;
  transition: .35s all;
}
.btn-danger,
.btn-danger:active {
  background-color: transparent  !important;
  border-color: #f8231a !important;
  color: #090f57 !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: #090f57 !important;
}
.btn-danger:hover:before,
.btn-danger:focus:before,
.btn-danger.focus:before,
.btn-danger.active:before {
  background-color: #f8231a !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #090f57 !important;
  background-color: #b60d06 !important;
  border-color: #b60d06 !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 #f52709;
  transform: rotate(-5deg);
  z-index: -1;
  transition: .35s all;
}
.btn-primary-outline,
.btn-primary-outline:active {
  color: #080744;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #080744 !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #080744 !important;
  background-color: #a11a06 !important;
  border-color: #a11a06 !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 #d5c5b5;
  transform: rotate(-5deg);
  z-index: -1;
  transition: .35s all;
}
.btn-warning-outline,
.btn-warning-outline:active {
  color: #685b7d;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #685b7d !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #685b7d !important;
  background-color: #b69a7e !important;
  border-color: #b69a7e !important;
}
.btn-danger-outline:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #f8231a;
  transform: rotate(-5deg);
  z-index: -1;
  transition: .35s all;
}
.btn-danger-outline,
.btn-danger-outline:active {
  color: #090f57;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #090f57 !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #090f57 !important;
  background-color: #b60d06 !important;
  border-color: #b60d06 !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: #f52709 !important;
}
.text-secondary {
  color: #987a5a !important;
}
.text-success {
  color: #446a49 !important;
}
.text-info {
  color: #d0c4b7 !important;
}
.text-warning {
  color: #d5c5b5 !important;
}
.text-danger {
  color: #f8231a !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #353535 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #931705 !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: #b09274 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #a70c05 !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: #f52709;
}
.nav-tabs .nav-link:not(.active) {
  color: #353535;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #d0c4b7;
}
.alert-warning {
  background-color: #d5c5b5;
}
.alert-danger {
  background-color: #f8231a;
}
.mbr-gallery-filter li.active .btn {
  background-color: #f52709;
  border-color: #f52709;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #f52709;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fdd3cd;
}
.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: #fee1e0;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Outfit', sans-serif;
  font-size: 1.13rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.4125rem;
}
.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: #f52709 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Outfit', sans-serif;
  font-size: 1.13rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.4125rem;
}
blockquote {
  border-color: #f52709;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #f52709;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #f52709;
}
.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: #f52709;
  border-bottom-color: #f52709;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #f52709 !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='%23f52709' %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: #f52709 !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: #f52709;
}
.cid-tqnAYxqier .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 66.66666667%;
  margin-right: auto;
  min-height: 89px;
}
.cid-tqnAYxqier .navbar-nav .nav-item {
  margin: 2px;
}
.cid-tqnAYxqier .navbar-nav .nav-link {
  padding: 5px 9px;
  transition: .4s all;
}
.cid-tqnAYxqier .navbar-nav .nav-link:hover {
  transform: scale(1.1);
}
.cid-tqnAYxqier .dropdown-menu,
.cid-tqnAYxqier .navbar.opened {
  background: #fffcf5 !important;
}
.cid-tqnAYxqier .nav-item:focus,
.cid-tqnAYxqier .nav-link:focus {
  outline: none;
}
.cid-tqnAYxqier .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tqnAYxqier .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tqnAYxqier .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tqnAYxqier .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tqnAYxqier .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tqnAYxqier .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tqnAYxqier .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: none !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fffcf5;
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-tqnAYxqier .navbar.opened {
  transition: all 0.3s;
}
.cid-tqnAYxqier .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tqnAYxqier .navbar .navbar-logo img {
  width: auto;
}
.cid-tqnAYxqier .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tqnAYxqier .navbar.collapsed {
  justify-content: center;
}
.cid-tqnAYxqier .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tqnAYxqier .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tqnAYxqier .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tqnAYxqier .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tqnAYxqier .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tqnAYxqier .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tqnAYxqier .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tqnAYxqier .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tqnAYxqier .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tqnAYxqier .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tqnAYxqier .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tqnAYxqier .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tqnAYxqier .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tqnAYxqier .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tqnAYxqier .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tqnAYxqier .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tqnAYxqier .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tqnAYxqier .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tqnAYxqier .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tqnAYxqier .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tqnAYxqier .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tqnAYxqier .navbar.navbar-short {
  min-height: 90px;
}
.cid-tqnAYxqier .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tqnAYxqier .navbar.navbar-short .navbar-brand {
  min-height: 89px;
  padding: 0;
}
.cid-tqnAYxqier .navbar-brand {
  min-height: 89px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  width: 25%;
}
.cid-tqnAYxqier .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tqnAYxqier .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tqnAYxqier .dropdown-item.active,
.cid-tqnAYxqier .dropdown-item:active {
  background-color: transparent;
}
.cid-tqnAYxqier .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tqnAYxqier .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tqnAYxqier .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tqnAYxqier .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fffcf5;
}
.cid-tqnAYxqier .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tqnAYxqier .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tqnAYxqier ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tqnAYxqier .navbar-buttons {
  text-align: center;
}
.cid-tqnAYxqier button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  background-color: #f6efe8;
  border-radius: 50%;
}
.cid-tqnAYxqier button.navbar-toggler .hamburger span {
  position: absolute;
  right: 13px;
  width: 22px;
  height: 2px;
  background-color: #715537;
}
.cid-tqnAYxqier button.navbar-toggler .hamburger span:nth-child(1) {
  top: 17px;
  transition: all 0.2s;
}
.cid-tqnAYxqier button.navbar-toggler .hamburger span:nth-child(2) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-tqnAYxqier button.navbar-toggler .hamburger span:nth-child(3) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-tqnAYxqier button.navbar-toggler .hamburger span:nth-child(4) {
  top: 29px;
  transition: all 0.2s;
}
.cid-tqnAYxqier nav.opened .hamburger span:nth-child(1) {
  top: 17px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-tqnAYxqier nav.opened .hamburger span:nth-child(2) {
  transform: translateY(-1px) rotate(45deg);
  transition: all 0.25s;
}
.cid-tqnAYxqier nav.opened .hamburger span:nth-child(3) {
  transform: translateY(-1px) rotate(-45deg);
  transition: all 0.25s;
}
.cid-tqnAYxqier nav.opened .hamburger span:nth-child(4) {
  top: 29px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-tqnAYxqier .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tqnAYxqier a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tqnAYxqier .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tqnAYxqier .navbar {
    height: 70px;
  }
  .cid-tqnAYxqier .navbar.opened {
    height: auto;
  }
  .cid-tqnAYxqier .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tqnAYxqier .container,
.cid-tqnAYxqier .container-fluid {
  flex-wrap: wrap;
}
.cid-tqnAYxqier .navbar-collapse {
  width: 75%;
  min-height: 89px;
}
.cid-tqnAYxqier .border-item {
  width: 100%;
  height: 1px;
  background-color: #829d86;
}
.cid-tqnAYxqier .mbr-section-btn .btn {
  width: 180px;
  min-width: auto;
  min-height: 55px;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-tqnAYxqier .navbar-brand {
    width: calc(100% - 48px) !important;
    min-height: 89px;
  }
  .cid-tqnAYxqier .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 1rem;
    order: 5;
  }
  .cid-tqnAYxqier .navbar-nav {
    width: 100%;
  }
}
.cid-tqnAYKepw4 {
  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: #000000;
}
.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-tqnAYKepw4 .mbr-text,
.cid-tqnAYKepw4 .mbr-section-btn {
  color: #000000;
}
.cid-tqnD4ciHHe {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fffcf5;
}
.cid-tqnD4ciHHe .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqnD4ciHHe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqnD4ciHHe .text-wrap {
  width: 100%;
}
.cid-tqnD4ciHHe .mbr-section-title {
  color: #000000;
  margin-bottom: 70px;
}
.cid-tqnD4ciHHe .mbr-text {
  color: #353535;
  margin-top: 50px;
}
@media (max-width: 767px) {
  .cid-tqnD4ciHHe .mbr-text {
    margin-top: 30px;
  }
}
.cid-tqnD4ciHHe .item-row {
  row-gap: 50px;
}
@media (max-width: 1199px) {
  .cid-tqnD4ciHHe .item-row {
    row-gap: 30px;
  }
}
@media (max-width: 767px) {
  .cid-tqnD4ciHHe .item-row {
    row-gap: 22px;
  }
}
@media (max-width: 991px) {
  .cid-tqnD4ciHHe .item-row {
    justify-content: flex-start;
  }
}
.cid-tqnD4ciHHe .item-row .item {
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-tqnD4ciHHe .item-row .item {
    justify-content: flex-start;
  }
}
.cid-tqnD4ciHHe .item-row .item:nth-child(1) .item-wrap {
  background-color: #d0c4b7;
  border-radius: 20px 20px 20px 0;
}
@media (max-width: 767px) {
  .cid-tqnD4ciHHe .item-row .item:nth-child(2) {
    justify-content: flex-end;
  }
}
.cid-tqnD4ciHHe .item-row .item:nth-child(2) .item-wrap {
  background-color: #829d85;
  border-radius: 0 20px 20px 20px;
}
.cid-tqnD4ciHHe .item-row .item:nth-child(3) .item-wrap {
  background-color: #829d85;
  border-radius: 0 20px 20px 20px;
}
@media (max-width: 767px) {
  .cid-tqnD4ciHHe .item-row .item:nth-child(4) {
    justify-content: flex-end;
  }
}
.cid-tqnD4ciHHe .item-row .item:nth-child(4) .item-wrap {
  background-color: #f6efe8;
  border-radius: 20px 20px 0 20px;
}
.cid-tqnD4ciHHe .item-row .item:nth-child(5) .item-wrap {
  background-color: #f6efe8;
  border-radius: 20px 20px 0 20px;
}
@media (max-width: 991px) {
  .cid-tqnD4ciHHe .item-row .item:nth-child(6) {
    order: 7;
  }
}
@media (max-width: 767px) {
  .cid-tqnD4ciHHe .item-row .item:nth-child(6) {
    order: 6;
    justify-content: center;
  }
}
.cid-tqnD4ciHHe .item-row .item:nth-child(6) .item-wrap {
  background-color: #a9bbab;
  border-radius: 20px 20px 0 20px;
}
.cid-tqnD4ciHHe .item-row .item:nth-child(7) {
  margin-right: auto;
}
@media (max-width: 991px) {
  .cid-tqnD4ciHHe .item-row .item:nth-child(7) {
    order: 6;
  }
}
@media (max-width: 767px) {
  .cid-tqnD4ciHHe .item-row .item:nth-child(7) {
    order: 7;
    justify-content: center;
  }
}
.cid-tqnD4ciHHe .item-row .item:nth-child(7) .item-wrap {
  background-color: #d0c4b7;
  border-radius: 20px 20px 20px 0;
}
.cid-tqnD4ciHHe .item-row .item-wrap {
  padding: 14px 26px;
  opacity: 0.95;
  max-width: 100%;
  width: fit-content;
}
.cid-tqnD4ciHHe .item-text {
  color: #000000;
  text-align: center;
}
.cid-tqnD4ciHHe .mbr-text,
.cid-tqnD4ciHHe .mbr-section-btn {
  text-align: center;
}
.cid-uqGnLcJrmf {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fffcf5;
  margin-bottom: 2px;
}
.cid-uqGnLcJrmf .mbr-section-subtitle {
  margin-bottom: 15px;
  color: #000000;
  text-align: center;
}
.cid-uqGnLcJrmf .mbr-section-title {
  color: #000000;
  text-align: center;
  margin-bottom: 15px;
}
.cid-uqGnLcJrmf .mbr-text {
  text-align: center;
  color: #333333;
}
.cid-uqGnLcJrmf .container-fluid {
  outline: 2px solid #000 !important;
}
.cid-uqGnLcJrmf .row {
  padding-top: 76px;
  padding-bottom: 76px;
  justify-content: center;
  display: flex;
}
.cid-tqnCncJetc {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fffcf5;
}
.cid-tqnCncJetc .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqnCncJetc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqnCncJetc .text-wrap {
  width: 100%;
}
.cid-tqnCncJetc .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 767px) {
  .cid-tqnCncJetc .mbr-section-head {
    margin-bottom: 60px;
  }
}
.cid-tqnCncJetc .mbr-section-title {
  color: #000000;
  margin-bottom: 0;
}
.cid-tqnCncJetc .mbr-text {
  color: #353535;
  margin-top: 20px;
}
.cid-tqnCncJetc .item-row {
  row-gap: 40px;
  margin-left: -20px;
  margin-right: -20px;
}
.cid-tqnCncJetc .item-row > [class*="col"] {
  padding-left: 20px;
  padding-right: 20px;
}
.cid-tqnCncJetc .item-wrapper {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  height: 100%;
  background-color: #fffcf5;
  overflow: hidden;
  border: 1px solid rgba(130, 157, 133, 0.8);
  border-radius: 45px;
}
.cid-tqnCncJetc .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.cid-tqnCncJetc .item-img img {
  aspect-ratio: 0.83333333;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-tqnCncJetc .item-title-wrap {
  padding: 45px 26px;
  border-radius: 0 0 45px 45px;
  border: 1px solid rgba(130, 157, 133, 0.8);
  background-color: rgba(169, 187, 171, 0.8);
}
.cid-tqnCncJetc .item-title {
  width: 100%;
  margin: 0;
  color: #987A5A;
}
.cid-tqnCncJetc .item-text-wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  flex-grow: 1;
  padding: 26px;
}
.cid-tqnCncJetc .item-text {
  color: #353535;
  margin: 0;
}
.cid-tqnCncJetc .mbr-section-btn {
  margin-top: 10px;
}
.cid-tqnCncJetc .mbr-section-btn .btn {
  width: 180px;
  min-width: auto;
  min-height: 55px;
  max-width: 100%;
}
.cid-uqGobO3RR7 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fffcf5;
  margin-bottom: 2px;
}
.cid-uqGobO3RR7 .mbr-section-subtitle {
  margin-bottom: 15px;
  color: #000000;
  text-align: center;
}
.cid-uqGobO3RR7 .mbr-section-title {
  color: #000000;
  text-align: center;
  margin-bottom: 15px;
}
.cid-uqGobO3RR7 .mbr-text {
  text-align: center;
  color: #333333;
}
.cid-uqGobO3RR7 .container-fluid {
  outline: 2px solid #000 !important;
}
.cid-uqGobO3RR7 .row {
  padding-top: 76px;
  padding-bottom: 76px;
  justify-content: center;
  display: flex;
}
.cid-tqnElwBPRR {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fffcf5;
  overflow: hidden;
}
.cid-tqnElwBPRR .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqnElwBPRR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqnElwBPRR .row {
  flex-wrap: nowrap;
  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: #000000;
  text-align: center;
}
.cid-tqnElwBPRR .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tqnElwBPRR .mbr-text {
    margin-top: 12px;
  }
}
.cid-tqnElwBPRR .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tqnElwBPRR .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-tqnElwBPRR .col-img {
  width: 390px;
}
@media (max-width: 1199px) {
  .cid-tqnElwBPRR .col-img {
    width: 330px;
  }
}
@media (max-width: 991px) {
  .cid-tqnElwBPRR .col-img {
    width: 250px;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-tqnElwBPRR .col-img {
    margin-bottom: -50px;
  }
}
.cid-tqnElwBPRR .img-wrap {
  position: relative;
  width: 100%;
}
.cid-tqnElwBPRR .img-wrap .img-box {
  position: relative;
  z-index: 3;
  width: 100%;
  border-radius: 0 65px 65px 65px;
  overflow: hidden;
  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: center;
  color: #000000;
}
.cid-uqGnNsEhCK {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fffcf5;
  margin-bottom: 2px;
}
.cid-uqGnNsEhCK .mbr-section-subtitle {
  margin-bottom: 15px;
  color: #000000;
  text-align: center;
}
.cid-uqGnNsEhCK .mbr-section-title {
  color: #000000;
  text-align: center;
  margin-bottom: 15px;
}
.cid-uqGnNsEhCK .mbr-text {
  text-align: center;
  color: #333333;
}
.cid-uqGnNsEhCK .container-fluid {
  outline: 2px solid #000 !important;
}
.cid-uqGnNsEhCK .row {
  padding-top: 76px;
  padding-bottom: 76px;
  justify-content: center;
  display: flex;
}
.cid-tqnEH9kCEk {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fffcf5;
  overflow: hidden;
}
.cid-tqnEH9kCEk .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqnEH9kCEk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqnEH9kCEk .row {
  flex-wrap: nowrap;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-tqnEH9kCEk .row {
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  .cid-tqnEH9kCEk .col-text {
    order: 2;
  }
}
.cid-tqnEH9kCEk .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tqnEH9kCEk .text-wrap {
    margin-top: 30px;
  }
}
.cid-tqnEH9kCEk .mbr-section-title {
  color: #000000;
}
.cid-tqnEH9kCEk .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tqnEH9kCEk .mbr-text {
    margin-top: 12px;
  }
}
.cid-tqnEH9kCEk .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tqnEH9kCEk .mbr-section-btn {
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .cid-tqnEH9kCEk .col-img {
    order: 1;
  }
}
.cid-tqnEH9kCEk .img-wrap {
  position: relative;
  width: 100%;
}
.cid-tqnEH9kCEk .img-wrap .img-box {
  position: relative;
  z-index: 3;
  width: 100%;
  border-radius: 65px 65px 65px 0;
  overflow: hidden;
  border-radius: 65px 65px 0 65px;
}
@media (max-width: 1199px) {
  .cid-tqnEH9kCEk .img-wrap .img-box {
    border-radius: 55px 55px 55px 0;
    border-radius: 55px 55px 0 55px;
  }
}
@media (max-width: 991px) {
  .cid-tqnEH9kCEk .img-wrap .img-box {
    border-radius: 65px 65px 65px 0;
    border-radius: 65px 65px 0 65px;
  }
}
@media (max-width: 767px) {
  .cid-tqnEH9kCEk .img-wrap .img-box {
    border-radius: 55px 55px 55px 0;
    border-radius: 55px  55px 0 55px;
  }
}
@media (max-width: 575px) {
  .cid-tqnEH9kCEk .img-wrap .img-box {
    border-radius: 45px 45px 45px 0;
    border-radius: 45px 45px 0 45px;
  }
}
.cid-tqnEH9kCEk .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-tqnEH9kCEk .mbr-text,
.cid-tqnEH9kCEk .mbr-section-btn {
  color: #000000;
}
.cid-uqGnHMnf3O {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fffcf5;
  margin-bottom: 2px;
}
.cid-uqGnHMnf3O .mbr-section-subtitle {
  margin-bottom: 15px;
  color: #000000;
  text-align: center;
}
.cid-uqGnHMnf3O .mbr-section-title {
  color: #000000;
  text-align: center;
  margin-bottom: 15px;
}
.cid-uqGnHMnf3O .mbr-text {
  text-align: center;
  color: #333333;
}
.cid-uqGnHMnf3O .container-fluid {
  outline: 2px solid #000 !important;
}
.cid-uqGnHMnf3O .row {
  padding-top: 76px;
  padding-bottom: 76px;
  justify-content: center;
  display: flex;
}
.cid-tqnDTPsDUW {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background4.jpg");
}
.cid-tqnDTPsDUW .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqnDTPsDUW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqnDTPsDUW .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 991px) {
  .cid-tqnDTPsDUW .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tqnDTPsDUW .mbr-section-head {
    margin-bottom: 50px;
  }
}
.cid-tqnDTPsDUW .mbr-section-title {
  color: #000000;
  margin-bottom: 0;
}
.cid-tqnDTPsDUW .mbr-section-subtitle {
  color: #353535;
  margin-top: 20px;
}
@media (min-width: 992px) {
  .cid-tqnDTPsDUW .carousel img {
    height: 500px;
    object-fit: cover;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tqnDTPsDUW .carousel img {
    height: 330px;
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-tqnDTPsDUW .carousel img {
    height: 280px;
    object-fit: cover;
  }
  .cid-tqnDTPsDUW .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tqnDTPsDUW .carousel {
  display: flex;
}
.cid-tqnDTPsDUW .carousel-inner {
  display: flex;
}
.cid-tqnDTPsDUW .carousel-inner .carousel-item:nth-child(1n) img {
  border-radius: 0 45px 45px 45px;
}
.cid-tqnDTPsDUW .carousel-inner .carousel-item:nth-child(2n) img {
  border-radius: 45px;
}
.cid-tqnDTPsDUW .carousel-inner .carousel-item:nth-child(3n) img {
  border-radius: 45px 0 45px 45px;
}
@media (max-width: 767px) {
  .cid-tqnDTPsDUW .carousel-inner {
    margin-bottom: 40px;
  }
}
.cid-tqnDTPsDUW .item-wrapper {
  width: 100%;
  padding: 0 50px;
}
.cid-tqnDTPsDUW .item-wrapper img {
  width: 100% !important;
}
@media (max-width: 767px) {
  .cid-tqnDTPsDUW .item-wrapper {
    padding: 0;
  }
}
.cid-tqnDTPsDUW .carousel-caption {
  position: relative;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  max-width: 560px;
  margin: 0 auto;
  z-index: 101;
}
.cid-tqnDTPsDUW .caption-title {
  color: #353535;
}
.cid-tqnDTPsDUW .caption-text {
  color: #000000;
}
.cid-tqnDTPsDUW .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tqnDTPsDUW .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tqnDTPsDUW .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tqnDTPsDUW .carousel-control {
  top: calc(5 * 50px);
  width: 40px;
  height: 40px;
  margin-top: -1.5rem;
  font-size: 22px;
  color: #829d85;
  background-color: #f6efe8;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  opacity: 0.9;
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tqnDTPsDUW .carousel-control {
    top: calc(5 * 33px);
  }
}
@media (max-width: 767px) {
  .cid-tqnDTPsDUW .carousel-control {
    top: calc(100% - 20px);
  }
}
.cid-tqnDTPsDUW .carousel-control:hover {
  color: #987a5a;
  background-color: #f1dbda;
  opacity: 0.9;
}
.cid-tqnDTPsDUW .carousel-control.carousel-control-prev {
  left: 0;
  margin-right: 10px;
}
@media (max-width: 767px) {
  .cid-tqnDTPsDUW .carousel-control.carousel-control-prev {
    margin-right: 0;
    left: calc(50% - 50px);
  }
}
.cid-tqnDTPsDUW .carousel-control.carousel-control-next {
  right: 0;
  margin-left: 10px;
}
@media (max-width: 767px) {
  .cid-tqnDTPsDUW .carousel-control.carousel-control-next {
    margin-left: 0;
    right: calc(50% - 50px);
  }
}
.cid-tqnDTPsDUW .carousel-indicators {
  position: absolute;
  top: calc(5 * 100px - 30px);
  bottom: auto;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto !important;
  flex-wrap: wrap;
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tqnDTPsDUW .carousel-indicators {
    top: calc(5 * 66px - 30px);
  }
}
@media (max-width: 767px) {
  .cid-tqnDTPsDUW .carousel-indicators {
    top: calc(5 * 56px - 30px);
  }
}
.cid-tqnDTPsDUW .carousel-indicators li {
  max-width: 5px;
  height: 5px;
  width: 5px;
  max-height: 5px;
  margin: 7px;
  background-color: rgba(0, 0, 0, 0.3);
  border: none;
  border-radius: 50%;
  opacity: 1;
  transition: all 0.3s;
}
.cid-tqnDTPsDUW .carousel-indicators li.active,
.cid-tqnDTPsDUW .carousel-indicators li:hover {
  opacity: 1;
  background-color: #f52709;
}
.cid-tqnDTPsDUW .carousel-indicators li::after,
.cid-tqnDTPsDUW .carousel-indicators li::before {
  content: none;
}
.cid-tqnDTPsDUW .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
.cid-tqnDTPsDUW .item-menu-overlay {
  z-index: 100 !important;
  opacity: 0 !important;
}
.cid-uqGnH1FIm0 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fffcf5;
  margin-bottom: 2px;
}
.cid-uqGnH1FIm0 .mbr-section-subtitle {
  margin-bottom: 15px;
  color: #000000;
  text-align: center;
}
.cid-uqGnH1FIm0 .mbr-section-title {
  color: #000000;
  text-align: center;
  margin-bottom: 15px;
}
.cid-uqGnH1FIm0 .mbr-text {
  text-align: center;
  color: #333333;
}
.cid-uqGnH1FIm0 .container-fluid {
  outline: 2px solid #000 !important;
}
.cid-uqGnH1FIm0 .row {
  padding-top: 76px;
  padding-bottom: 76px;
  justify-content: center;
  display: flex;
}
.cid-tqnCYOhjI6 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  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: #000000;
  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: #000000;
}
.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-uqGsyt4s7Z {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fffcf5;
  margin-bottom: 2px;
}
.cid-uqGsyt4s7Z .mbr-section-subtitle {
  margin-bottom: 15px;
  color: #000000;
  text-align: center;
}
.cid-uqGsyt4s7Z .mbr-section-title {
  color: #000000;
  text-align: center;
  margin-bottom: 15px;
}
.cid-uqGsyt4s7Z .mbr-text {
  text-align: center;
  color: #333333;
}
.cid-uqGsyt4s7Z .container-fluid {
  outline: 2px solid #000 !important;
}
.cid-uqGsyt4s7Z .row {
  padding-top: 76px;
  padding-bottom: 76px;
  justify-content: center;
  display: flex;
}
.cid-uqGsOfINih {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uqGsOfINih .google-map {
  height: 30rem;
  position: relative;
}
.cid-uqGsOfINih .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uqGsOfINih .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uqGsOfINih .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uqGsOfINih .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uqGsOfINih .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqGsOfINih .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqGk35UKYu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fffcf5;
}
.cid-uqGk35UKYu .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uqGk35UKYu p {
  line-height: 2;
}
.cid-uqGk35UKYu .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0rem;
  height: 2rem;
  width: 2rem;
}
.cid-uqGk35UKYu .map {
  text-decoration: underline;
  height: fit-content;
}
@media (max-width: 767px) {
  .cid-uqGk35UKYu .row {
    text-align: center;
  }
  .cid-uqGk35UKYu .social-row {
    justify-content: center;
  }
}
.cid-uqGk35UKYu .list {
  list-style: none;
  padding-left: 0;
  color: #5b6c8f;
}
@media (max-width: 991px) {
  .cid-uqGk35UKYu .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uqGk35UKYu .list {
    margin-bottom: 0rem;
  }
}
.cid-uqGk35UKYu .mbr-iconfont {
  color: #5b6c8f;
}
.cid-uqGk35UKYu .mbr-section-subtitle {
  color: #000000;
}
.cid-uqGk35UKYu .phone {
  color: #103178;
}
.cid-uqGk35UKYu .mbr-text {
  color: #000000;
}
.cid-uqGk35UKYu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqGk35UKYu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqGk35UKYu H5 {
  color: #000000;
}
.cid-uqGu9mNBGl {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 90px;
}
.cid-uqGu9mNBGl nav.navbar {
  position: fixed;
}
.cid-uqGu9mNBGl .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-uqGu9mNBGl .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uqGu9mNBGl .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uqGu9mNBGl .dropdown-item:hover,
.cid-uqGu9mNBGl .dropdown-item:focus {
  background: #f52709 !important;
  color: white !important;
}
.cid-uqGu9mNBGl .dropdown-item:hover span {
  color: white;
}
.cid-uqGu9mNBGl .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uqGu9mNBGl .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uqGu9mNBGl .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uqGu9mNBGl .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uqGu9mNBGl .nav-link {
  position: relative;
}
.cid-uqGu9mNBGl .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uqGu9mNBGl .container {
    flex-wrap: nowrap;
  }
}
.cid-uqGu9mNBGl .iconfont-wrapper {
  color: #353535 !important;
  font-size: 18px;
  padding-right: 0;
}
.cid-uqGu9mNBGl .iconfont-wrapper .mbr-iconfont {
  transition: .4s all;
}
.cid-uqGu9mNBGl .iconfont-wrapper .mbr-iconfont:hover {
  color: #f52709;
}
.cid-uqGu9mNBGl .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 66.66666667%;
  margin-right: auto;
  min-height: 89px;
}
.cid-uqGu9mNBGl .navbar-nav .nav-item {
  margin: 2px;
}
.cid-uqGu9mNBGl .navbar-nav .nav-link {
  padding: 5px 9px;
  transition: .4s all;
}
.cid-uqGu9mNBGl .navbar-nav .nav-link:hover {
  transform: scale(1.1);
}
.cid-uqGu9mNBGl .dropdown-menu,
.cid-uqGu9mNBGl .navbar.opened {
  background: #fffcf5 !important;
}
.cid-uqGu9mNBGl .nav-item:focus,
.cid-uqGu9mNBGl .nav-link:focus {
  outline: none;
}
.cid-uqGu9mNBGl .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uqGu9mNBGl .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uqGu9mNBGl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uqGu9mNBGl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uqGu9mNBGl .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uqGu9mNBGl .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uqGu9mNBGl .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-uqGu9mNBGl .navbar.opened {
  transition: all 0.3s;
}
.cid-uqGu9mNBGl .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uqGu9mNBGl .navbar .navbar-logo img {
  width: auto;
}
.cid-uqGu9mNBGl .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uqGu9mNBGl .navbar.collapsed {
  justify-content: center;
}
.cid-uqGu9mNBGl .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uqGu9mNBGl .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uqGu9mNBGl .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uqGu9mNBGl .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uqGu9mNBGl .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uqGu9mNBGl .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-uqGu9mNBGl .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uqGu9mNBGl .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uqGu9mNBGl .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uqGu9mNBGl .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uqGu9mNBGl .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uqGu9mNBGl .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uqGu9mNBGl .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uqGu9mNBGl .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-uqGu9mNBGl .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uqGu9mNBGl .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uqGu9mNBGl .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uqGu9mNBGl .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uqGu9mNBGl .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uqGu9mNBGl .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uqGu9mNBGl .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uqGu9mNBGl .navbar.navbar-short {
  min-height: 90px;
}
.cid-uqGu9mNBGl .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uqGu9mNBGl .navbar.navbar-short .navbar-brand {
  min-height: 89px;
  padding: 0;
}
.cid-uqGu9mNBGl .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-uqGu9mNBGl .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uqGu9mNBGl .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uqGu9mNBGl .dropdown-item.active,
.cid-uqGu9mNBGl .dropdown-item:active {
  background-color: transparent;
}
.cid-uqGu9mNBGl .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uqGu9mNBGl .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uqGu9mNBGl .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uqGu9mNBGl .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fffcf5;
}
.cid-uqGu9mNBGl .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uqGu9mNBGl .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uqGu9mNBGl ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uqGu9mNBGl .navbar-buttons {
  text-align: center;
}
.cid-uqGu9mNBGl 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-uqGu9mNBGl button.navbar-toggler .hamburger span {
  position: absolute;
  right: 13px;
  width: 22px;
  height: 2px;
  background-color: #715537;
}
.cid-uqGu9mNBGl button.navbar-toggler .hamburger span:nth-child(1) {
  top: 17px;
  transition: all 0.2s;
}
.cid-uqGu9mNBGl button.navbar-toggler .hamburger span:nth-child(2) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-uqGu9mNBGl button.navbar-toggler .hamburger span:nth-child(3) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-uqGu9mNBGl button.navbar-toggler .hamburger span:nth-child(4) {
  top: 29px;
  transition: all 0.2s;
}
.cid-uqGu9mNBGl nav.opened .hamburger span:nth-child(1) {
  top: 17px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-uqGu9mNBGl nav.opened .hamburger span:nth-child(2) {
  transform: translateY(-1px) rotate(45deg);
  transition: all 0.25s;
}
.cid-uqGu9mNBGl nav.opened .hamburger span:nth-child(3) {
  transform: translateY(-1px) rotate(-45deg);
  transition: all 0.25s;
}
.cid-uqGu9mNBGl nav.opened .hamburger span:nth-child(4) {
  top: 29px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-uqGu9mNBGl .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uqGu9mNBGl a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uqGu9mNBGl .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-uqGu9mNBGl .navbar {
    height: 70px;
  }
  .cid-uqGu9mNBGl .navbar.opened {
    height: auto;
  }
  .cid-uqGu9mNBGl .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uqGu9mNBGl .container,
.cid-uqGu9mNBGl .container-fluid {
  flex-wrap: wrap;
}
.cid-uqGu9mNBGl .navbar-collapse {
  width: 75%;
  min-height: 89px;
}
.cid-uqGu9mNBGl .border-item {
  width: 100%;
  height: 1px;
  background-color: #829d86;
}
.cid-uqGu9mNBGl .mbr-section-btn .btn {
  width: 180px;
  min-width: auto;
  min-height: 55px;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-uqGu9mNBGl .navbar-brand {
    width: calc(100% - 48px) !important;
    min-height: 89px;
  }
  .cid-uqGu9mNBGl .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 1rem;
    order: 5;
  }
  .cid-uqGu9mNBGl .navbar-nav {
    width: 100%;
  }
}
.cid-uqGu9otbNz {
  background-color: #fffcf5;
  overflow: hidden;
}
.cid-uqGu9otbNz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqGu9otbNz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqGu9otbNz .row {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uqGu9otbNz .row {
    flex-wrap: wrap;
  }
}
.cid-uqGu9otbNz .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uqGu9otbNz .text-wrap {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .cid-uqGu9otbNz .text-wrap {
    margin-bottom: 20px;
  }
}
.cid-uqGu9otbNz .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #a9bbab;
  transform: translateY(40%);
}
.cid-uqGu9otbNz .mbr-section-title {
  color: #000000;
}
.cid-uqGu9otbNz .mbr-section-title a {
  pointer-events: none !important;
  font-style: italic !important;
  font-weight: bold !important;
}
.cid-uqGu9otbNz .mbr-section-subtitle {
  margin-top: 30px;
  color: #353535;
}
@media (max-width: 767px) {
  .cid-uqGu9otbNz .mbr-section-subtitle {
    margin-top: 12px;
  }
}
.cid-uqGu9otbNz .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uqGu9otbNz .mbr-text {
    margin-top: 12px;
  }
}
.cid-uqGu9otbNz .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uqGu9otbNz .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-uqGu9otbNz .col-img {
  width: 430px;
}
@media (max-width: 1199px) {
  .cid-uqGu9otbNz .col-img {
    width: 350px;
  }
}
.cid-uqGu9otbNz .img-wrap {
  position: relative;
  width: 100%;
}
.cid-uqGu9otbNz .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-uqGu9otbNz .img-wrap .img-box {
    border-top-left-radius: 55px;
    border-top-right-radius: 55px;
    border-bottom-right-radius: 55px;
  }
}
.cid-uqGu9otbNz .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-uqGu9otbNz .img-wrap .frame-box {
  position: absolute;
  height: 240px;
}
.cid-uqGu9otbNz .img-wrap .frame-box svg {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
}
.cid-uqGu9otbNz .img-wrap .frame-box-1 {
  bottom: -20%;
  left: -14%;
  width: 85%;
  transform: rotate(10deg);
}
.cid-uqGu9otbNz .img-wrap .frame-box-2 {
  bottom: -18%;
  right: -14%;
  width: 84%;
  transform: rotate(0deg);
}
@media (max-width: 991px) {
  .cid-uqGu9otbNz .img-wrap .frame-box-2 {
    bottom: auto;
    top: -15%;
  }
}
.cid-uqGu9otbNz .mbr-text,
.cid-uqGu9otbNz .mbr-section-btn {
  color: #000000;
}
.cid-uqGu9qJWlf {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fffcf5;
  margin-bottom: 2px;
}
.cid-uqGu9qJWlf .mbr-section-subtitle {
  margin-bottom: 15px;
  color: #000000;
  text-align: center;
}
.cid-uqGu9qJWlf .mbr-section-title {
  color: #000000;
  text-align: center;
  margin-bottom: 15px;
}
.cid-uqGu9qJWlf .mbr-text {
  text-align: center;
  color: #333333;
}
.cid-uqGu9qJWlf .container-fluid {
  outline: 2px solid #000 !important;
}
.cid-uqGu9qJWlf .row {
  padding-top: 76px;
  padding-bottom: 76px;
  justify-content: center;
  display: flex;
}
.cid-uqGu9Ky29r {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uqGu9Ky29r .google-map {
  height: 30rem;
  position: relative;
}
.cid-uqGu9Ky29r .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uqGu9Ky29r .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uqGu9Ky29r .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uqGu9Ky29r .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uqGu9Ky29r .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqGu9Ky29r .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqGu9MBPWo {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fffcf5;
}
.cid-uqGu9MBPWo .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uqGu9MBPWo p {
  line-height: 2;
}
.cid-uqGu9MBPWo .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0rem;
  height: 2rem;
  width: 2rem;
}
.cid-uqGu9MBPWo .map {
  text-decoration: underline;
  height: fit-content;
}
@media (max-width: 767px) {
  .cid-uqGu9MBPWo .row {
    text-align: center;
  }
  .cid-uqGu9MBPWo .social-row {
    justify-content: center;
  }
}
.cid-uqGu9MBPWo .list {
  list-style: none;
  padding-left: 0;
  color: #5b6c8f;
}
@media (max-width: 991px) {
  .cid-uqGu9MBPWo .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uqGu9MBPWo .list {
    margin-bottom: 0rem;
  }
}
.cid-uqGu9MBPWo .mbr-iconfont {
  color: #5b6c8f;
}
.cid-uqGu9MBPWo .mbr-section-subtitle {
  color: #000000;
}
.cid-uqGu9MBPWo .phone {
  color: #103178;
}
.cid-uqGu9MBPWo .mbr-text {
  color: #000000;
}
.cid-uqGu9MBPWo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqGu9MBPWo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqGu9MBPWo H5 {
  color: #000000;
}
.cid-uqGuD9mPmb {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 90px;
}
.cid-uqGuD9mPmb nav.navbar {
  position: fixed;
}
.cid-uqGuD9mPmb .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-uqGuD9mPmb .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uqGuD9mPmb .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uqGuD9mPmb .dropdown-item:hover,
.cid-uqGuD9mPmb .dropdown-item:focus {
  background: #f52709 !important;
  color: white !important;
}
.cid-uqGuD9mPmb .dropdown-item:hover span {
  color: white;
}
.cid-uqGuD9mPmb .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uqGuD9mPmb .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uqGuD9mPmb .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uqGuD9mPmb .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uqGuD9mPmb .nav-link {
  position: relative;
}
.cid-uqGuD9mPmb .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uqGuD9mPmb .container {
    flex-wrap: nowrap;
  }
}
.cid-uqGuD9mPmb .iconfont-wrapper {
  color: #353535 !important;
  font-size: 18px;
  padding-right: 0;
}
.cid-uqGuD9mPmb .iconfont-wrapper .mbr-iconfont {
  transition: .4s all;
}
.cid-uqGuD9mPmb .iconfont-wrapper .mbr-iconfont:hover {
  color: #f52709;
}
.cid-uqGuD9mPmb .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 66.66666667%;
  margin-right: auto;
  min-height: 89px;
}
.cid-uqGuD9mPmb .navbar-nav .nav-item {
  margin: 2px;
}
.cid-uqGuD9mPmb .navbar-nav .nav-link {
  padding: 5px 9px;
  transition: .4s all;
}
.cid-uqGuD9mPmb .navbar-nav .nav-link:hover {
  transform: scale(1.1);
}
.cid-uqGuD9mPmb .dropdown-menu,
.cid-uqGuD9mPmb .navbar.opened {
  background: #fffcf5 !important;
}
.cid-uqGuD9mPmb .nav-item:focus,
.cid-uqGuD9mPmb .nav-link:focus {
  outline: none;
}
.cid-uqGuD9mPmb .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uqGuD9mPmb .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uqGuD9mPmb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uqGuD9mPmb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uqGuD9mPmb .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uqGuD9mPmb .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uqGuD9mPmb .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-uqGuD9mPmb .navbar.opened {
  transition: all 0.3s;
}
.cid-uqGuD9mPmb .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uqGuD9mPmb .navbar .navbar-logo img {
  width: auto;
}
.cid-uqGuD9mPmb .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uqGuD9mPmb .navbar.collapsed {
  justify-content: center;
}
.cid-uqGuD9mPmb .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uqGuD9mPmb .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uqGuD9mPmb .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uqGuD9mPmb .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uqGuD9mPmb .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uqGuD9mPmb .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-uqGuD9mPmb .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uqGuD9mPmb .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uqGuD9mPmb .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uqGuD9mPmb .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uqGuD9mPmb .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uqGuD9mPmb .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uqGuD9mPmb .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uqGuD9mPmb .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-uqGuD9mPmb .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uqGuD9mPmb .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uqGuD9mPmb .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uqGuD9mPmb .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uqGuD9mPmb .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uqGuD9mPmb .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uqGuD9mPmb .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uqGuD9mPmb .navbar.navbar-short {
  min-height: 90px;
}
.cid-uqGuD9mPmb .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uqGuD9mPmb .navbar.navbar-short .navbar-brand {
  min-height: 89px;
  padding: 0;
}
.cid-uqGuD9mPmb .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-uqGuD9mPmb .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uqGuD9mPmb .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uqGuD9mPmb .dropdown-item.active,
.cid-uqGuD9mPmb .dropdown-item:active {
  background-color: transparent;
}
.cid-uqGuD9mPmb .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uqGuD9mPmb .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uqGuD9mPmb .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uqGuD9mPmb .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fffcf5;
}
.cid-uqGuD9mPmb .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uqGuD9mPmb .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uqGuD9mPmb ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uqGuD9mPmb .navbar-buttons {
  text-align: center;
}
.cid-uqGuD9mPmb 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-uqGuD9mPmb button.navbar-toggler .hamburger span {
  position: absolute;
  right: 13px;
  width: 22px;
  height: 2px;
  background-color: #715537;
}
.cid-uqGuD9mPmb button.navbar-toggler .hamburger span:nth-child(1) {
  top: 17px;
  transition: all 0.2s;
}
.cid-uqGuD9mPmb button.navbar-toggler .hamburger span:nth-child(2) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-uqGuD9mPmb button.navbar-toggler .hamburger span:nth-child(3) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-uqGuD9mPmb button.navbar-toggler .hamburger span:nth-child(4) {
  top: 29px;
  transition: all 0.2s;
}
.cid-uqGuD9mPmb nav.opened .hamburger span:nth-child(1) {
  top: 17px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-uqGuD9mPmb nav.opened .hamburger span:nth-child(2) {
  transform: translateY(-1px) rotate(45deg);
  transition: all 0.25s;
}
.cid-uqGuD9mPmb nav.opened .hamburger span:nth-child(3) {
  transform: translateY(-1px) rotate(-45deg);
  transition: all 0.25s;
}
.cid-uqGuD9mPmb nav.opened .hamburger span:nth-child(4) {
  top: 29px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-uqGuD9mPmb .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uqGuD9mPmb a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uqGuD9mPmb .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-uqGuD9mPmb .navbar {
    height: 70px;
  }
  .cid-uqGuD9mPmb .navbar.opened {
    height: auto;
  }
  .cid-uqGuD9mPmb .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uqGuD9mPmb .container,
.cid-uqGuD9mPmb .container-fluid {
  flex-wrap: wrap;
}
.cid-uqGuD9mPmb .navbar-collapse {
  width: 75%;
  min-height: 89px;
}
.cid-uqGuD9mPmb .border-item {
  width: 100%;
  height: 1px;
  background-color: #829d86;
}
.cid-uqGuD9mPmb .mbr-section-btn .btn {
  width: 180px;
  min-width: auto;
  min-height: 55px;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-uqGuD9mPmb .navbar-brand {
    width: calc(100% - 48px) !important;
    min-height: 89px;
  }
  .cid-uqGuD9mPmb .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 1rem;
    order: 5;
  }
  .cid-uqGuD9mPmb .navbar-nav {
    width: 100%;
  }
}
.cid-uqGuDaRJtQ {
  background-color: #fffcf5;
  overflow: hidden;
}
.cid-uqGuDaRJtQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqGuDaRJtQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqGuDaRJtQ .row {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uqGuDaRJtQ .row {
    flex-wrap: wrap;
  }
}
.cid-uqGuDaRJtQ .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uqGuDaRJtQ .text-wrap {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .cid-uqGuDaRJtQ .text-wrap {
    margin-bottom: 20px;
  }
}
.cid-uqGuDaRJtQ .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #a9bbab;
  transform: translateY(40%);
}
.cid-uqGuDaRJtQ .mbr-section-title {
  color: #000000;
}
.cid-uqGuDaRJtQ .mbr-section-title a {
  pointer-events: none !important;
  font-style: italic !important;
  font-weight: bold !important;
}
.cid-uqGuDaRJtQ .mbr-section-subtitle {
  margin-top: 30px;
  color: #353535;
}
@media (max-width: 767px) {
  .cid-uqGuDaRJtQ .mbr-section-subtitle {
    margin-top: 12px;
  }
}
.cid-uqGuDaRJtQ .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uqGuDaRJtQ .mbr-text {
    margin-top: 12px;
  }
}
.cid-uqGuDaRJtQ .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uqGuDaRJtQ .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-uqGuDaRJtQ .col-img {
  width: 430px;
}
@media (max-width: 1199px) {
  .cid-uqGuDaRJtQ .col-img {
    width: 350px;
  }
}
.cid-uqGuDaRJtQ .img-wrap {
  position: relative;
  width: 100%;
}
.cid-uqGuDaRJtQ .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-uqGuDaRJtQ .img-wrap .img-box {
    border-top-left-radius: 55px;
    border-top-right-radius: 55px;
    border-bottom-right-radius: 55px;
  }
}
.cid-uqGuDaRJtQ .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-uqGuDaRJtQ .img-wrap .frame-box {
  position: absolute;
  height: 240px;
}
.cid-uqGuDaRJtQ .img-wrap .frame-box svg {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
}
.cid-uqGuDaRJtQ .img-wrap .frame-box-1 {
  bottom: -20%;
  left: -14%;
  width: 85%;
  transform: rotate(10deg);
}
.cid-uqGuDaRJtQ .img-wrap .frame-box-2 {
  bottom: -18%;
  right: -14%;
  width: 84%;
  transform: rotate(0deg);
}
@media (max-width: 991px) {
  .cid-uqGuDaRJtQ .img-wrap .frame-box-2 {
    bottom: auto;
    top: -15%;
  }
}
.cid-uqGuDaRJtQ .mbr-text,
.cid-uqGuDaRJtQ .mbr-section-btn {
  color: #000000;
}
.cid-uqGuDc5F3m {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fffcf5;
  margin-bottom: 2px;
}
.cid-uqGuDc5F3m .mbr-section-subtitle {
  margin-bottom: 15px;
  color: #000000;
  text-align: center;
}
.cid-uqGuDc5F3m .mbr-section-title {
  color: #000000;
  text-align: left;
  margin-bottom: 15px;
}
.cid-uqGuDc5F3m .mbr-text {
  text-align: center;
  color: #333333;
}
.cid-uqGuDc5F3m .container-fluid {
  outline: 2px solid #000 !important;
}
.cid-uqGuDc5F3m .row {
  padding-top: 76px;
  padding-bottom: 76px;
  justify-content: center;
  display: flex;
}
.cid-uqGuDc5F3m .mbr-section-title DIV {
  text-align: left;
}
.cid-uqGuDcTTIb {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uqGuDcTTIb .google-map {
  height: 30rem;
  position: relative;
}
.cid-uqGuDcTTIb .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uqGuDcTTIb .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uqGuDcTTIb .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uqGuDcTTIb .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uqGuDcTTIb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqGuDcTTIb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqGuDdRBWQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fffcf5;
}
.cid-uqGuDdRBWQ .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uqGuDdRBWQ p {
  line-height: 2;
}
.cid-uqGuDdRBWQ .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0rem;
  height: 2rem;
  width: 2rem;
}
.cid-uqGuDdRBWQ .map {
  text-decoration: underline;
  height: fit-content;
}
@media (max-width: 767px) {
  .cid-uqGuDdRBWQ .row {
    text-align: center;
  }
  .cid-uqGuDdRBWQ .social-row {
    justify-content: center;
  }
}
.cid-uqGuDdRBWQ .list {
  list-style: none;
  padding-left: 0;
  color: #5b6c8f;
}
@media (max-width: 991px) {
  .cid-uqGuDdRBWQ .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uqGuDdRBWQ .list {
    margin-bottom: 0rem;
  }
}
.cid-uqGuDdRBWQ .mbr-iconfont {
  color: #5b6c8f;
}
.cid-uqGuDdRBWQ .mbr-section-subtitle {
  color: #000000;
}
.cid-uqGuDdRBWQ .phone {
  color: #103178;
}
.cid-uqGuDdRBWQ .mbr-text {
  color: #000000;
}
.cid-uqGuDdRBWQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqGuDdRBWQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqGuDdRBWQ H5 {
  color: #000000;
}
.cid-uqGuOgOaWa {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 90px;
}
.cid-uqGuOgOaWa nav.navbar {
  position: fixed;
}
.cid-uqGuOgOaWa .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-uqGuOgOaWa .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uqGuOgOaWa .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uqGuOgOaWa .dropdown-item:hover,
.cid-uqGuOgOaWa .dropdown-item:focus {
  background: #f52709 !important;
  color: white !important;
}
.cid-uqGuOgOaWa .dropdown-item:hover span {
  color: white;
}
.cid-uqGuOgOaWa .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uqGuOgOaWa .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uqGuOgOaWa .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uqGuOgOaWa .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uqGuOgOaWa .nav-link {
  position: relative;
}
.cid-uqGuOgOaWa .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uqGuOgOaWa .container {
    flex-wrap: nowrap;
  }
}
.cid-uqGuOgOaWa .iconfont-wrapper {
  color: #353535 !important;
  font-size: 18px;
  padding-right: 0;
}
.cid-uqGuOgOaWa .iconfont-wrapper .mbr-iconfont {
  transition: .4s all;
}
.cid-uqGuOgOaWa .iconfont-wrapper .mbr-iconfont:hover {
  color: #f52709;
}
.cid-uqGuOgOaWa .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 66.66666667%;
  margin-right: auto;
  min-height: 89px;
}
.cid-uqGuOgOaWa .navbar-nav .nav-item {
  margin: 2px;
}
.cid-uqGuOgOaWa .navbar-nav .nav-link {
  padding: 5px 9px;
  transition: .4s all;
}
.cid-uqGuOgOaWa .navbar-nav .nav-link:hover {
  transform: scale(1.1);
}
.cid-uqGuOgOaWa .dropdown-menu,
.cid-uqGuOgOaWa .navbar.opened {
  background: #fffcf5 !important;
}
.cid-uqGuOgOaWa .nav-item:focus,
.cid-uqGuOgOaWa .nav-link:focus {
  outline: none;
}
.cid-uqGuOgOaWa .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uqGuOgOaWa .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uqGuOgOaWa .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uqGuOgOaWa .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uqGuOgOaWa .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uqGuOgOaWa .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uqGuOgOaWa .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-uqGuOgOaWa .navbar.opened {
  transition: all 0.3s;
}
.cid-uqGuOgOaWa .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uqGuOgOaWa .navbar .navbar-logo img {
  width: auto;
}
.cid-uqGuOgOaWa .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uqGuOgOaWa .navbar.collapsed {
  justify-content: center;
}
.cid-uqGuOgOaWa .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uqGuOgOaWa .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uqGuOgOaWa .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uqGuOgOaWa .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uqGuOgOaWa .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uqGuOgOaWa .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-uqGuOgOaWa .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uqGuOgOaWa .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uqGuOgOaWa .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uqGuOgOaWa .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uqGuOgOaWa .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uqGuOgOaWa .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uqGuOgOaWa .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uqGuOgOaWa .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-uqGuOgOaWa .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uqGuOgOaWa .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uqGuOgOaWa .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uqGuOgOaWa .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uqGuOgOaWa .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uqGuOgOaWa .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uqGuOgOaWa .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uqGuOgOaWa .navbar.navbar-short {
  min-height: 90px;
}
.cid-uqGuOgOaWa .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uqGuOgOaWa .navbar.navbar-short .navbar-brand {
  min-height: 89px;
  padding: 0;
}
.cid-uqGuOgOaWa .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-uqGuOgOaWa .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uqGuOgOaWa .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uqGuOgOaWa .dropdown-item.active,
.cid-uqGuOgOaWa .dropdown-item:active {
  background-color: transparent;
}
.cid-uqGuOgOaWa .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uqGuOgOaWa .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uqGuOgOaWa .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uqGuOgOaWa .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fffcf5;
}
.cid-uqGuOgOaWa .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uqGuOgOaWa .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uqGuOgOaWa ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uqGuOgOaWa .navbar-buttons {
  text-align: center;
}
.cid-uqGuOgOaWa 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-uqGuOgOaWa button.navbar-toggler .hamburger span {
  position: absolute;
  right: 13px;
  width: 22px;
  height: 2px;
  background-color: #715537;
}
.cid-uqGuOgOaWa button.navbar-toggler .hamburger span:nth-child(1) {
  top: 17px;
  transition: all 0.2s;
}
.cid-uqGuOgOaWa button.navbar-toggler .hamburger span:nth-child(2) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-uqGuOgOaWa button.navbar-toggler .hamburger span:nth-child(3) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-uqGuOgOaWa button.navbar-toggler .hamburger span:nth-child(4) {
  top: 29px;
  transition: all 0.2s;
}
.cid-uqGuOgOaWa nav.opened .hamburger span:nth-child(1) {
  top: 17px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-uqGuOgOaWa nav.opened .hamburger span:nth-child(2) {
  transform: translateY(-1px) rotate(45deg);
  transition: all 0.25s;
}
.cid-uqGuOgOaWa nav.opened .hamburger span:nth-child(3) {
  transform: translateY(-1px) rotate(-45deg);
  transition: all 0.25s;
}
.cid-uqGuOgOaWa nav.opened .hamburger span:nth-child(4) {
  top: 29px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-uqGuOgOaWa .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uqGuOgOaWa a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uqGuOgOaWa .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-uqGuOgOaWa .navbar {
    height: 70px;
  }
  .cid-uqGuOgOaWa .navbar.opened {
    height: auto;
  }
  .cid-uqGuOgOaWa .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uqGuOgOaWa .container,
.cid-uqGuOgOaWa .container-fluid {
  flex-wrap: wrap;
}
.cid-uqGuOgOaWa .navbar-collapse {
  width: 75%;
  min-height: 89px;
}
.cid-uqGuOgOaWa .border-item {
  width: 100%;
  height: 1px;
  background-color: #829d86;
}
.cid-uqGuOgOaWa .mbr-section-btn .btn {
  width: 180px;
  min-width: auto;
  min-height: 55px;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-uqGuOgOaWa .navbar-brand {
    width: calc(100% - 48px) !important;
    min-height: 89px;
  }
  .cid-uqGuOgOaWa .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 1rem;
    order: 5;
  }
  .cid-uqGuOgOaWa .navbar-nav {
    width: 100%;
  }
}
.cid-uqGuOhMZOx {
  background-color: #fffcf5;
  overflow: hidden;
}
.cid-uqGuOhMZOx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqGuOhMZOx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqGuOhMZOx .row {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uqGuOhMZOx .row {
    flex-wrap: wrap;
  }
}
.cid-uqGuOhMZOx .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uqGuOhMZOx .text-wrap {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .cid-uqGuOhMZOx .text-wrap {
    margin-bottom: 20px;
  }
}
.cid-uqGuOhMZOx .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #a9bbab;
  transform: translateY(40%);
}
.cid-uqGuOhMZOx .mbr-section-title {
  color: #000000;
}
.cid-uqGuOhMZOx .mbr-section-title a {
  pointer-events: none !important;
  font-style: italic !important;
  font-weight: bold !important;
}
.cid-uqGuOhMZOx .mbr-section-subtitle {
  margin-top: 30px;
  color: #353535;
}
@media (max-width: 767px) {
  .cid-uqGuOhMZOx .mbr-section-subtitle {
    margin-top: 12px;
  }
}
.cid-uqGuOhMZOx .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uqGuOhMZOx .mbr-text {
    margin-top: 12px;
  }
}
.cid-uqGuOhMZOx .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uqGuOhMZOx .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-uqGuOhMZOx .col-img {
  width: 430px;
}
@media (max-width: 1199px) {
  .cid-uqGuOhMZOx .col-img {
    width: 350px;
  }
}
.cid-uqGuOhMZOx .img-wrap {
  position: relative;
  width: 100%;
}
.cid-uqGuOhMZOx .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-uqGuOhMZOx .img-wrap .img-box {
    border-top-left-radius: 55px;
    border-top-right-radius: 55px;
    border-bottom-right-radius: 55px;
  }
}
.cid-uqGuOhMZOx .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-uqGuOhMZOx .img-wrap .frame-box {
  position: absolute;
  height: 240px;
}
.cid-uqGuOhMZOx .img-wrap .frame-box svg {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
}
.cid-uqGuOhMZOx .img-wrap .frame-box-1 {
  bottom: -20%;
  left: -14%;
  width: 85%;
  transform: rotate(10deg);
}
.cid-uqGuOhMZOx .img-wrap .frame-box-2 {
  bottom: -18%;
  right: -14%;
  width: 84%;
  transform: rotate(0deg);
}
@media (max-width: 991px) {
  .cid-uqGuOhMZOx .img-wrap .frame-box-2 {
    bottom: auto;
    top: -15%;
  }
}
.cid-uqGuOhMZOx .mbr-text,
.cid-uqGuOhMZOx .mbr-section-btn {
  color: #000000;
}
.cid-uqGuOiBkn2 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fffcf5;
}
.cid-uqGuOiBkn2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqGuOiBkn2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqGuOiBkn2 .text-wrap {
  width: 100%;
}
.cid-uqGuOiBkn2 .mbr-section-title {
  color: #000000;
  margin-bottom: 70px;
}
.cid-uqGuOiBkn2 .mbr-text {
  color: #353535;
  margin-top: 50px;
}
@media (max-width: 767px) {
  .cid-uqGuOiBkn2 .mbr-text {
    margin-top: 30px;
  }
}
.cid-uqGuOiBkn2 .item-row {
  row-gap: 50px;
}
@media (max-width: 1199px) {
  .cid-uqGuOiBkn2 .item-row {
    row-gap: 30px;
  }
}
@media (max-width: 767px) {
  .cid-uqGuOiBkn2 .item-row {
    row-gap: 22px;
  }
}
@media (max-width: 991px) {
  .cid-uqGuOiBkn2 .item-row {
    justify-content: flex-start;
  }
}
.cid-uqGuOiBkn2 .item-row .item {
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-uqGuOiBkn2 .item-row .item {
    justify-content: flex-start;
  }
}
.cid-uqGuOiBkn2 .item-row .item:nth-child(1) .item-wrap {
  background-color: #d0c4b7;
  border-radius: 20px 20px 20px 0;
}
@media (max-width: 767px) {
  .cid-uqGuOiBkn2 .item-row .item:nth-child(2) {
    justify-content: flex-end;
  }
}
.cid-uqGuOiBkn2 .item-row .item:nth-child(2) .item-wrap {
  background-color: #829d85;
  border-radius: 0 20px 20px 20px;
}
.cid-uqGuOiBkn2 .item-row .item:nth-child(3) .item-wrap {
  background-color: #829d85;
  border-radius: 0 20px 20px 20px;
}
@media (max-width: 767px) {
  .cid-uqGuOiBkn2 .item-row .item:nth-child(4) {
    justify-content: flex-end;
  }
}
.cid-uqGuOiBkn2 .item-row .item:nth-child(4) .item-wrap {
  background-color: #f6efe8;
  border-radius: 20px 20px 0 20px;
}
.cid-uqGuOiBkn2 .item-row .item:nth-child(5) .item-wrap {
  background-color: #f6efe8;
  border-radius: 20px 20px 0 20px;
}
@media (max-width: 991px) {
  .cid-uqGuOiBkn2 .item-row .item:nth-child(6) {
    order: 7;
  }
}
@media (max-width: 767px) {
  .cid-uqGuOiBkn2 .item-row .item:nth-child(6) {
    order: 6;
    justify-content: center;
  }
}
.cid-uqGuOiBkn2 .item-row .item:nth-child(6) .item-wrap {
  background-color: #a9bbab;
  border-radius: 20px 20px 0 20px;
}
.cid-uqGuOiBkn2 .item-row .item:nth-child(7) {
  margin-right: auto;
}
@media (max-width: 991px) {
  .cid-uqGuOiBkn2 .item-row .item:nth-child(7) {
    order: 6;
  }
}
@media (max-width: 767px) {
  .cid-uqGuOiBkn2 .item-row .item:nth-child(7) {
    order: 7;
    justify-content: center;
  }
}
.cid-uqGuOiBkn2 .item-row .item:nth-child(7) .item-wrap {
  background-color: #d0c4b7;
  border-radius: 20px 20px 20px 0;
}
.cid-uqGuOiBkn2 .item-row .item-wrap {
  padding: 14px 26px;
  opacity: 0.95;
  max-width: 100%;
  width: fit-content;
}
.cid-uqGuOiBkn2 .item-text {
  color: #000000;
  text-align: center;
}
.cid-uqGuOiBkn2 .mbr-text,
.cid-uqGuOiBkn2 .mbr-section-btn {
  text-align: center;
}
.cid-uqGuOjsKJQ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fffcf5;
  margin-bottom: 2px;
}
.cid-uqGuOjsKJQ .mbr-section-subtitle {
  margin-bottom: 15px;
  color: #000000;
  text-align: center;
}
.cid-uqGuOjsKJQ .mbr-section-title {
  color: #000000;
  text-align: center;
  margin-bottom: 15px;
}
.cid-uqGuOjsKJQ .mbr-text {
  text-align: center;
  color: #333333;
}
.cid-uqGuOjsKJQ .container-fluid {
  outline: 2px solid #000 !important;
}
.cid-uqGuOjsKJQ .row {
  padding-top: 76px;
  padding-bottom: 76px;
  justify-content: center;
  display: flex;
}
.cid-uqGuOkhhgV {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fffcf5;
}
.cid-uqGuOkhhgV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqGuOkhhgV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqGuOkhhgV .text-wrap {
  width: 100%;
}
.cid-uqGuOkhhgV .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 767px) {
  .cid-uqGuOkhhgV .mbr-section-head {
    margin-bottom: 60px;
  }
}
.cid-uqGuOkhhgV .mbr-section-title {
  color: #000000;
  margin-bottom: 0;
}
.cid-uqGuOkhhgV .mbr-text {
  color: #353535;
  margin-top: 20px;
}
.cid-uqGuOkhhgV .item-row {
  row-gap: 40px;
  margin-left: -20px;
  margin-right: -20px;
}
.cid-uqGuOkhhgV .item-row > [class*="col"] {
  padding-left: 20px;
  padding-right: 20px;
}
.cid-uqGuOkhhgV .item-wrapper {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  height: 100%;
  background-color: #fffcf5;
  overflow: hidden;
  border: 1px solid rgba(130, 157, 133, 0.8);
  border-radius: 45px;
}
.cid-uqGuOkhhgV .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.cid-uqGuOkhhgV .item-img img {
  aspect-ratio: 0.83333333;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-uqGuOkhhgV .item-title-wrap {
  padding: 45px 26px;
  border-radius: 0 0 45px 45px;
  border: 1px solid rgba(130, 157, 133, 0.8);
  background-color: rgba(169, 187, 171, 0.8);
}
.cid-uqGuOkhhgV .item-title {
  width: 100%;
  margin: 0;
  color: #987A5A;
}
.cid-uqGuOkhhgV .item-text-wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  flex-grow: 1;
  padding: 26px;
}
.cid-uqGuOkhhgV .item-text {
  color: #353535;
  margin: 0;
}
.cid-uqGuOkhhgV .mbr-section-btn {
  margin-top: 10px;
}
.cid-uqGuOkhhgV .mbr-section-btn .btn {
  width: 180px;
  min-width: auto;
  min-height: 55px;
  max-width: 100%;
}
.cid-uqGuOlkVf1 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fffcf5;
  margin-bottom: 2px;
}
.cid-uqGuOlkVf1 .mbr-section-subtitle {
  margin-bottom: 15px;
  color: #000000;
  text-align: center;
}
.cid-uqGuOlkVf1 .mbr-section-title {
  color: #000000;
  text-align: center;
  margin-bottom: 15px;
}
.cid-uqGuOlkVf1 .mbr-text {
  text-align: center;
  color: #333333;
}
.cid-uqGuOlkVf1 .container-fluid {
  outline: 2px solid #000 !important;
}
.cid-uqGuOlkVf1 .row {
  padding-top: 76px;
  padding-bottom: 76px;
  justify-content: center;
  display: flex;
}
.cid-uqGuOm60kH {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fffcf5;
  overflow: hidden;
}
.cid-uqGuOm60kH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqGuOm60kH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqGuOm60kH .row {
  flex-wrap: nowrap;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uqGuOm60kH .row {
    flex-wrap: wrap;
  }
}
.cid-uqGuOm60kH .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 80px 0;
}
.cid-uqGuOm60kH .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-uqGuOm60kH .text-wrap:before {
    border-radius: 0 40px 40px 0;
    border-radius: 40px 0 0 40px;
  }
}
@media (max-width: 991px) {
  .cid-uqGuOm60kH .text-wrap:before {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0;
  }
}
@media (max-width: 991px) {
  .cid-uqGuOm60kH .text-wrap {
    padding: 50px 0 90px;
  }
}
@media (max-width: 767px) {
  .cid-uqGuOm60kH .text-wrap {
    margin-bottom: 20px;
  }
}
.cid-uqGuOm60kH .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uqGuOm60kH .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uqGuOm60kH .mbr-text {
    margin-top: 12px;
  }
}
.cid-uqGuOm60kH .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uqGuOm60kH .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-uqGuOm60kH .col-img {
  width: 390px;
}
@media (max-width: 1199px) {
  .cid-uqGuOm60kH .col-img {
    width: 330px;
  }
}
@media (max-width: 991px) {
  .cid-uqGuOm60kH .col-img {
    width: 250px;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-uqGuOm60kH .col-img {
    margin-bottom: -50px;
  }
}
.cid-uqGuOm60kH .img-wrap {
  position: relative;
  width: 100%;
}
.cid-uqGuOm60kH .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-uqGuOm60kH .img-wrap .img-box {
    border-radius: 0 40px 40px 40px;
    border-radius: 40px 0 40px 40px;
  }
}
@media (max-width: 991px) {
  .cid-uqGuOm60kH .img-wrap .img-box {
    transform: translateY(-50px);
    border-radius: 0 30px 30px 30px;
    border-radius: 30px 0 30px 30px;
  }
}
.cid-uqGuOm60kH .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-uqGuOm60kH .mbr-text,
.cid-uqGuOm60kH .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-uqGuOn1rCU {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fffcf5;
  margin-bottom: 2px;
}
.cid-uqGuOn1rCU .mbr-section-subtitle {
  margin-bottom: 15px;
  color: #000000;
  text-align: center;
}
.cid-uqGuOn1rCU .mbr-section-title {
  color: #000000;
  text-align: center;
  margin-bottom: 15px;
}
.cid-uqGuOn1rCU .mbr-text {
  text-align: center;
  color: #333333;
}
.cid-uqGuOn1rCU .container-fluid {
  outline: 2px solid #000 !important;
}
.cid-uqGuOn1rCU .row {
  padding-top: 76px;
  padding-bottom: 76px;
  justify-content: center;
  display: flex;
}
.cid-uqGuOnNDsR {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fffcf5;
  overflow: hidden;
}
.cid-uqGuOnNDsR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqGuOnNDsR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqGuOnNDsR .row {
  flex-wrap: nowrap;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uqGuOnNDsR .row {
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  .cid-uqGuOnNDsR .col-text {
    order: 2;
  }
}
.cid-uqGuOnNDsR .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uqGuOnNDsR .text-wrap {
    margin-top: 30px;
  }
}
.cid-uqGuOnNDsR .mbr-section-title {
  color: #000000;
}
.cid-uqGuOnNDsR .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uqGuOnNDsR .mbr-text {
    margin-top: 12px;
  }
}
.cid-uqGuOnNDsR .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uqGuOnNDsR .mbr-section-btn {
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .cid-uqGuOnNDsR .col-img {
    order: 1;
  }
}
.cid-uqGuOnNDsR .img-wrap {
  position: relative;
  width: 100%;
}
.cid-uqGuOnNDsR .img-wrap .img-box {
  position: relative;
  z-index: 3;
  width: 100%;
  border-radius: 65px 65px 65px 0;
  overflow: hidden;
  border-radius: 65px 65px 0 65px;
}
@media (max-width: 1199px) {
  .cid-uqGuOnNDsR .img-wrap .img-box {
    border-radius: 55px 55px 55px 0;
    border-radius: 55px 55px 0 55px;
  }
}
@media (max-width: 991px) {
  .cid-uqGuOnNDsR .img-wrap .img-box {
    border-radius: 65px 65px 65px 0;
    border-radius: 65px 65px 0 65px;
  }
}
@media (max-width: 767px) {
  .cid-uqGuOnNDsR .img-wrap .img-box {
    border-radius: 55px 55px 55px 0;
    border-radius: 55px  55px 0 55px;
  }
}
@media (max-width: 575px) {
  .cid-uqGuOnNDsR .img-wrap .img-box {
    border-radius: 45px 45px 45px 0;
    border-radius: 45px 45px 0 45px;
  }
}
.cid-uqGuOnNDsR .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-uqGuOnNDsR .mbr-text,
.cid-uqGuOnNDsR .mbr-section-btn {
  color: #000000;
}
.cid-uqGuOoEmUJ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fffcf5;
  margin-bottom: 2px;
}
.cid-uqGuOoEmUJ .mbr-section-subtitle {
  margin-bottom: 15px;
  color: #000000;
  text-align: center;
}
.cid-uqGuOoEmUJ .mbr-section-title {
  color: #000000;
  text-align: center;
  margin-bottom: 15px;
}
.cid-uqGuOoEmUJ .mbr-text {
  text-align: center;
  color: #333333;
}
.cid-uqGuOoEmUJ .container-fluid {
  outline: 2px solid #000 !important;
}
.cid-uqGuOoEmUJ .row {
  padding-top: 76px;
  padding-bottom: 76px;
  justify-content: center;
  display: flex;
}
.cid-uqGuOptwpR {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background4.jpg");
}
.cid-uqGuOptwpR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqGuOptwpR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqGuOptwpR .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 991px) {
  .cid-uqGuOptwpR .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-uqGuOptwpR .mbr-section-head {
    margin-bottom: 50px;
  }
}
.cid-uqGuOptwpR .mbr-section-title {
  color: #000000;
  margin-bottom: 0;
}
.cid-uqGuOptwpR .mbr-section-subtitle {
  color: #353535;
  margin-top: 20px;
}
@media (min-width: 992px) {
  .cid-uqGuOptwpR .carousel img {
    height: 500px;
    object-fit: cover;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uqGuOptwpR .carousel img {
    height: 330px;
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-uqGuOptwpR .carousel img {
    height: 280px;
    object-fit: cover;
  }
  .cid-uqGuOptwpR .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uqGuOptwpR .carousel {
  display: flex;
}
.cid-uqGuOptwpR .carousel-inner {
  display: flex;
}
.cid-uqGuOptwpR .carousel-inner .carousel-item:nth-child(1n) img {
  border-radius: 0 45px 45px 45px;
}
.cid-uqGuOptwpR .carousel-inner .carousel-item:nth-child(2n) img {
  border-radius: 45px;
}
.cid-uqGuOptwpR .carousel-inner .carousel-item:nth-child(3n) img {
  border-radius: 45px 0 45px 45px;
}
@media (max-width: 767px) {
  .cid-uqGuOptwpR .carousel-inner {
    margin-bottom: 40px;
  }
}
.cid-uqGuOptwpR .item-wrapper {
  width: 100%;
  padding: 0 50px;
}
.cid-uqGuOptwpR .item-wrapper img {
  width: 100% !important;
}
@media (max-width: 767px) {
  .cid-uqGuOptwpR .item-wrapper {
    padding: 0;
  }
}
.cid-uqGuOptwpR .carousel-caption {
  position: relative;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  max-width: 560px;
  margin: 0 auto;
  z-index: 101;
}
.cid-uqGuOptwpR .caption-title {
  color: #353535;
}
.cid-uqGuOptwpR .caption-text {
  color: #000000;
}
.cid-uqGuOptwpR .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uqGuOptwpR .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uqGuOptwpR .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uqGuOptwpR .carousel-control {
  top: calc(5 * 50px);
  width: 40px;
  height: 40px;
  margin-top: -1.5rem;
  font-size: 22px;
  color: #829d85;
  background-color: #f6efe8;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  opacity: 0.9;
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uqGuOptwpR .carousel-control {
    top: calc(5 * 33px);
  }
}
@media (max-width: 767px) {
  .cid-uqGuOptwpR .carousel-control {
    top: calc(100% - 20px);
  }
}
.cid-uqGuOptwpR .carousel-control:hover {
  color: #987a5a;
  background-color: #f1dbda;
  opacity: 0.9;
}
.cid-uqGuOptwpR .carousel-control.carousel-control-prev {
  left: 0;
  margin-right: 10px;
}
@media (max-width: 767px) {
  .cid-uqGuOptwpR .carousel-control.carousel-control-prev {
    margin-right: 0;
    left: calc(50% - 50px);
  }
}
.cid-uqGuOptwpR .carousel-control.carousel-control-next {
  right: 0;
  margin-left: 10px;
}
@media (max-width: 767px) {
  .cid-uqGuOptwpR .carousel-control.carousel-control-next {
    margin-left: 0;
    right: calc(50% - 50px);
  }
}
.cid-uqGuOptwpR .carousel-indicators {
  position: absolute;
  top: calc(5 * 100px - 30px);
  bottom: auto;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto !important;
  flex-wrap: wrap;
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uqGuOptwpR .carousel-indicators {
    top: calc(5 * 66px - 30px);
  }
}
@media (max-width: 767px) {
  .cid-uqGuOptwpR .carousel-indicators {
    top: calc(5 * 56px - 30px);
  }
}
.cid-uqGuOptwpR .carousel-indicators li {
  max-width: 5px;
  height: 5px;
  width: 5px;
  max-height: 5px;
  margin: 7px;
  background-color: rgba(0, 0, 0, 0.3);
  border: none;
  border-radius: 50%;
  opacity: 1;
  transition: all 0.3s;
}
.cid-uqGuOptwpR .carousel-indicators li.active,
.cid-uqGuOptwpR .carousel-indicators li:hover {
  opacity: 1;
  background-color: #f52709;
}
.cid-uqGuOptwpR .carousel-indicators li::after,
.cid-uqGuOptwpR .carousel-indicators li::before {
  content: none;
}
.cid-uqGuOptwpR .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
.cid-uqGuOptwpR .item-menu-overlay {
  z-index: 100 !important;
  opacity: 0 !important;
}
.cid-uqGuOqA6MP {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fffcf5;
  margin-bottom: 2px;
}
.cid-uqGuOqA6MP .mbr-section-subtitle {
  margin-bottom: 15px;
  color: #000000;
  text-align: center;
}
.cid-uqGuOqA6MP .mbr-section-title {
  color: #000000;
  text-align: center;
  margin-bottom: 15px;
}
.cid-uqGuOqA6MP .mbr-text {
  text-align: center;
  color: #333333;
}
.cid-uqGuOqA6MP .container-fluid {
  outline: 2px solid #000 !important;
}
.cid-uqGuOqA6MP .row {
  padding-top: 76px;
  padding-bottom: 76px;
  justify-content: center;
  display: flex;
}
.cid-uqGuOrrrWt {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fffcf5;
}
.cid-uqGuOrrrWt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqGuOrrrWt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqGuOrrrWt .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 991px) {
  .cid-uqGuOrrrWt .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-uqGuOrrrWt .mbr-section-head {
    margin-bottom: 50px;
  }
}
.cid-uqGuOrrrWt .mbr-section-title {
  color: #000000;
  margin-bottom: 0;
}
.cid-uqGuOrrrWt .mbr-section-subtitle {
  color: #353535;
  margin-top: 20px;
}
@media (max-width: 991px) {
  .cid-uqGuOrrrWt .col-img {
    display: none;
  }
}
.cid-uqGuOrrrWt .img-wrap {
  width: 100%;
}
.cid-uqGuOrrrWt .img-wrap .img-box {
  width: 100%;
  border-radius: 65px 65px 0 65px;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-uqGuOrrrWt .img-wrap .img-box {
    border-radius: 40px 40px 0 40px;
  }
}
.cid-uqGuOrrrWt .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-uqGuOrrrWt .mbr-iconfont {
  position: relative;
  font-size: 24px !important;
  font-family: 'Moririse2' !important;
  color: #987a5a;
  margin-left: 1rem;
  padding: 10px;
  transition: .3s all;
}
.cid-uqGuOrrrWt .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-uqGuOrrrWt .mbr-iconfont:before {
  position: relative;
  z-index: 2;
}
.cid-uqGuOrrrWt .panel-group {
  border: none;
  border-top: 1px solid #829d85;
  margin-top: 10px;
}
@media (max-width: 991px) {
  .cid-uqGuOrrrWt .panel-group {
    margin-top: 0;
  }
}
.cid-uqGuOrrrWt .card {
  border-bottom: 1px solid #829d85;
  border-radius: 0;
}
.cid-uqGuOrrrWt .card-header {
  padding: 20px 0;
  border: none;
  background-color: transparent;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .cid-uqGuOrrrWt .card-header {
    padding: 8px 0;
  }
}
.cid-uqGuOrrrWt .card-header:hover .mbr-iconfont {
  color: #829d85;
}
.cid-uqGuOrrrWt .card-header:hover .mbr-iconfont:after {
  opacity: 1;
}
.cid-uqGuOrrrWt .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #987A5A;
}
.cid-uqGuOrrrWt .panel-title[aria-expanded="true"] .mbr-iconfont {
  transform: rotate(45deg);
}
.cid-uqGuOrrrWt .panel-title-edit {
  color: #000000;
}
.cid-uqGuOrrrWt .panel-body {
  padding: 0 0 40px;
}
@media (max-width: 767px) {
  .cid-uqGuOrrrWt .panel-body {
    padding: 0 0 24px;
  }
}
.cid-uqGuOrrrWt .panel-text {
  color: #353535;
  margin: 0;
}
.cid-uqGuOszq09 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fffcf5;
  margin-bottom: 2px;
}
.cid-uqGuOszq09 .mbr-section-subtitle {
  margin-bottom: 15px;
  color: #000000;
  text-align: center;
}
.cid-uqGuOszq09 .mbr-section-title {
  color: #000000;
  text-align: center;
  margin-bottom: 15px;
}
.cid-uqGuOszq09 .mbr-text {
  text-align: center;
  color: #333333;
}
.cid-uqGuOszq09 .container-fluid {
  outline: 2px solid #000 !important;
}
.cid-uqGuOszq09 .row {
  padding-top: 76px;
  padding-bottom: 76px;
  justify-content: center;
  display: flex;
}
.cid-uqGxb38XOu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fffcf5;
}
.cid-uqGxb38XOu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqGxb38XOu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uqGxb38XOu .container {
    padding: 0 30px;
  }
}
.cid-uqGxb38XOu .row {
  justify-content: center;
}
.cid-uqGxb38XOu .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uqGxb38XOu .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uqGxb38XOu .panel-group .card {
  border-radius: 2rem 0 2rem 0 !important;
  border: 1px solid #caa9a8;
  margin-bottom: 24px;
  padding: 40px;
}
@media (max-width: 992px) {
  .cid-uqGxb38XOu .panel-group .card {
    padding: 30px 20px;
  }
}
.cid-uqGxb38XOu .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uqGxb38XOu .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-uqGxb38XOu .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uqGxb38XOu .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  width: 45px;
  height: 45px;
  min-width: 45px;
  transition: all 0.3s ease-in-out;
  color: #000000;
  background-color: #caa9a8;
  border-radius: 100%;
  margin-left: 20px;
}
.cid-uqGxb38XOu .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(45deg);
}
.cid-uqGxb38XOu .panel-group .card .panel-collapse .panel-body {
  padding-top: 30px;
}
.cid-uqGxb38XOu .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uqGxb38XOu .mbr-section-title {
  color: #000000;
}
.cid-uqGxb38XOu .panel-title-edit {
  color: #000000;
}
.cid-uqGxb38XOu .panel-text {
  color: #000000;
}
.cid-uqGuOtt0mx {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uqGuOtt0mx .google-map {
  height: 30rem;
  position: relative;
}
.cid-uqGuOtt0mx .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uqGuOtt0mx .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uqGuOtt0mx .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uqGuOtt0mx .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uqGuOtt0mx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqGuOtt0mx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqGuOuwLPP {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fffcf5;
}
.cid-uqGuOuwLPP .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uqGuOuwLPP p {
  line-height: 2;
}
.cid-uqGuOuwLPP .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0rem;
  height: 2rem;
  width: 2rem;
}
.cid-uqGuOuwLPP .map {
  text-decoration: underline;
  height: fit-content;
}
@media (max-width: 767px) {
  .cid-uqGuOuwLPP .row {
    text-align: center;
  }
  .cid-uqGuOuwLPP .social-row {
    justify-content: center;
  }
}
.cid-uqGuOuwLPP .list {
  list-style: none;
  padding-left: 0;
  color: #5b6c8f;
}
@media (max-width: 991px) {
  .cid-uqGuOuwLPP .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uqGuOuwLPP .list {
    margin-bottom: 0rem;
  }
}
.cid-uqGuOuwLPP .mbr-iconfont {
  color: #5b6c8f;
}
.cid-uqGuOuwLPP .mbr-section-subtitle {
  color: #000000;
}
.cid-uqGuOuwLPP .phone {
  color: #103178;
}
.cid-uqGuOuwLPP .mbr-text {
  color: #000000;
}
.cid-uqGuOuwLPP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqGuOuwLPP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqGuOuwLPP H5 {
  color: #000000;
}
.cid-uqGxpJeJbJ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 90px;
}
.cid-uqGxpJeJbJ nav.navbar {
  position: fixed;
}
.cid-uqGxpJeJbJ .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-uqGxpJeJbJ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uqGxpJeJbJ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uqGxpJeJbJ .dropdown-item:hover,
.cid-uqGxpJeJbJ .dropdown-item:focus {
  background: #f52709 !important;
  color: white !important;
}
.cid-uqGxpJeJbJ .dropdown-item:hover span {
  color: white;
}
.cid-uqGxpJeJbJ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uqGxpJeJbJ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uqGxpJeJbJ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uqGxpJeJbJ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uqGxpJeJbJ .nav-link {
  position: relative;
}
.cid-uqGxpJeJbJ .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uqGxpJeJbJ .container {
    flex-wrap: nowrap;
  }
}
.cid-uqGxpJeJbJ .iconfont-wrapper {
  color: #353535 !important;
  font-size: 18px;
  padding-right: 0;
}
.cid-uqGxpJeJbJ .iconfont-wrapper .mbr-iconfont {
  transition: .4s all;
}
.cid-uqGxpJeJbJ .iconfont-wrapper .mbr-iconfont:hover {
  color: #f52709;
}
.cid-uqGxpJeJbJ .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 66.66666667%;
  margin-right: auto;
  min-height: 89px;
}
.cid-uqGxpJeJbJ .navbar-nav .nav-item {
  margin: 2px;
}
.cid-uqGxpJeJbJ .navbar-nav .nav-link {
  padding: 5px 9px;
  transition: .4s all;
}
.cid-uqGxpJeJbJ .navbar-nav .nav-link:hover {
  transform: scale(1.1);
}
.cid-uqGxpJeJbJ .dropdown-menu,
.cid-uqGxpJeJbJ .navbar.opened {
  background: #fffcf5 !important;
}
.cid-uqGxpJeJbJ .nav-item:focus,
.cid-uqGxpJeJbJ .nav-link:focus {
  outline: none;
}
.cid-uqGxpJeJbJ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uqGxpJeJbJ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uqGxpJeJbJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uqGxpJeJbJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uqGxpJeJbJ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uqGxpJeJbJ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uqGxpJeJbJ .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-uqGxpJeJbJ .navbar.opened {
  transition: all 0.3s;
}
.cid-uqGxpJeJbJ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uqGxpJeJbJ .navbar .navbar-logo img {
  width: auto;
}
.cid-uqGxpJeJbJ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uqGxpJeJbJ .navbar.collapsed {
  justify-content: center;
}
.cid-uqGxpJeJbJ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uqGxpJeJbJ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uqGxpJeJbJ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uqGxpJeJbJ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uqGxpJeJbJ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uqGxpJeJbJ .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-uqGxpJeJbJ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uqGxpJeJbJ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uqGxpJeJbJ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uqGxpJeJbJ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uqGxpJeJbJ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uqGxpJeJbJ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uqGxpJeJbJ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uqGxpJeJbJ .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-uqGxpJeJbJ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uqGxpJeJbJ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uqGxpJeJbJ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uqGxpJeJbJ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uqGxpJeJbJ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uqGxpJeJbJ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uqGxpJeJbJ .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uqGxpJeJbJ .navbar.navbar-short {
  min-height: 90px;
}
.cid-uqGxpJeJbJ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uqGxpJeJbJ .navbar.navbar-short .navbar-brand {
  min-height: 89px;
  padding: 0;
}
.cid-uqGxpJeJbJ .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-uqGxpJeJbJ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uqGxpJeJbJ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uqGxpJeJbJ .dropdown-item.active,
.cid-uqGxpJeJbJ .dropdown-item:active {
  background-color: transparent;
}
.cid-uqGxpJeJbJ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uqGxpJeJbJ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uqGxpJeJbJ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uqGxpJeJbJ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fffcf5;
}
.cid-uqGxpJeJbJ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uqGxpJeJbJ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uqGxpJeJbJ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uqGxpJeJbJ .navbar-buttons {
  text-align: center;
}
.cid-uqGxpJeJbJ 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-uqGxpJeJbJ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 13px;
  width: 22px;
  height: 2px;
  background-color: #715537;
}
.cid-uqGxpJeJbJ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 17px;
  transition: all 0.2s;
}
.cid-uqGxpJeJbJ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-uqGxpJeJbJ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-uqGxpJeJbJ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 29px;
  transition: all 0.2s;
}
.cid-uqGxpJeJbJ nav.opened .hamburger span:nth-child(1) {
  top: 17px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-uqGxpJeJbJ nav.opened .hamburger span:nth-child(2) {
  transform: translateY(-1px) rotate(45deg);
  transition: all 0.25s;
}
.cid-uqGxpJeJbJ nav.opened .hamburger span:nth-child(3) {
  transform: translateY(-1px) rotate(-45deg);
  transition: all 0.25s;
}
.cid-uqGxpJeJbJ nav.opened .hamburger span:nth-child(4) {
  top: 29px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-uqGxpJeJbJ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uqGxpJeJbJ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uqGxpJeJbJ .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-uqGxpJeJbJ .navbar {
    height: 70px;
  }
  .cid-uqGxpJeJbJ .navbar.opened {
    height: auto;
  }
  .cid-uqGxpJeJbJ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uqGxpJeJbJ .container,
.cid-uqGxpJeJbJ .container-fluid {
  flex-wrap: wrap;
}
.cid-uqGxpJeJbJ .navbar-collapse {
  width: 75%;
  min-height: 89px;
}
.cid-uqGxpJeJbJ .border-item {
  width: 100%;
  height: 1px;
  background-color: #829d86;
}
.cid-uqGxpJeJbJ .mbr-section-btn .btn {
  width: 180px;
  min-width: auto;
  min-height: 55px;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-uqGxpJeJbJ .navbar-brand {
    width: calc(100% - 48px) !important;
    min-height: 89px;
  }
  .cid-uqGxpJeJbJ .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 1rem;
    order: 5;
  }
  .cid-uqGxpJeJbJ .navbar-nav {
    width: 100%;
  }
}
.cid-uqGxpKMynZ {
  background-color: #fffcf5;
  overflow: hidden;
}
.cid-uqGxpKMynZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqGxpKMynZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqGxpKMynZ .row {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uqGxpKMynZ .row {
    flex-wrap: wrap;
  }
}
.cid-uqGxpKMynZ .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uqGxpKMynZ .text-wrap {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .cid-uqGxpKMynZ .text-wrap {
    margin-bottom: 20px;
  }
}
.cid-uqGxpKMynZ .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #a9bbab;
  transform: translateY(40%);
}
.cid-uqGxpKMynZ .mbr-section-title {
  color: #000000;
}
.cid-uqGxpKMynZ .mbr-section-title a {
  pointer-events: none !important;
  font-style: italic !important;
  font-weight: bold !important;
}
.cid-uqGxpKMynZ .mbr-section-subtitle {
  margin-top: 30px;
  color: #353535;
}
@media (max-width: 767px) {
  .cid-uqGxpKMynZ .mbr-section-subtitle {
    margin-top: 12px;
  }
}
.cid-uqGxpKMynZ .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uqGxpKMynZ .mbr-text {
    margin-top: 12px;
  }
}
.cid-uqGxpKMynZ .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uqGxpKMynZ .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-uqGxpKMynZ .col-img {
  width: 430px;
}
@media (max-width: 1199px) {
  .cid-uqGxpKMynZ .col-img {
    width: 350px;
  }
}
.cid-uqGxpKMynZ .img-wrap {
  position: relative;
  width: 100%;
}
.cid-uqGxpKMynZ .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-uqGxpKMynZ .img-wrap .img-box {
    border-top-left-radius: 55px;
    border-top-right-radius: 55px;
    border-bottom-right-radius: 55px;
  }
}
.cid-uqGxpKMynZ .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-uqGxpKMynZ .img-wrap .frame-box {
  position: absolute;
  height: 240px;
}
.cid-uqGxpKMynZ .img-wrap .frame-box svg {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
}
.cid-uqGxpKMynZ .img-wrap .frame-box-1 {
  bottom: -20%;
  left: -14%;
  width: 85%;
  transform: rotate(10deg);
}
.cid-uqGxpKMynZ .img-wrap .frame-box-2 {
  bottom: -18%;
  right: -14%;
  width: 84%;
  transform: rotate(0deg);
}
@media (max-width: 991px) {
  .cid-uqGxpKMynZ .img-wrap .frame-box-2 {
    bottom: auto;
    top: -15%;
  }
}
.cid-uqGxpKMynZ .mbr-text,
.cid-uqGxpKMynZ .mbr-section-btn {
  color: #000000;
}
.cid-uqGxpLQLuL {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fffcf5;
}
.cid-uqGxpLQLuL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqGxpLQLuL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqGxpLQLuL .text-wrap {
  width: 100%;
}
.cid-uqGxpLQLuL .mbr-section-title {
  color: #000000;
  margin-bottom: 70px;
}
.cid-uqGxpLQLuL .mbr-text {
  color: #353535;
  margin-top: 50px;
}
@media (max-width: 767px) {
  .cid-uqGxpLQLuL .mbr-text {
    margin-top: 30px;
  }
}
.cid-uqGxpLQLuL .item-row {
  row-gap: 50px;
}
@media (max-width: 1199px) {
  .cid-uqGxpLQLuL .item-row {
    row-gap: 30px;
  }
}
@media (max-width: 767px) {
  .cid-uqGxpLQLuL .item-row {
    row-gap: 22px;
  }
}
@media (max-width: 991px) {
  .cid-uqGxpLQLuL .item-row {
    justify-content: flex-start;
  }
}
.cid-uqGxpLQLuL .item-row .item {
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-uqGxpLQLuL .item-row .item {
    justify-content: flex-start;
  }
}
.cid-uqGxpLQLuL .item-row .item:nth-child(1) .item-wrap {
  background-color: #d0c4b7;
  border-radius: 20px 20px 20px 0;
}
@media (max-width: 767px) {
  .cid-uqGxpLQLuL .item-row .item:nth-child(2) {
    justify-content: flex-end;
  }
}
.cid-uqGxpLQLuL .item-row .item:nth-child(2) .item-wrap {
  background-color: #829d85;
  border-radius: 0 20px 20px 20px;
}
.cid-uqGxpLQLuL .item-row .item:nth-child(3) .item-wrap {
  background-color: #829d85;
  border-radius: 0 20px 20px 20px;
}
@media (max-width: 767px) {
  .cid-uqGxpLQLuL .item-row .item:nth-child(4) {
    justify-content: flex-end;
  }
}
.cid-uqGxpLQLuL .item-row .item:nth-child(4) .item-wrap {
  background-color: #f6efe8;
  border-radius: 20px 20px 0 20px;
}
.cid-uqGxpLQLuL .item-row .item:nth-child(5) .item-wrap {
  background-color: #f6efe8;
  border-radius: 20px 20px 0 20px;
}
@media (max-width: 991px) {
  .cid-uqGxpLQLuL .item-row .item:nth-child(6) {
    order: 7;
  }
}
@media (max-width: 767px) {
  .cid-uqGxpLQLuL .item-row .item:nth-child(6) {
    order: 6;
    justify-content: center;
  }
}
.cid-uqGxpLQLuL .item-row .item:nth-child(6) .item-wrap {
  background-color: #a9bbab;
  border-radius: 20px 20px 0 20px;
}
.cid-uqGxpLQLuL .item-row .item:nth-child(7) {
  margin-right: auto;
}
@media (max-width: 991px) {
  .cid-uqGxpLQLuL .item-row .item:nth-child(7) {
    order: 6;
  }
}
@media (max-width: 767px) {
  .cid-uqGxpLQLuL .item-row .item:nth-child(7) {
    order: 7;
    justify-content: center;
  }
}
.cid-uqGxpLQLuL .item-row .item:nth-child(7) .item-wrap {
  background-color: #d0c4b7;
  border-radius: 20px 20px 20px 0;
}
.cid-uqGxpLQLuL .item-row .item-wrap {
  padding: 14px 26px;
  opacity: 0.95;
  max-width: 100%;
  width: fit-content;
}
.cid-uqGxpLQLuL .item-text {
  color: #000000;
  text-align: center;
}
.cid-uqGxpLQLuL .mbr-text,
.cid-uqGxpLQLuL .mbr-section-btn {
  text-align: center;
}
.cid-uqGxpMPpJO {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fffcf5;
  margin-bottom: 2px;
}
.cid-uqGxpMPpJO .mbr-section-subtitle {
  margin-bottom: 15px;
  color: #000000;
  text-align: center;
}
.cid-uqGxpMPpJO .mbr-section-title {
  color: #000000;
  text-align: center;
  margin-bottom: 15px;
}
.cid-uqGxpMPpJO .mbr-text {
  text-align: center;
  color: #333333;
}
.cid-uqGxpMPpJO .container-fluid {
  outline: 2px solid #000 !important;
}
.cid-uqGxpMPpJO .row {
  padding-top: 76px;
  padding-bottom: 76px;
  justify-content: center;
  display: flex;
}
.cid-uqGxpNUcHe {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fffcf5;
}
.cid-uqGxpNUcHe .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqGxpNUcHe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqGxpNUcHe .text-wrap {
  width: 100%;
}
.cid-uqGxpNUcHe .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 767px) {
  .cid-uqGxpNUcHe .mbr-section-head {
    margin-bottom: 60px;
  }
}
.cid-uqGxpNUcHe .mbr-section-title {
  color: #000000;
  margin-bottom: 0;
}
.cid-uqGxpNUcHe .mbr-text {
  color: #353535;
  margin-top: 20px;
}
.cid-uqGxpNUcHe .item-row {
  row-gap: 40px;
  margin-left: -20px;
  margin-right: -20px;
}
.cid-uqGxpNUcHe .item-row > [class*="col"] {
  padding-left: 20px;
  padding-right: 20px;
}
.cid-uqGxpNUcHe .item-wrapper {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  height: 100%;
  background-color: #fffcf5;
  overflow: hidden;
  border: 1px solid rgba(130, 157, 133, 0.8);
  border-radius: 45px;
}
.cid-uqGxpNUcHe .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.cid-uqGxpNUcHe .item-img img {
  aspect-ratio: 0.83333333;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-uqGxpNUcHe .item-title-wrap {
  padding: 45px 26px;
  border-radius: 0 0 45px 45px;
  border: 1px solid rgba(130, 157, 133, 0.8);
  background-color: rgba(169, 187, 171, 0.8);
}
.cid-uqGxpNUcHe .item-title {
  width: 100%;
  margin: 0;
  color: #987A5A;
}
.cid-uqGxpNUcHe .item-text-wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  flex-grow: 1;
  padding: 26px;
}
.cid-uqGxpNUcHe .item-text {
  color: #353535;
  margin: 0;
}
.cid-uqGxpNUcHe .mbr-section-btn {
  margin-top: 10px;
}
.cid-uqGxpNUcHe .mbr-section-btn .btn {
  width: 180px;
  min-width: auto;
  min-height: 55px;
  max-width: 100%;
}
.cid-uqGxpPeJhr {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fffcf5;
  margin-bottom: 2px;
}
.cid-uqGxpPeJhr .mbr-section-subtitle {
  margin-bottom: 15px;
  color: #000000;
  text-align: center;
}
.cid-uqGxpPeJhr .mbr-section-title {
  color: #000000;
  text-align: center;
  margin-bottom: 15px;
}
.cid-uqGxpPeJhr .mbr-text {
  text-align: center;
  color: #333333;
}
.cid-uqGxpPeJhr .container-fluid {
  outline: 2px solid #000 !important;
}
.cid-uqGxpPeJhr .row {
  padding-top: 76px;
  padding-bottom: 76px;
  justify-content: center;
  display: flex;
}
.cid-uqGxpQgGlY {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fffcf5;
  overflow: hidden;
}
.cid-uqGxpQgGlY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqGxpQgGlY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqGxpQgGlY .row {
  flex-wrap: nowrap;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uqGxpQgGlY .row {
    flex-wrap: wrap;
  }
}
.cid-uqGxpQgGlY .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 80px 0;
}
.cid-uqGxpQgGlY .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-uqGxpQgGlY .text-wrap:before {
    border-radius: 0 40px 40px 0;
    border-radius: 40px 0 0 40px;
  }
}
@media (max-width: 991px) {
  .cid-uqGxpQgGlY .text-wrap:before {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0;
  }
}
@media (max-width: 991px) {
  .cid-uqGxpQgGlY .text-wrap {
    padding: 50px 0 90px;
  }
}
@media (max-width: 767px) {
  .cid-uqGxpQgGlY .text-wrap {
    margin-bottom: 20px;
  }
}
.cid-uqGxpQgGlY .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uqGxpQgGlY .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uqGxpQgGlY .mbr-text {
    margin-top: 12px;
  }
}
.cid-uqGxpQgGlY .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uqGxpQgGlY .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-uqGxpQgGlY .col-img {
  width: 390px;
}
@media (max-width: 1199px) {
  .cid-uqGxpQgGlY .col-img {
    width: 330px;
  }
}
@media (max-width: 991px) {
  .cid-uqGxpQgGlY .col-img {
    width: 250px;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-uqGxpQgGlY .col-img {
    margin-bottom: -50px;
  }
}
.cid-uqGxpQgGlY .img-wrap {
  position: relative;
  width: 100%;
}
.cid-uqGxpQgGlY .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-uqGxpQgGlY .img-wrap .img-box {
    border-radius: 0 40px 40px 40px;
    border-radius: 40px 0 40px 40px;
  }
}
@media (max-width: 991px) {
  .cid-uqGxpQgGlY .img-wrap .img-box {
    transform: translateY(-50px);
    border-radius: 0 30px 30px 30px;
    border-radius: 30px 0 30px 30px;
  }
}
.cid-uqGxpQgGlY .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-uqGxpQgGlY .mbr-text,
.cid-uqGxpQgGlY .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-uqGxpRpp5F {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fffcf5;
  margin-bottom: 2px;
}
.cid-uqGxpRpp5F .mbr-section-subtitle {
  margin-bottom: 15px;
  color: #000000;
  text-align: center;
}
.cid-uqGxpRpp5F .mbr-section-title {
  color: #000000;
  text-align: center;
  margin-bottom: 15px;
}
.cid-uqGxpRpp5F .mbr-text {
  text-align: center;
  color: #333333;
}
.cid-uqGxpRpp5F .container-fluid {
  outline: 2px solid #000 !important;
}
.cid-uqGxpRpp5F .row {
  padding-top: 76px;
  padding-bottom: 76px;
  justify-content: center;
  display: flex;
}
.cid-uqGxpSvOmO {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fffcf5;
  overflow: hidden;
}
.cid-uqGxpSvOmO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqGxpSvOmO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqGxpSvOmO .row {
  flex-wrap: nowrap;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uqGxpSvOmO .row {
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  .cid-uqGxpSvOmO .col-text {
    order: 2;
  }
}
.cid-uqGxpSvOmO .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uqGxpSvOmO .text-wrap {
    margin-top: 30px;
  }
}
.cid-uqGxpSvOmO .mbr-section-title {
  color: #000000;
}
.cid-uqGxpSvOmO .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uqGxpSvOmO .mbr-text {
    margin-top: 12px;
  }
}
.cid-uqGxpSvOmO .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uqGxpSvOmO .mbr-section-btn {
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .cid-uqGxpSvOmO .col-img {
    order: 1;
  }
}
.cid-uqGxpSvOmO .img-wrap {
  position: relative;
  width: 100%;
}
.cid-uqGxpSvOmO .img-wrap .img-box {
  position: relative;
  z-index: 3;
  width: 100%;
  border-radius: 65px 65px 65px 0;
  overflow: hidden;
  border-radius: 65px 65px 0 65px;
}
@media (max-width: 1199px) {
  .cid-uqGxpSvOmO .img-wrap .img-box {
    border-radius: 55px 55px 55px 0;
    border-radius: 55px 55px 0 55px;
  }
}
@media (max-width: 991px) {
  .cid-uqGxpSvOmO .img-wrap .img-box {
    border-radius: 65px 65px 65px 0;
    border-radius: 65px 65px 0 65px;
  }
}
@media (max-width: 767px) {
  .cid-uqGxpSvOmO .img-wrap .img-box {
    border-radius: 55px 55px 55px 0;
    border-radius: 55px  55px 0 55px;
  }
}
@media (max-width: 575px) {
  .cid-uqGxpSvOmO .img-wrap .img-box {
    border-radius: 45px 45px 45px 0;
    border-radius: 45px 45px 0 45px;
  }
}
.cid-uqGxpSvOmO .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-uqGxpSvOmO .mbr-text,
.cid-uqGxpSvOmO .mbr-section-btn {
  color: #000000;
}
.cid-uqGxpTEAzc {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fffcf5;
  margin-bottom: 2px;
}
.cid-uqGxpTEAzc .mbr-section-subtitle {
  margin-bottom: 15px;
  color: #000000;
  text-align: center;
}
.cid-uqGxpTEAzc .mbr-section-title {
  color: #000000;
  text-align: center;
  margin-bottom: 15px;
}
.cid-uqGxpTEAzc .mbr-text {
  text-align: center;
  color: #333333;
}
.cid-uqGxpTEAzc .container-fluid {
  outline: 2px solid #000 !important;
}
.cid-uqGxpTEAzc .row {
  padding-top: 76px;
  padding-bottom: 76px;
  justify-content: center;
  display: flex;
}
.cid-uqGxpUOF6Y {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background4.jpg");
}
.cid-uqGxpUOF6Y .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqGxpUOF6Y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqGxpUOF6Y .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 991px) {
  .cid-uqGxpUOF6Y .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-uqGxpUOF6Y .mbr-section-head {
    margin-bottom: 50px;
  }
}
.cid-uqGxpUOF6Y .mbr-section-title {
  color: #000000;
  margin-bottom: 0;
}
.cid-uqGxpUOF6Y .mbr-section-subtitle {
  color: #353535;
  margin-top: 20px;
}
@media (min-width: 992px) {
  .cid-uqGxpUOF6Y .carousel img {
    height: 500px;
    object-fit: cover;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uqGxpUOF6Y .carousel img {
    height: 330px;
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-uqGxpUOF6Y .carousel img {
    height: 280px;
    object-fit: cover;
  }
  .cid-uqGxpUOF6Y .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uqGxpUOF6Y .carousel {
  display: flex;
}
.cid-uqGxpUOF6Y .carousel-inner {
  display: flex;
}
.cid-uqGxpUOF6Y .carousel-inner .carousel-item:nth-child(1n) img {
  border-radius: 0 45px 45px 45px;
}
.cid-uqGxpUOF6Y .carousel-inner .carousel-item:nth-child(2n) img {
  border-radius: 45px;
}
.cid-uqGxpUOF6Y .carousel-inner .carousel-item:nth-child(3n) img {
  border-radius: 45px 0 45px 45px;
}
@media (max-width: 767px) {
  .cid-uqGxpUOF6Y .carousel-inner {
    margin-bottom: 40px;
  }
}
.cid-uqGxpUOF6Y .item-wrapper {
  width: 100%;
  padding: 0 50px;
}
.cid-uqGxpUOF6Y .item-wrapper img {
  width: 100% !important;
}
@media (max-width: 767px) {
  .cid-uqGxpUOF6Y .item-wrapper {
    padding: 0;
  }
}
.cid-uqGxpUOF6Y .carousel-caption {
  position: relative;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  max-width: 560px;
  margin: 0 auto;
  z-index: 101;
}
.cid-uqGxpUOF6Y .caption-title {
  color: #353535;
}
.cid-uqGxpUOF6Y .caption-text {
  color: #000000;
}
.cid-uqGxpUOF6Y .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uqGxpUOF6Y .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uqGxpUOF6Y .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uqGxpUOF6Y .carousel-control {
  top: calc(5 * 50px);
  width: 40px;
  height: 40px;
  margin-top: -1.5rem;
  font-size: 22px;
  color: #829d85;
  background-color: #f6efe8;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  opacity: 0.9;
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uqGxpUOF6Y .carousel-control {
    top: calc(5 * 33px);
  }
}
@media (max-width: 767px) {
  .cid-uqGxpUOF6Y .carousel-control {
    top: calc(100% - 20px);
  }
}
.cid-uqGxpUOF6Y .carousel-control:hover {
  color: #987a5a;
  background-color: #f1dbda;
  opacity: 0.9;
}
.cid-uqGxpUOF6Y .carousel-control.carousel-control-prev {
  left: 0;
  margin-right: 10px;
}
@media (max-width: 767px) {
  .cid-uqGxpUOF6Y .carousel-control.carousel-control-prev {
    margin-right: 0;
    left: calc(50% - 50px);
  }
}
.cid-uqGxpUOF6Y .carousel-control.carousel-control-next {
  right: 0;
  margin-left: 10px;
}
@media (max-width: 767px) {
  .cid-uqGxpUOF6Y .carousel-control.carousel-control-next {
    margin-left: 0;
    right: calc(50% - 50px);
  }
}
.cid-uqGxpUOF6Y .carousel-indicators {
  position: absolute;
  top: calc(5 * 100px - 30px);
  bottom: auto;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto !important;
  flex-wrap: wrap;
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uqGxpUOF6Y .carousel-indicators {
    top: calc(5 * 66px - 30px);
  }
}
@media (max-width: 767px) {
  .cid-uqGxpUOF6Y .carousel-indicators {
    top: calc(5 * 56px - 30px);
  }
}
.cid-uqGxpUOF6Y .carousel-indicators li {
  max-width: 5px;
  height: 5px;
  width: 5px;
  max-height: 5px;
  margin: 7px;
  background-color: rgba(0, 0, 0, 0.3);
  border: none;
  border-radius: 50%;
  opacity: 1;
  transition: all 0.3s;
}
.cid-uqGxpUOF6Y .carousel-indicators li.active,
.cid-uqGxpUOF6Y .carousel-indicators li:hover {
  opacity: 1;
  background-color: #f52709;
}
.cid-uqGxpUOF6Y .carousel-indicators li::after,
.cid-uqGxpUOF6Y .carousel-indicators li::before {
  content: none;
}
.cid-uqGxpUOF6Y .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
.cid-uqGxpUOF6Y .item-menu-overlay {
  z-index: 100 !important;
  opacity: 0 !important;
}
.cid-uqGxpWfHHW {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fffcf5;
  margin-bottom: 2px;
}
.cid-uqGxpWfHHW .mbr-section-subtitle {
  margin-bottom: 15px;
  color: #000000;
  text-align: center;
}
.cid-uqGxpWfHHW .mbr-section-title {
  color: #000000;
  text-align: center;
  margin-bottom: 15px;
}
.cid-uqGxpWfHHW .mbr-text {
  text-align: center;
  color: #333333;
}
.cid-uqGxpWfHHW .container-fluid {
  outline: 2px solid #000 !important;
}
.cid-uqGxpWfHHW .row {
  padding-top: 76px;
  padding-bottom: 76px;
  justify-content: center;
  display: flex;
}
.cid-uqGxpXoDsE {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fffcf5;
}
.cid-uqGxpXoDsE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqGxpXoDsE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqGxpXoDsE .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 991px) {
  .cid-uqGxpXoDsE .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-uqGxpXoDsE .mbr-section-head {
    margin-bottom: 50px;
  }
}
.cid-uqGxpXoDsE .mbr-section-title {
  color: #000000;
  margin-bottom: 0;
}
.cid-uqGxpXoDsE .mbr-section-subtitle {
  color: #353535;
  margin-top: 20px;
}
@media (max-width: 991px) {
  .cid-uqGxpXoDsE .col-img {
    display: none;
  }
}
.cid-uqGxpXoDsE .img-wrap {
  width: 100%;
}
.cid-uqGxpXoDsE .img-wrap .img-box {
  width: 100%;
  border-radius: 65px 65px 0 65px;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-uqGxpXoDsE .img-wrap .img-box {
    border-radius: 40px 40px 0 40px;
  }
}
.cid-uqGxpXoDsE .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-uqGxpXoDsE .mbr-iconfont {
  position: relative;
  font-size: 24px !important;
  font-family: 'Moririse2' !important;
  color: #987a5a;
  margin-left: 1rem;
  padding: 10px;
  transition: .3s all;
}
.cid-uqGxpXoDsE .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-uqGxpXoDsE .mbr-iconfont:before {
  position: relative;
  z-index: 2;
}
.cid-uqGxpXoDsE .panel-group {
  border: none;
  border-top: 1px solid #829d85;
  margin-top: 10px;
}
@media (max-width: 991px) {
  .cid-uqGxpXoDsE .panel-group {
    margin-top: 0;
  }
}
.cid-uqGxpXoDsE .card {
  border-bottom: 1px solid #829d85;
  border-radius: 0;
}
.cid-uqGxpXoDsE .card-header {
  padding: 20px 0;
  border: none;
  background-color: transparent;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .cid-uqGxpXoDsE .card-header {
    padding: 8px 0;
  }
}
.cid-uqGxpXoDsE .card-header:hover .mbr-iconfont {
  color: #829d85;
}
.cid-uqGxpXoDsE .card-header:hover .mbr-iconfont:after {
  opacity: 1;
}
.cid-uqGxpXoDsE .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #987A5A;
}
.cid-uqGxpXoDsE .panel-title[aria-expanded="true"] .mbr-iconfont {
  transform: rotate(45deg);
}
.cid-uqGxpXoDsE .panel-title-edit {
  color: #000000;
}
.cid-uqGxpXoDsE .panel-body {
  padding: 0 0 40px;
}
@media (max-width: 767px) {
  .cid-uqGxpXoDsE .panel-body {
    padding: 0 0 24px;
  }
}
.cid-uqGxpXoDsE .panel-text {
  color: #353535;
  margin: 0;
}
.cid-uqGxpYWG5j {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fffcf5;
  margin-bottom: 2px;
}
.cid-uqGxpYWG5j .mbr-section-subtitle {
  margin-bottom: 15px;
  color: #000000;
  text-align: center;
}
.cid-uqGxpYWG5j .mbr-section-title {
  color: #000000;
  text-align: center;
  margin-bottom: 15px;
}
.cid-uqGxpYWG5j .mbr-text {
  text-align: center;
  color: #333333;
}
.cid-uqGxpYWG5j .container-fluid {
  outline: 2px solid #000 !important;
}
.cid-uqGxpYWG5j .row {
  padding-top: 76px;
  padding-bottom: 76px;
  justify-content: center;
  display: flex;
}
.cid-uqGxq01tkN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fffcf5;
}
.cid-uqGxq01tkN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqGxq01tkN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uqGxq01tkN .container {
    padding: 0 30px;
  }
}
.cid-uqGxq01tkN .row {
  justify-content: center;
}
.cid-uqGxq01tkN .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uqGxq01tkN .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uqGxq01tkN .panel-group .card {
  border-radius: 2rem 0 2rem 0 !important;
  border: 1px solid #caa9a8;
  margin-bottom: 24px;
  padding: 40px;
}
@media (max-width: 992px) {
  .cid-uqGxq01tkN .panel-group .card {
    padding: 30px 20px;
  }
}
.cid-uqGxq01tkN .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uqGxq01tkN .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-uqGxq01tkN .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uqGxq01tkN .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  width: 45px;
  height: 45px;
  min-width: 45px;
  transition: all 0.3s ease-in-out;
  color: #000000;
  background-color: #caa9a8;
  border-radius: 100%;
  margin-left: 20px;
}
.cid-uqGxq01tkN .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(45deg);
}
.cid-uqGxq01tkN .panel-group .card .panel-collapse .panel-body {
  padding-top: 30px;
}
.cid-uqGxq01tkN .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uqGxq01tkN .mbr-section-title {
  color: #000000;
}
.cid-uqGxq01tkN .panel-title-edit {
  color: #000000;
}
.cid-uqGxq01tkN .panel-text {
  color: #000000;
}
.cid-uqGxq1l108 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uqGxq1l108 .google-map {
  height: 30rem;
  position: relative;
}
.cid-uqGxq1l108 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uqGxq1l108 .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uqGxq1l108 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uqGxq1l108 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uqGxq1l108 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqGxq1l108 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqGxq2B8pn {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fffcf5;
}
.cid-uqGxq2B8pn .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uqGxq2B8pn p {
  line-height: 2;
}
.cid-uqGxq2B8pn .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0rem;
  height: 2rem;
  width: 2rem;
}
.cid-uqGxq2B8pn .map {
  text-decoration: underline;
  height: fit-content;
}
@media (max-width: 767px) {
  .cid-uqGxq2B8pn .row {
    text-align: center;
  }
  .cid-uqGxq2B8pn .social-row {
    justify-content: center;
  }
}
.cid-uqGxq2B8pn .list {
  list-style: none;
  padding-left: 0;
  color: #5b6c8f;
}
@media (max-width: 991px) {
  .cid-uqGxq2B8pn .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uqGxq2B8pn .list {
    margin-bottom: 0rem;
  }
}
.cid-uqGxq2B8pn .mbr-iconfont {
  color: #5b6c8f;
}
.cid-uqGxq2B8pn .mbr-section-subtitle {
  color: #000000;
}
.cid-uqGxq2B8pn .phone {
  color: #103178;
}
.cid-uqGxq2B8pn .mbr-text {
  color: #000000;
}
.cid-uqGxq2B8pn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqGxq2B8pn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqGxq2B8pn H5 {
  color: #000000;
}
.cid-uqGz3wXkdR {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 90px;
}
.cid-uqGz3wXkdR nav.navbar {
  position: fixed;
}
.cid-uqGz3wXkdR .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-uqGz3wXkdR .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uqGz3wXkdR .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uqGz3wXkdR .dropdown-item:hover,
.cid-uqGz3wXkdR .dropdown-item:focus {
  background: #f52709 !important;
  color: white !important;
}
.cid-uqGz3wXkdR .dropdown-item:hover span {
  color: white;
}
.cid-uqGz3wXkdR .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uqGz3wXkdR .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uqGz3wXkdR .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uqGz3wXkdR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uqGz3wXkdR .nav-link {
  position: relative;
}
.cid-uqGz3wXkdR .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uqGz3wXkdR .container {
    flex-wrap: nowrap;
  }
}
.cid-uqGz3wXkdR .iconfont-wrapper {
  color: #353535 !important;
  font-size: 18px;
  padding-right: 0;
}
.cid-uqGz3wXkdR .iconfont-wrapper .mbr-iconfont {
  transition: .4s all;
}
.cid-uqGz3wXkdR .iconfont-wrapper .mbr-iconfont:hover {
  color: #f52709;
}
.cid-uqGz3wXkdR .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 66.66666667%;
  margin-right: auto;
  min-height: 89px;
}
.cid-uqGz3wXkdR .navbar-nav .nav-item {
  margin: 2px;
}
.cid-uqGz3wXkdR .navbar-nav .nav-link {
  padding: 5px 9px;
  transition: .4s all;
}
.cid-uqGz3wXkdR .navbar-nav .nav-link:hover {
  transform: scale(1.1);
}
.cid-uqGz3wXkdR .dropdown-menu,
.cid-uqGz3wXkdR .navbar.opened {
  background: #fffcf5 !important;
}
.cid-uqGz3wXkdR .nav-item:focus,
.cid-uqGz3wXkdR .nav-link:focus {
  outline: none;
}
.cid-uqGz3wXkdR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uqGz3wXkdR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uqGz3wXkdR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uqGz3wXkdR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uqGz3wXkdR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uqGz3wXkdR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uqGz3wXkdR .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-uqGz3wXkdR .navbar.opened {
  transition: all 0.3s;
}
.cid-uqGz3wXkdR .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uqGz3wXkdR .navbar .navbar-logo img {
  width: auto;
}
.cid-uqGz3wXkdR .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uqGz3wXkdR .navbar.collapsed {
  justify-content: center;
}
.cid-uqGz3wXkdR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uqGz3wXkdR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uqGz3wXkdR .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uqGz3wXkdR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uqGz3wXkdR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uqGz3wXkdR .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-uqGz3wXkdR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uqGz3wXkdR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uqGz3wXkdR .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uqGz3wXkdR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uqGz3wXkdR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uqGz3wXkdR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uqGz3wXkdR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uqGz3wXkdR .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-uqGz3wXkdR .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uqGz3wXkdR .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uqGz3wXkdR .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uqGz3wXkdR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uqGz3wXkdR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uqGz3wXkdR .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uqGz3wXkdR .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uqGz3wXkdR .navbar.navbar-short {
  min-height: 90px;
}
.cid-uqGz3wXkdR .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uqGz3wXkdR .navbar.navbar-short .navbar-brand {
  min-height: 89px;
  padding: 0;
}
.cid-uqGz3wXkdR .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-uqGz3wXkdR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uqGz3wXkdR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uqGz3wXkdR .dropdown-item.active,
.cid-uqGz3wXkdR .dropdown-item:active {
  background-color: transparent;
}
.cid-uqGz3wXkdR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uqGz3wXkdR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uqGz3wXkdR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uqGz3wXkdR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fffcf5;
}
.cid-uqGz3wXkdR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uqGz3wXkdR .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uqGz3wXkdR ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uqGz3wXkdR .navbar-buttons {
  text-align: center;
}
.cid-uqGz3wXkdR 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-uqGz3wXkdR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 13px;
  width: 22px;
  height: 2px;
  background-color: #715537;
}
.cid-uqGz3wXkdR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 17px;
  transition: all 0.2s;
}
.cid-uqGz3wXkdR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-uqGz3wXkdR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-uqGz3wXkdR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 29px;
  transition: all 0.2s;
}
.cid-uqGz3wXkdR nav.opened .hamburger span:nth-child(1) {
  top: 17px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-uqGz3wXkdR nav.opened .hamburger span:nth-child(2) {
  transform: translateY(-1px) rotate(45deg);
  transition: all 0.25s;
}
.cid-uqGz3wXkdR nav.opened .hamburger span:nth-child(3) {
  transform: translateY(-1px) rotate(-45deg);
  transition: all 0.25s;
}
.cid-uqGz3wXkdR nav.opened .hamburger span:nth-child(4) {
  top: 29px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-uqGz3wXkdR .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uqGz3wXkdR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uqGz3wXkdR .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-uqGz3wXkdR .navbar {
    height: 70px;
  }
  .cid-uqGz3wXkdR .navbar.opened {
    height: auto;
  }
  .cid-uqGz3wXkdR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uqGz3wXkdR .container,
.cid-uqGz3wXkdR .container-fluid {
  flex-wrap: wrap;
}
.cid-uqGz3wXkdR .navbar-collapse {
  width: 75%;
  min-height: 89px;
}
.cid-uqGz3wXkdR .border-item {
  width: 100%;
  height: 1px;
  background-color: #829d86;
}
.cid-uqGz3wXkdR .mbr-section-btn .btn {
  width: 180px;
  min-width: auto;
  min-height: 55px;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-uqGz3wXkdR .navbar-brand {
    width: calc(100% - 48px) !important;
    min-height: 89px;
  }
  .cid-uqGz3wXkdR .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 1rem;
    order: 5;
  }
  .cid-uqGz3wXkdR .navbar-nav {
    width: 100%;
  }
}
.cid-uqGz3yp22r {
  background-color: #fffcf5;
  overflow: hidden;
}
.cid-uqGz3yp22r .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqGz3yp22r .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqGz3yp22r .row {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uqGz3yp22r .row {
    flex-wrap: wrap;
  }
}
.cid-uqGz3yp22r .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uqGz3yp22r .text-wrap {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .cid-uqGz3yp22r .text-wrap {
    margin-bottom: 20px;
  }
}
.cid-uqGz3yp22r .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #a9bbab;
  transform: translateY(40%);
}
.cid-uqGz3yp22r .mbr-section-title {
  color: #000000;
}
.cid-uqGz3yp22r .mbr-section-title a {
  pointer-events: none !important;
  font-style: italic !important;
  font-weight: bold !important;
}
.cid-uqGz3yp22r .mbr-section-subtitle {
  margin-top: 30px;
  color: #353535;
}
@media (max-width: 767px) {
  .cid-uqGz3yp22r .mbr-section-subtitle {
    margin-top: 12px;
  }
}
.cid-uqGz3yp22r .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uqGz3yp22r .mbr-text {
    margin-top: 12px;
  }
}
.cid-uqGz3yp22r .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uqGz3yp22r .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-uqGz3yp22r .col-img {
  width: 430px;
}
@media (max-width: 1199px) {
  .cid-uqGz3yp22r .col-img {
    width: 350px;
  }
}
.cid-uqGz3yp22r .img-wrap {
  position: relative;
  width: 100%;
}
.cid-uqGz3yp22r .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-uqGz3yp22r .img-wrap .img-box {
    border-top-left-radius: 55px;
    border-top-right-radius: 55px;
    border-bottom-right-radius: 55px;
  }
}
.cid-uqGz3yp22r .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-uqGz3yp22r .img-wrap .frame-box {
  position: absolute;
  height: 240px;
}
.cid-uqGz3yp22r .img-wrap .frame-box svg {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
}
.cid-uqGz3yp22r .img-wrap .frame-box-1 {
  bottom: -20%;
  left: -14%;
  width: 85%;
  transform: rotate(10deg);
}
.cid-uqGz3yp22r .img-wrap .frame-box-2 {
  bottom: -18%;
  right: -14%;
  width: 84%;
  transform: rotate(0deg);
}
@media (max-width: 991px) {
  .cid-uqGz3yp22r .img-wrap .frame-box-2 {
    bottom: auto;
    top: -15%;
  }
}
.cid-uqGz3yp22r .mbr-text,
.cid-uqGz3yp22r .mbr-section-btn {
  color: #000000;
}
.cid-uqGz3zR9PI {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fffcf5;
}
.cid-uqGz3zR9PI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqGz3zR9PI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqGz3zR9PI .text-wrap {
  width: 100%;
}
.cid-uqGz3zR9PI .mbr-section-title {
  color: #000000;
  margin-bottom: 70px;
}
.cid-uqGz3zR9PI .mbr-text {
  color: #353535;
  margin-top: 50px;
}
@media (max-width: 767px) {
  .cid-uqGz3zR9PI .mbr-text {
    margin-top: 30px;
  }
}
.cid-uqGz3zR9PI .item-row {
  row-gap: 50px;
}
@media (max-width: 1199px) {
  .cid-uqGz3zR9PI .item-row {
    row-gap: 30px;
  }
}
@media (max-width: 767px) {
  .cid-uqGz3zR9PI .item-row {
    row-gap: 22px;
  }
}
@media (max-width: 991px) {
  .cid-uqGz3zR9PI .item-row {
    justify-content: flex-start;
  }
}
.cid-uqGz3zR9PI .item-row .item {
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-uqGz3zR9PI .item-row .item {
    justify-content: flex-start;
  }
}
.cid-uqGz3zR9PI .item-row .item:nth-child(1) .item-wrap {
  background-color: #d0c4b7;
  border-radius: 20px 20px 20px 0;
}
@media (max-width: 767px) {
  .cid-uqGz3zR9PI .item-row .item:nth-child(2) {
    justify-content: flex-end;
  }
}
.cid-uqGz3zR9PI .item-row .item:nth-child(2) .item-wrap {
  background-color: #829d85;
  border-radius: 0 20px 20px 20px;
}
.cid-uqGz3zR9PI .item-row .item:nth-child(3) .item-wrap {
  background-color: #829d85;
  border-radius: 0 20px 20px 20px;
}
@media (max-width: 767px) {
  .cid-uqGz3zR9PI .item-row .item:nth-child(4) {
    justify-content: flex-end;
  }
}
.cid-uqGz3zR9PI .item-row .item:nth-child(4) .item-wrap {
  background-color: #f6efe8;
  border-radius: 20px 20px 0 20px;
}
.cid-uqGz3zR9PI .item-row .item:nth-child(5) .item-wrap {
  background-color: #f6efe8;
  border-radius: 20px 20px 0 20px;
}
@media (max-width: 991px) {
  .cid-uqGz3zR9PI .item-row .item:nth-child(6) {
    order: 7;
  }
}
@media (max-width: 767px) {
  .cid-uqGz3zR9PI .item-row .item:nth-child(6) {
    order: 6;
    justify-content: center;
  }
}
.cid-uqGz3zR9PI .item-row .item:nth-child(6) .item-wrap {
  background-color: #a9bbab;
  border-radius: 20px 20px 0 20px;
}
.cid-uqGz3zR9PI .item-row .item:nth-child(7) {
  margin-right: auto;
}
@media (max-width: 991px) {
  .cid-uqGz3zR9PI .item-row .item:nth-child(7) {
    order: 6;
  }
}
@media (max-width: 767px) {
  .cid-uqGz3zR9PI .item-row .item:nth-child(7) {
    order: 7;
    justify-content: center;
  }
}
.cid-uqGz3zR9PI .item-row .item:nth-child(7) .item-wrap {
  background-color: #d0c4b7;
  border-radius: 20px 20px 20px 0;
}
.cid-uqGz3zR9PI .item-row .item-wrap {
  padding: 14px 26px;
  opacity: 0.95;
  max-width: 100%;
  width: fit-content;
}
.cid-uqGz3zR9PI .item-text {
  color: #000000;
  text-align: center;
}
.cid-uqGz3zR9PI .mbr-text,
.cid-uqGz3zR9PI .mbr-section-btn {
  text-align: center;
}
.cid-uqGz3B64M9 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fffcf5;
  margin-bottom: 2px;
}
.cid-uqGz3B64M9 .mbr-section-subtitle {
  margin-bottom: 15px;
  color: #000000;
  text-align: center;
}
.cid-uqGz3B64M9 .mbr-section-title {
  color: #000000;
  text-align: center;
  margin-bottom: 15px;
}
.cid-uqGz3B64M9 .mbr-text {
  text-align: center;
  color: #333333;
}
.cid-uqGz3B64M9 .container-fluid {
  outline: 2px solid #000 !important;
}
.cid-uqGz3B64M9 .row {
  padding-top: 76px;
  padding-bottom: 76px;
  justify-content: center;
  display: flex;
}
.cid-uqGz3CqHRP {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fffcf5;
}
.cid-uqGz3CqHRP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqGz3CqHRP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqGz3CqHRP .text-wrap {
  width: 100%;
}
.cid-uqGz3CqHRP .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 767px) {
  .cid-uqGz3CqHRP .mbr-section-head {
    margin-bottom: 60px;
  }
}
.cid-uqGz3CqHRP .mbr-section-title {
  color: #000000;
  margin-bottom: 0;
}
.cid-uqGz3CqHRP .mbr-text {
  color: #353535;
  margin-top: 20px;
}
.cid-uqGz3CqHRP .item-row {
  row-gap: 40px;
  margin-left: -20px;
  margin-right: -20px;
}
.cid-uqGz3CqHRP .item-row > [class*="col"] {
  padding-left: 20px;
  padding-right: 20px;
}
.cid-uqGz3CqHRP .item-wrapper {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  height: 100%;
  background-color: #fffcf5;
  overflow: hidden;
  border: 1px solid rgba(130, 157, 133, 0.8);
  border-radius: 45px;
}
.cid-uqGz3CqHRP .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.cid-uqGz3CqHRP .item-img img {
  aspect-ratio: 0.83333333;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-uqGz3CqHRP .item-title-wrap {
  padding: 45px 26px;
  border-radius: 0 0 45px 45px;
  border: 1px solid rgba(130, 157, 133, 0.8);
  background-color: rgba(169, 187, 171, 0.8);
}
.cid-uqGz3CqHRP .item-title {
  width: 100%;
  margin: 0;
  color: #987A5A;
}
.cid-uqGz3CqHRP .item-text-wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  flex-grow: 1;
  padding: 26px;
}
.cid-uqGz3CqHRP .item-text {
  color: #353535;
  margin: 0;
}
.cid-uqGz3CqHRP .mbr-section-btn {
  margin-top: 10px;
}
.cid-uqGz3CqHRP .mbr-section-btn .btn {
  width: 180px;
  min-width: auto;
  min-height: 55px;
  max-width: 100%;
}
.cid-uqGz3DT5zS {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fffcf5;
  margin-bottom: 2px;
}
.cid-uqGz3DT5zS .mbr-section-subtitle {
  margin-bottom: 15px;
  color: #000000;
  text-align: center;
}
.cid-uqGz3DT5zS .mbr-section-title {
  color: #000000;
  text-align: center;
  margin-bottom: 15px;
}
.cid-uqGz3DT5zS .mbr-text {
  text-align: center;
  color: #333333;
}
.cid-uqGz3DT5zS .container-fluid {
  outline: 2px solid #000 !important;
}
.cid-uqGz3DT5zS .row {
  padding-top: 76px;
  padding-bottom: 76px;
  justify-content: center;
  display: flex;
}
.cid-uqGz3F3iDL {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fffcf5;
  overflow: hidden;
}
.cid-uqGz3F3iDL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqGz3F3iDL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqGz3F3iDL .row {
  flex-wrap: nowrap;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uqGz3F3iDL .row {
    flex-wrap: wrap;
  }
}
.cid-uqGz3F3iDL .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 80px 0;
}
.cid-uqGz3F3iDL .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-uqGz3F3iDL .text-wrap:before {
    border-radius: 0 40px 40px 0;
    border-radius: 40px 0 0 40px;
  }
}
@media (max-width: 991px) {
  .cid-uqGz3F3iDL .text-wrap:before {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0;
  }
}
@media (max-width: 991px) {
  .cid-uqGz3F3iDL .text-wrap {
    padding: 50px 0 90px;
  }
}
@media (max-width: 767px) {
  .cid-uqGz3F3iDL .text-wrap {
    margin-bottom: 20px;
  }
}
.cid-uqGz3F3iDL .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uqGz3F3iDL .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uqGz3F3iDL .mbr-text {
    margin-top: 12px;
  }
}
.cid-uqGz3F3iDL .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uqGz3F3iDL .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-uqGz3F3iDL .col-img {
  width: 390px;
}
@media (max-width: 1199px) {
  .cid-uqGz3F3iDL .col-img {
    width: 330px;
  }
}
@media (max-width: 991px) {
  .cid-uqGz3F3iDL .col-img {
    width: 250px;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-uqGz3F3iDL .col-img {
    margin-bottom: -50px;
  }
}
.cid-uqGz3F3iDL .img-wrap {
  position: relative;
  width: 100%;
}
.cid-uqGz3F3iDL .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-uqGz3F3iDL .img-wrap .img-box {
    border-radius: 0 40px 40px 40px;
    border-radius: 40px 0 40px 40px;
  }
}
@media (max-width: 991px) {
  .cid-uqGz3F3iDL .img-wrap .img-box {
    transform: translateY(-50px);
    border-radius: 0 30px 30px 30px;
    border-radius: 30px 0 30px 30px;
  }
}
.cid-uqGz3F3iDL .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-uqGz3F3iDL .mbr-text,
.cid-uqGz3F3iDL .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-uqGz3Gjg1N {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fffcf5;
  margin-bottom: 2px;
}
.cid-uqGz3Gjg1N .mbr-section-subtitle {
  margin-bottom: 15px;
  color: #000000;
  text-align: center;
}
.cid-uqGz3Gjg1N .mbr-section-title {
  color: #000000;
  text-align: center;
  margin-bottom: 15px;
}
.cid-uqGz3Gjg1N .mbr-text {
  text-align: center;
  color: #333333;
}
.cid-uqGz3Gjg1N .container-fluid {
  outline: 2px solid #000 !important;
}
.cid-uqGz3Gjg1N .row {
  padding-top: 76px;
  padding-bottom: 76px;
  justify-content: center;
  display: flex;
}
.cid-uqGz3Hz3YG {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fffcf5;
  overflow: hidden;
}
.cid-uqGz3Hz3YG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqGz3Hz3YG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqGz3Hz3YG .row {
  flex-wrap: nowrap;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uqGz3Hz3YG .row {
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  .cid-uqGz3Hz3YG .col-text {
    order: 2;
  }
}
.cid-uqGz3Hz3YG .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uqGz3Hz3YG .text-wrap {
    margin-top: 30px;
  }
}
.cid-uqGz3Hz3YG .mbr-section-title {
  color: #000000;
}
.cid-uqGz3Hz3YG .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uqGz3Hz3YG .mbr-text {
    margin-top: 12px;
  }
}
.cid-uqGz3Hz3YG .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uqGz3Hz3YG .mbr-section-btn {
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .cid-uqGz3Hz3YG .col-img {
    order: 1;
  }
}
.cid-uqGz3Hz3YG .img-wrap {
  position: relative;
  width: 100%;
}
.cid-uqGz3Hz3YG .img-wrap .img-box {
  position: relative;
  z-index: 3;
  width: 100%;
  border-radius: 65px 65px 65px 0;
  overflow: hidden;
  border-radius: 65px 65px 0 65px;
}
@media (max-width: 1199px) {
  .cid-uqGz3Hz3YG .img-wrap .img-box {
    border-radius: 55px 55px 55px 0;
    border-radius: 55px 55px 0 55px;
  }
}
@media (max-width: 991px) {
  .cid-uqGz3Hz3YG .img-wrap .img-box {
    border-radius: 65px 65px 65px 0;
    border-radius: 65px 65px 0 65px;
  }
}
@media (max-width: 767px) {
  .cid-uqGz3Hz3YG .img-wrap .img-box {
    border-radius: 55px 55px 55px 0;
    border-radius: 55px  55px 0 55px;
  }
}
@media (max-width: 575px) {
  .cid-uqGz3Hz3YG .img-wrap .img-box {
    border-radius: 45px 45px 45px 0;
    border-radius: 45px 45px 0 45px;
  }
}
.cid-uqGz3Hz3YG .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-uqGz3Hz3YG .mbr-text,
.cid-uqGz3Hz3YG .mbr-section-btn {
  color: #000000;
}
.cid-uqGz3ISpuU {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fffcf5;
  margin-bottom: 2px;
}
.cid-uqGz3ISpuU .mbr-section-subtitle {
  margin-bottom: 15px;
  color: #000000;
  text-align: center;
}
.cid-uqGz3ISpuU .mbr-section-title {
  color: #000000;
  text-align: center;
  margin-bottom: 15px;
}
.cid-uqGz3ISpuU .mbr-text {
  text-align: center;
  color: #333333;
}
.cid-uqGz3ISpuU .container-fluid {
  outline: 2px solid #000 !important;
}
.cid-uqGz3ISpuU .row {
  padding-top: 76px;
  padding-bottom: 76px;
  justify-content: center;
  display: flex;
}
.cid-uqGz3K5djA {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background4.jpg");
}
.cid-uqGz3K5djA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqGz3K5djA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqGz3K5djA .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 991px) {
  .cid-uqGz3K5djA .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-uqGz3K5djA .mbr-section-head {
    margin-bottom: 50px;
  }
}
.cid-uqGz3K5djA .mbr-section-title {
  color: #000000;
  margin-bottom: 0;
}
.cid-uqGz3K5djA .mbr-section-subtitle {
  color: #353535;
  margin-top: 20px;
}
@media (min-width: 992px) {
  .cid-uqGz3K5djA .carousel img {
    height: 500px;
    object-fit: cover;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uqGz3K5djA .carousel img {
    height: 330px;
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-uqGz3K5djA .carousel img {
    height: 280px;
    object-fit: cover;
  }
  .cid-uqGz3K5djA .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uqGz3K5djA .carousel {
  display: flex;
}
.cid-uqGz3K5djA .carousel-inner {
  display: flex;
}
.cid-uqGz3K5djA .carousel-inner .carousel-item:nth-child(1n) img {
  border-radius: 0 45px 45px 45px;
}
.cid-uqGz3K5djA .carousel-inner .carousel-item:nth-child(2n) img {
  border-radius: 45px;
}
.cid-uqGz3K5djA .carousel-inner .carousel-item:nth-child(3n) img {
  border-radius: 45px 0 45px 45px;
}
@media (max-width: 767px) {
  .cid-uqGz3K5djA .carousel-inner {
    margin-bottom: 40px;
  }
}
.cid-uqGz3K5djA .item-wrapper {
  width: 100%;
  padding: 0 50px;
}
.cid-uqGz3K5djA .item-wrapper img {
  width: 100% !important;
}
@media (max-width: 767px) {
  .cid-uqGz3K5djA .item-wrapper {
    padding: 0;
  }
}
.cid-uqGz3K5djA .carousel-caption {
  position: relative;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  max-width: 560px;
  margin: 0 auto;
  z-index: 101;
}
.cid-uqGz3K5djA .caption-title {
  color: #353535;
}
.cid-uqGz3K5djA .caption-text {
  color: #000000;
}
.cid-uqGz3K5djA .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uqGz3K5djA .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uqGz3K5djA .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uqGz3K5djA .carousel-control {
  top: calc(5 * 50px);
  width: 40px;
  height: 40px;
  margin-top: -1.5rem;
  font-size: 22px;
  color: #829d85;
  background-color: #f6efe8;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  opacity: 0.9;
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uqGz3K5djA .carousel-control {
    top: calc(5 * 33px);
  }
}
@media (max-width: 767px) {
  .cid-uqGz3K5djA .carousel-control {
    top: calc(100% - 20px);
  }
}
.cid-uqGz3K5djA .carousel-control:hover {
  color: #987a5a;
  background-color: #f1dbda;
  opacity: 0.9;
}
.cid-uqGz3K5djA .carousel-control.carousel-control-prev {
  left: 0;
  margin-right: 10px;
}
@media (max-width: 767px) {
  .cid-uqGz3K5djA .carousel-control.carousel-control-prev {
    margin-right: 0;
    left: calc(50% - 50px);
  }
}
.cid-uqGz3K5djA .carousel-control.carousel-control-next {
  right: 0;
  margin-left: 10px;
}
@media (max-width: 767px) {
  .cid-uqGz3K5djA .carousel-control.carousel-control-next {
    margin-left: 0;
    right: calc(50% - 50px);
  }
}
.cid-uqGz3K5djA .carousel-indicators {
  position: absolute;
  top: calc(5 * 100px - 30px);
  bottom: auto;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto !important;
  flex-wrap: wrap;
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uqGz3K5djA .carousel-indicators {
    top: calc(5 * 66px - 30px);
  }
}
@media (max-width: 767px) {
  .cid-uqGz3K5djA .carousel-indicators {
    top: calc(5 * 56px - 30px);
  }
}
.cid-uqGz3K5djA .carousel-indicators li {
  max-width: 5px;
  height: 5px;
  width: 5px;
  max-height: 5px;
  margin: 7px;
  background-color: rgba(0, 0, 0, 0.3);
  border: none;
  border-radius: 50%;
  opacity: 1;
  transition: all 0.3s;
}
.cid-uqGz3K5djA .carousel-indicators li.active,
.cid-uqGz3K5djA .carousel-indicators li:hover {
  opacity: 1;
  background-color: #f52709;
}
.cid-uqGz3K5djA .carousel-indicators li::after,
.cid-uqGz3K5djA .carousel-indicators li::before {
  content: none;
}
.cid-uqGz3K5djA .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
.cid-uqGz3K5djA .item-menu-overlay {
  z-index: 100 !important;
  opacity: 0 !important;
}
.cid-uqGz3LHtVD {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fffcf5;
  margin-bottom: 2px;
}
.cid-uqGz3LHtVD .mbr-section-subtitle {
  margin-bottom: 15px;
  color: #000000;
  text-align: center;
}
.cid-uqGz3LHtVD .mbr-section-title {
  color: #000000;
  text-align: center;
  margin-bottom: 15px;
}
.cid-uqGz3LHtVD .mbr-text {
  text-align: center;
  color: #333333;
}
.cid-uqGz3LHtVD .container-fluid {
  outline: 2px solid #000 !important;
}
.cid-uqGz3LHtVD .row {
  padding-top: 76px;
  padding-bottom: 76px;
  justify-content: center;
  display: flex;
}
.cid-uqGz3MUj32 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fffcf5;
}
.cid-uqGz3MUj32 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqGz3MUj32 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqGz3MUj32 .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 991px) {
  .cid-uqGz3MUj32 .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-uqGz3MUj32 .mbr-section-head {
    margin-bottom: 50px;
  }
}
.cid-uqGz3MUj32 .mbr-section-title {
  color: #000000;
  margin-bottom: 0;
}
.cid-uqGz3MUj32 .mbr-section-subtitle {
  color: #353535;
  margin-top: 20px;
}
@media (max-width: 991px) {
  .cid-uqGz3MUj32 .col-img {
    display: none;
  }
}
.cid-uqGz3MUj32 .img-wrap {
  width: 100%;
}
.cid-uqGz3MUj32 .img-wrap .img-box {
  width: 100%;
  border-radius: 65px 65px 0 65px;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-uqGz3MUj32 .img-wrap .img-box {
    border-radius: 40px 40px 0 40px;
  }
}
.cid-uqGz3MUj32 .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-uqGz3MUj32 .mbr-iconfont {
  position: relative;
  font-size: 24px !important;
  font-family: 'Moririse2' !important;
  color: #987a5a;
  margin-left: 1rem;
  padding: 10px;
  transition: .3s all;
}
.cid-uqGz3MUj32 .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-uqGz3MUj32 .mbr-iconfont:before {
  position: relative;
  z-index: 2;
}
.cid-uqGz3MUj32 .panel-group {
  border: none;
  border-top: 1px solid #829d85;
  margin-top: 10px;
}
@media (max-width: 991px) {
  .cid-uqGz3MUj32 .panel-group {
    margin-top: 0;
  }
}
.cid-uqGz3MUj32 .card {
  border-bottom: 1px solid #829d85;
  border-radius: 0;
}
.cid-uqGz3MUj32 .card-header {
  padding: 20px 0;
  border: none;
  background-color: transparent;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .cid-uqGz3MUj32 .card-header {
    padding: 8px 0;
  }
}
.cid-uqGz3MUj32 .card-header:hover .mbr-iconfont {
  color: #829d85;
}
.cid-uqGz3MUj32 .card-header:hover .mbr-iconfont:after {
  opacity: 1;
}
.cid-uqGz3MUj32 .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #987A5A;
}
.cid-uqGz3MUj32 .panel-title[aria-expanded="true"] .mbr-iconfont {
  transform: rotate(45deg);
}
.cid-uqGz3MUj32 .panel-title-edit {
  color: #000000;
}
.cid-uqGz3MUj32 .panel-body {
  padding: 0 0 40px;
}
@media (max-width: 767px) {
  .cid-uqGz3MUj32 .panel-body {
    padding: 0 0 24px;
  }
}
.cid-uqGz3MUj32 .panel-text {
  color: #353535;
  margin: 0;
}
.cid-uqH1PMK6fc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fffcf5;
}
.cid-uqH1PMK6fc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqH1PMK6fc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqH1PMK6fc .video-wrapper iframe {
  width: 100%;
}
.cid-uqH1PMK6fc .app-video-wrapper::before {
  font-size: 100px;
  line-height: 100px;
  border: 10px solid #d0c4b7;
  border-radius: 50%;
  padding: 28px 28px 28px 30px;
  top: 45%;
  left: 45%;
}
@media (max-width: 768px) {
  .cid-uqH1PMK6fc .app-video-wrapper::before {
    font-size: 70px;
    line-height: 70px;
    border: none;
    padding: 0;
    top: 50%;
    left: 50%;
  }
}
.cid-uqH1PMK6fc .video-block {
  position: relative;
  z-index: 1;
}
.cid-uqH1PMK6fc .video-block .video-wrapper iframe {
  z-index: 1;
  position: relative;
}
.cid-uqH1PMK6fc .video-block .image-absolute {
  position: absolute;
  top: -12rem;
  left: -4rem;
  width: 300px;
  height: 450px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-uqH1PMK6fc .video-block .image-absolute {
    display: none;
  }
}
.cid-uqGz3OEdwh {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fffcf5;
  margin-bottom: 2px;
}
.cid-uqGz3OEdwh .mbr-section-subtitle {
  margin-bottom: 15px;
  color: #000000;
  text-align: center;
}
.cid-uqGz3OEdwh .mbr-section-title {
  color: #000000;
  text-align: center;
  margin-bottom: 15px;
}
.cid-uqGz3OEdwh .mbr-text {
  text-align: center;
  color: #333333;
}
.cid-uqGz3OEdwh .container-fluid {
  outline: 2px solid #000 !important;
}
.cid-uqGz3OEdwh .row {
  padding-top: 76px;
  padding-bottom: 76px;
  justify-content: center;
  display: flex;
}
.cid-uqGz3Q2drZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fffcf5;
}
.cid-uqGz3Q2drZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqGz3Q2drZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uqGz3Q2drZ .container {
    padding: 0 30px;
  }
}
.cid-uqGz3Q2drZ .row {
  justify-content: center;
}
.cid-uqGz3Q2drZ .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uqGz3Q2drZ .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uqGz3Q2drZ .panel-group .card {
  border-radius: 2rem 0 2rem 0 !important;
  border: 1px solid #caa9a8;
  margin-bottom: 24px;
  padding: 40px;
}
@media (max-width: 992px) {
  .cid-uqGz3Q2drZ .panel-group .card {
    padding: 30px 20px;
  }
}
.cid-uqGz3Q2drZ .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uqGz3Q2drZ .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-uqGz3Q2drZ .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uqGz3Q2drZ .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  width: 45px;
  height: 45px;
  min-width: 45px;
  transition: all 0.3s ease-in-out;
  color: #000000;
  background-color: #caa9a8;
  border-radius: 100%;
  margin-left: 20px;
}
.cid-uqGz3Q2drZ .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(45deg);
}
.cid-uqGz3Q2drZ .panel-group .card .panel-collapse .panel-body {
  padding-top: 30px;
}
.cid-uqGz3Q2drZ .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uqGz3Q2drZ .mbr-section-title {
  color: #000000;
}
.cid-uqGz3Q2drZ .panel-title-edit {
  color: #000000;
}
.cid-uqGz3Q2drZ .panel-text {
  color: #000000;
}
.cid-uqGz3RCdyv {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uqGz3RCdyv .google-map {
  height: 30rem;
  position: relative;
}
.cid-uqGz3RCdyv .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uqGz3RCdyv .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uqGz3RCdyv .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uqGz3RCdyv .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uqGz3RCdyv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqGz3RCdyv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqGz3T72P2 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fffcf5;
}
.cid-uqGz3T72P2 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uqGz3T72P2 p {
  line-height: 2;
}
.cid-uqGz3T72P2 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0rem;
  height: 2rem;
  width: 2rem;
}
.cid-uqGz3T72P2 .map {
  text-decoration: underline;
  height: fit-content;
}
@media (max-width: 767px) {
  .cid-uqGz3T72P2 .row {
    text-align: center;
  }
  .cid-uqGz3T72P2 .social-row {
    justify-content: center;
  }
}
.cid-uqGz3T72P2 .list {
  list-style: none;
  padding-left: 0;
  color: #5b6c8f;
}
@media (max-width: 991px) {
  .cid-uqGz3T72P2 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uqGz3T72P2 .list {
    margin-bottom: 0rem;
  }
}
.cid-uqGz3T72P2 .mbr-iconfont {
  color: #5b6c8f;
}
.cid-uqGz3T72P2 .mbr-section-subtitle {
  color: #000000;
}
.cid-uqGz3T72P2 .phone {
  color: #103178;
}
.cid-uqGz3T72P2 .mbr-text {
  color: #000000;
}
.cid-uqGz3T72P2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqGz3T72P2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqGz3T72P2 H5 {
  color: #000000;
}
